src/share/vm/c1/c1_FrameMap.hpp

changeset 2314
f95d63e2154a
parent 2036
126ea7725993
child 2344
ac637b7220d1
     1.1 --- a/src/share/vm/c1/c1_FrameMap.hpp	Tue Nov 23 15:01:43 2010 -0500
     1.2 +++ b/src/share/vm/c1/c1_FrameMap.hpp	Tue Nov 23 13:22:55 2010 -0800
     1.3 @@ -22,6 +22,18 @@
     1.4   *
     1.5   */
     1.6  
     1.7 +#ifndef SHARE_VM_C1_C1_FRAMEMAP_HPP
     1.8 +#define SHARE_VM_C1_C1_FRAMEMAP_HPP
     1.9 +
    1.10 +#include "asm/assembler.hpp"
    1.11 +#include "c1/c1_Defs.hpp"
    1.12 +#include "c1/c1_LIR.hpp"
    1.13 +#include "code/vmreg.hpp"
    1.14 +#include "memory/allocation.hpp"
    1.15 +#include "runtime/frame.hpp"
    1.16 +#include "runtime/synchronizer.hpp"
    1.17 +#include "utilities/globalDefinitions.hpp"
    1.18 +
    1.19  class ciMethod;
    1.20  class CallingConvention;
    1.21  class BasicTypeArray;
    1.22 @@ -70,7 +82,13 @@
    1.23      spill_slot_size_in_bytes = 4
    1.24    };
    1.25  
    1.26 -# include "incls/_c1_FrameMap_pd.hpp.incl"  // platform dependent declarations
    1.27 +#ifdef TARGET_ARCH_x86
    1.28 +# include "c1_FrameMap_x86.hpp"
    1.29 +#endif
    1.30 +#ifdef TARGET_ARCH_sparc
    1.31 +# include "c1_FrameMap_sparc.hpp"
    1.32 +#endif
    1.33 +
    1.34  
    1.35    friend class LIR_OprDesc;
    1.36  
    1.37 @@ -266,3 +284,5 @@
    1.38    }
    1.39  #endif // PRODUCT
    1.40  };
    1.41 +
    1.42 +#endif // SHARE_VM_C1_C1_FRAMEMAP_HPP

mercurial