Searched defs:vC (Results 1 - 5 of 5) sorted by relevance

/art/compiler/dex/quick/
H A Dmir_to_lir.cc386 uint32_t vC = mir->dalvikInsn.vC; local
533 GenInstanceof(vC, rl_dest, rl_src[0]);
579 GenNewArray(vC, rl_dest, rl_src[0]);
1044 GenArithOpIntLit(opcode, rl_dest, rl_src[0], vC);
/art/compiler/sea_ir/ir/
H A Dsea.cc676 int vC = instruction_->VRegC(); local
677 uses.push_back(vC);
/art/compiler/dex/portable/
H A Dmir_to_gbc.cc711 uint32_t vC = mir->dalvikInsn.vC; local
1049 ConvertArithOpLit(kOpAdd, rl_dest, rl_src[0], vC);
1053 ConvertArithOpLit(kOpRsub, rl_dest, rl_src[0], vC);
1057 ConvertArithOpLit(kOpMul, rl_dest, rl_src[0], vC);
1061 ConvertArithOpLit(kOpDiv, rl_dest, rl_src[0], vC);
1065 ConvertArithOpLit(kOpRem, rl_dest, rl_src[0], vC);
1069 ConvertArithOpLit(kOpAnd, rl_dest, rl_src[0], vC);
1073 ConvertArithOpLit(kOpOr, rl_dest, rl_src[0], vC);
1077 ConvertArithOpLit(kOpXor, rl_dest, rl_src[0], vC);
[all...]
/art/runtime/verifier/
H A Dmethod_verifier.cc1067 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
/art/compiler/dex/
H A Dmir_graph.h278 uint32_t vC; member in struct:art::MIR::DecodedInstruction
279 uint32_t arg[5]; /* vC/D/E/F/G in invoke or filled-new-array */
282 explicit DecodedInstruction():vA(0), vB(0), vB_wide(0), vC(0), opcode(Instruction::NOP) {

Completed in 8307 milliseconds