src/share/vm/c1/c1_IR.hpp

Print this page

        

*** 147,156 **** --- 147,157 ---- // graph XHandlers* _xhandlers; // the exception handlers int _number_of_locks; // the number of monitor lock slots needed bool _monitor_pairing_ok; // the monitor pairing info + bool _wrote_final; // has written final field BlockBegin* _start; // the start block, successsors are method entries BitMap _requires_phi_function; // bit is set if phi functions at loop headers are necessary for a local variable // helper functions
*** 179,188 **** --- 180,191 ---- XHandlers* xhandlers() const { return _xhandlers; } int number_of_locks() const { return _number_of_locks; } void set_min_number_of_locks(int n) { if (n > _number_of_locks) _number_of_locks = n; } bool monitor_pairing_ok() const { return _monitor_pairing_ok; } BlockBegin* start() const { return _start; } + void set_wrote_final() { _wrote_final = true; } + bool wrote_final () const { return _wrote_final; } }; // // IRScopeDebugInfo records the debug information for a particular IRScope