HomeSort by relevance Sort by last modified time
    Searched refs:argument_index (Results 1 - 6 of 6) sorted by null

  /art/compiler/optimizing/
code_generator_arm.h 41 RegisterPair GetRegisterPairAt(size_t argument_index) {
42 DCHECK_LT(argument_index + 1, GetNumberOfRegisters());
43 return kParameterCorePairRegisters[argument_index];
code_generator_x86.h 41 RegisterPair GetRegisterPairAt(size_t argument_index) {
42 DCHECK_LT(argument_index + 1, GetNumberOfRegisters());
43 return kParameterCorePairRegisters[argument_index];
code_generator_arm.cc 398 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...]
code_generator_x86.cc 374 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...]
builder.cc 353 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);
  /external/chromium_org/v8/src/
lithium.cc 506 int argument_index = *argument_index_accumulator; local
537 *argument_index_accumulator = argument_index;

Completed in 81 milliseconds