src/share/vm/opto/macro.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 8031320_9 Cdiff src/share/vm/opto/macro.hpp

src/share/vm/opto/macro.hpp

Print this page

        

*** 115,126 **** Node* prefetch_allocation(Node* i_o, Node*& needgc_false, Node*& contended_phi_rawmem, Node* old_eden_top, Node* new_eden_top, Node* length); public: ! PhaseMacroExpand(PhaseIterGVN &igvn) : Phase(Macro_Expand), _igvn(igvn) { _igvn.set_delay_transform(true); } void eliminate_macro_nodes(); bool expand_macro_nodes(); --- 115,129 ---- Node* prefetch_allocation(Node* i_o, Node*& needgc_false, Node*& contended_phi_rawmem, Node* old_eden_top, Node* new_eden_top, Node* length); + // Additional data collected during macro expansion + bool _has_locks; + public: ! PhaseMacroExpand(PhaseIterGVN &igvn) : Phase(Macro_Expand), _igvn(igvn), _has_locks(false) { _igvn.set_delay_transform(true); } void eliminate_macro_nodes(); bool expand_macro_nodes();
src/share/vm/opto/macro.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File