src/share/vm/c1/c1_ValueMap.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_VALUEMAP_HPP + #define SHARE_VM_C1_C1_VALUEMAP_HPP + + #include "c1/c1_Instruction.hpp" + #include "c1/c1_ValueSet.hpp" + #include "memory/allocation.hpp" + class ValueMapEntry: public CompilationResourceObj { private: intx _hash; Value _value; int _nesting;
*** 224,228 **** --- 231,237 ---- void kill_array(ValueType* type) { current_map()->kill_array(type); } // main entry point that performs global value numbering GlobalValueNumbering(IR* ir); }; + + #endif // SHARE_VM_C1_C1_VALUEMAP_HPP