| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| ReplaceConstant.cpp | 24 unsigned OpCode = CE->getOpcode(); 25 switch (OpCode) { 49 Builder.CreateBinOp((Instruction::BinaryOps)OpCode, CE->getOperand(0), 65 Builder.CreateCast((Instruction::CastOps)OpCode, CE->getOperand(0),
|
| /src/external/apache2/llvm/dist/llvm/bindings/python/llvm/tests/ |
| test_bitreader.py | 4 from ..core import OpCode
|
| test_core.py | 9 from ..core import OpCode 119 inst_list = [('arg1', OpCode.ExtractValue), 120 ('arg2', OpCode.ExtractValue), 121 ('', OpCode.Call), 122 ('', OpCode.Ret)] 129 self.assertEqual(inst.opcode, inst_list[i][1]) 141 self.assertEqual(inst.opcode, inst_list[i][1])
|
| /src/external/gpl3/binutils/dist/gprofng/src/ |
| Expression.h | 62 enum OpCode 117 Expression (OpCode, const Expression*, const Expression* = 0); 118 Expression (OpCode, uint64_t); 171 OpCode op;
|
| /src/external/gpl3/binutils.old/dist/gprofng/src/ |
| Expression.h | 62 enum OpCode 117 Expression (OpCode, const Expression*, const Expression* = 0); 118 Expression (OpCode, uint64_t); 171 OpCode op;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| Instruction.h | 177 static const char* getOpcodeName(unsigned OpCode); 179 static inline bool isTerminator(unsigned OpCode) { 180 return OpCode >= TermOpsBegin && OpCode < TermOpsEnd; 183 static inline bool isUnaryOp(unsigned Opcode) { 184 return Opcode >= UnaryOpsBegin && Opcode < UnaryOpsEnd; 186 static inline bool isBinaryOp(unsigned Opcode) { 187 return Opcode >= BinaryOpsBegin && Opcode < BinaryOpsEnd [all...] |
| /src/external/apache2/llvm/dist/llvm/bindings/python/llvm/ |
| bit_reader.py | 8 from .core import OpCode
|
| core.py | 26 "OpCode", 84 class OpCode(LLVMEnumeration): 85 """Represents an individual OpCode enumeration.""" 90 super(OpCode, self).__init__(name, value) 427 def opcode(self): member in class:Instruction 428 return OpCode.from_value(lib.LLVMGetInstructionOpcode(self)) 608 (OpCode, enumerations.OpCodes),
|
| /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/ |
| macho2yaml.cpp | 348 for (auto OpCode = RebaseOpcodes.begin(); OpCode != RebaseOpcodes.end(); 349 ++OpCode) { 351 RebaseOp.Opcode = 352 static_cast<MachO::RebaseOpcode>(*OpCode & MachO::REBASE_OPCODE_MASK); 353 RebaseOp.Imm = *OpCode & MachO::REBASE_IMMEDIATE_MASK; 358 switch (RebaseOp.Opcode) { 361 ULEB = decodeULEB128(OpCode + 1, &Count); 363 OpCode += Count; 365 // Intentionally no break here -- This opcode has two ULEB value [all...] |
| /src/external/mit/lua/dist/src/ |
| lcode.h | 70 LUAI_FUNC int luaK_codeABx (FuncState *fs, OpCode o, int A, unsigned int Bx); 71 LUAI_FUNC int luaK_codeAsBx (FuncState *fs, OpCode o, int A, int Bx); 72 LUAI_FUNC int luaK_codeABCk (FuncState *fs, OpCode o, int A,
|
| lcode.c | 45 static int codesJ (FuncState *fs, OpCode o, int sj, int k); 135 ** instance, 'local a; local b' will generate a single opcode.) 214 OpCode op; 225 ** Code a "conditional jump", that is, a test or comparison opcode 228 static int condjump (FuncState *fs, OpCode op, int A, int B, int C, int k) { 401 ** of parameters versus opcode.) 403 int luaK_codeABCk (FuncState *fs, OpCode o, int a, int b, int c, int k) { 414 int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { 424 int luaK_codeAsBx (FuncState *fs, OpCode o, int a, int bc) { 435 static int codesJ (FuncState *fs, OpCode o, int sj, int k) [all...] |
| lopcodes.h | 17 All instructions have an opcode in the first 7 bits. 38 ** size and position of opcode arguments. 64 ** limits for opcode arguments. 116 #define GET_OPCODE(i) (cast(OpCode, ((i)>>POS_OP) & MASK1(SIZE_OP,0))) 317 OP_EXTRAARG/* Ax extra (larger) argument for previous opcode */ 318 } OpCode; 328 (*) Opcode OP_LFALSESKIP is used to convert a condition to a boolean 333 bitwise opcode. If the operation succeeds, it skips this next 334 opcode. Otherwise, this opcode calls the corresponding metamethod [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| MIRFormatter.h | 48 virtual bool parseImmMnemonic(const unsigned OpCode, const unsigned OpIdx,
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/Disassembler/ |
| M68kDisassembler.cpp | 79 unsigned OpCode; 107 M68kInstructionLookup build(unsigned OpCode); 227 dbgs() << "M68kInstructionLookup " << OpCode << " "; 260 M68kInstructionLookup M68kInstructionLookupBuilder::build(unsigned OpCode) { 265 Ret.OpCode = OpCode; 476 Instr.setOpcode(Lookup.OpCode); 477 LLVM_DEBUG(errs() << "decoding instruction " << MCII->getName(Lookup.OpCode)
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| MacOSKeychainAPIChecker.cpp | 515 BinaryOperator::Opcode OpCode = CondBSE->getOpcode(); 516 if (OpCode != BO_EQ && OpCode != BO_NE) 524 bool ErrorIsReturned = (OpCode == BO_EQ && RHS != NoErr) || 525 (OpCode == BO_NE && RHS == NoErr);
|
| CheckObjCDealloc.cpp | 413 BinaryOperator::Opcode OpCode = CondBSE->getOpcode(); 415 if (OpCode != BO_EQ) 418 if (OpCode != BO_NE)
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/ |
| XCoreRegisterInfo.cpp | 88 llvm_unreachable("Unexpected Opcode"); 124 llvm_unreachable("Unexpected Opcode"); 157 llvm_unreachable("Unexpected Opcode"); 168 unsigned OpCode = MI.getOpcode(); 171 if (OpCode==XCore::STWFI) { 181 switch (OpCode) { 201 llvm_unreachable("Unexpected Opcode");
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/MIRParser/ |
| MIParser.h | 98 /// Try to convert an instruction name to an opcode. Return true if the 100 bool parseInstrName(StringRef InstrName, unsigned &OpCode);
|
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/ |
| NativeFunctionSymbol.cpp | 65 switch (Annot.OpCode) {
|
| NativeInlineSiteSymbol.cpp | 102 switch (Annot.OpCode) {
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| SimplifyIndVar.cpp | 1108 unsigned OpCode) const; 1203 unsigned Opcode = DU.NarrowUse->getOpcode(); 1204 switch (Opcode) { 1332 unsigned OpCode) const { 1333 switch (OpCode) { 1343 llvm_unreachable("Unsupported opcode."); 1355 const unsigned OpCode = DU.NarrowUse->getOpcode(); 1357 if (OpCode != Instruction::Add && OpCode != Instruction::Sub && 1358 OpCode != Instruction::Mul [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/ |
| MIParser.cpp | 144 unsigned &OpCode) { 149 OpCode = InstrInfo->getValue(); 485 bool parseMachineOperand(const unsigned OpCode, const unsigned OpIdx, 488 bool parseMachineOperandAndTargetFlags(const unsigned OpCode, 507 bool parseTargetImmMnemonic(const unsigned OpCode, const unsigned OpIdx, 535 bool parseInstruction(unsigned &OpCode, unsigned &Flags); 975 unsigned OpCode, Flags = 0; 976 if (Token.isError() || parseInstruction(OpCode, Flags)) 988 if (parseMachineOperandAndTargetFlags(OpCode, Operands.size(), MO, TiedDefIdx)) 990 if ((OpCode == TargetOpcode::DBG_VALUE | [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/ |
| DWARFExpression.cpp | 111 static DWARFExpression::Operation::Description getOpDesc(unsigned OpCode) { 115 if (OpCode >= Descriptions.size()) 117 return Descriptions[OpCode]; 124 Opcode = Data.getU8(&Offset); 126 Desc = getOpDesc(Opcode); 228 DIDumpOptions DumpOpts, uint8_t Opcode, 237 if (Opcode == DW_OP_bregx || Opcode == DW_OP_regx || 238 Opcode == DW_OP_regval_type) 240 else if (Opcode >= DW_OP_breg0 && Opcode < DW_OP_bregx [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| HexagonMCInstrInfo.cpp | 950 const unsigned OpCode = MCI.getOpcode(); 952 const bool NoSlotReqd = Hexagon::A4_ext == OpCode || 953 (IsTiny && Hexagon::A2_nop == OpCode) || 954 (IsTiny && Hexagon::J4_hintjumpr == OpCode);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/ |
| SymbolRecord.h | 162 BinaryAnnotationsOpCode OpCode = BinaryAnnotationsOpCode::Invalid; 258 Result.OpCode = static_cast<BinaryAnnotationsOpCode>(Op); 259 switch (Result.OpCode) {
|