<div dir="ltr">Hi!<div><br></div><div>The example in the docs[1] states that the LLVM concurrency model does not allow the hoisting of loads and introduction of local variables due to another thread potentially altering the value whilst running the function. Given that I have analysis which shows that the memory location of variable <i>x </i>can not be concurrently accessed -- how would I inform the LLVM transformation passes of this information?</div><div><br></div><div>I tried injecting this information in to the AliasAnalysis under getModRefInfo() by returning NoModref for the memory locations I knew not to be accessed concurrently. However, it seemed that the usages of the variables was not respected in that case, such that we could reorder variables and change the semantics of the program.</div><div><br></div><div><div>Thanks in advance,</div></div><div><br></div><div>Andreas</div><div><br></div><div>[1]: <a href="http://llvm.org/docs/Atomics.html#optimization-outside-atomic">http://llvm.org/docs/Atomics.html#optimization-outside-atomic</a></div></div>