src/share/vm/c1/c1_InstructionPrinter.hpp

Print this page

        

*** 20,29 **** --- 20,36 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_C1_C1_INSTRUCTIONPRINTER_HPP + #define SHARE_VM_C1_C1_INSTRUCTIONPRINTER_HPP + + #include "c1/c1_IR.hpp" + #include "c1/c1_Instruction.hpp" + #include "c1/c1_Runtime1.hpp" + #ifndef PRODUCT class InstructionPrinter: public InstructionVisitor { private: outputStream* _output; bool _print_phis;
*** 124,128 **** --- 131,137 ---- virtual void do_UnsafePrefetchWrite(UnsafePrefetchWrite* x); virtual void do_ProfileCall (ProfileCall* x); virtual void do_ProfileInvoke (ProfileInvoke* x); }; #endif // PRODUCT + + #endif // SHARE_VM_C1_C1_INSTRUCTIONPRINTER_HPP