src/hotspot/os_cpu/linux_x86/orderAccess_linux_x86.hpp
author stefank
Mon, 25 Nov 2019 12:22:13 +0100
changeset 59247 56bf71d64d51
parent 55550 599a7a7b6f77
permissions -rw-r--r--
8234562: Move OrderAccess::release_store*/load_acquire to Atomic Reviewed-by: rehn, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50429
diff changeset
     2
 * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3261
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3261
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3261
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50429
diff changeset
    25
#ifndef OS_CPU_LINUX_X86_ORDERACCESS_LINUX_X86_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50429
diff changeset
    26
#define OS_CPU_LINUX_X86_ORDERACCESS_LINUX_X86_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6253
diff changeset
    27
50429
83aec1d357d4 8204301: Make OrderAccess functions available to hpp rather than inline.hpp files
coleenp
parents: 49364
diff changeset
    28
// Included in orderAccess.hpp header file.
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6253
diff changeset
    29
29456
cc1c5203e60d 7143664: Clean up OrderAccess implementations and usage
dholmes
parents: 27632
diff changeset
    30
// Compiler version last used for testing: gcc 4.8.2
cc1c5203e60d 7143664: Clean up OrderAccess implementations and usage
dholmes
parents: 27632
diff changeset
    31
// Please update this information when this file changes
cc1c5203e60d 7143664: Clean up OrderAccess implementations and usage
dholmes
parents: 27632
diff changeset
    32
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// Implementation of class OrderAccess.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
27632
39084a677e72 8061964: Insufficient compiler barriers for GCC in OrderAccess functions
mgerdin
parents: 25715
diff changeset
    35
// A compiler barrier, forcing the C++ compiler to invalidate all memory assumptions
39084a677e72 8061964: Insufficient compiler barriers for GCC in OrderAccess functions
mgerdin
parents: 25715
diff changeset
    36
static inline void compiler_barrier() {
39084a677e72 8061964: Insufficient compiler barriers for GCC in OrderAccess functions
mgerdin
parents: 25715
diff changeset
    37
  __asm__ volatile ("" : : : "memory");
39084a677e72 8061964: Insufficient compiler barriers for GCC in OrderAccess functions
mgerdin
parents: 25715
diff changeset
    38
}
39084a677e72 8061964: Insufficient compiler barriers for GCC in OrderAccess functions
mgerdin
parents: 25715
diff changeset
    39
29456
cc1c5203e60d 7143664: Clean up OrderAccess implementations and usage
dholmes
parents: 27632
diff changeset
    40
inline void OrderAccess::loadload()   { compiler_barrier(); }
cc1c5203e60d 7143664: Clean up OrderAccess implementations and usage
dholmes
parents: 27632
diff changeset
    41
inline void OrderAccess::storestore() { compiler_barrier(); }
cc1c5203e60d 7143664: Clean up OrderAccess implementations and usage
dholmes
parents: 27632
diff changeset
    42
inline void OrderAccess::loadstore()  { compiler_barrier(); }
cc1c5203e60d 7143664: Clean up OrderAccess implementations and usage
dholmes
parents: 27632
diff changeset
    43
inline void OrderAccess::storeload()  { fence();            }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
29456
cc1c5203e60d 7143664: Clean up OrderAccess implementations and usage
dholmes
parents: 27632
diff changeset
    45
inline void OrderAccess::acquire()    { compiler_barrier(); }
cc1c5203e60d 7143664: Clean up OrderAccess implementations and usage
dholmes
parents: 27632
diff changeset
    46
inline void OrderAccess::release()    { compiler_barrier(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
inline void OrderAccess::fence() {
50429
83aec1d357d4 8204301: Make OrderAccess functions available to hpp rather than inline.hpp files
coleenp
parents: 49364
diff changeset
    49
   // always use locked addl since mfence is sometimes expensive
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
#ifdef AMD64
50429
83aec1d357d4 8204301: Make OrderAccess functions available to hpp rather than inline.hpp files
coleenp
parents: 49364
diff changeset
    51
  __asm__ volatile ("lock; addl $0,0(%%rsp)" : : : "cc", "memory");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
#else
50429
83aec1d357d4 8204301: Make OrderAccess functions available to hpp rather than inline.hpp files
coleenp
parents: 49364
diff changeset
    53
  __asm__ volatile ("lock; addl $0,0(%%esp)" : : : "cc", "memory");
2338
a8660a1b709b 6822204: volatile fences should prefer lock:addl to actual mfence instructions
never
parents: 1
diff changeset
    54
#endif
29456
cc1c5203e60d 7143664: Clean up OrderAccess implementations and usage
dholmes
parents: 27632
diff changeset
    55
  compiler_barrier();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
54323
846bc643f4ef 8220351: Cross-modifying code
rehn
parents: 53244
diff changeset
    58
inline void OrderAccess::cross_modify_fence() {
846bc643f4ef 8220351: Cross-modifying code
rehn
parents: 53244
diff changeset
    59
  int idx = 0;
55550
599a7a7b6f77 8226525: HotSpot compile-time error for x86-32
aph
parents: 54323
diff changeset
    60
#ifdef AMD64
54323
846bc643f4ef 8220351: Cross-modifying code
rehn
parents: 53244
diff changeset
    61
  __asm__ volatile ("cpuid " : "+a" (idx) : : "ebx", "ecx", "edx", "memory");
55550
599a7a7b6f77 8226525: HotSpot compile-time error for x86-32
aph
parents: 54323
diff changeset
    62
#else
599a7a7b6f77 8226525: HotSpot compile-time error for x86-32
aph
parents: 54323
diff changeset
    63
  // On some x86 systems EBX is a reserved register that cannot be
599a7a7b6f77 8226525: HotSpot compile-time error for x86-32
aph
parents: 54323
diff changeset
    64
  // clobbered, so we must protect it around the CPUID.
599a7a7b6f77 8226525: HotSpot compile-time error for x86-32
aph
parents: 54323
diff changeset
    65
  __asm__ volatile ("xchg %%esi, %%ebx; cpuid; xchg %%esi, %%ebx " : "+a" (idx) : : "esi", "ecx", "edx", "memory");
599a7a7b6f77 8226525: HotSpot compile-time error for x86-32
aph
parents: 54323
diff changeset
    66
#endif
54323
846bc643f4ef 8220351: Cross-modifying code
rehn
parents: 53244
diff changeset
    67
}
846bc643f4ef 8220351: Cross-modifying code
rehn
parents: 53244
diff changeset
    68
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50429
diff changeset
    69
#endif // OS_CPU_LINUX_X86_ORDERACCESS_LINUX_X86_HPP