src/share/vm/c1/c1_LinearScan.hpp

changeset 2314
f95d63e2154a
parent 2174
f02a8bbe6ed4
child 2404
7223744c2784
     1.1 --- a/src/share/vm/c1/c1_LinearScan.hpp	Tue Nov 23 15:01:43 2010 -0500
     1.2 +++ b/src/share/vm/c1/c1_LinearScan.hpp	Tue Nov 23 13:22:55 2010 -0800
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 2005, 2008, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -22,6 +22,16 @@
    1.11   *
    1.12   */
    1.13  
    1.14 +#ifndef SHARE_VM_C1_C1_LINEARSCAN_HPP
    1.15 +#define SHARE_VM_C1_C1_LINEARSCAN_HPP
    1.16 +
    1.17 +#include "c1/c1_FpuStackSim.hpp"
    1.18 +#include "c1/c1_FrameMap.hpp"
    1.19 +#include "c1/c1_IR.hpp"
    1.20 +#include "c1/c1_Instruction.hpp"
    1.21 +#include "c1/c1_LIR.hpp"
    1.22 +#include "c1/c1_LIRGenerator.hpp"
    1.23 +
    1.24  class DebugInfoCache;
    1.25  class FpuStackAllocator;
    1.26  class IRScopeDebugInfo;
    1.27 @@ -955,4 +965,12 @@
    1.28  
    1.29  
    1.30  // Pick up platform-dependent implementation details
    1.31 -# include "incls/_c1_LinearScan_pd.hpp.incl"
    1.32 +#ifdef TARGET_ARCH_x86
    1.33 +# include "c1_LinearScan_x86.hpp"
    1.34 +#endif
    1.35 +#ifdef TARGET_ARCH_sparc
    1.36 +# include "c1_LinearScan_sparc.hpp"
    1.37 +#endif
    1.38 +
    1.39 +
    1.40 +#endif // SHARE_VM_C1_C1_LINEARSCAN_HPP

mercurial