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

  /art/compiler/optimizing/
code_generator_arm.cc 103 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.GetStackOffsetOf(index))
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...]
code_generator_x86.cc 102 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.GetStackOffsetOf(index))
375 InvokeDexCallingConvention calling_convention; local
387 InvokeDexCallingConvention calling_convention; local
406 InvokeDexCallingConvention calling_convention; local
956 InvokeRuntimeCallingConvention calling_convention; local
963 InvokeRuntimeCallingConvention calling_convention; local
1338 InvokeRuntimeCallingConvention calling_convention; local
    [all...]
code_generator_x86_64.cc 108 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));
888 InvokeRuntimeCallingConvention calling_convention; local
1180 InvokeRuntimeCallingConvention calling_convention; local
    [all...]
code_generator_arm.h 57 InvokeDexCallingConvention calling_convention; member in class:art::arm::InvokeDexCallingConventionVisitor
code_generator_x86.h 57 InvokeDexCallingConvention calling_convention; member in class:art::x86::InvokeDexCallingConventionVisitor
code_generator_x86_64.h 50 InvokeDexCallingConvention calling_convention; member in class:art::x86_64::InvokeDexCallingConventionVisitor
  /art/compiler/
Android.mk 83 jni/quick/calling_convention.cc \
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
PyrexTypes.py     [all...]
Parsing.py     [all...]
Nodes.py 462 # calling_convention string Calling convention of CFuncDeclaratorNode
467 calling_convention = "" variable in class:CDeclaratorNode
692 calling_convention = self.base.calling_convention,
711 current = func_type.calling_convention
715 func_type.calling_convention = callspec
    [all...]

Completed in 1045 milliseconds