comparison src/share/vm/opto/compile.cpp @ 1100:f96a1a986f7b

6895383: JCK test throws NPE for method compiled with Escape Analysis Summary: Add missing checks for MemBar nodes in EA. Reviewed-by: never
author kvn
date Wed, 09 Dec 2009 16:40:45 -0800
parents 7c57aead6d3e
children b2b6a9bf6238
comparison
equal deleted inserted replaced
1099:c5d3d979ae27 1100:f96a1a986f7b
1850 1850
1851 if( !n->is_Region() && // Dont print in the Assembly 1851 if( !n->is_Region() && // Dont print in the Assembly
1852 !n->is_Phi() && // a few noisely useless nodes 1852 !n->is_Phi() && // a few noisely useless nodes
1853 !n->is_Proj() && 1853 !n->is_Proj() &&
1854 !n->is_MachTemp() && 1854 !n->is_MachTemp() &&
1855 !n->is_SafePointScalarObject() &&
1855 !n->is_Catch() && // Would be nice to print exception table targets 1856 !n->is_Catch() && // Would be nice to print exception table targets
1856 !n->is_MergeMem() && // Not very interesting 1857 !n->is_MergeMem() && // Not very interesting
1857 !n->is_top() && // Debug info table constants 1858 !n->is_top() && // Debug info table constants
1858 !(n->is_Con() && !n->is_Mach())// Debug info table constants 1859 !(n->is_Con() && !n->is_Mach())// Debug info table constants
1859 ) { 1860 ) {