Searched refs:NOP (Results 1 - 19 of 19) sorted by relevance

/art/compiler/optimizing/
H A Dsuspend_check_test.cc48 Instruction::NOP,
H A Dpretty_printer_test.cc149 Instruction::NOP,
H A Ddominator_test.cc131 Instruction::NOP,
H A Dbuilder.cc2100 case Instruction::NOP:
/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DOpcode.java20 NOP, enum constant in enum:Opcode
H A DInstruction.java320 addOpcodeInfo(Opcode.NOP, "nop", 0x00, new Format10x());
/art/compiler/dex/
H A Ddex_to_dex_compiler.cc63 // Compiles a CHECK-CAST into 2 NOP instructions if it is known to be safe. In
64 // this case, returns the second NOP instruction pointer. Otherwise, returns
209 // 2 consecutive NOP instructions.
211 // the current instruction, we need to return the 2nd NOP instruction. Indeed,
218 inst->SetOpcode(Instruction::NOP);
221 // it by a NOP.
223 inst->SetOpcode(Instruction::NOP);
H A Dmir_graph.h264 explicit DecodedInstruction():vA(0), vB(0), vB_wide(0), vC(0), opcode(Instruction::NOP) {
H A Dgvn_dead_code_elimination.cc148 // There's at least one NOP to drop. There may be more.
1065 case Instruction::NOP:
H A Dlocal_value_numbering.cc1507 case Instruction::NOP:
H A Dmir_graph.cc787 if (opcode == Instruction::NOP) {
788 // A simple NOP will have a width of 1 at this point, embedded data NOP > 1.
790 // Could be an aligning nop. If an embedded data NOP follows, treat pair as single unit.
832 * (incl. NOP).
/art/runtime/
H A Ddex_instruction.cc64 ((opcode == NOP) ? -1 : \
99 // Handle special NOP encoded variable length sequences.
113 return 1; // NOP.
H A Ddex_instruction_list.h21 V(0x00, NOP, "nop", k10x, false, kNone, kContinue, kVerifyNone) \
/art/tools/dexfuzz/src/dexfuzz/program/
H A DCodeTranslator.java554 nop.insn.info = Instruction.getOpcodeInfo(Opcode.NOP);
/art/compiler/dex/quick/
H A Dquick_compiler.cc138 Instruction::NOP,
H A Dmir_to_lir.cc525 case Instruction::NOP:
/art/runtime/interpreter/
H A Dinterpreter_goto_table_impl.cc105 * | NOP | (handler for NOP instruction)
113 * | NOP | (alternative handler for NOP instruction)
175 HANDLE_INSTRUCTION_START(NOP)
H A Dinterpreter_switch_impl.cc86 case Instruction::NOP:
/art/runtime/verifier/
H A Dmethod_verifier.cc1545 * may or may not be preceded by a padding NOP (for alignment).
1550 (insns[insn_idx] == Instruction::NOP && (insn_idx + 1 < insns_size) &&
1664 case Instruction::NOP:
1666 * A "pure" NOP has no effect on anything. Data tables start with
1667 * a signature that looks like a NOP; if we see one of these in

Completed in 132 milliseconds