Home
last modified time | relevance | path

Searched refs:VRegA_21c (Results 1 – 10 of 10) sorted by relevance

/art/libdexfile/dex/
Ddex_instruction.cc208 VRegA_21c(), in DumpString()
213 VRegA_21c(), in DumpString()
225 os << opcode << " v" << static_cast<int>(VRegA_21c()) << ", " in DumpString()
239 …os << opcode << " v" << static_cast<int>(VRegA_21c()) << ", " << file->PrettyField(field_idx, tru… in DumpString()
253 …os << opcode << " v" << static_cast<int>(VRegA_21c()) << ", " << file->PrettyField(field_idx, true) in DumpString()
259 os << StringPrintf("%s v%d, thing@%d", opcode, VRegA_21c(), VRegB_21c()); in DumpString()
Ddex_instruction.h316 uint8_t VRegA_21c() const { in VRegA_21c() function
317 return VRegA_21c(Fetch16(0)); in VRegA_21c()
380 uint8_t VRegA_21c(uint16_t inst_data) const;
Ddex_instruction-inl.h104 case k21c: return VRegA_21c(inst_data); in VRegA()
160 inline uint8_t Instruction::VRegA_21c(uint16_t inst_data) const { in VRegA_21c() function
/art/tools/veridex/
Dflow_analysis.cc318 UpdateRegister(instruction.VRegA_21c(), in ProcessDexInstruction()
325 UpdateRegister(instruction.VRegA_21c(), in ProcessDexInstruction()
600 uint32_t dest_reg = instruction.VRegA_21c(); in ProcessDexInstruction()
668 uint8_t reference = instruction.VRegA_21c(); in ProcessDexInstruction()
/art/tools/dexanalyze/
Ddexanalyze_bytecode.cc296 uint32_t out_reg = is_jumbo ? inst->VRegA_31c() : inst->VRegA_21c(); in ProcessCodeItem()
324 uint32_t out_reg = inst->VRegA_21c(); in ProcessCodeItem()
469 uint32_t out_reg = inst->VRegA_21c(); in ProcessCodeItem()
Ddexanalyze_experiments.cc303 uint8_t output = inst.VRegA_21c(); in ProcessDexFile()
/art/runtime/interpreter/mterp/
Dmterp.cc377 shadow_frame->SetVRegReference(inst->VRegA_21c(inst_data), obj); in MterpNewInstance()
621 uint16_t vRegA = kIsStatic ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data); in MterpFieldAccess()
680 uint16_t vRegA = kIsStatic ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data); in MterpFieldAccessSlow()
/art/runtime/interpreter/
Dinterpreter_common.h522 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data); in DoFieldGet()
611 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data); in DoFieldPut()
/art/compiler/optimizing/
Dinstruction_builder.cc2008 uint32_t source_or_dest_reg = instruction.VRegA_21c(); in BuildUnresolvedStaticFieldAccess()
2101 uint32_t source_or_dest_reg = instruction.VRegA_21c(); in BuildStaticFieldAccess()
3474 UpdateLocal(instruction.VRegA_21c(), current_block_->GetLastInstruction()); in ProcessDexInstruction()
3488 UpdateLocal(instruction.VRegA_21c(), current_block_->GetLastInstruction()); in ProcessDexInstruction()
3495 UpdateLocal(instruction.VRegA_21c(), current_block_->GetLastInstruction()); in ProcessDexInstruction()
3502 UpdateLocal(instruction.VRegA_21c(), current_block_->GetLastInstruction()); in ProcessDexInstruction()
3531 uint8_t reference = instruction.VRegA_21c(); in ProcessDexInstruction()
/art/runtime/verifier/
Dmethod_verifier.cc2305 this, inst->VRegA_21c(), reg_types_.JavaLangString()); in CodeFlowVerifyInstruction()
2317 this, inst->VRegA_21c(), res_type.IsConflict() ? res_type in CodeFlowVerifyInstruction()
2323 this, inst->VRegA_21c(), reg_types_.JavaLangInvokeMethodHandle()); in CodeFlowVerifyInstruction()
2327 this, inst->VRegA_21c(), reg_types_.JavaLangInvokeMethodType()); in CodeFlowVerifyInstruction()
2453 uint32_t orig_type_reg = (is_checkcast) ? inst->VRegA_21c() : inst->VRegB_22c(); in CodeFlowVerifyInstruction()
2477 work_line_->SetRegisterType<LockOp::kKeep>(this, inst->VRegA_21c(), res_type); in CodeFlowVerifyInstruction()
2520 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_21c(), uninit_type); in CodeFlowVerifyInstruction()
4816 const uint32_t vregA = (is_static) ? inst->VRegA_21c() : inst->VRegA_22c(); in VerifyISFieldAccess()