HomeSort by relevance Sort by last modified time
    Searched refs:OP_NOP (Results 1 - 25 of 37) sorted by null

1 2

  /dalvik/vm/mterp/c/
OP_NOP.cpp 1 HANDLE_OPCODE(OP_NOP)
  /external/proguard/src/proguard/optimize/peephole/
NopRemover.java 77 if (simpleInstruction.opcode == InstructionConstants.OP_NOP &&
InstructionSequenceConstants.java 160 new SimpleInstruction(InstructionConstants.OP_NOP),
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
InstructionConstants.java 30 public static final byte OP_NOP = 0;
InstructionFactory.java 51 case InstructionConstants.OP_NOP:
  /dalvik/vm/analysis/
Optimize.cpp 169 volatileOpc = OP_NOP;
239 quickOpc = OP_NOP; /* if essential-only, no "-quick" sub */
240 if (quickOpc != OP_NOP || volatileOpc != OP_NOP)
275 if (volatileOpc != OP_NOP)
671 * If "volatileOpc" is OP_NOP we don't check to see if it's a volatile
672 * field. If "quickOpc" is OP_NOP, and this is a non-volatile field,
693 if (volatileOpc != OP_NOP && dvmIsVolatileField(instField)) {
697 } else if (quickOpc != OP_NOP && instField->byteOffset < 65536) {
723 assert(volatileOpc != OP_NOP);
    [all...]
VfyBasicBlock.cpp 445 } else if (opcode == OP_NOP && isDataChunk(meth->insns[nextIdx])) {
Liveness.cpp 334 case OP_NOP:
DexVerify.cpp 821 case OP_NOP:
    [all...]
CodeVerify.cpp     [all...]
  /dalvik/vm/compiler/codegen/mips/
CodegenCommon.cpp 353 mir->next->dalvikInsn.opcode = OP_NOP;
390 mir->next->dalvikInsn.opcode = OP_NOP;
CodegenDriver.cpp     [all...]
  /dalvik/vm/compiler/codegen/arm/
CodegenCommon.cpp 347 mir->next->dalvikInsn.opcode = OP_NOP;
400 mir->next->dalvikInsn.opcode = OP_NOP;
CodegenDriver.cpp     [all...]
  /dalvik/libdex/
DexOpcodes.h 71 OP_NOP = 0x00,
337 H(OP_NOP), \
    [all...]
  /libcore/dalvik/src/main/java/dalvik/bytecode/
Opcodes.java 30 int OP_NOP = 0x0000;
  /dalvik/vm/compiler/codegen/x86/
Lower.cpp 494 case OP_NOP:
495 return op_nop();
979 int op_nop() { function
BytecodeVisitor.cpp 31 case OP_NOP:
    [all...]
  /external/proguard/src/proguard/evaluation/
Processor.java 81 case InstructionConstants.OP_NOP:
    [all...]
  /dalvik/dexdump/
DexDump.cpp 868 if (pDecInsn->opcode == OP_NOP) {
    [all...]
  /dalvik/vm/interp/
Interp.cpp 219 return ((GET_OPCODE(curVal)) == OP_NOP && (curVal >> 8) != 0);
    [all...]
  /dalvik/vm/compiler/
Frontend.cpp 29 * Since the low 8-bit in metadata may look like OP_NOP, we need to check
32 return (opcode != OP_NOP || instr == 0);
    [all...]
  /dalvik/vm/mterp/out/
InterpC-allstubs.cpp     [all...]
InterpC-portable.cpp     [all...]
  /external/proguard/lib/
proguard.jar 

Completed in 713 milliseconds

1 2