Searched refs:VRegA_21c (Results 1 – 13 of 13) sorted by relevance
/art/libdexfile/dex/ |
D | dex_instruction.cc | 208 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()
|
D | dex_instruction.h | 311 uint8_t VRegA_21c() const { in VRegA_21c() function 312 return VRegA_21c(Fetch16(0)); in VRegA_21c() 375 uint8_t VRegA_21c(uint16_t inst_data) const;
|
D | dex_instruction-inl.h | 67 case k21c: return VRegA_21c(); in VRegA() 123 inline uint8_t Instruction::VRegA_21c(uint16_t inst_data) const { in VRegA_21c() function
|
/art/compiler/dex/ |
D | verified_method.cc | 80 inst.VRegA_21c())); in GenerateSafeCastSet()
|
/art/tools/veridex/ |
D | flow_analysis.cc | 295 UpdateRegister(instruction.VRegA_21c(), in ProcessDexInstruction() 302 UpdateRegister(instruction.VRegA_21c(), in ProcessDexInstruction() 577 uint32_t dest_reg = instruction.VRegA_21c(); in ProcessDexInstruction() 645 uint8_t reference = instruction.VRegA_21c(); in ProcessDexInstruction()
|
/art/tools/dexanalyze/ |
D | dexanalyze_bytecode.cc | 296 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()
|
D | dexanalyze_experiments.cc | 303 uint8_t output = inst.VRegA_21c(); in ProcessDexFile()
|
/art/compiler/optimizing/ |
D | instruction_builder.cc | 1609 uint32_t source_or_dest_reg = instruction.VRegA_21c(); in BuildUnresolvedStaticFieldAccess() 1672 uint32_t source_or_dest_reg = instruction.VRegA_21c(); in BuildStaticFieldAccess() 3025 UpdateLocal(instruction.VRegA_21c(), current_block_->GetLastInstruction()); in ProcessDexInstruction() 3039 UpdateLocal(instruction.VRegA_21c(), current_block_->GetLastInstruction()); in ProcessDexInstruction() 3046 UpdateLocal(instruction.VRegA_21c(), current_block_->GetLastInstruction()); in ProcessDexInstruction() 3053 UpdateLocal(instruction.VRegA_21c(), current_block_->GetLastInstruction()); in ProcessDexInstruction() 3082 uint8_t reference = instruction.VRegA_21c(); in ProcessDexInstruction()
|
/art/runtime/verifier/ |
D | method_verifier.cc | 2299 this, inst->VRegA_21c(), reg_types_.JavaLangString()); in CodeFlowVerifyInstruction() 2311 this, inst->VRegA_21c(), res_type.IsConflict() ? res_type in CodeFlowVerifyInstruction() 2317 this, inst->VRegA_21c(), reg_types_.JavaLangInvokeMethodHandle()); in CodeFlowVerifyInstruction() 2321 this, inst->VRegA_21c(), reg_types_.JavaLangInvokeMethodType()); in CodeFlowVerifyInstruction() 2447 uint32_t orig_type_reg = (is_checkcast) ? inst->VRegA_21c() : inst->VRegB_22c(); in CodeFlowVerifyInstruction() 2471 work_line_->SetRegisterType<LockOp::kKeep>(this, inst->VRegA_21c(), res_type); in CodeFlowVerifyInstruction() 2514 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_21c(), uninit_type); in CodeFlowVerifyInstruction() 4879 const uint32_t vregA = (is_static) ? inst->VRegA_21c() : inst->VRegA_22c(); in VerifyISFieldAccess()
|
/art/runtime/interpreter/mterp/ |
D | mterp.cc | 470 shadow_frame->SetVRegReference(inst->VRegA_21c(inst_data), obj); in MterpNewInstance() 678 uint16_t vRegA = kIsStatic ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data); in MterpFieldAccess()
|
/art/runtime/interpreter/ |
D | interpreter_switch_impl-inl.h | 700 shadow_frame.SetVRegReference(inst->VRegA_21c(inst_data), s); in CONST_STRING() 726 shadow_frame.SetVRegReference(inst->VRegA_21c(inst_data), c); in CONST_CLASS() 739 shadow_frame.SetVRegReference(inst->VRegA_21c(inst_data), mh); in CONST_METHOD_HANDLE() 752 shadow_frame.SetVRegReference(inst->VRegA_21c(inst_data), mt); in CONST_METHOD_TYPE() 794 ObjPtr<mirror::Object> obj = shadow_frame.GetVRegReference(inst->VRegA_21c(inst_data)); in CHECK_CAST() 860 shadow_frame.SetVRegReference(inst->VRegA_21c(inst_data), obj); in NEW_INSTANCE()
|
D | interpreter_common.cc | 131 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data); in DoFieldGet() 339 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data); in DoFieldPut()
|
/art/dex2oat/dex/ |
D | dex_to_dex_compiler.cc | 411 quickened_info_.push_back(QuickenedInfo(dex_pc, inst->VRegA_21c())); in CompileCheckCast()
|