src/share/vm/c1/c1_GraphBuilder.hpp

changeset 5987
5ccbab1c69f3
parent 5921
ce0cc25bc5e2
child 6198
55fb97c4c58d
     1.1 --- a/src/share/vm/c1/c1_GraphBuilder.hpp	Mon Oct 21 17:34:27 2013 -0700
     1.2 +++ b/src/share/vm/c1/c1_GraphBuilder.hpp	Tue Oct 22 09:51:47 2013 +0200
     1.3 @@ -386,9 +386,12 @@
     1.4    bool profile_calls()         { return _compilation->profile_calls();         }
     1.5    bool profile_inlined_calls() { return _compilation->profile_inlined_calls(); }
     1.6    bool profile_checkcasts()    { return _compilation->profile_checkcasts();    }
     1.7 +  bool profile_parameters()    { return _compilation->profile_parameters();    }
     1.8 +  bool profile_arguments()     { return _compilation->profile_arguments();     }
     1.9 +  bool profile_return()        { return _compilation->profile_return();        }
    1.10  
    1.11 -  Values* args_list_for_profiling(int& start, bool may_have_receiver);
    1.12 -  Values* collect_args_for_profiling(Values* args, bool may_have_receiver);
    1.13 +  Values* args_list_for_profiling(ciMethod* target, int& start, bool may_have_receiver);
    1.14 +  Values* collect_args_for_profiling(Values* args, ciMethod* target, bool may_have_receiver);
    1.15  
    1.16   public:
    1.17    NOT_PRODUCT(void print_stats();)

mercurial