Searched refs:new_opcode (Results 1 – 3 of 3) sorted by relevance
/art/runtime/ |
D | dex_to_dex_decompiler.cc | 45 void DecompileInstanceFieldAccess(Instruction* inst, Instruction::Code new_opcode) { in DecompileInstanceFieldAccess() argument 47 inst->SetOpcode(new_opcode); in DecompileInstanceFieldAccess() 51 void DecompileInvokeVirtual(Instruction* inst, Instruction::Code new_opcode, bool is_range) { in DecompileInvokeVirtual() argument 53 inst->SetOpcode(new_opcode); in DecompileInvokeVirtual()
|
/art/tools/dexanalyze/ |
D | dexanalyze_bytecode.cc | 238 Instruction::Code new_opcode = opcode; in ProcessCodeItem() local 260 new_opcode = is_iget ? Instruction::IGET : Instruction::IPUT; in ProcessCodeItem() 275 CHECK(InstNibbles(new_opcode, {out_reg, field_idx})); in ProcessCodeItem() 286 CHECK(InstNibbles(new_opcode, {out_reg, receiver, type_idx, field_idx})); in ProcessCodeItem() 298 new_opcode = Instruction::CONST_STRING; in ProcessCodeItem() 335 if (InstNibbles(new_opcode, {out_reg, field_idx})) { in ProcessCodeItem() 348 if (InstNibbles(new_opcode, {out_reg >> 4, out_reg & 0xF, type_idx, field_idx})) { in ProcessCodeItem() 446 CHECK(InstNibbles(new_opcode, {in_reg, out_reg, local_type})); in ProcessCodeItem() 460 CHECK(InstNibbles(new_opcode, {len_reg, out_reg, local_type})); in ProcessCodeItem() 515 Add(new_opcode, inst.Inst()); in ProcessCodeItem()
|
/art/dex2oat/dex/ |
D | dex_to_dex_compiler.cc | 91 Instruction::Code new_opcode, bool is_put); 100 Instruction::Code new_opcode, bool is_range); 428 Instruction::Code new_opcode, in CompileInstanceFieldAccess() argument 440 << " to " << Instruction::Name(new_opcode) in CompileInstanceFieldAccess() 447 inst->SetOpcode(new_opcode); in CompileInstanceFieldAccess() 461 Instruction::Code new_opcode, in CompileInvokeVirtual() argument 489 << " to " << Instruction::Name(new_opcode) in CompileInvokeVirtual() 496 inst->SetOpcode(new_opcode); in CompileInvokeVirtual()
|