View | Details | Raw Unified | Return to bug 244803 | Differences between
and this patch

Collapse All | Expand All

(-)src/hotspot/share/runtime/arguments.cpp (-1 / +1 lines)
Lines 1458-1464 Link Here
1458
      // save it in _java_vendor_url_bug, so JVM fatal error handler can access
1458
      // save it in _java_vendor_url_bug, so JVM fatal error handler can access
1459
      // its value without going through the property list or making a Java call.
1459
      // its value without going through the property list or making a Java call.
1460
      _java_vendor_url_bug = os::strdup_check_oom(value, mtArguments);
1460
      _java_vendor_url_bug = os::strdup_check_oom(value, mtArguments);
1461
      if (old_java_vendor_url_bug != DEFAULT_VENDOR_URL_BUG) {
1461
      if (strcmp(old_java_vendor_url_bug, DEFAULT_VENDOR_URL_BUG) != 0) {
1462
        assert(old_java_vendor_url_bug != NULL, "_java_vendor_url_bug is NULL");
1462
        assert(old_java_vendor_url_bug != NULL, "_java_vendor_url_bug is NULL");
1463
        os::free((void *)old_java_vendor_url_bug);
1463
        os::free((void *)old_java_vendor_url_bug);
1464
      }
1464
      }
(-)src/hotspot/share/runtime/sharedRuntime.cpp (-1 / +1 lines)
Lines 2806-2812 Link Here
2806
    if (buf != NULL) {
2806
    if (buf != NULL) {
2807
      CodeBuffer buffer(buf);
2807
      CodeBuffer buffer(buf);
2808
      double locs_buf[20];
2808
      double locs_buf[20];
2809
      buffer.insts()->initialize_shared_locs((relocInfo*)locs_buf, sizeof(locs_buf) / sizeof(relocInfo));
2809
      buffer.insts()->initialize_shared_locs((relocInfo*)locs_buf, (sizeof(locs_buf)) / (sizeof(relocInfo)));
2810
      MacroAssembler _masm(&buffer);
2810
      MacroAssembler _masm(&buffer);
2811
2811
2812
      // Fill in the signature array, for the calling-convention call.
2812
      // Fill in the signature array, for the calling-convention call.
(-)src/java.base/share/native/libfdlibm/e_asin.c (-1 / +2 lines)
Lines 97-108 Link Here
97
        } else if (ix<0x3fe00000) {     /* |x|<0.5 */
97
        } else if (ix<0x3fe00000) {     /* |x|<0.5 */
98
            if(ix<0x3e400000) {         /* if |x| < 2**-27 */
98
            if(ix<0x3e400000) {         /* if |x| < 2**-27 */
99
                if(huge+x>one) return x;/* return x with inexact if x!=0*/
99
                if(huge+x>one) return x;/* return x with inexact if x!=0*/
100
            } else
100
            } else {
101
                t = x*x;
101
                t = x*x;
102
                p = t*(pS0+t*(pS1+t*(pS2+t*(pS3+t*(pS4+t*pS5)))));
102
                p = t*(pS0+t*(pS1+t*(pS2+t*(pS3+t*(pS4+t*pS5)))));
103
                q = one+t*(qS1+t*(qS2+t*(qS3+t*qS4)));
103
                q = one+t*(qS1+t*(qS2+t*(qS3+t*qS4)));
104
                w = p/q;
104
                w = p/q;
105
                return x+x*w;
105
                return x+x*w;
106
            }
106
        }
107
        }
107
        /* 1> |x|>= 0.5 */
108
        /* 1> |x|>= 0.5 */
108
        w = one-fabs(x);
109
        w = one-fabs(x);

Return to bug 244803