comparison src/share/vm/c1/c1_LIRGenerator.hpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents d5d065957597
children 403dc4c1d7f5
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 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 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 * 22 *
23 */ 23 */
24
25 #ifndef SHARE_VM_C1_C1_LIRGENERATOR_HPP
26 #define SHARE_VM_C1_C1_LIRGENERATOR_HPP
27
28 #include "c1/c1_Instruction.hpp"
29 #include "c1/c1_LIR.hpp"
30 #include "ci/ciMethodData.hpp"
31 #include "utilities/sizes.hpp"
24 32
25 // The classes responsible for code emission and register allocation 33 // The classes responsible for code emission and register allocation
26 34
27 35
28 class LIRGenerator; 36 class LIRGenerator;
594 jlong get_jlong_constant() const; 602 jlong get_jlong_constant() const;
595 jfloat get_jfloat_constant() const; 603 jfloat get_jfloat_constant() const;
596 jdouble get_jdouble_constant() const; 604 jdouble get_jdouble_constant() const;
597 jint get_address_constant() const; 605 jint get_address_constant() const;
598 }; 606 };
607
608 #endif // SHARE_VM_C1_C1_LIRGENERATOR_HPP