mirror of
https://github.com/openjdk/jdk.git
synced 2026-05-22 11:28:11 +00:00
8381170: JFR: Recursion in jdk.MethodTrace caused by Integer::reverseBytes
Reviewed-by: shade
This commit is contained in:
parent
abeceb1f8c
commit
48132fbb65
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2025, 2026, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -59,7 +59,14 @@ public final class ExcludeList {
|
||||
"java.lang.String::checkIndex", // Used by charAt(int)
|
||||
"java.lang.String::isLatin1", // Used by charAt()
|
||||
"java.lang.String::equals", // Used by StringPool
|
||||
"java.lang.String::hashCode" // Used by StringPool
|
||||
"java.lang.String::hashCode", // Used by StringPool
|
||||
// Used by Bits during Event::commit(), directly or indirectly
|
||||
"java.lang.Integer::reverseBytes",
|
||||
"java.lang.Long::reverseBytes",
|
||||
"java.lang.Float::floatToIntBits",
|
||||
"java.lang.Float::isNaN",
|
||||
"java.lang.Double::doubleToLongBits",
|
||||
"java.lang.Double::isNaN"
|
||||
);
|
||||
|
||||
public static boolean containsMethod(String methodName) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user