Home
last modified time | relevance | path

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

/art/runtime/
Ddex_instruction.cc194 VRegA_21c(), in DumpString()
199 VRegA_21c(), in DumpString()
211 … os << opcode << " v" << static_cast<int>(VRegA_21c()) << ", " << PrettyType(type_idx, *file) in DumpString()
225 …os << opcode << " v" << static_cast<int>(VRegA_21c()) << ", " << PrettyField(field_idx, *file, tr… in DumpString()
239 …os << opcode << " v" << static_cast<int>(VRegA_21c()) << ", " << PrettyField(field_idx, *file, tru… in DumpString()
247 …os << opcode << " v" << static_cast<int>(VRegA_21c()) << ", " << PrettyMethod(method_idx, *file, t… in DumpString()
253 os << StringPrintf("%s v%d, thing@%d", opcode, VRegA_21c(), VRegB_21c()); in DumpString()
Ddex_instruction.h270 uint8_t VRegA_21c() const { in VRegA_21c() function
271 return VRegA_21c(Fetch16(0)); in VRegA_21c()
328 uint8_t VRegA_21c(uint16_t inst_data) const;
Ddex_instruction-inl.h65 case k21c: return VRegA_21c(); in VRegA()
119 inline uint8_t Instruction::VRegA_21c(uint16_t inst_data) const { in VRegA_21c() function
/art/compiler/dex/
Dverified_method.cc230 inst->VRegA_21c())); in GenerateSafeCastSet()
/art/runtime/interpreter/
Dinterpreter_common.h232 uint32_t vreg_dest_closure = inst->VRegA_21c(); in DoCreateLambda()
388 const uint32_t source_vreg = inst->VRegA_21c(); in DoCaptureVariable()
Dinterpreter_common.cc69 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data); in DoFieldGet()
257 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data); in DoFieldPut()
Dinterpreter_goto_table_impl.cc446 shadow_frame.SetVRegReference(inst->VRegA_21c(inst_data), s); in ExecuteGotoImpl()
469 shadow_frame.SetVRegReference(inst->VRegA_21c(inst_data), c); in ExecuteGotoImpl()
505 Object* obj = shadow_frame.GetVRegReference(inst->VRegA_21c(inst_data)); in ExecuteGotoImpl()
567 shadow_frame.SetVRegReference(inst->VRegA_21c(inst_data), obj); in ExecuteGotoImpl()
Dinterpreter_switch_impl.cc388 shadow_frame.SetVRegReference(inst->VRegA_21c(inst_data), s); in ExecuteSwitchImpl()
411 shadow_frame.SetVRegReference(inst->VRegA_21c(inst_data), c); in ExecuteSwitchImpl()
447 Object* obj = shadow_frame.GetVRegReference(inst->VRegA_21c(inst_data)); in ExecuteSwitchImpl()
511 shadow_frame.SetVRegReference(inst->VRegA_21c(inst_data), obj); in ExecuteSwitchImpl()
Dinterpreter.cc568 shadow_frame->SetVRegReference(instr->VRegA_21c(), value.GetL()); in EnterInterpreterFromDeoptimize()
/art/compiler/optimizing/
Dinstruction_builder.cc1305 uint32_t source_or_dest_reg = instruction.VRegA_21c(); in BuildUnresolvedStaticFieldAccess()
1321 uint32_t source_or_dest_reg = instruction.VRegA_21c(); in BuildStaticFieldAccess()
2591 UpdateLocal(instruction.VRegA_21c(), current_block_->GetLastInstruction()); in ProcessDexInstruction()
2623 UpdateLocal(instruction.VRegA_21c(), current_block_->GetLastInstruction()); in ProcessDexInstruction()
2652 uint8_t reference = instruction.VRegA_21c(); in ProcessDexInstruction()
/art/runtime/verifier/
Dmethod_verifier.cc2259 this, inst->VRegA_21c(), reg_types_.JavaLangString()); in CodeFlowVerifyInstruction()
2271 this, inst->VRegA_21c(), res_type.IsConflict() ? res_type in CodeFlowVerifyInstruction()
2359 uint32_t orig_type_reg = (is_checkcast) ? inst->VRegA_21c() : inst->VRegB_22c(); in CodeFlowVerifyInstruction()
2383 work_line_->SetRegisterType<LockOp::kKeep>(this, inst->VRegA_21c(), res_type); in CodeFlowVerifyInstruction()
2425 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_21c(), uninit_type); in CodeFlowVerifyInstruction()
4675 const uint32_t vregA = (is_static) ? inst->VRegA_21c() : inst->VRegA_22c(); in VerifyISFieldAccess()
/art/runtime/interpreter/mterp/
Dmterp.cc341 shadow_frame->SetVRegReference(inst->VRegA_21c(inst_data), obj); in MterpNewInstance()