RFR: 8257145: Performance regression with -XX:-ResizePLAB after JDK-8079555 [v2]
Dongbo He
dongbohe at openjdk.java.net
Wed Dec 2 10:53:55 UTC 2020
On Wed, 2 Dec 2020 10:10:52 GMT, Stefan Johansson <sjohanss at openjdk.org> wrote:
> Please add it to `g1EvacStats.cpp`, the refactoring was good.
When I add it to g1EvacStates.cpp on [Refactor the code](https://github.com/openjdk/jdk/pull/1474/commits/dd3f9b7cdca5d400c7b2296c3eee92e1c414a2bb) , like this:
diff --git a/src/hotspot/share/gc/g1/g1EvacStats.cpp b/src/hotspot/share/gc/g1/g1EvacStats.cpp
index f8851b55dda..3f0f1b76cea 100644
--- a/src/hotspot/share/gc/g1/g1EvacStats.cpp
+++ b/src/hotspot/share/gc/g1/g1EvacStats.cpp
@@ -27,6 +27,7 @@
#include "gc/shared/gcId.hpp"
#include "logging/log.hpp"
#include "memory/allocation.inline.hpp"
+#include "runtime/globals.hpp"
void G1EvacStats::log_plab_allocation() {
PLABStats::log_plab_allocation();
I still get an error in the build:
=== Output from failing command(s) repeated here ===
* For target hotspot_variant-server_libjvm_objs_g1EvacStats.o:
In file included from /home/hedongbo/temp/jdk/src/hotspot/share/gc/g1/g1EvacStats.hpp:28:0,
from /home/hedongbo/temp/jdk/src/hotspot/share/gc/g1/g1EvacStats.cpp:26:
_desired_net_plab_sz(default_per_thread_plab_size * ParallelGCThreads),
^~~~~~~~~~~~~~~~~
At global scope:
cc1plus: error: unrecognized command line option '-Wno-cast-function-type' [-Werror]
but it's OK to add it to `plab.hpp`. So, I do not know whether I have understood your meaning correctly. Thank you for your patient reply.
-------------
PR: https://git.openjdk.java.net/jdk/pull/1474
More information about the hotspot-gc-dev
mailing list