--- old/src/share/vm/opto/domgraph.cpp 2015-10-07 16:08:13.191426852 +0200 +++ new/src/share/vm/opto/domgraph.cpp 2015-10-07 16:08:13.111426848 +0200 @@ -506,7 +506,7 @@ // Perform DFS search. Setup 'vertex' as DFS to vertex mapping. Setup // 'semi' as vertex to DFS mapping. Set 'parent' to DFS parent. int NTarjan::DFS( NTarjan *ntarjan, VectorSet &visited, PhaseIdealLoop *pil, uint *dfsorder) { - // Allocate stack of size C->unique()/8 to avoid frequent realloc + // Allocate stack of size C->live_nodes()/8 to avoid frequent realloc GrowableArray dfstack(pil->C->live_nodes() >> 3); Node *b = pil->C->root(); int dfsnum = 1;