Searched defs:vA (Results 1 - 3 of 3) sorted by relevance

/art/compiler/sea_ir/ir/
H A Dsea.cc668 int vA = instruction_->VRegA(); local
669 uses.push_back(vA);
/art/runtime/verifier/
H A Dmethod_verifier.cc1050 bool MethodVerifier::CheckVarArgRegs(uint32_t vA, uint32_t arg[]) { argument
1051 if (vA > Instruction::kMaxVarArgRegs) {
1052 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid arg count (" << vA << ") in non-range invoke)";
1056 for (uint32_t idx = 0; idx < vA; idx++) {
1067 bool MethodVerifier::CheckVarArgRangeRegs(uint32_t vA, uint32_t vC) { argument
1069 // vA/vC are unsigned 8-bit/16-bit quantities for /range instructions, so there's no risk of
1071 if (vA + vC > registers_size) {
1072 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid reg index " << vA << "+" << vC
1727 * If this instruction succeeds, we will "downcast" register vA to the type in vB. (This
1731 * dec_insn.vA whe
[all...]
/art/compiler/dex/
H A Dmir_graph.h275 uint32_t vA; member in struct:art::MIR::DecodedInstruction
282 explicit DecodedInstruction():vA(0), vB(0), vB_wide(0), vC(0), opcode(Instruction::NOP) {

Completed in 1024 milliseconds