This repository has been archived by the owner on Jul 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
8322484: 22-b26 Regression in J2dBench-bimg_misc-G1 (and more) on Win…
…dows-x64 and macOS-x64 Backport-of: 0d5f5e15d43f94a79c6133baecd5af217365d176
- Loading branch information
Thomas Schatzl
committed
Mar 12, 2024
1 parent
2e5c300
commit a99aa0e
Showing
13 changed files
with
176 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
* Copyright (c) 2024, 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 | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
* | ||
*/ | ||
|
||
#ifndef SHARE_GC_G1_G1REGIONPINCACHE_HPP | ||
#define SHARE_GC_G1_G1REGIONPINCACHE_HPP | ||
|
||
#include "gc/g1/heapRegion.hpp" | ||
#include "memory/allocation.hpp" | ||
#include "utilities/globalDefinitions.hpp" | ||
|
||
// Holds (caches) the pending pinned object count adjustment for the region | ||
// _region_idx on a per thread basis. | ||
// Keeping such a cache avoids the expensive atomic operations when updating the | ||
// pin count for the very common case that the application pins and unpins the | ||
// same object without any interleaving by a garbage collection or pinning/unpinning | ||
// to an object in another region. | ||
class G1RegionPinCache : public StackObj { | ||
uint _region_idx; | ||
size_t _count; | ||
|
||
void flush_and_set(uint new_region_idx, size_t new_count); | ||
|
||
public: | ||
G1RegionPinCache() : _region_idx(G1_NO_HRM_INDEX), _count(0) { } | ||
|
||
#ifdef ASSERT | ||
size_t count() const { return _count; } | ||
#endif | ||
|
||
void inc_count(uint region_idx); | ||
void dec_count(uint region_idx); | ||
|
||
void flush(); | ||
}; | ||
|
||
#endif /* SHARE_GC_G1_G1REGIONPINCACHE_HPP */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* | ||
* Copyright (c) 2024, 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 | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
* | ||
*/ | ||
|
||
#ifndef SHARE_GC_G1_G1REGIONPINCACHE_INLINE_HPP | ||
#define SHARE_GC_G1_G1REGIONPINCACHE_INLINE_HPP | ||
|
||
#include "gc/g1/g1RegionPinCache.hpp" | ||
|
||
#include "gc/g1/g1CollectedHeap.inline.hpp" | ||
|
||
inline void G1RegionPinCache::inc_count(uint region_idx) { | ||
if (region_idx == _region_idx) { | ||
++_count; | ||
} else { | ||
flush_and_set(region_idx, (size_t)1); | ||
} | ||
} | ||
|
||
inline void G1RegionPinCache::dec_count(uint region_idx) { | ||
if (region_idx == _region_idx) { | ||
--_count; | ||
} else { | ||
flush_and_set(region_idx, ~(size_t)0); | ||
} | ||
} | ||
|
||
inline void G1RegionPinCache::flush_and_set(uint new_region_idx, size_t new_count) { | ||
if (_count != 0) { | ||
G1CollectedHeap::heap()->region_at(_region_idx)->add_pinned_object_count(_count); | ||
} | ||
_region_idx = new_region_idx; | ||
_count = new_count; | ||
} | ||
|
||
inline void G1RegionPinCache::flush() { | ||
flush_and_set(G1_NO_HRM_INDEX, 0); | ||
} | ||
|
||
#endif /* SHARE_GC_G1_G1REGIONPINCACHE_INLINE_HPP */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a99aa0e
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review
Issues