Searched defs:vregC (Results 1 - 6 of 6) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/program/mutators/
H A DRandomInstructionGenerator.java54 public int vregC; field in class:RandomInstructionGenerator.AssociatedMutation
70 vregC,
88 vregC = Integer.parseInt(elements[12]);
181 mutation.vregC = rng.nextInt(mutatableCode.registersSize);
237 newInsn.insn.vregC = mutation.vregC;
/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DInstruction.java81 public long vregC = 0; field in class:Instruction
103 newInsn.vregC = vregC;
133 vregC = info.format.getC(rawBytes);
242 vregs = "v" + vregC + vregs;
261 vregs = ", v" + vregC;
/art/runtime/interpreter/
H A Dinterpreter_common.h126 const uint32_t vregC = inst->VRegC_35c(); local
129 : shadow_frame.GetVRegReference(vregC);
169 const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c(); local
170 ObjPtr<mirror::Object> receiver = (type == kStatic) ? nullptr : shadow_frame.GetVRegReference(vregC);
226 const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c(); local
227 ObjPtr<mirror::Object> const receiver = shadow_frame.GetVRegReference(vregC);
H A Dinterpreter_common.cc447 uint32_t vregC) REQUIRES_SHARED(Locks::mutator_lock_);
910 uint32_t vregC) {
944 uint32_t string_init_vreg_this = is_range ? vregC : arg[0];
962 vregC++; // Skips the 0th vreg in the range ("this").
1005 size_t receiver_reg = is_range ? vregC : arg[0];
1016 const size_t src_reg = (is_range) ? vregC + arg_offset : arg[arg_offset];
1074 vregC,
1099 uint32_t vregC = 0; local
1101 vregC = inst->VRegC_3rc();
1103 vregC
904 DoCallCommon(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame, JValue* result, uint16_t number_of_inputs, uint32_t (&arg)[Instruction::kMaxVarArgRegs], uint32_t vregC) argument
1163 uint32_t vregC = 0; // only used in filled-new-array-range. local
[all...]
/art/runtime/interpreter/mterp/
H A Dmterp.cc271 const uint32_t vregC = inst->VRegC_35c(); local
273 ObjPtr<mirror::Object> const receiver = shadow_frame->GetVRegReference(vregC);
/art/runtime/verifier/
H A Dregister_line.cc232 const uint32_t vregC = inst->VRegC_23x(); local
234 VerifyRegisterType(verifier, vregC, src_type2)) {
238 GetRegisterType(verifier, vregC).IsBooleanTypes()) {

Completed in 160 milliseconds