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

  /art/compiler/optimizing/
builder.cc 141 HInstruction* first = LoadLocal(instruction.VRegA(), Primitive::kPrimInt);
158 HInstruction* value = LoadLocal(instruction.VRegA(), Primitive::kPrimInt);
277 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
282 HInstruction* first = LoadLocal(instruction.VRegA(), type);
285 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
296 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
307 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
314 HInstruction* value = LoadLocal(instruction.VRegA(), type);
470 int32_t register_index = instruction.VRegA();
477 int32_t register_index = instruction.VRegA();
    [all...]
  /art/runtime/quick/
inline_method_analyser.cc 184 DCHECK_LT(instruction->VRegA(), code_item->registers_size_);
185 if (instruction->VRegA() != return_reg) {
  /art/runtime/
dex_instruction-inl.h 25 // VRegA
57 inline int32_t Instruction::VRegA() const {
dex_instruction.h 236 // VRegA
238 int32_t VRegA() const;
  /art/runtime/verifier/
method_verifier.cc 690 result = result && CheckRegisterIndex(inst->VRegA());
693 result = result && CheckWideRegisterIndex(inst->VRegA());
749 if (inst->GetVerifyExtraFlags() == Instruction::kVerifyVarArgNonZero && inst->VRegA() <= 0) {
750 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid arg count (" << inst->VRegA() << ") in "
756 result = result && CheckVarArgRegs(inst->VRegA(), args);
763 inst->VRegA() <= 0) {
764 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid arg count (" << inst->VRegA() << ") in "
768 result = result && CheckVarArgRangeRegs(inst->VRegA(), inst->VRegC());
    [all...]
  /art/compiler/sea_ir/ir/
sea.cc 648 return instruction_->VRegA();
668 int vA = instruction_->VRegA();
  /art/compiler/dex/
mir_graph.cc 143 decoded_instruction->vA = inst->HasVRegA() ? inst->VRegA() : 0;
    [all...]

Completed in 498 milliseconds