comparison src/share/vm/opto/macro.hpp @ 113:ba764ed4b6f2

6420645: Create a vm that uses compressed oops for up to 32gb heapsizes Summary: Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
author coleenp
date Sun, 13 Apr 2008 17:43:42 -0400
parents a8880a78d355
children d1605aabd0a1
comparison
equal deleted inserted replaced
110:a49a647afe9a 113:ba764ed4b6f2
108 Node*& needgc_false, Node*& contended_phi_rawmem, 108 Node*& needgc_false, Node*& contended_phi_rawmem,
109 Node* old_eden_top, Node* new_eden_top, 109 Node* old_eden_top, Node* new_eden_top,
110 Node* length); 110 Node* length);
111 111
112 public: 112 public:
113 PhaseMacroExpand(PhaseIterGVN &igvn) : Phase(Macro_Expand), _igvn(igvn) {} 113 PhaseMacroExpand(PhaseIterGVN &igvn) : Phase(Macro_Expand), _igvn(igvn) {
114 _igvn.set_delay_transform(true);
115 }
114 bool expand_macro_nodes(); 116 bool expand_macro_nodes();
115 117
116 }; 118 };