Mercurial > hg > CbC > CbC_llvm
diff docs/Atomics.rst @ 95:afa8332a0e37 LLVM3.8
LLVM 3.8
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 13 Oct 2015 17:48:58 +0900 |
parents | 60c9769439b8 |
children | 1172e4bd9c6f |
line wrap: on
line diff
--- a/docs/Atomics.rst Wed Feb 18 14:56:07 2015 +0900 +++ b/docs/Atomics.rst Tue Oct 13 17:48:58 2015 +0900 @@ -173,7 +173,7 @@ also expected to generate an i8 store as an i8 store, and not an instruction which writes to surrounding bytes. (If you are writing a backend for an architecture which cannot satisfy these restrictions and cares about - concurrency, please send an email to llvmdev.) + concurrency, please send an email to llvm-dev.) Unordered --------- @@ -446,7 +446,7 @@ atomic constructs. Here are some lowerings it can do: * cmpxchg -> loop with load-linked/store-conditional - by overriding ``hasLoadLinkedStoreConditional()``, ``emitLoadLinked()``, + by overriding ``shouldExpandAtomicCmpXchgInIR()``, ``emitLoadLinked()``, ``emitStoreConditional()`` * large loads/stores -> ll-sc/cmpxchg by overriding ``shouldExpandAtomicStoreInIR()``/``shouldExpandAtomicLoadInIR()``