src/share/vm/opto/compile.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/opto/compile.hpp	Fri May 23 16:33:50 2014
--- new/src/share/vm/opto/compile.hpp	Fri May 23 16:33:50 2014

*** 428,440 **** --- 428,437 ---- // Expensive nodes list already sorted? bool expensive_nodes_sorted() const; // Remove the speculative part of types and clean up the graph void remove_speculative_types(PhaseIterGVN &igvn); // Are we within a PreserveJVMState block? int _preserve_jvm_state; void* _replay_inline_data; // Pointer to data loaded from file void print_inlining_init(); void print_inlining_reinit(); void print_inlining_commit();
*** 1194,1216 **** --- 1191,1198 ---- // Definitions of pd methods static void pd_compiler2_init(); // Auxiliary method for randomized fuzzing/stressing static bool randomized_select(int count); // enter a PreserveJVMState block void inc_preserve_jvm_state() { _preserve_jvm_state++; } // exit a PreserveJVMState block void dec_preserve_jvm_state() { _preserve_jvm_state--; assert(_preserve_jvm_state >= 0, "_preserve_jvm_state shouldn't be negative"); } bool has_preserve_jvm_state() const { return _preserve_jvm_state > 0; } }; #endif // SHARE_VM_OPTO_COMPILE_HPP

src/share/vm/opto/compile.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File