src/share/vm/opto/compile.cpp

changeset 4448
5b8548391bf3
parent 4409
d092d1b31229
child 4589
8b3da8d14c93
     1.1 --- a/src/share/vm/opto/compile.cpp	Tue Jan 15 12:06:18 2013 -0800
     1.2 +++ b/src/share/vm/opto/compile.cpp	Tue Jan 15 14:45:12 2013 -0800
     1.3 @@ -692,7 +692,7 @@
     1.4    PhaseGVN gvn(node_arena(), estimated_size);
     1.5    set_initial_gvn(&gvn);
     1.6  
     1.7 -  if (PrintInlining) {
     1.8 +  if (PrintInlining  || PrintIntrinsics NOT_PRODUCT( || PrintOptoInlining)) {
     1.9      _print_inlining_list = new (comp_arena())GrowableArray<PrintInliningBuffer>(comp_arena(), 1, 1, PrintInliningBuffer());
    1.10    }
    1.11    { // Scope for timing the parser
    1.12 @@ -2049,7 +2049,7 @@
    1.13  
    1.14   } // (End scope of igvn; run destructor if necessary for asserts.)
    1.15  
    1.16 - dump_inlining();
    1.17 +  dump_inlining();
    1.18    // A method with only infinite loops has no edges entering loops from root
    1.19    {
    1.20      NOT_PRODUCT( TracePhase t2("graphReshape", &_t_graphReshaping, TimeCompiler); )
    1.21 @@ -3497,7 +3497,7 @@
    1.22  }
    1.23  
    1.24  void Compile::dump_inlining() {
    1.25 -  if (PrintInlining) {
    1.26 +  if (PrintInlining || PrintIntrinsics NOT_PRODUCT( || PrintOptoInlining)) {
    1.27      // Print inlining message for candidates that we couldn't inline
    1.28      // for lack of space or non constant receiver
    1.29      for (int i = 0; i < _late_inlines.length(); i++) {

mercurial