src/share/vm/opto/escape.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/share/vm/opto/escape.cpp	Thu Jan 29 16:18:26 2015
--- new/src/share/vm/opto/escape.cpp	Thu Jan 29 16:18:26 2015

*** 204,213 **** --- 204,218 ---- } } _verify = false; } #endif + // Bytecode analyzer BCEscapeAnalyzer, used for Call nodes + // processing, calls to CI to resolve symbols (types, fields, methods) + // referenced in bytecode. During symbol resolution VM may throw + // an exception which CI cleans and converts to compilation failure. + if (C->failing()) return false; // 2. Finish Graph construction by propagating references to all // java objects through graph. if (!complete_connection_graph(ptnodes_worklist, non_escaped_worklist, java_objects_worklist, oop_fields_worklist)) {

src/share/vm/opto/escape.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File