HomeSort by relevance Sort by last modified time
    Searched refs:opIndex (Results 1 - 9 of 9) 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/mterp/x86/
OP_EXECUTE_INLINE.S 8 * (*gDvmInlineOpsTable[opIndex].func)(arg0, arg1, arg2, arg3, pResult)
74 * eax: opIndex
78 SPILL_TMP1(%eax) # save opIndex
79 call dvmResolveInlineNative # dvmResolveInlineNative(opIndex)
83 UNSPILL_TMP1(%eax) # in case not resolved, restore opIndex
90 UNSPILL_TMP1(%eax) # restore opIndex
  /dalvik/vm/
InlineNative.cpp 867 Method* dvmResolveInlineNative(int opIndex)
869 assert(opIndex >= 0 && opIndex < NELEM(gDvmInlineOpsTable));
870 Method* method = gDvm.inlinedMethods[opIndex];
876 gDvmInlineOpsTable[opIndex].classDescriptor,
877 gDvmInlineOpsTable[opIndex].methodName,
878 gDvmInlineOpsTable[opIndex].methodSignature);
885 gDvm.inlinedMethods[opIndex] = method;
901 JValue* pResult, int opIndex)
903 Method* method = dvmResolveInlineNative(opIndex);
    [all...]
InlineNative.h 105 * Perform the operation specified by "opIndex".
115 JValue* pResult, int opIndex)
117 return (*gDvmInlineOpsTable[opIndex].func)(arg0, arg1, arg2, arg3, pResult);
124 JValue* pResult, int opIndex);
129 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 398 unsigned opIndex;
400 opIndex = inst.Operands.getOperandNamed(std::string(opName));
402 operandFlags[opIndex]->addEntry(opFlag);
822 unsigned opIndex;
823 opIndex = inst.Operands.getOperandNamed("func");
824 if (operandTypes[opIndex]->is("kOperandTypeImmediate"))
825 operandTypes[opIndex]->set("kOperandTypeARMBranchTarget");
    [all...]
  /dalvik/vm/mterp/out/
InterpAsm-x86.S     [all...]

Completed in 943 milliseconds