Searched refs:StackAlignmentInBytes (Results 1 - 16 of 16) sorted by relevance

/openjdk7/hotspot/src/cpu/x86/vm/
H A DglobalDefinitions_x86.hpp28 const int StackAlignmentInBytes = 16; variable
H A DsharedRuntime_x86_64.cpp46 const int StackAlignmentInSlots = StackAlignmentInBytes / VMRegImpl::stack_slot_size;
466 __ andptr(rsp, -(StackAlignmentInBytes));
3570 __ andptr(rsp, -(StackAlignmentInBytes)); // Fix stack alignment as required by ABI
3756 __ andptr(rsp, -(StackAlignmentInBytes)); // Align SP as required by ABI
4030 __ andptr(rsp, -(StackAlignmentInBytes)); // Align stack
H A DtemplateInterpreter_x86_32.cpp996 __ andptr(rsp, -(StackAlignmentInBytes)); // gcc needs 16 byte aligned stacks to do XMM intrinsics
H A DsharedRuntime_x86_32.cpp46 const int StackAlignmentInSlots = StackAlignmentInBytes / VMRegImpl::stack_slot_size;
793 __ andptr(rsp, -(StackAlignmentInBytes));
H A Dc1_Runtime1_x86.cpp75 andptr(rsp, -(StackAlignmentInBytes)); // Align stack
H A DcppInterpreter_x86.cpp1123 __ andptr(rsp, -(StackAlignmentInBytes)); // gcc needs 16 byte aligned stacks to do XMM intrinsics
H A DstubGenerator_x86_32.cpp174 __ andptr(rsp, -(StackAlignmentInBytes)); // Align stack
H A DstubGenerator_x86_64.cpp3677 __ andptr(rsp, -(StackAlignmentInBytes)); // Align stack
H A DtemplateTable_x86_32.cpp1757 __ andptr(rsp, -(StackAlignmentInBytes));
H A DtemplateTable_x86_64.cpp1795 __ andptr(rsp, -(StackAlignmentInBytes));
H A Dassembler_x86.cpp10498 assert((framesize & (StackAlignmentInBytes-1)) == 0, "frame size not aligned");
10549 andptr(rax, StackAlignmentInBytes-1);
10550 cmpptr(rax, StackAlignmentInBytes-wordSize);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DglobalDefinitions_sparc.hpp31 const int StackAlignmentInBytes = (2*wordSize); variable
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_FrameMap.cpp210 StackAlignmentInBytes) / 4;
/openjdk7/hotspot/src/os_cpu/windows_x86/vm/
H A Dos_windows_x86.cpp567 assert(((intptr_t)os::current_stack_pointer() & (StackAlignmentInBytes-1)) == 0, "incorrect stack alignment");
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dos_linux_x86.cpp868 assert(((intptr_t)os::current_stack_pointer() & (StackAlignmentInBytes-1)) == 0, "incorrect stack alignment");
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dos_solaris_x86.cpp943 assert(((intptr_t)os::current_stack_pointer() & (StackAlignmentInBytes-1)) == 0, "incorrect stack alignment");

Completed in 362 milliseconds