Lines Matching refs:isVolatile

1149 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile,  in LoadInst()  argument
1151 : LoadInst(Ty, Ptr, Name, isVolatile, /*Align=*/0, InsertBef) {} in LoadInst()
1153 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile, in LoadInst() argument
1155 : LoadInst(Ty, Ptr, Name, isVolatile, /*Align=*/0, InsertAE) {} in LoadInst()
1157 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile, in LoadInst() argument
1159 : LoadInst(Ty, Ptr, Name, isVolatile, Align, AtomicOrdering::NotAtomic, in LoadInst()
1162 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile, in LoadInst() argument
1164 : LoadInst(Ty, Ptr, Name, isVolatile, Align, AtomicOrdering::NotAtomic, in LoadInst()
1167 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile, in LoadInst() argument
1172 setVolatile(isVolatile); in LoadInst()
1179 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile, in LoadInst() argument
1184 setVolatile(isVolatile); in LoadInst()
1221 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, in StoreInst() argument
1223 : StoreInst(val, addr, isVolatile, /*Align=*/0, InsertBefore) {} in StoreInst()
1225 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, in StoreInst() argument
1227 : StoreInst(val, addr, isVolatile, /*Align=*/0, InsertAtEnd) {} in StoreInst()
1229 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, unsigned Align, in StoreInst() argument
1231 : StoreInst(val, addr, isVolatile, Align, AtomicOrdering::NotAtomic, in StoreInst()
1234 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, unsigned Align, in StoreInst() argument
1236 : StoreInst(val, addr, isVolatile, Align, AtomicOrdering::NotAtomic, in StoreInst()
1239 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, in StoreInst() argument
1249 setVolatile(isVolatile); in StoreInst()
1255 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, in StoreInst() argument
1265 setVolatile(isVolatile); in StoreInst()
3841 return new LoadInst(getType(), getOperand(0), Twine(), isVolatile(), in cloneImpl()
3846 return new StoreInst(getOperand(0), getOperand(1), isVolatile(), in cloneImpl()
3856 Result->setVolatile(isVolatile()); in cloneImpl()
3865 Result->setVolatile(isVolatile()); in cloneImpl()