src/share/vm/c1/c1_LIRGenerator.hpp

Print this page

        

*** 20,29 **** --- 20,37 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_C1_C1_LIRGENERATOR_HPP + #define SHARE_VM_C1_C1_LIRGENERATOR_HPP + + #include "c1/c1_Instruction.hpp" + #include "c1/c1_LIR.hpp" + #include "ci/ciMethodData.hpp" + #include "utilities/sizes.hpp" + // The classes responsible for code emission and register allocation class LIRGenerator; class LIREmitter;
*** 594,598 **** --- 602,608 ---- jlong get_jlong_constant() const; jfloat get_jfloat_constant() const; jdouble get_jdouble_constant() const; jint get_address_constant() const; }; + + #endif // SHARE_VM_C1_C1_LIRGENERATOR_HPP