hotspot/src/share/vm/c1/c1_LinearScan.hpp
changeset 36302 23a79c43ba92
parent 29180 50369728b00e
child 38031 e0b822facc03
equal deleted inserted replaced
36301:cb578d8c6cba 36302:23a79c43ba92
     1 /*
     1 /*
     2  * Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2005, 2016, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    40 class LIRGenerator;
    40 class LIRGenerator;
    41 class LinearScan;
    41 class LinearScan;
    42 class MoveResolver;
    42 class MoveResolver;
    43 class Range;
    43 class Range;
    44 
    44 
    45 define_array(IntervalArray, Interval*)
    45 typedef GrowableArray<Interval*> IntervalArray;
    46 define_stack(IntervalList, IntervalArray)
    46 typedef GrowableArray<Interval*> IntervalList;
    47 
    47 
    48 define_array(IntervalsArray, IntervalList*)
    48 define_array(IntervalsArray, IntervalList*)
    49 define_stack(IntervalsList, IntervalsArray)
    49 define_stack(IntervalsList, IntervalsArray)
    50 
    50 
    51 define_array(OopMapArray, OopMap*)
    51 define_array(OopMapArray, OopMap*)