Lines Matching defs:isVolatile
1300 : LoadInst(Ty, Ptr, Name, /*isVolatile=*/false, InsertBef) {}
1302 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile,
1304 : LoadInst(Ty, Ptr, Name, isVolatile,
1307 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile,
1309 : LoadInst(Ty, Ptr, Name, isVolatile, Align, AtomicOrdering::NotAtomic,
1312 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile,
1316 setVolatile(isVolatile);
1334 : StoreInst(val, addr, /*isVolatile=*/false, InsertBefore) {}
1336 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1338 : StoreInst(val, addr, isVolatile,
1342 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, Align Align,
1344 : StoreInst(val, addr, isVolatile, Align, AtomicOrdering::NotAtomic,
1347 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, Align Align,
1354 setVolatile(isVolatile);
4333 return new LoadInst(getType(), getOperand(0), Twine(), isVolatile(),
4338 return new StoreInst(getOperand(0), getOperand(1), isVolatile(), getAlign(),
4346 Result->setVolatile(isVolatile());
4355 Result->setVolatile(isVolatile());