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

  /art/runtime/interpreter/
interpreter_goto_table_impl.cc     [all...]
interpreter_switch_impl.cc     [all...]
interpreter_common.cc 58 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data);
61 shadow_frame.SetVReg(vregA, f->GetBoolean(obj));
64 shadow_frame.SetVReg(vregA, f->GetByte(obj));
67 shadow_frame.SetVReg(vregA, f->GetChar(obj));
70 shadow_frame.SetVReg(vregA, f->GetShort(obj));
73 shadow_frame.SetVReg(vregA, f->GetInt(obj));
76 shadow_frame.SetVRegLong(vregA, f->GetLong(obj));
79 shadow_frame.SetVRegReference(vregA, f->GetObject(obj));
143 const uint32_t vregA = inst->VRegA_22c(inst_data);
146 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetField32(field_offset)))
    [all...]
  /art/runtime/verifier/
register_line.cc 357 const uint32_t vregA = inst->VRegA_12x();
359 if (VerifyRegisterType(vregA, src_type1) &&
363 if (GetRegisterType(vregA).IsBooleanTypes() &&
365 SetRegisterType(vregA, verifier_->GetRegTypeCache()->Boolean());
369 SetRegisterType(vregA, dst_type);
377 const uint32_t vregA = inst->VRegA_12x();
379 if (VerifyRegisterTypeWide(vregA, src_type1_1, src_type1_2) &&
381 SetRegisterTypeWide(vregA, dst_type1, dst_type2);
388 const uint32_t vregA = inst->VRegA_12x();
390 if (VerifyRegisterTypeWide(vregA, long_lo_type, long_hi_type) &
    [all...]
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...]
method_verifier.h 489 const uint32_t vregA) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);

Completed in 69 milliseconds