* configure: Regenerated.
[official-gcc.git] / libitm / method-serial.cc
blobbdecd7b87b32d839527df2181851eb93bfce51b1
1 /* Copyright (C) 2008, 2009, 2011, 2012 Free Software Foundation, Inc.
2 Contributed by Richard Henderson <rth@redhat.com>.
4 This file is part of the GNU Transactional Memory Library (libitm).
6 Libitm is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 Libitm is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 more details.
16 Under Section 7 of GPL version 3, you are granted additional
17 permissions described in the GCC Runtime Library Exception, version
18 3.1, as published by the Free Software Foundation.
20 You should have received a copy of the GNU General Public License and
21 a copy of the GCC Runtime Library Exception along with this program;
22 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 <http://www.gnu.org/licenses/>. */
25 #include "libitm_i.h"
27 // Avoid a dependency on libstdc++ for the pure virtuals in abi_dispatch.
28 extern "C" void HIDDEN
29 __cxa_pure_virtual ()
31 abort ();
34 using namespace GTM;
36 namespace {
38 // This group consists of the serial, serialirr, and serialirr_onwrite
39 // methods, which all need no global state (except what is already provided
40 // by the serial mode implementation).
41 struct serial_mg : public method_group
43 virtual void init() { }
44 virtual void fini() { }
47 static serial_mg o_serial_mg;
50 class serialirr_dispatch : public abi_dispatch
52 public:
53 serialirr_dispatch() : abi_dispatch(false, true, true, false, &o_serial_mg)
54 { }
56 protected:
57 serialirr_dispatch(bool ro, bool wt, bool uninstrumented,
58 bool closed_nesting, method_group* mg) :
59 abi_dispatch(ro, wt, uninstrumented, closed_nesting, mg) { }
61 // Transactional loads and stores simply access memory directly.
62 // These methods are static to avoid indirect calls, and will be used by the
63 // virtual ABI dispatch methods or by static direct-access methods created
64 // below.
65 template <typename V> static V load(const V* addr, ls_modifier mod)
67 return *addr;
69 template <typename V> static void store(V* addr, const V value,
70 ls_modifier mod)
72 *addr = value;
75 public:
76 static void memtransfer_static(void *dst, const void* src, size_t size,
77 bool may_overlap, ls_modifier dst_mod, ls_modifier src_mod)
79 if (!may_overlap)
80 ::memcpy(dst, src, size);
81 else
82 ::memmove(dst, src, size);
85 static void memset_static(void *dst, int c, size_t size, ls_modifier mod)
87 ::memset(dst, c, size);
90 CREATE_DISPATCH_METHODS(virtual, )
91 CREATE_DISPATCH_METHODS_MEM()
93 virtual gtm_restart_reason begin_or_restart() { return NO_RESTART; }
94 virtual bool trycommit(gtm_word& priv_time) { return true; }
95 virtual void rollback(gtm_transaction_cp *cp) { abort(); }
97 virtual abi_dispatch* closed_nesting_alternative()
99 // For nested transactions with an instrumented code path, we can do
100 // undo logging.
101 return GTM::dispatch_serial();
105 class serial_dispatch : public abi_dispatch
107 protected:
108 static void log(const void *addr, size_t len)
110 gtm_thread *tx = gtm_thr();
111 tx->undolog.log(addr, len);
114 template <typename V> static V load(const V* addr, ls_modifier mod)
116 return *addr;
118 template <typename V> static void store(V* addr, const V value,
119 ls_modifier mod)
121 if (mod != WaW)
122 log(addr, sizeof(V));
123 *addr = value;
126 public:
127 static void memtransfer_static(void *dst, const void* src, size_t size,
128 bool may_overlap, ls_modifier dst_mod, ls_modifier src_mod)
130 if (dst_mod != WaW && dst_mod != NONTXNAL)
131 log(dst, size);
132 if (!may_overlap)
133 ::memcpy(dst, src, size);
134 else
135 ::memmove(dst, src, size);
138 static void memset_static(void *dst, int c, size_t size, ls_modifier mod)
140 if (mod != WaW)
141 log(dst, size);
142 ::memset(dst, c, size);
145 virtual gtm_restart_reason begin_or_restart() { return NO_RESTART; }
146 virtual bool trycommit(gtm_word& priv_time) { return true; }
147 // Local undo will handle this.
148 // trydropreference() need not be changed either.
149 virtual void rollback(gtm_transaction_cp *cp) { }
151 CREATE_DISPATCH_METHODS(virtual, )
152 CREATE_DISPATCH_METHODS_MEM()
154 serial_dispatch() : abi_dispatch(false, true, false, true, &o_serial_mg) { }
158 // Like serialirr_dispatch but does not requests serial-irrevocable mode until
159 // the first write in the transaction. Can be useful for read-mostly workloads
160 // and testing, but is likely too simple to be of general purpose.
161 class serialirr_onwrite_dispatch : public serialirr_dispatch
163 public:
164 serialirr_onwrite_dispatch() :
165 serialirr_dispatch(false, true, false, false, &o_serial_mg) { }
167 protected:
168 static void pre_write()
170 gtm_thread *tx = gtm_thr();
171 if (!(tx->state & (gtm_thread::STATE_SERIAL
172 | gtm_thread::STATE_IRREVOCABLE)))
173 tx->serialirr_mode();
176 // Transactional loads access memory directly.
177 // Transactional stores switch to serial mode first.
178 template <typename V> static void store(V* addr, const V value,
179 ls_modifier mod)
181 pre_write();
182 serialirr_dispatch::store(addr, value, mod);
185 public:
186 static void memtransfer_static(void *dst, const void* src, size_t size,
187 bool may_overlap, ls_modifier dst_mod, ls_modifier src_mod)
189 pre_write();
190 serialirr_dispatch::memtransfer_static(dst, src, size, may_overlap,
191 dst_mod, src_mod);
194 static void memset_static(void *dst, int c, size_t size, ls_modifier mod)
196 pre_write();
197 serialirr_dispatch::memset_static(dst, c, size, mod);
200 CREATE_DISPATCH_METHODS(virtual, )
201 CREATE_DISPATCH_METHODS_MEM()
203 virtual void rollback(gtm_transaction_cp *cp)
205 gtm_thread *tx = gtm_thr();
206 if (tx->state & gtm_thread::STATE_IRREVOCABLE)
207 abort();
211 } // anon namespace
213 static const serialirr_dispatch o_serialirr_dispatch;
214 static const serial_dispatch o_serial_dispatch;
215 static const serialirr_onwrite_dispatch o_serialirr_onwrite_dispatch;
217 abi_dispatch *
218 GTM::dispatch_serialirr ()
220 return const_cast<serialirr_dispatch *>(&o_serialirr_dispatch);
223 abi_dispatch *
224 GTM::dispatch_serial ()
226 return const_cast<serial_dispatch *>(&o_serial_dispatch);
229 abi_dispatch *
230 GTM::dispatch_serialirr_onwrite ()
232 return
233 const_cast<serialirr_onwrite_dispatch *>(&o_serialirr_onwrite_dispatch);
236 // Put the transaction into serial-irrevocable mode.
238 void
239 GTM::gtm_thread::serialirr_mode ()
241 struct abi_dispatch *disp = abi_disp ();
243 if (this->state & STATE_SERIAL)
245 if (this->state & STATE_IRREVOCABLE)
246 return;
248 // Try to commit the dispatch-specific part of the transaction, as we
249 // would do for an outermost commit.
250 // We're already serial, so we don't need to ensure privatization safety
251 // for other transactions here.
252 gtm_word priv_time = 0;
253 bool ok = disp->trycommit (priv_time);
254 // Given that we're already serial, the trycommit better work.
255 assert (ok);
257 else if (serial_lock.write_upgrade (this))
259 this->state |= STATE_SERIAL;
260 // Try to commit the dispatch-specific part of the transaction, as we
261 // would do for an outermost commit.
262 // We have successfully upgraded to serial mode, so we don't need to
263 // ensure privatization safety for other transactions here.
264 // However, we are still a reader (wrt. privatization safety) until we
265 // have either committed or restarted, so finish the upgrade after that.
266 gtm_word priv_time = 0;
267 if (!disp->trycommit (priv_time))
268 restart (RESTART_SERIAL_IRR, true);
269 gtm_thread::serial_lock.write_upgrade_finish(this);
271 else
272 restart (RESTART_SERIAL_IRR, false);
274 this->state |= (STATE_SERIAL | STATE_IRREVOCABLE);
275 set_abi_disp (dispatch_serialirr ());
278 void ITM_REGPARM
279 _ITM_changeTransactionMode (_ITM_transactionState state)
281 assert (state == modeSerialIrrevocable);
282 gtm_thr()->serialirr_mode ();