From: weiyu Date: Fri, 21 Jun 2019 00:08:24 +0000 (-0700) Subject: fix up syntax errors X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c9efd55388808675480a2f3f476959dd7e5de4be;p=c11llvm.git fix up syntax errors --- diff --git a/instrumentAtomicCall.hpp b/instrumentAtomicCall.hpp index 4ee6d8d..2def926 100644 --- a/instrumentAtomicCall.hpp +++ b/instrumentAtomicCall.hpp @@ -93,7 +93,7 @@ bool CDSPass::instrumentAtomicCall(CallInst *CI, const DataLayout &DL) { return true; } else if (funName.contains("atomic") && - funName.contains("store")) { + funName.contains("EEEE5store")) { // does this version of call always have an atomic order as an argument? Value *OrigVal = parameters[1]; @@ -104,7 +104,7 @@ bool CDSPass::instrumentAtomicCall(CallInst *CI, const DataLayout &DL) { Instruction* funcInst = CallInst::Create(CDSAtomicStore[Idx], args); ReplaceInstWithInst(CI, funcInst); - + return true; } @@ -147,12 +147,12 @@ bool CDSPass::instrumentAtomicCall(CallInst *CI, const DataLayout &DL) { return true; } else if (funName.contains("fetch")) { - errs() << "atomic exchange captured. Not implemented yet. " + errs() << "atomic exchange captured. Not implemented yet. "; errs() << "See source file :"; getPositionPrint(CI, IRB); } else if (funName.contains("exchange") && !funName.contains("compare_exchange") ) { - errs() << "atomic exchange captured. Not implemented yet. " + errs() << "atomic exchange captured. Not implemented yet. "; errs() << "See source file :"; getPositionPrint(CI, IRB); } @@ -187,7 +187,6 @@ bool CDSPass::instrumentAtomicCall(CallInst *CI, const DataLayout &DL) { return true; } else if ( funName.contains("compare_exchange_strong") || funName.contains("compare_exchange_wesk") ) { - Value *Addr = IRB.CreatePointerCast(OrigPtr, PtrTy); Value *CmpOperand = IRB.CreatePointerCast(parameters[1], PtrTy); Value *NewOperand = IRB.CreateBitOrPointerCast(parameters[2], Ty);