comparison src/share/vm/c1/c1_IR.hpp @ 14704:b51e29501f30

Merged with jdk9/dev/hotspot changeset 9486a41de3b7
author twisti
date Tue, 18 Mar 2014 20:19:10 -0700
parents d8041d695d19 3edd4a71588b
children 92aa6797d639
comparison
equal deleted inserted replaced
14647:8f483e200405 14704:b51e29501f30
148 // graph 148 // graph
149 XHandlers* _xhandlers; // the exception handlers 149 XHandlers* _xhandlers; // the exception handlers
150 int _number_of_locks; // the number of monitor lock slots needed 150 int _number_of_locks; // the number of monitor lock slots needed
151 bool _monitor_pairing_ok; // the monitor pairing info 151 bool _monitor_pairing_ok; // the monitor pairing info
152 bool _wrote_final; // has written final field 152 bool _wrote_final; // has written final field
153 bool _wrote_fields; // has written fields
153 BlockBegin* _start; // the start block, successsors are method entries 154 BlockBegin* _start; // the start block, successsors are method entries
154 155
155 BitMap _requires_phi_function; // bit is set if phi functions at loop headers are necessary for a local variable 156 BitMap _requires_phi_function; // bit is set if phi functions at loop headers are necessary for a local variable
156 157
157 // helper functions 158 // helper functions
182 void set_min_number_of_locks(int n) { if (n > _number_of_locks) _number_of_locks = n; } 183 void set_min_number_of_locks(int n) { if (n > _number_of_locks) _number_of_locks = n; }
183 bool monitor_pairing_ok() const { return _monitor_pairing_ok; } 184 bool monitor_pairing_ok() const { return _monitor_pairing_ok; }
184 BlockBegin* start() const { return _start; } 185 BlockBegin* start() const { return _start; }
185 void set_wrote_final() { _wrote_final = true; } 186 void set_wrote_final() { _wrote_final = true; }
186 bool wrote_final () const { return _wrote_final; } 187 bool wrote_final () const { return _wrote_final; }
188 void set_wrote_fields() { _wrote_fields = true; }
189 bool wrote_fields () const { return _wrote_fields; }
190
187 }; 191 };
188 192
189 193
190 // 194 //
191 // IRScopeDebugInfo records the debug information for a particular IRScope 195 // IRScopeDebugInfo records the debug information for a particular IRScope