src/cpu/x86/vm/c1_FrameMap_x86.hpp

Print this page

        

@@ -20,10 +20,13 @@
  * or visit www.oracle.com if you need additional information or have any
  * questions.
  *
  */
 
+#ifndef CPU_X86_VM_C1_FRAMEMAP_X86_HPP
+#define CPU_X86_VM_C1_FRAMEMAP_X86_HPP
+
 //  On i486 the frame looks as follows:
 //
 //  +-----------------------------+---------+----------------------------------------+----------------+-----------
 //  | size_arguments-nof_reg_args | 2 words | size_locals-size_arguments+numreg_args | _size_monitors | spilling .
 //  +-----------------------------+---------+----------------------------------------+----------------+-----------

@@ -124,5 +127,7 @@
 
   static LIR_Opr caller_save_xmm_reg_at(int i) {
     assert(i >= 0 && i < nof_caller_save_xmm_regs, "out of bounds");
     return _caller_save_xmm_regs[i];
   }
+
+#endif // CPU_X86_VM_C1_FRAMEMAP_X86_HPP