[ARM] PR target/78439: Update movdi constraints for Cortex-A8 tuning to handle LDRD...
[official-gcc.git] / libcilkrts / runtime / worker_mutex.h
blob5faabd85d01f729707e177c4035e9cb1ede075aa
1 /* worker_mutex.h -*-C++-*-
3 *************************************************************************
5 * Copyright (C) 2009-2016, Intel Corporation
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * * Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in
16 * the documentation and/or other materials provided with the
17 * distribution.
18 * * Neither the name of Intel Corporation nor the names of its
19 * contributors may be used to endorse or promote products derived
20 * from this software without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26 * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
29 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
30 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
32 * WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33 * POSSIBILITY OF SUCH DAMAGE.
35 * *********************************************************************
37 * PLEASE NOTE: This file is a downstream copy of a file mainitained in
38 * a repository at cilkplus.org. Changes made to this file that are not
39 * submitted through the contribution process detailed at
40 * http://www.cilkplus.org/submit-cilk-contribution will be lost the next
41 * time that a new version is released. Changes only submitted to the
42 * GNU compiler collection or posted to the git repository at
43 * https://bitbucket.org/intelcilkruntime/intel-cilk-runtime.git are
44 * not tracked.
46 * We welcome your contributions to this open source project. Thank you
47 * for your assistance in helping us improve Cilk Plus.
48 **************************************************************************/
50 /**
51 * @file worker_mutex.h
53 * @brief Support for Cilk runtime mutexes.
55 * Cilk runtime mutexes are implemented as simple spin loops.
58 #ifndef INCLUDED_WORKER_MUTEX_DOT_H
59 #define INCLUDED_WORKER_MUTEX_DOT_H
61 #include <cilk/common.h>
62 #include "rts-common.h"
64 __CILKRTS_BEGIN_EXTERN_C
66 /**
67 * Mutexes are treated as an abstract data type within the Cilk
68 * runtime system. They are implemented as simple spin loops and
69 * owned by a __cilkrts_worker.
71 typedef struct mutex {
72 /** Mutex spin loop variable. 0 if unowned, 1 if owned. */
73 volatile int lock;
75 /** Worker that owns the mutex. Must be 0 if mutex is unowned. */
76 __cilkrts_worker *owner;
77 } mutex;
79 /**
80 * @brief Initialize a Cilk mutex.
82 * @param m Mutex to be initialized.
84 COMMON_PORTABLE
85 void __cilkrts_mutex_init(struct mutex *m);
87 /**
88 * @brief Acquire a Cilk mutex.
90 * If statistics are being gathered, the time spent
91 * acquiring the mutex will be attributed to the specified worker.
93 * @param w Worker that will become the owner of this mutex.
94 * @param m Mutex to be initialized.
96 COMMON_PORTABLE
97 void __cilkrts_mutex_lock(__cilkrts_worker *w,
98 struct mutex *m);
99 /**
100 * @brief Attempt to lock a Cilk mutex and fail if it isn't available.
102 * If statistics are being gathered, the time spent acquiring the
103 * mutex will be attributed to the specified worker.
105 * @param w Worker that will become the owner of this mutex.
106 * @param m Mutex to be acquired.
108 * @return 1 if the mutex was acquired.
109 * @return 0 if the mutex was not acquired.
111 COMMON_PORTABLE
112 int __cilkrts_mutex_trylock(__cilkrts_worker *w,
113 struct mutex *m);
116 * @brief Release a Cilk mutex.
118 * If statistics are being gathered, the time spent
119 * acquiring the mutex will be attributed to the specified worker.
121 * @pre The mutex must be owned by the worker.
123 * @param w Worker that owns this mutex.
124 * @param m Mutex to be released.
126 COMMON_PORTABLE
127 void __cilkrts_mutex_unlock(__cilkrts_worker *w,
128 struct mutex *m);
131 * @brief Deallocate a Cilk mutex. Currently does nothing.
133 * @param w Unused.
134 * @param m Mutex to be deallocated.
136 COMMON_PORTABLE
137 void __cilkrts_mutex_destroy(__cilkrts_worker *w,
138 struct mutex *m);
140 __CILKRTS_END_EXTERN_C
142 #endif // ! defined(INCLUDED_WORKER_MUTEX_DOT_H)