< prev index next >

src/share/vm/c1/c1_LinearScan.hpp

Print this page




  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_C1_C1_LINEARSCAN_HPP
  26 #define SHARE_VM_C1_C1_LINEARSCAN_HPP
  27 
  28 #include "c1/c1_FpuStackSim.hpp"
  29 #include "c1/c1_FrameMap.hpp"
  30 #include "c1/c1_IR.hpp"
  31 #include "c1/c1_Instruction.hpp"
  32 #include "c1/c1_LIR.hpp"
  33 #include "c1/c1_LIRGenerator.hpp"

  34 #include "utilities/macros.hpp"
  35 
  36 class DebugInfoCache;
  37 class FpuStackAllocator;
  38 class IRScopeDebugInfo;
  39 class Interval;
  40 class IntervalWalker;
  41 class LIRGenerator;
  42 class LinearScan;
  43 class MoveResolver;
  44 class Range;
  45 
  46 typedef GrowableArray<Interval*> IntervalArray;
  47 typedef GrowableArray<Interval*> IntervalList;
  48 typedef GrowableArray<IntervalList*> IntervalsList;
  49 typedef GrowableArray<ScopeValue*> ScopeValueArray;
  50 typedef GrowableArray<LIR_OpList*> LIR_OpListStack;
  51 
  52 enum IntervalUseKind {
  53   // priority of use kinds must be ascending




  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_C1_C1_LINEARSCAN_HPP
  26 #define SHARE_VM_C1_C1_LINEARSCAN_HPP
  27 
  28 #include "c1/c1_FpuStackSim.hpp"
  29 #include "c1/c1_FrameMap.hpp"
  30 #include "c1/c1_IR.hpp"
  31 #include "c1/c1_Instruction.hpp"
  32 #include "c1/c1_LIR.hpp"
  33 #include "c1/c1_LIRGenerator.hpp"
  34 #include "utilities/align.hpp"
  35 #include "utilities/macros.hpp"
  36 
  37 class DebugInfoCache;
  38 class FpuStackAllocator;
  39 class IRScopeDebugInfo;
  40 class Interval;
  41 class IntervalWalker;
  42 class LIRGenerator;
  43 class LinearScan;
  44 class MoveResolver;
  45 class Range;
  46 
  47 typedef GrowableArray<Interval*> IntervalArray;
  48 typedef GrowableArray<Interval*> IntervalList;
  49 typedef GrowableArray<IntervalList*> IntervalsList;
  50 typedef GrowableArray<ScopeValue*> ScopeValueArray;
  51 typedef GrowableArray<LIR_OpList*> LIR_OpListStack;
  52 
  53 enum IntervalUseKind {
  54   // priority of use kinds must be ascending


< prev index next >