about summary refs log tree commit diff homepage
path: root/lib/Module
diff options
context:
space:
mode:
authorRafael Zaehl <rafael.zaehl@rwth-aachen.de>2018-09-29 17:24:06 +0200
committerMartinNowack <martin.nowack@gmail.com>2018-10-24 10:08:19 +0100
commit7120c775037c911848fa634ae6398baf577d5650 (patch)
tree5f646355aa5c9801235e62b4452138f9b91985f7 /lib/Module
parent2b34877c5dbf24eabf331a124b1e68d901a72cba (diff)
downloadklee-7120c775037c911848fa634ae6398baf577d5650.tar.gz
Added lowering pass
Diffstat (limited to 'lib/Module')
-rw-r--r--lib/Module/KModule.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Module/KModule.cpp b/lib/Module/KModule.cpp
index 7b02c856..b025c888 100644
--- a/lib/Module/KModule.cpp
+++ b/lib/Module/KModule.cpp
@@ -224,6 +224,9 @@ void KModule::instrument(const Interpreter::ModuleOptions &opts) {
   // NOTE: Must come before division/overshift checks because those passes
   // don't know how to handle vector instructions.
   pm.add(createScalarizerPass());
+
+  // This pass will replace atomic instructions with non-atomic operations
+  pm.add(createLowerAtomicPass());
   if (opts.CheckDivZero) pm.add(new DivCheckPass());
   if (opts.CheckOvershift) pm.add(new OvershiftCheckPass());