Lines Matching refs:NewCI
1089 AtomicCmpXchgInst *NewCI = Builder.CreateAtomicCmpXchg( in expandPartwordCmpXchg() local
1092 NewCI->setVolatile(CI->isVolatile()); in expandPartwordCmpXchg()
1098 NewCI->setWeak(CI->isWeak()); in expandPartwordCmpXchg()
1100 Value *OldVal = Builder.CreateExtractValue(NewCI, 0); in expandPartwordCmpXchg()
1101 Value *Success = Builder.CreateExtractValue(NewCI, 1); in expandPartwordCmpXchg()
1267 auto *NewCI = Builder.CreateAtomicCmpXchg( in convertCmpXchgToIntegerType() local
1270 NewCI->setVolatile(CI->isVolatile()); in convertCmpXchgToIntegerType()
1271 NewCI->setWeak(CI->isWeak()); in convertCmpXchgToIntegerType()
1272 LLVM_DEBUG(dbgs() << "Replaced " << *CI << " with " << *NewCI << "\n"); in convertCmpXchgToIntegerType()
1274 Value *OldVal = Builder.CreateExtractValue(NewCI, 0); in convertCmpXchgToIntegerType()
1275 Value *Succ = Builder.CreateExtractValue(NewCI, 1); in convertCmpXchgToIntegerType()
1285 return NewCI; in convertCmpXchgToIntegerType()