comparison src/share/vm/opto/parse.hpp @ 14452:c6d7e7406136

8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes Reviewed-by: dholmes, kvn Contributed-by: martin.doerr@sap.com
author goetz
date Thu, 16 Jan 2014 14:25:51 +0100
parents b2ee5dc63353
children abec000618bf
comparison
equal deleted inserted replaced
14451:b858620b0081 14452:c6d7e7406136
328 Block* _blocks; // Array of basic-block structs. 328 Block* _blocks; // Array of basic-block structs.
329 int _block_count; // Number of elements in _blocks. 329 int _block_count; // Number of elements in _blocks.
330 330
331 GraphKit _exits; // Record all normal returns and throws here. 331 GraphKit _exits; // Record all normal returns and throws here.
332 bool _wrote_final; // Did we write a final field? 332 bool _wrote_final; // Did we write a final field?
333 bool _count_invocations; // update and test invocation counter 333 bool _wrote_volatile; // Did we write a volatile field?
334 bool _count_invocations; // update and test invocation counter
334 bool _method_data_update; // update method data oop 335 bool _method_data_update; // update method data oop
335 Node* _alloc_with_final; // An allocation node with final field 336 Node* _alloc_with_final; // An allocation node with final field
336 337
337 // Variables which track Java semantics during bytecode parsing: 338 // Variables which track Java semantics during bytecode parsing:
338 339
371 int block_count() const { return _block_count; } 372 int block_count() const { return _block_count; }
372 373
373 GraphKit& exits() { return _exits; } 374 GraphKit& exits() { return _exits; }
374 bool wrote_final() const { return _wrote_final; } 375 bool wrote_final() const { return _wrote_final; }
375 void set_wrote_final(bool z) { _wrote_final = z; } 376 void set_wrote_final(bool z) { _wrote_final = z; }
377 bool wrote_volatile() const { return _wrote_volatile; }
378 void set_wrote_volatile(bool z) { _wrote_volatile = z; }
376 bool count_invocations() const { return _count_invocations; } 379 bool count_invocations() const { return _count_invocations; }
377 bool method_data_update() const { return _method_data_update; } 380 bool method_data_update() const { return _method_data_update; }
378 Node* alloc_with_final() const { return _alloc_with_final; } 381 Node* alloc_with_final() const { return _alloc_with_final; }
379 void set_alloc_with_final(Node* n) { 382 void set_alloc_with_final(Node* n) {
380 assert((_alloc_with_final == NULL) || (_alloc_with_final == n), "different init objects?"); 383 assert((_alloc_with_final == NULL) || (_alloc_with_final == n), "different init objects?");