HomeSort by relevance Sort by last modified time
    Searched full:argument_index (Results 1 - 8 of 8) 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/third_party/WebKit/Source/bindings/templates/
methods.cpp 268 {% set argument_index = '1' if interface_name == 'EventTarget' else '0' %}
271 if (info.Length() >= {{argument_index}} + 1 && listener && !impl->toNode())
272 {{hidden_dependency_action}}(info.Holder(), info[{{argument_index}}], {{v8_class}}::eventListenerCacheIndex, info.GetIsolate());
  /external/chromium_org/v8/src/
lithium.cc 553 int argument_index = *argument_index_accumulator; local
586 *argument_index_accumulator = argument_index;
  /external/chromium_org/tools/grit/grit/tool/
android2grd.py 36 '([1-9][0-9]*\$|<)?' # argument_index

Completed in 870 milliseconds