src/share/vm/c1/c1_GraphBuilder.hpp

changeset 4860
46f6f063b272
parent 4164
d804e148cff8
child 5914
d13d7aba8c12
     1.1 --- a/src/share/vm/c1/c1_GraphBuilder.hpp	Wed Mar 20 17:04:45 2013 -0700
     1.2 +++ b/src/share/vm/c1/c1_GraphBuilder.hpp	Thu Mar 21 09:27:54 2013 +0100
     1.3 @@ -301,6 +301,8 @@
     1.4    ValueStack* copy_state_exhandling();
     1.5    ValueStack* copy_state_for_exception_with_bci(int bci);
     1.6    ValueStack* copy_state_for_exception();
     1.7 +  ValueStack* copy_state_if_bb(bool is_bb) { return (is_bb || compilation()->is_optimistic()) ? copy_state_before() : NULL; }
     1.8 +  ValueStack* copy_state_indexed_access() { return compilation()->is_optimistic() ? copy_state_before() : copy_state_for_exception(); }
     1.9  
    1.10    //
    1.11    // Inlining support

mercurial