comparison src/share/vm/c1/c1_GraphBuilder.cpp @ 20471:945284eb609f

8049532: LogCompilation: C1: inlining tree is flat (no depth is stored) Reviewed-by: roland, iveresov
author vlivanov
date Mon, 14 Jul 2014 03:28:13 -0700
parents 2fd0fd493045
children 7848fc12602b
comparison
equal deleted inserted replaced
20470:bc4ce33c0985 20471:945284eb609f
3958 } 3958 }
3959 3959
3960 // Clear out bytecode stream 3960 // Clear out bytecode stream
3961 scope_data()->set_stream(NULL); 3961 scope_data()->set_stream(NULL);
3962 3962
3963 CompileLog* log = compilation()->log();
3964 if (log != NULL) log->head("parse method='%d'", log->identify(callee));
3965
3963 // Ready to resume parsing in callee (either in the same block we 3966 // Ready to resume parsing in callee (either in the same block we
3964 // were in before or in the callee's start block) 3967 // were in before or in the callee's start block)
3965 iterate_all_blocks(callee_start_block == NULL); 3968 iterate_all_blocks(callee_start_block == NULL);
3969
3970 if (log != NULL) log->done("parse");
3966 3971
3967 // If we bailed out during parsing, return immediately (this is bad news) 3972 // If we bailed out during parsing, return immediately (this is bad news)
3968 if (bailed_out()) 3973 if (bailed_out())
3969 return false; 3974 return false;
3970 3975