src/share/vm/c1/c1_LIRAssembler.hpp

changeset 2314
f95d63e2154a
parent 2146
3a294e483abc
child 2344
ac637b7220d1
     1.1 --- a/src/share/vm/c1/c1_LIRAssembler.hpp	Tue Nov 23 15:01:43 2010 -0500
     1.2 +++ b/src/share/vm/c1/c1_LIRAssembler.hpp	Tue Nov 23 13:22:55 2010 -0800
     1.3 @@ -22,6 +22,14 @@
     1.4   *
     1.5   */
     1.6  
     1.7 +#ifndef SHARE_VM_C1_C1_LIRASSEMBLER_HPP
     1.8 +#define SHARE_VM_C1_C1_LIRASSEMBLER_HPP
     1.9 +
    1.10 +#include "c1/c1_CodeStubs.hpp"
    1.11 +#include "ci/ciMethodData.hpp"
    1.12 +#include "oops/methodDataOop.hpp"
    1.13 +#include "utilities/top.hpp"
    1.14 +
    1.15  class Compilation;
    1.16  class ScopeValue;
    1.17  class BarrierSet;
    1.18 @@ -236,5 +244,13 @@
    1.19  
    1.20    void verify_oop_map(CodeEmitInfo* info);
    1.21  
    1.22 -  #include "incls/_c1_LIRAssembler_pd.hpp.incl"
    1.23 +#ifdef TARGET_ARCH_x86
    1.24 +# include "c1_LIRAssembler_x86.hpp"
    1.25 +#endif
    1.26 +#ifdef TARGET_ARCH_sparc
    1.27 +# include "c1_LIRAssembler_sparc.hpp"
    1.28 +#endif
    1.29 +
    1.30  };
    1.31 +
    1.32 +#endif // SHARE_VM_C1_C1_LIRASSEMBLER_HPP

mercurial