src/cpu/x86/vm/cppInterpreter_x86.cpp

changeset 1040
98cb887364d3
parent 955
52a431267315
child 1057
56aae7be60d4
     1.1 --- a/src/cpu/x86/vm/cppInterpreter_x86.cpp	Fri Feb 27 08:34:19 2009 -0800
     1.2 +++ b/src/cpu/x86/vm/cppInterpreter_x86.cpp	Fri Feb 27 13:27:09 2009 -0800
     1.3 @@ -523,7 +523,7 @@
     1.4  #ifdef _LP64
     1.5    // Make sure stack is properly aligned and sized for the abi
     1.6    __ subptr(rsp, frame::arg_reg_save_area_bytes); // windows
     1.7 -  __ andptr(rsp, -16); // must be 16 byte boundry (see amd64 ABI)
     1.8 +  __ andptr(rsp, -16); // must be 16 byte boundary (see amd64 ABI)
     1.9  #endif // _LP64
    1.10  
    1.11  
    1.12 @@ -970,7 +970,7 @@
    1.13  #ifdef _LP64
    1.14      // duplicate the alignment rsp got after setting stack_base
    1.15      __ subptr(rax, frame::arg_reg_save_area_bytes); // windows
    1.16 -    __ andptr(rax, -16); // must be 16 byte boundry (see amd64 ABI)
    1.17 +    __ andptr(rax, -16); // must be 16 byte boundary (see amd64 ABI)
    1.18  #endif // _LP64
    1.19      __ cmpptr(rax, rsp);
    1.20      __ jcc(Assembler::equal, L);
    1.21 @@ -1067,7 +1067,7 @@
    1.22  #ifdef _LP64
    1.23    __ subptr(rsp, t);
    1.24    __ subptr(rsp, frame::arg_reg_save_area_bytes); // windows
    1.25 -  __ andptr(rsp, -16); // must be 16 byte boundry (see amd64 ABI)
    1.26 +  __ andptr(rsp, -16); // must be 16 byte boundary (see amd64 ABI)
    1.27  #else
    1.28    __ addptr(t, 2*wordSize);     // allocate two more slots for JNIEnv and possible mirror
    1.29    __ subptr(rsp, t);

mercurial