comparison src/share/vm/c1/c1_ValueMap.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_VALUEMAP_HPP
26 #define SHARE_VM_C1_C1_VALUEMAP_HPP
27
28 #include "c1/c1_Instruction.hpp"
29 #include "c1/c1_ValueSet.hpp"
30 #include "memory/allocation.hpp"
24 31
25 class ValueMapEntry: public CompilationResourceObj { 32 class ValueMapEntry: public CompilationResourceObj {
26 private: 33 private:
27 intx _hash; 34 intx _hash;
28 Value _value; 35 Value _value;
224 void kill_array(ValueType* type) { current_map()->kill_array(type); } 231 void kill_array(ValueType* type) { current_map()->kill_array(type); }
225 232
226 // main entry point that performs global value numbering 233 // main entry point that performs global value numbering
227 GlobalValueNumbering(IR* ir); 234 GlobalValueNumbering(IR* ir);
228 }; 235 };
236
237 #endif // SHARE_VM_C1_C1_VALUEMAP_HPP