Home
last modified time | relevance | path

Searched refs:VRegA_22c (Results 1 – 11 of 11) sorted by relevance

/art/libdexfile/dex/
Ddex_instruction.cc279 …os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) <<… in DumpString()
288 …os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) <<… in DumpString()
302 …os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) <<… in DumpString()
311 …os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) <<… in DumpString()
319 os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" in DumpString()
328 os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" in DumpString()
335 … os << StringPrintf("%s v%d, v%d, thing@%d", opcode, VRegA_22c(), VRegB_22c(), VRegC_22c()); in DumpString()
Ddex_instruction.h331 uint4_t VRegA_22c() const { in VRegA_22c() function
332 return VRegA_22c(Fetch16(0)); in VRegA_22c()
385 uint4_t VRegA_22c(uint16_t inst_data) const;
Ddex_instruction-inl.h109 case k22c: return VRegA_22c(inst_data); in VRegA()
185 inline uint4_t Instruction::VRegA_22c(uint16_t inst_data) const { in VRegA_22c() function
/art/tools/veridex/
Dflow_analysis.cc513 UpdateRegister(instruction.VRegA_22c(), cls); in ProcessDexInstruction()
520 UpdateRegister(instruction.VRegA_22c(), cls); in ProcessDexInstruction()
555 UpdateRegister(instruction.VRegA_22c(), GetFieldType(instruction.VRegC_22c())); in ProcessDexInstruction()
639 uint8_t destination = instruction.VRegA_22c(); in ProcessDexInstruction()
/art/compiler/dex/
Dinline_method_analyser.cc240 if ((zero_vreg_mask & (1u << new_iput->VRegA_22c())) == 0u) { in RecordConstructorIPut()
249 iputs[new_pos].arg = new_iput->VRegA_22c() - this_vreg; in RecordConstructorIPut()
597 uint32_t dst_reg = instruction->VRegA_22c(); in AnalyseIGetMethod()
666 uint32_t src_reg = instruction->VRegA_22c(); in AnalyseIPutMethod()
/art/tools/dexanalyze/
Ddexanalyze_bytecode.cc266 uint32_t out_reg = inst->VRegA_22c(); in ProcessCodeItem()
440 uint32_t out_reg = inst->VRegA_22c(); in ProcessCodeItem()
454 uint32_t out_reg = inst->VRegA_22c(); in ProcessCodeItem()
Ddexanalyze_experiments.cc289 uint32_t input = inst.VRegA_22c(); in ProcessDexFile()
/art/runtime/interpreter/
Dinterpreter_common.h543 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data); in DoFieldGet()
608 const uint32_t vregA = inst->VRegA_22c(inst_data); in DoIGetQuick()
697 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data); in DoFieldPut()
726 const uint32_t vregA = inst->VRegA_22c(inst_data); in DoIPutQuick()
/art/runtime/interpreter/mterp/
Dmterp.cc528 shadow_frame->SetVRegReference(inst->VRegA_22c(inst_data), obj); in MterpNewArray()
675 uint16_t vRegA = kIsStatic ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data); in MterpFieldAccess()
/art/runtime/verifier/
Dmethod_verifier.cc2455 inst->VRegA_22c(), in CodeFlowVerifyInstruction()
2488 inst->VRegA_22c(), in CodeFlowVerifyInstruction()
2706 (inst->VRegA_21t() == instance_of_inst.VRegA_22c()) && in CodeFlowVerifyInstruction()
2707 (instance_of_inst.VRegA_22c() != instance_of_inst.VRegB_22c())) { in CodeFlowVerifyInstruction()
2759 move_src != instance_of_inst.VRegA_22c()) { in CodeFlowVerifyInstruction()
4443 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_22c(), precise_type); in VerifyNewArray()
4886 const uint32_t vregA = (is_static) ? inst->VRegA_21c() : inst->VRegA_22c(); in VerifyISFieldAccess()
/art/compiler/optimizing/
Dinstruction_builder.cc1810 uint32_t source_or_dest_reg = instruction.VRegA_22c(); in BuildInstanceFieldAccess()
3165 UpdateLocal(instruction.VRegA_22c(), current_block_->GetLastInstruction()); in ProcessDexInstruction()
3369 uint8_t destination = instruction.VRegA_22c(); in ProcessDexInstruction()