src/share/vm/opto/compile.cpp

changeset 3651
ee138854b3a6
parent 3396
d12a66fa3820
child 3654
dbd21c7c833f
     1.1 --- a/src/share/vm/opto/compile.cpp	Fri Mar 09 13:34:45 2012 -0800
     1.2 +++ b/src/share/vm/opto/compile.cpp	Mon Mar 12 10:46:47 2012 -0700
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -1707,7 +1707,6 @@
    1.11        if (major_progress()) print_method("PhaseIdealLoop before EA", 2);
    1.12        if (failing())  return;
    1.13      }
    1.14 -    TracePhase t2("escapeAnalysis", &_t_escapeAnalysis, true);
    1.15      ConnectionGraph::do_analysis(this, &igvn);
    1.16  
    1.17      if (failing())  return;
    1.18 @@ -1719,6 +1718,7 @@
    1.19      if (failing())  return;
    1.20  
    1.21      if (congraph() != NULL && macro_count() > 0) {
    1.22 +      NOT_PRODUCT( TracePhase t2("macroEliminate", &_t_macroEliminate, TimeCompiler); )
    1.23        PhaseMacroExpand mexp(igvn);
    1.24        mexp.eliminate_macro_nodes();
    1.25        igvn.set_delay_transform(false);

mercurial