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

/art/compiler/optimizing/
H A Dcode_generator_arm.h57 InvokeDexCallingConvention calling_convention; member in class:art::arm::InvokeDexCallingConventionVisitor
H A Dcode_generator_x86.h57 InvokeDexCallingConvention calling_convention; member in class:art::x86::InvokeDexCallingConventionVisitor
H A Dcode_generator_x86_64.h50 InvokeDexCallingConvention calling_convention; member in class:art::x86_64::InvokeDexCallingConventionVisitor
H A Dcode_generator_arm.cc103 InvokeRuntimeCallingConvention calling_convention; variable
104 arm_codegen->Move32(ArmCoreLocation(calling_convention.GetRegisterAt(0)), index_location_);
105 arm_codegen->Move32(ArmCoreLocation(calling_convention.GetRegisterAt(1)), length_location_);
336 if (index < calling_convention.GetNumberOfRegisters()) {
337 return ArmCoreLocation(calling_convention.GetRegisterAt(index));
339 return Location::StackSlot(calling_convention.GetStackOffsetOf(index));
346 if (index + 1 < calling_convention.GetNumberOfRegisters()) {
348 calling_convention.GetRegisterPairAt(index)));
349 } else if (index + 1 == calling_convention.GetNumberOfRegisters()) {
352 return Location::DoubleStackSlot(calling_convention
399 InvokeDexCallingConvention calling_convention; local
415 InvokeDexCallingConvention calling_convention; local
438 InvokeDexCallingConvention calling_convention; local
990 InvokeRuntimeCallingConvention calling_convention; local
998 InvokeRuntimeCallingConvention calling_convention; local
1346 InvokeRuntimeCallingConvention calling_convention; local
[all...]
H A Dcode_generator_x86.cc102 InvokeRuntimeCallingConvention calling_convention; variable
103 x86_codegen->Move32(X86CpuLocation(calling_convention.GetRegisterAt(0)), index_location_);
104 x86_codegen->Move32(X86CpuLocation(calling_convention.GetRegisterAt(1)), length_location_);
311 if (index < calling_convention.GetNumberOfRegisters()) {
312 return X86CpuLocation(calling_convention.GetRegisterAt(index));
314 return Location::StackSlot(calling_convention.GetStackOffsetOf(index));
321 if (index + 1 < calling_convention.GetNumberOfRegisters()) {
323 calling_convention.GetRegisterPairAt(index)));
324 } else if (index + 1 == calling_convention.GetNumberOfRegisters()) {
327 return Location::DoubleStackSlot(calling_convention
375 InvokeDexCallingConvention calling_convention; local
387 InvokeDexCallingConvention calling_convention; local
406 InvokeDexCallingConvention calling_convention; local
955 InvokeRuntimeCallingConvention calling_convention; local
962 InvokeRuntimeCallingConvention calling_convention; local
1337 InvokeRuntimeCallingConvention calling_convention; local
[all...]
H A Dcode_generator_x86_64.cc108 InvokeRuntimeCallingConvention calling_convention; variable
109 x64_codegen->Move(X86_64CpuLocation(calling_convention.GetRegisterAt(0)), index_location_);
110 x64_codegen->Move(X86_64CpuLocation(calling_convention.GetRegisterAt(1)), length_location_);
656 if (index < calling_convention.GetNumberOfRegisters()) {
657 return X86_64CpuLocation(calling_convention.GetRegisterAt(index));
659 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 1));
666 if (index < calling_convention.GetNumberOfRegisters()) {
668 return X86_64CpuLocation(calling_convention.GetRegisterAt(index));
671 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index_ - 2));
887 InvokeRuntimeCallingConvention calling_convention; local
1179 InvokeRuntimeCallingConvention calling_convention; local
[all...]

Completed in 41 milliseconds