Searched refs:gDvmInlineOpsTable (Results 1 – 13 of 13) sorted by relevance
/dalvik/vm/ |
D | InlineNative.cpp | 730 const InlineOperation gDvmInlineOpsTable[] = { variable 788 (Method**) calloc(NELEM(gDvmInlineOpsTable), sizeof(Method*)); in dvmInlineNativeStartup() 809 return gDvmInlineOpsTable; in dvmGetInlineOpsTable() 817 return NELEM(gDvmInlineOpsTable); in dvmGetInlineOpsTableLength() 879 assert(opIndex >= 0 && opIndex < NELEM(gDvmInlineOpsTable)); in dvmResolveInlineNative() 886 gDvmInlineOpsTable[opIndex].classDescriptor, in dvmResolveInlineNative() 887 gDvmInlineOpsTable[opIndex].methodName, in dvmResolveInlineNative() 888 gDvmInlineOpsTable[opIndex].methodSignature); in dvmResolveInlineNative() 915 return (*gDvmInlineOpsTable[opIndex].func)(arg0, arg1, arg2, arg3, in dvmPerformInlineOp4Dbg() 921 bool result = (*gDvmInlineOpsTable[opIndex].func)(arg0, arg1, arg2, arg3, in dvmPerformInlineOp4Dbg()
|
D | InlineNative.h | 95 extern const InlineOperation gDvmInlineOpsTable[]; 110 return (*gDvmInlineOpsTable[opIndex].func)(arg0, arg1, arg2, arg3, pResult); in dvmPerformInlineOp4Std()
|
/dalvik/vm/mterp/x86/ |
D | OP_EXECUTE_INLINE.S | 65 jmp *gDvmInlineOpsTable(%eax)
|
/dalvik/vm/mterp/x86-atom/ |
D | OP_EXECUTE_INLINE_RANGE.S | 68 movl $$gDvmInlineOpsTable, %eax # %eax<- address for table of inline operations
|
D | OP_EXECUTE_INLINE.S | 79 movl $$gDvmInlineOpsTable, %eax # %eax<- address for table of inline operations
|
/dalvik/vm/mterp/armv5te/ |
D | OP_EXECUTE_INLINE_RANGE.S | 92 .word gDvmInlineOpsTable
|
D | OP_EXECUTE_INLINE.S | 98 .word gDvmInlineOpsTable
|
/dalvik/vm/mterp/out/ |
D | InterpAsm-armv7-a.S | 9506 .word gDvmInlineOpsTable 9568 .word gDvmInlineOpsTable
|
D | InterpAsm-armv5te-vfp.S | 9569 .word gDvmInlineOpsTable 9631 .word gDvmInlineOpsTable
|
D | InterpAsm-armv7-a-neon.S | 9506 .word gDvmInlineOpsTable 9568 .word gDvmInlineOpsTable
|
D | InterpAsm-armv5te.S | 10027 .word gDvmInlineOpsTable 10089 .word gDvmInlineOpsTable
|
D | InterpAsm-x86-atom.S | 17445 movl $gDvmInlineOpsTable, %eax # %eax<- address for table of inline operations
|
D | InterpAsm-x86.S | 7507 jmp *gDvmInlineOpsTable(%eax)
|