Searched refs:VRegA_21c (Results 1 - 9 of 9) sorted by relevance

/art/runtime/
H A Ddex_instruction.cc184 os << StringPrintf("const-string v%d, %s // string@%d", VRegA_21c(),
194 os << opcode << " v" << static_cast<int>(VRegA_21c()) << ", " << PrettyType(type_idx, *file)
208 os << opcode << " v" << static_cast<int>(VRegA_21c()) << ", " << PrettyField(field_idx, *file, true)
222 os << opcode << " v" << static_cast<int>(VRegA_21c()) << ", " << PrettyField(field_idx, *file, true)
228 os << StringPrintf("%s v%d, thing@%d", opcode, VRegA_21c(), VRegB_21c());
H A Ddex_instruction.h254 uint8_t VRegA_21c() const { function in class:art::Instruction
255 return VRegA_21c(Fetch16(0));
312 uint8_t VRegA_21c(uint16_t inst_data) const;
H A Ddex_instruction-inl.h65 case k21c: return VRegA_21c();
119 inline uint8_t Instruction::VRegA_21c(uint16_t inst_data) const { function in class:art::Instruction
/art/compiler/dex/
H A Dverified_method.cc347 inst->VRegA_21c()));
/art/runtime/interpreter/
H A Dinterpreter_common.cc62 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data);
249 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data);
H A Dinterpreter_goto_table_impl.cc416 shadow_frame.SetVRegReference(inst->VRegA_21c(inst_data), s);
439 shadow_frame.SetVRegReference(inst->VRegA_21c(inst_data), c);
475 Object* obj = shadow_frame.GetVRegReference(inst->VRegA_21c(inst_data));
537 shadow_frame.SetVRegReference(inst->VRegA_21c(inst_data), obj);
H A Dinterpreter_switch_impl.cc319 shadow_frame.SetVRegReference(inst->VRegA_21c(inst_data), s);
342 shadow_frame.SetVRegReference(inst->VRegA_21c(inst_data), c);
378 Object* obj = shadow_frame.GetVRegReference(inst->VRegA_21c(inst_data));
442 shadow_frame.SetVRegReference(inst->VRegA_21c(inst_data), obj);
/art/compiler/optimizing/
H A Dbuilder.cc908 uint32_t source_or_dest_reg = instruction.VRegA_21c();
2186 UpdateLocal(instruction.VRegA_21c(), current_block_->GetLastInstruction());
2214 UpdateLocal(instruction.VRegA_21c(), current_block_->GetLastInstruction());
2246 uint8_t reference = instruction.VRegA_21c();
/art/runtime/verifier/
H A Dmethod_verifier.cc1884 work_line_->SetRegisterType(this, inst->VRegA_21c(), reg_types_.JavaLangString());
1894 work_line_->SetRegisterType(this, inst->VRegA_21c(),
1956 uint32_t orig_type_reg = (is_checkcast) ? inst->VRegA_21c() : inst->VRegB_22c();
1972 work_line_->SetRegisterType(this, inst->VRegA_21c(), res_type);
2010 work_line_->SetRegisterType(this, inst->VRegA_21c(), uninit_type);
4013 const uint32_t vregA = (is_static) ? inst->VRegA_21c() : inst->VRegA_22c();

Completed in 247 milliseconds