Home
last modified time | relevance | path

Searched refs:opcode (Results 51 – 75 of 85) sorted by relevance

1234

/art/test/800-smali/smali/
Db_21869691C.smali2 # the wrong opcode. See b_21869691A.smali for explanation.
Db_21869691B.smali2 # the wrong opcode. See b_21869691A.smali for explanation.
Db_21869691A.smali2 # the wrong opcode.
/art/tools/dexfuzz/src/dexfuzz/rawdex/
DInstruction.java170 int opcode = (firstCodeWord & 0xff); in readOpcode() local
172 if (opcode == 0x0 && upperBits != 0x0) { in readOpcode()
193 return opcode; in readOpcode()
300 public static OpcodeInfo getOpcodeInfo(Opcode opcode) { in getOpcodeInfo() argument
301 return opcode_map_by_enum.get(opcode); in getOpcodeInfo()
308 private static void addOpcodeInfo(Opcode opcode, String name, in addOpcodeInfo() argument
310 OpcodeInfo info = new OpcodeInfo(opcode, name, opcodeValue, fmt); in addOpcodeInfo()
311 if (opcode.ordinal() != opcodeValue) { in addOpcodeInfo()
313 opcode.toString(), opcode.ordinal(), opcodeValue)); in addOpcodeInfo()
316 opcode_map_by_enum.put(opcode, info); in addOpcodeInfo()
/art/tools/dexfuzz/src/dexfuzz/program/
DCodeTranslator.java578 Opcode opcode = insn.info.opcode; in isInstructionBranch() local
579 if (Opcode.isBetween(opcode, Opcode.IF_EQ, Opcode.IF_LEZ) in isInstructionBranch()
580 || Opcode.isBetween(opcode, Opcode.GOTO, Opcode.GOTO_32)) { in isInstructionBranch()
590 Opcode opcode = insn.info.opcode; in isInstructionSwitch() local
591 if (Opcode.isBetween(opcode, Opcode.PACKED_SWITCH, Opcode.SPARSE_SWITCH)) { in isInstructionSwitch()
598 return (insn.info.opcode == Opcode.FILL_ARRAY_DATA); in isInstructionFillArrayData()
/art/test/952-invoke-custom/util-src/transformer/
DIndyTransformer.java95 int opcode, String owner, String name, String desc, boolean itf) { in visitMethod()
96 if (opcode == org.objectweb.asm.Opcodes.INVOKESTATIC) { in visitMethod()
103 mv.visitMethodInsn(opcode, owner, name, desc, itf); in visitMethod() argument
/art/runtime/interpreter/mterp/arm64/
Dobject.S57 cbnz w1, .L_${opcode}_mark // GC is active.
58 .L_${opcode}_marked:
77 .L_${opcode}_mark:
79 b .L_${opcode}_marked
Dmain.S791 ENTRY mterp_${opcode}
793 END mterp_${opcode}
/art/runtime/interpreter/mterp/
DREADME.txt28 $opcode - opcode name, e.g. "OP_NOP"
29 $opnum - opcode number, e.g. 0 for OP_NOP
73 located at the base of the handler table + (opcode * 128).
/art/test/979-const-method-handle/util-src/transformer/
DConstantTransformer.java90 int opcode, String owner, String name, String desc, boolean itf) { in visitMethod()
91 if (opcode == org.objectweb.asm.Opcodes.INVOKESTATIC) { in visitMethod()
103 mv.visitMethodInsn(opcode, owner, name, desc, itf); in visitMethod() argument
/art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
DFormat3rc.java63 if (info.opcode == Opcode.FILLED_NEW_ARRAY_RANGE) { in getPoolIndexKind()
DFormat35c.java70 if (info.opcode == Opcode.FILLED_NEW_ARRAY) { in getPoolIndexKind()
/art/runtime/interpreter/mterp/arm/
Dfloating_point.S21 GET_INST_OPCODE ip @ extract opcode from rINST
42 GET_INST_OPCODE ip @ extract opcode from rINST
Dcontrol_flow.S19 GET_INST_OPCODE ip @ extract opcode from rINST
38 GET_INST_OPCODE ip @ extract opcode from rINST
Dmain.S410 add rPC, r1, r0, lsl #1 @ Create direct pointer to 1st dex opcode
426 GET_INST_OPCODE ip @ extract opcode from rINST
769 ENTRY mterp_${opcode}
771 END mterp_${opcode}
/art/tools/dexfuzz/src/dexfuzz/program/mutators/
DRandomInstructionGenerator.java208 Opcode newOpcode = Instruction.getOpcodeInfo(mutation.newOpcode).opcode; in applyMutation()
267 if (newInsn.insn.info.opcode == Opcode.MONITOR_ENTER) { in applyMutation()
272 } else if (newInsn.insn.info.opcode == Opcode.MONITOR_EXIT) { in applyMutation()
/art/tools/jvmti-agents/titrace/
Dtitrace.cc166 uint8_t opcode = instruction[0]; in RecordInstruction() local
169 instruction_counter_[opcode].fetch_add(1u, std::memory_order_relaxed); in RecordInstruction()
/art/dexlayout/
Dcompact_dex_writer.cc176 const Instruction::Code opcode = it->Opcode(); in WriteCodeItem() local
178 if (opcode == Instruction::FILL_ARRAY_DATA || in WriteCodeItem()
179 opcode == Instruction::PACKED_SWITCH || in WriteCodeItem()
180 opcode == Instruction::SPARSE_SWITCH) { in WriteCodeItem()
/art/runtime/interpreter/mterp/x86/
Dobject.S6 REFRESH_INST ${opnum} # fix rINST to include opcode
Dmain.S798 ENTRY mterp_${opcode}
800 END mterp_${opcode}
/art/tools/dexanalyze/
Ddexanalyze_experiments.cc108 uint8_t opcode = *stream++; in ProcessDexFiles() local
109 ++opcode_counts[opcode]; in ProcessDexFiles()
111 switch (opcode) { in ProcessDexFiles()
/art/runtime/interpreter/mterp/x86_64/
Dmain.S753 ENTRY mterp_${opcode}
755 END mterp_${opcode}
Dobject.S6 REFRESH_INST ${opnum} # fix rINST to include opcode
/art/compiler/utils/arm/
Dassembler_arm_vixl.cc112 bool ArmVIXLAssembler::ShifterOperandCanHold(Opcode opcode, in ShifterOperandCanHold() argument
115 switch (opcode) { in ShifterOperandCanHold()
Dassembler_arm_vixl.h237 bool ShifterOperandCanHold(Opcode opcode,

1234