src/share/vm/c1/c1_GraphBuilder.cpp

changeset 7185
945284eb609f
parent 7058
2fd0fd493045
child 7535
7ae4e26cb1e0
child 7854
e8260b6328fb
     1.1 --- a/src/share/vm/c1/c1_GraphBuilder.cpp	Mon Jul 14 03:27:21 2014 -0700
     1.2 +++ b/src/share/vm/c1/c1_GraphBuilder.cpp	Mon Jul 14 03:28:13 2014 -0700
     1.3 @@ -3960,10 +3960,15 @@
     1.4    // Clear out bytecode stream
     1.5    scope_data()->set_stream(NULL);
     1.6  
     1.7 +  CompileLog* log = compilation()->log();
     1.8 +  if (log != NULL) log->head("parse method='%d'", log->identify(callee));
     1.9 +
    1.10    // Ready to resume parsing in callee (either in the same block we
    1.11    // were in before or in the callee's start block)
    1.12    iterate_all_blocks(callee_start_block == NULL);
    1.13  
    1.14 +  if (log != NULL) log->done("parse");
    1.15 +
    1.16    // If we bailed out during parsing, return immediately (this is bad news)
    1.17    if (bailed_out())
    1.18        return false;

mercurial