mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8234562: Move OrderAccess::release_store*/load_acquire to Atomic
Reviewed-by: rehn, dholmes
This commit is contained in:
parent
e06c17ce33
commit
e527ce4b57
97 changed files with 554 additions and 570 deletions
|
@ -1415,7 +1415,7 @@ ProfileData* MethodData::bci_to_extra_data_helper(int bci, Method* m, DataLayout
|
|||
|
||||
for (;; dp = next_extra(dp)) {
|
||||
assert(dp < end, "moved past end of extra data");
|
||||
// No need for "OrderAccess::load_acquire" ops,
|
||||
// No need for "Atomic::load_acquire" ops,
|
||||
// since the data structure is monotonic.
|
||||
switch(dp->tag()) {
|
||||
case DataLayout::no_tag:
|
||||
|
@ -1550,7 +1550,7 @@ void MethodData::print_data_on(outputStream* st) const {
|
|||
DataLayout* end = args_data_limit();
|
||||
for (;; dp = next_extra(dp)) {
|
||||
assert(dp < end, "moved past end of extra data");
|
||||
// No need for "OrderAccess::load_acquire" ops,
|
||||
// No need for "Atomic::load_acquire" ops,
|
||||
// since the data structure is monotonic.
|
||||
switch(dp->tag()) {
|
||||
case DataLayout::no_tag:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue