HomeSort by relevance Sort by last modified time
    Searched full:switchdata (Results 1 - 16 of 16) sorted by null

  /dalvik/vm/mterp/c/
OP_PACKED_SWITCH.cpp 3 const u2* switchData;
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);
OP_SPARSE_SWITCH.cpp 3 const u2* switchData;
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/mterp/x86/
OP_PACKED_SWITCH.S 17 movl %ecx,OUT_ARG0(%esp) # ARG0<- switchData
  /dalvik/vm/interp/
InterpDefs.h 62 extern "C" s4 dvmInterpHandlePackedSwitch(const u2* switchData, s4 testVal);
63 extern "C" s4 dvmInterpHandleSparseSwitch(const u2* switchData, s4 testVal);
Interp.cpp     [all...]
  /dalvik/vm/compiler/codegen/arm/
CalloutHelper.h 92 * static s8 findPackedSwitchIndex(const u2* switchData, int testVal, int pc);
93 * static s8 findSparseSwitchIndex(const u2* switchData, int testVal, int pc);
CodegenDriver.cpp     [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
SwitchData.java 30 public final class SwitchData extends VariableSizeInsn {
60 public SwitchData(SourcePosition position, CodeAddress user,
148 return new SwitchData(getPosition(), user, cases, targets);
RopTranslator.java 637 SwitchData dataInsn =
638 new SwitchData(pos, lastAddress, cases, switchTargets);
  /dalvik/dx/src/com/android/dx/dex/code/
SwitchData.java 31 public final class SwitchData extends VariableSizeInsn {
61 public SwitchData(SourcePosition position, CodeAddress user,
149 return new SwitchData(getPosition(), user, cases, targets);
RopTranslator.java 644 SwitchData dataInsn =
645 new SwitchData(pos, lastAddress, cases, switchTargets);
  /dalvik/vm/compiler/
Frontend.cpp     [all...]
  /dalvik/vm/mterp/out/
InterpC-allstubs.cpp     [all...]
InterpC-portable.cpp     [all...]
InterpAsm-x86.S     [all...]
  /cts/tools/dasm/src/dasm/
DAsm.java 30 import com.android.dx.dex.code.SwitchData;
    [all...]

Completed in 1388 milliseconds