]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgomp/config/linux/bar.h
Update copyright years.
[thirdparty/gcc.git] / libgomp / config / linux / bar.h
CommitLineData
a945c346 1/* Copyright (C) 2005-2024 Free Software Foundation, Inc.
953ff289
DN
2 Contributed by Richard Henderson <rth@redhat.com>.
3
f1f3453e
TS
4 This file is part of the GNU Offloading and Multi Processing Library
5 (libgomp).
953ff289
DN
6
7 Libgomp is free software; you can redistribute it and/or modify it
748086b7
JJ
8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
953ff289
DN
11
12 Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
748086b7 14 FOR A PARTICULAR PURPOSE. See the GNU General Public License for
953ff289
DN
15 more details.
16
748086b7
JJ
17 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
20
21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 <http://www.gnu.org/licenses/>. */
953ff289
DN
25
26/* This is a Linux specific implementation of a barrier synchronization
27 mechanism for libgomp. This type is private to the library. This
28 implementation uses atomic instructions and the futex syscall. */
29
30#ifndef GOMP_BARRIER_H
31#define GOMP_BARRIER_H 1
32
33#include "mutex.h"
34
35typedef struct
36{
a68ab351
JJ
37 /* Make sure total/generation is in a mostly read cacheline, while
38 awaited in a separate cacheline. */
39 unsigned total __attribute__((aligned (64)));
40 unsigned generation;
41 unsigned awaited __attribute__((aligned (64)));
acf0174b 42 unsigned awaited_final;
953ff289 43} gomp_barrier_t;
acf0174b 44
a68ab351 45typedef unsigned int gomp_barrier_state_t;
953ff289 46
acf0174b
JJ
47/* The generation field contains a counter in the high bits, with a few
48 low bits dedicated to flags. Note that TASK_PENDING and WAS_LAST can
49 share space because WAS_LAST is never stored back to generation. */
50#define BAR_TASK_PENDING 1
51#define BAR_WAS_LAST 1
52#define BAR_WAITING_FOR_TASK 2
53#define BAR_CANCELLED 4
54#define BAR_INCR 8
55
953ff289
DN
56static inline void gomp_barrier_init (gomp_barrier_t *bar, unsigned count)
57{
953ff289 58 bar->total = count;
a68ab351 59 bar->awaited = count;
acf0174b 60 bar->awaited_final = count;
953ff289
DN
61 bar->generation = 0;
62}
63
64static inline void gomp_barrier_reinit (gomp_barrier_t *bar, unsigned count)
65{
ab6dd406 66 __atomic_add_fetch (&bar->awaited, count - bar->total, MEMMODEL_ACQ_REL);
953ff289 67 bar->total = count;
953ff289
DN
68}
69
70static inline void gomp_barrier_destroy (gomp_barrier_t *bar)
71{
953ff289
DN
72}
73
74extern void gomp_barrier_wait (gomp_barrier_t *);
a68ab351
JJ
75extern void gomp_barrier_wait_last (gomp_barrier_t *);
76extern void gomp_barrier_wait_end (gomp_barrier_t *, gomp_barrier_state_t);
77extern void gomp_team_barrier_wait (gomp_barrier_t *);
acf0174b 78extern void gomp_team_barrier_wait_final (gomp_barrier_t *);
a68ab351
JJ
79extern void gomp_team_barrier_wait_end (gomp_barrier_t *,
80 gomp_barrier_state_t);
acf0174b
JJ
81extern bool gomp_team_barrier_wait_cancel (gomp_barrier_t *);
82extern bool gomp_team_barrier_wait_cancel_end (gomp_barrier_t *,
83 gomp_barrier_state_t);
a68ab351 84extern void gomp_team_barrier_wake (gomp_barrier_t *, int);
acf0174b
JJ
85struct gomp_team;
86extern void gomp_team_barrier_cancel (struct gomp_team *);
953ff289 87
a68ab351
JJ
88static inline gomp_barrier_state_t
89gomp_barrier_wait_start (gomp_barrier_t *bar)
953ff289 90{
acf0174b
JJ
91 unsigned int ret = __atomic_load_n (&bar->generation, MEMMODEL_ACQUIRE);
92 ret &= -BAR_INCR | BAR_CANCELLED;
ab6dd406
AM
93 /* A memory barrier is needed before exiting from the various forms
94 of gomp_barrier_wait, to satisfy OpenMP API version 3.1 section
95 2.8.6 flush Construct, which says there is an implicit flush during
96 a barrier region. This is a convenient place to add the barrier,
97 so we use MEMMODEL_ACQ_REL here rather than MEMMODEL_ACQUIRE. */
acf0174b
JJ
98 if (__atomic_add_fetch (&bar->awaited, -1, MEMMODEL_ACQ_REL) == 0)
99 ret |= BAR_WAS_LAST;
100 return ret;
101}
102
103static inline gomp_barrier_state_t
104gomp_barrier_wait_cancel_start (gomp_barrier_t *bar)
105{
106 return gomp_barrier_wait_start (bar);
107}
108
109/* This is like gomp_barrier_wait_start, except it decrements
110 bar->awaited_final rather than bar->awaited and should be used
111 for the gomp_team_end barrier only. */
112static inline gomp_barrier_state_t
113gomp_barrier_wait_final_start (gomp_barrier_t *bar)
114{
115 unsigned int ret = __atomic_load_n (&bar->generation, MEMMODEL_ACQUIRE);
116 ret &= -BAR_INCR | BAR_CANCELLED;
117 /* See above gomp_barrier_wait_start comment. */
118 if (__atomic_add_fetch (&bar->awaited_final, -1, MEMMODEL_ACQ_REL) == 0)
119 ret |= BAR_WAS_LAST;
a68ab351
JJ
120 return ret;
121}
122
123static inline bool
124gomp_barrier_last_thread (gomp_barrier_state_t state)
125{
acf0174b 126 return state & BAR_WAS_LAST;
a68ab351
JJ
127}
128
129/* All the inlines below must be called with team->task_lock
130 held. */
131
132static inline void
133gomp_team_barrier_set_task_pending (gomp_barrier_t *bar)
134{
acf0174b 135 bar->generation |= BAR_TASK_PENDING;
a68ab351
JJ
136}
137
138static inline void
139gomp_team_barrier_clear_task_pending (gomp_barrier_t *bar)
140{
acf0174b 141 bar->generation &= ~BAR_TASK_PENDING;
a68ab351
JJ
142}
143
144static inline void
145gomp_team_barrier_set_waiting_for_tasks (gomp_barrier_t *bar)
146{
acf0174b 147 bar->generation |= BAR_WAITING_FOR_TASK;
a68ab351
JJ
148}
149
150static inline bool
151gomp_team_barrier_waiting_for_tasks (gomp_barrier_t *bar)
152{
acf0174b
JJ
153 return (bar->generation & BAR_WAITING_FOR_TASK) != 0;
154}
155
156static inline bool
157gomp_team_barrier_cancelled (gomp_barrier_t *bar)
158{
159 return __builtin_expect ((bar->generation & BAR_CANCELLED) != 0, 0);
a68ab351
JJ
160}
161
162static inline void
163gomp_team_barrier_done (gomp_barrier_t *bar, gomp_barrier_state_t state)
164{
acf0174b 165 bar->generation = (state & -BAR_INCR) + BAR_INCR;
953ff289
DN
166}
167
168#endif /* GOMP_BARRIER_H */