diff -r 94c6270d1890 -r e3b1a1af9968 hotspot/src/share/vm/opto/escape.cpp --- a/hotspot/src/share/vm/opto/escape.cpp Mon May 13 12:43:10 2013 -0700 +++ b/hotspot/src/share/vm/opto/escape.cpp Mon May 13 14:36:39 2013 -0700 @@ -822,7 +822,16 @@ ptnode_adr(call_idx)->set_scalar_replaceable(false); } else if (meth->is_boxing_method()) { // Returns boxing object - add_java_object(call, PointsToNode::NoEscape); + PointsToNode::EscapeState es; + vmIntrinsics::ID intr = meth->intrinsic_id(); + if (intr == vmIntrinsics::_floatValue || intr == vmIntrinsics::_doubleValue) { + // It does not escape if object is always allocated. + es = PointsToNode::NoEscape; + } else { + // It escapes globally if object could be loaded from cache. + es = PointsToNode::GlobalEscape; + } + add_java_object(call, es); } else { BCEscapeAnalyzer* call_analyzer = meth->get_bcea(); call_analyzer->copy_dependencies(_compile->dependencies());