Searched refs:switchData (Results 1 - 9 of 9) sorted by relevance

/dalvik/vm/mterp/c/
H A DOP_PACKED_SWITCH.c3 const u2* switchData; local
10 switchData = pc + offset; // offset in 16-bit units
12 if (switchData < curMethod->insns ||
13 switchData >= curMethod->insns + dvmGetMethodInsnsSize(curMethod))
23 offset = dvmInterpHandlePackedSwitch(switchData, testVal);
H A DOP_SPARSE_SWITCH.c3 const u2* switchData; local
10 switchData = pc + offset; // offset in 16-bit units
12 if (switchData < curMethod->insns ||
13 switchData >= curMethod->insns + dvmGetMethodInsnsSize(curMethod))
23 offset = dvmInterpHandleSparseSwitch(switchData, testVal);
/dalvik/vm/interp/
H A DInterpDefs.h120 s4 dvmInterpHandlePackedSwitch(const u2* switchData, s4 testVal);
121 s4 dvmInterpHandleSparseSwitch(const u2* switchData, s4 testVal);
H A DInterp.c382 * "switchData" must be 32-bit aligned.
385 static inline s4 s4FromSwitchData(const void* switchData) { argument
386 return *(s4*) switchData;
389 static inline s4 s4FromSwitchData(const void* switchData) { argument
390 u2* data = switchData;
400 s4 dvmInterpHandlePackedSwitch(const u2* switchData, s4 testVal) argument
416 if (*switchData++ != kPackedSwitchSignature) {
423 size = *switchData++;
426 firstKey = *switchData++;
427 firstKey |= (*switchData
454 dvmInterpHandleSparseSwitch(const u2* switchData, s4 testVal) argument
[all...]
/dalvik/vm/mterp/x86/
H A DOP_PACKED_SWITCH.S18 movl %ecx,OUT_ARG0(%esp) # ARG0<- switchData
/dalvik/vm/mterp/out/
H A DInterpC-allstubs.c1846 const u2* switchData; local
1853 switchData = pc + offset; // offset in 16-bit units
1855 if (switchData < curMethod->insns ||
1856 switchData >= curMethod->insns + dvmGetMethodInsnsSize(curMethod))
1866 offset = dvmInterpHandlePackedSwitch(switchData, testVal);
1877 const u2* switchData; local
1884 switchData = pc + offset; // offset in 16-bit units
1886 if (switchData < curMethod->insns ||
1887 switchData >= curMethod->insns + dvmGetMethodInsnsSize(curMethod))
1897 offset = dvmInterpHandleSparseSwitch(switchData, testVa
[all...]
H A DInterpC-portdbg.c2190 const u2* switchData; local
2197 switchData = pc + offset; // offset in 16-bit units
2199 if (switchData < curMethod->insns ||
2200 switchData >= curMethod->insns + dvmGetMethodInsnsSize(curMethod))
2210 offset = dvmInterpHandlePackedSwitch(switchData, testVal);
2221 const u2* switchData; local
2228 switchData = pc + offset; // offset in 16-bit units
2230 if (switchData < curMethod->insns ||
2231 switchData >= curMethod->insns + dvmGetMethodInsnsSize(curMethod))
2241 offset = dvmInterpHandleSparseSwitch(switchData, testVa
[all...]
H A DInterpC-portstd.c1910 const u2* switchData; local
1917 switchData = pc + offset; // offset in 16-bit units
1919 if (switchData < curMethod->insns ||
1920 switchData >= curMethod->insns + dvmGetMethodInsnsSize(curMethod))
1930 offset = dvmInterpHandlePackedSwitch(switchData, testVal);
1941 const u2* switchData; local
1948 switchData = pc + offset; // offset in 16-bit units
1950 if (switchData < curMethod->insns ||
1951 switchData >= curMethod->insns + dvmGetMethodInsnsSize(curMethod))
1961 offset = dvmInterpHandleSparseSwitch(switchData, testVa
[all...]
H A DInterpAsm-x86.S1017 movl %ecx,OUT_ARG0(%esp) # ARG0<- switchData
1048 movl %ecx,OUT_ARG0(%esp) # ARG0<- switchData

Completed in 423 milliseconds