Lines Matching refs:arg

33   uint32_t arg[Instruction::kMaxVarArgRegs] = {};                   \
34 inst->GetVarArgs(arg, inst_data); \
40 BINARY_INTRINSIC(name, op, GetVReg(arg[0]), GetVReg(arg[1]), set)
43 BINARY_INTRINSIC(name, op, GetVRegLong(arg[0]), GetVRegLong(arg[2]), set)
46 BINARY_INTRINSIC(name, op, GetVRegLong(arg[0]), GetVReg(arg[2]), set)
54 uint32_t arg[Instruction::kMaxVarArgRegs] = {}; \
55 inst->GetVarArgs(arg, inst_data); \
56 result_register->set(op(shadow_frame->get(arg[0]))); \
187 uint32_t arg[Instruction::kMaxVarArgRegs] = {}; in MterpStringCharAt() local
188 inst->GetVarArgs(arg, inst_data); in MterpStringCharAt()
189 ObjPtr<mirror::String> str = shadow_frame->GetVRegReference(arg[0])->AsString(); in MterpStringCharAt()
191 int index = shadow_frame->GetVReg(arg[1]); in MterpStringCharAt()
211 uint32_t arg[Instruction::kMaxVarArgRegs] = {}; in MterpStringCompareTo() local
212 inst->GetVarArgs(arg, inst_data); in MterpStringCompareTo()
213 ObjPtr<mirror::String> str = shadow_frame->GetVRegReference(arg[0])->AsString(); in MterpStringCompareTo()
214 ObjPtr<mirror::Object> arg1 = shadow_frame->GetVRegReference(arg[1]); in MterpStringCompareTo()
228 uint32_t arg[Instruction::kMaxVarArgRegs] = {}; \
229 inst->GetVarArgs(arg, inst_data); \
230 ObjPtr<mirror::String> str = shadow_frame->GetVRegReference(arg[0])->AsString(); \
231 int ch = shadow_frame->GetVReg(arg[1]); \
244 STRING_INDEXOF_INTRINSIC(StringIndexOfAfter, shadow_frame->GetVReg(arg[2]));
252 uint32_t arg[Instruction::kMaxVarArgRegs] = {}; \
253 inst->GetVarArgs(arg, inst_data); \
254 ObjPtr<mirror::String> str = shadow_frame->GetVRegReference(arg[0])->AsString(); \
272 uint32_t arg[Instruction::kMaxVarArgRegs] = {}; in MterpStringGetCharsNoCheck() local
273 inst->GetVarArgs(arg, inst_data); in MterpStringGetCharsNoCheck()
274 ObjPtr<mirror::String> str = shadow_frame->GetVRegReference(arg[0])->AsString(); in MterpStringGetCharsNoCheck()
275 int32_t start = shadow_frame->GetVReg(arg[1]); in MterpStringGetCharsNoCheck()
276 int32_t end = shadow_frame->GetVReg(arg[2]); in MterpStringGetCharsNoCheck()
277 int32_t index = shadow_frame->GetVReg(arg[4]); in MterpStringGetCharsNoCheck()
278 ObjPtr<mirror::CharArray> array = shadow_frame->GetVRegReference(arg[3])->AsCharArray(); in MterpStringGetCharsNoCheck()
299 uint32_t arg[Instruction::kMaxVarArgRegs] = {}; in MterpStringEquals() local
300 inst->GetVarArgs(arg, inst_data); in MterpStringEquals()
301 ObjPtr<mirror::String> str = shadow_frame->GetVRegReference(arg[0])->AsString(); in MterpStringEquals()
302 ObjPtr<mirror::Object> obj = shadow_frame->GetVRegReference(arg[1]); in MterpStringEquals()