comparison src/share/vm/opto/matcher.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 ae065c367d93
children 2f644f85485d
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
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 24
25 #ifndef SHARE_VM_OPTO_MATCHER_HPP
26 #define SHARE_VM_OPTO_MATCHER_HPP
27
28 #include "libadt/vectset.hpp"
29 #include "memory/resourceArea.hpp"
30 #include "opto/node.hpp"
31 #include "opto/phaseX.hpp"
32 #include "opto/regmask.hpp"
33
25 class Compile; 34 class Compile;
26 class Node; 35 class Node;
27 class MachNode; 36 class MachNode;
28 class MachTypeNode; 37 class MachTypeNode;
29 class MachOper; 38 class MachOper;
445 Node* find_old_node(Node* new_node) { 454 Node* find_old_node(Node* new_node) {
446 return _new2old_map[new_node->_idx]; 455 return _new2old_map[new_node->_idx];
447 } 456 }
448 #endif 457 #endif
449 }; 458 };
459
460 #endif // SHARE_VM_OPTO_MATCHER_HPP