HomeSort by relevance Sort by last modified time
    Searched refs:opIndex (Results 1 - 7 of 7) sorted by null

  /external/llvm/lib/MC/MCDisassembler/
EDInst.cpp 107 unsigned int opIndex;
110 for (opIndex = 0; opIndex < ThisInstInfo->numOperands; ++opIndex) {
112 (ThisInstInfo->operandFlags[opIndex] & kOperandFlagTarget)) {
113 BranchTarget = opIndex;
116 if (ThisInstInfo->operandFlags[opIndex] & kOperandFlagSource)
117 MoveSource = opIndex;
118 else if (ThisInstInfo->operandFlags[opIndex] & kOperandFlagTarget)
119 MoveTarget = opIndex;
    [all...]
EDOperand.h 39 unsigned int OpIndex;
47 /// @arg opIndex - The index of the operand in inst
51 unsigned int opIndex,
EDOperand.cpp 25 unsigned int opIndex,
29 OpIndex(opIndex),
37 uint8_t operandType = inst.ThisInstInfo->operandTypes[opIndex];
61 uint8_t operandType = inst.ThisInstInfo->operandTypes[opIndex];
129 uint8_t operandType = Inst.ThisInstInfo->operandTypes[OpIndex];
246 return(Inst.ThisInstInfo->operandFlags[OpIndex] == kOperandTypeRegister);
254 return(Inst.ThisInstInfo->operandFlags[OpIndex] == kOperandTypeImmediate);
262 uint8_t operandType = Inst.ThisInstInfo->operandTypes[OpIndex];
  /dalvik/vm/
InlineNative.cpp 877 Method* dvmResolveInlineNative(int opIndex)
879 assert(opIndex >= 0 && opIndex < NELEM(gDvmInlineOpsTable));
880 Method* method = gDvm.inlinedMethods[opIndex];
886 gDvmInlineOpsTable[opIndex].classDescriptor,
887 gDvmInlineOpsTable[opIndex].methodName,
888 gDvmInlineOpsTable[opIndex].methodSignature);
895 gDvm.inlinedMethods[opIndex] = method;
911 JValue* pResult, int opIndex)
913 Method* method = dvmResolveInlineNative(opIndex);
    [all...]
InlineNative.h 98 * Perform the operation specified by "opIndex".
108 JValue* pResult, int opIndex)
110 return (*gDvmInlineOpsTable[opIndex].func)(arg0, arg1, arg2, arg3, pResult);
117 JValue* pResult, int opIndex);
122 extern "C" Method* dvmResolveInlineNative(int opIndex);
  /external/javassist/src/main/javassist/bytecode/
CodeAnalyzer.java 189 private void checkTarget(int opIndex, int target, int codeLength,
194 throw new BadBytecode("bad branch offset at " + opIndex);
201 "," + d + ") at " + opIndex);
  /external/llvm/utils/TableGen/
EDEmitter.cpp 386 unsigned opIndex;
388 opIndex = inst.Operands.getOperandNamed(std::string(opName));
390 operandFlags[opIndex]->addEntry(opFlag);
810 unsigned opIndex;
811 opIndex = inst.Operands.getOperandNamed("func");
812 if (operandTypes[opIndex]->is("kOperandTypeImmediate"))
813 operandTypes[opIndex]->set("kOperandTypeARMBranchTarget");
    [all...]

Completed in 165 milliseconds