HomeSort by relevance Sort by last modified time
    Searched refs:VRegA (Results 1 - 12 of 12) sorted by null

  /art/runtime/
dex_instruction_test.cc 80 ASSERT_EQ(4, ins->VRegA());
115 ASSERT_EQ(4, ins->VRegA());
dex_instruction-inl.h 25 // VRegA
59 inline int32_t Instruction::VRegA() const {
dex_instruction.h 280 // VRegA
282 ALWAYS_INLINE int32_t VRegA() const;
monitor.cc     [all...]
  /art/dexdump/
dexdump.cc     [all...]
  /art/compiler/optimizing/
instruction_builder.cc 497 HInstruction* first = LoadLocal(instruction.VRegA(), Primitive::kPrimInt);
507 HInstruction* value = LoadLocal(instruction.VRegA(), Primitive::kPrimInt);
520 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
529 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
539 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
549 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
559 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
566 HInstruction* first = LoadLocal(instruction.VRegA(), type);
569 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
576 HInstruction* first = LoadLocal(instruction.VRegA(), type)
    [all...]
  /art/dexlayout/
dexlayout.cc 908 fprintf(out_file_, " v%d, v%d", dec_insn->VRegA(), dec_insn->VRegB());
912 dec_insn->VRegA(), (int32_t) dec_insn->VRegB(), (uint8_t)dec_insn->VRegB());
915 fprintf(out_file_, " v%d", dec_insn->VRegA());
    [all...]
  /art/compiler/dex/
inline_method_analyser.cc 190 return base_mask << const0->VRegA();
559 DCHECK_LT(instruction->VRegA(), code_item->registers_size_);
560 if (instruction->VRegA() != return_reg) {
  /art/runtime/verifier/
method_verifier.cc     [all...]
register_line.cc 52 const size_t args_count = inst->VRegA();
271 const uint32_t vregA = inst->VRegA_12x();
273 if (VerifyRegisterType(verifier, vregA, src_type1) &&
277 if (GetRegisterType(verifier, vregA).IsBooleanTypes() &&
280 vregA,
285 SetRegisterType<LockOp::kClear>(verifier, vregA, dst_type);
293 const uint32_t vregA = inst->VRegA_12x();
295 if (VerifyRegisterTypeWide(verifier, vregA, src_type1_1, src_type1_2) &&
297 SetRegisterTypeWide(verifier, vregA, dst_type1, dst_type2);
304 const uint32_t vregA = inst->VRegA_12x()
    [all...]
  /art/runtime/interpreter/
interpreter_common.cc 74 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data);
77 shadow_frame.SetVReg(vregA, result.GetZ());
80 shadow_frame.SetVReg(vregA, result.GetB());
83 shadow_frame.SetVReg(vregA, result.GetC());
86 shadow_frame.SetVReg(vregA, result.GetS());
89 shadow_frame.SetVReg(vregA, result.GetI());
92 shadow_frame.SetVRegLong(vregA, result.GetJ());
95 shadow_frame.SetVRegReference(vregA, result.GetL());
170 const uint32_t vregA = inst->VRegA_22c(inst_data);
173 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetField32(field_offset)))
    [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc     [all...]

Completed in 118 milliseconds