Searched refs:opIndex (Results 1 – 4 of 4) sorted by relevance
/dalvik/vm/ |
D | InlineNative.cpp | 867 Method* dvmResolveInlineNative(int opIndex) in dvmResolveInlineNative() argument 869 assert(opIndex >= 0 && opIndex < NELEM(gDvmInlineOpsTable)); in dvmResolveInlineNative() 870 Method* method = gDvm.inlinedMethods[opIndex]; in dvmResolveInlineNative() 876 gDvmInlineOpsTable[opIndex].classDescriptor, in dvmResolveInlineNative() 877 gDvmInlineOpsTable[opIndex].methodName, in dvmResolveInlineNative() 878 gDvmInlineOpsTable[opIndex].methodSignature); in dvmResolveInlineNative() 885 gDvm.inlinedMethods[opIndex] = method; in dvmResolveInlineNative() 901 JValue* pResult, int opIndex) in dvmPerformInlineOp4Dbg() argument 903 Method* method = dvmResolveInlineNative(opIndex); in dvmPerformInlineOp4Dbg() 905 return (*gDvmInlineOpsTable[opIndex].func)(arg0, arg1, arg2, arg3, in dvmPerformInlineOp4Dbg() [all …]
|
D | InlineNative.h | 115 JValue* pResult, int opIndex) in dvmPerformInlineOp4Std() argument 117 return (*gDvmInlineOpsTable[opIndex].func)(arg0, arg1, arg2, arg3, pResult); in dvmPerformInlineOp4Std() 124 JValue* pResult, int opIndex); 129 extern "C" Method* dvmResolveInlineNative(int opIndex);
|
/dalvik/vm/mterp/x86/ |
D | OP_EXECUTE_INLINE.S | 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/mterp/out/ |
D | InterpAsm-x86.S | 7897 SPILL_TMP1(%eax) # save opIndex 7898 call dvmResolveInlineNative # dvmResolveInlineNative(opIndex) 7902 UNSPILL_TMP1(%eax) # in case not resolved, restore opIndex 7909 UNSPILL_TMP1(%eax) # restore opIndex
|