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

/art/compiler/optimizing/
H A Dcode_generator_arm.h41 RegisterPair GetRegisterPairAt(size_t argument_index) { argument
42 DCHECK_LT(argument_index + 1, GetNumberOfRegisters());
43 return kParameterCorePairRegisters[argument_index];
H A Dcode_generator_x86.h41 RegisterPair GetRegisterPairAt(size_t argument_index) { argument
42 DCHECK_LT(argument_index + 1, GetNumberOfRegisters());
43 return kParameterCorePairRegisters[argument_index];
H A Dbuilder.cc353 uint32_t argument_index = start_index; local
354 for (size_t i = start_index; i < number_of_vreg_arguments; i++, argument_index++) {
366 invoke->SetArgumentAt(argument_index, arg);
376 DCHECK_EQ(argument_index, number_of_arguments);
H A Dcode_generator_arm.cc398 uint32_t argument_index = source.GetQuickParameterIndex(); local
401 calling_convention.GetRegisterAt(argument_index));
403 Address(SP, calling_convention.GetStackOffsetOf(argument_index + 1) + GetFrameSize()));
416 uint32_t argument_index = destination.GetQuickParameterIndex(); local
418 __ Mov(calling_convention.GetRegisterAt(argument_index), source.AsArm().AsRegisterPairLow());
420 Address(SP, calling_convention.GetStackOffsetOf(argument_index + 1)));
423 __ ldr(calling_convention.GetRegisterAt(argument_index), Address(SP, source.GetStackIndex()));
425 __ str(R0, Address(SP, calling_convention.GetStackOffsetOf(argument_index + 1)));
439 uint32_t argument_index = source.GetQuickParameterIndex(); local
440 __ str(calling_convention.GetRegisterAt(argument_index),
[all...]
H A Dcode_generator_x86.cc374 uint32_t argument_index = source.GetQuickParameterIndex(); local
377 calling_convention.GetRegisterAt(argument_index));
379 calling_convention.GetStackOffsetOf(argument_index + 1) + GetFrameSize()));
388 uint32_t argument_index = destination.GetQuickParameterIndex(); local
390 __ movl(calling_convention.GetRegisterAt(argument_index), source.AsX86().AsRegisterPairLow());
391 __ movl(Address(ESP, calling_convention.GetStackOffsetOf(argument_index + 1)),
395 __ movl(calling_convention.GetRegisterAt(argument_index),
398 __ popl(Address(ESP, calling_convention.GetStackOffsetOf(argument_index + 1)));
407 uint32_t argument_index = source.GetQuickParameterIndex(); local
409 calling_convention.GetRegisterAt(argument_index));
[all...]

Completed in 527 milliseconds