Lines Matching defs:isVolatile
1266 : LoadInst(Ty, Ptr, Name, /*isVolatile=*/false, InsertBef) {}
1268 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile,
1270 : LoadInst(Ty, Ptr, Name, isVolatile,
1273 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile,
1275 : LoadInst(Ty, Ptr, Name, isVolatile, Align, AtomicOrdering::NotAtomic,
1278 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile,
1282 setVolatile(isVolatile);
1300 : StoreInst(val, addr, /*isVolatile=*/false, InsertBefore) {}
1302 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1304 : StoreInst(val, addr, isVolatile,
1308 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, Align Align,
1310 : StoreInst(val, addr, isVolatile, Align, AtomicOrdering::NotAtomic,
1313 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, Align Align,
1321 setVolatile(isVolatile);
4228 return new LoadInst(getType(), getOperand(0), Twine(), isVolatile(),
4233 return new StoreInst(getOperand(0), getOperand(1), isVolatile(), getAlign(),
4241 Result->setVolatile(isVolatile());
4250 Result->setVolatile(isVolatile());