Lines Matching refs:isVolatile
940 LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, in LoadInst() argument
942 : LoadInst(Ptr, Name, isVolatile, /*Align=*/0, InsertBef) {} in LoadInst()
944 LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, in LoadInst() argument
946 : LoadInst(Ptr, Name, isVolatile, /*Align=*/0, InsertAE) {} in LoadInst()
948 LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, in LoadInst() argument
950 : LoadInst(Ptr, Name, isVolatile, Align, NotAtomic, CrossThread, in LoadInst()
953 LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, in LoadInst() argument
955 : LoadInst(Ptr, Name, isVolatile, Align, NotAtomic, CrossThread, InsertAE) { in LoadInst()
958 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile, in LoadInst() argument
962 setVolatile(isVolatile); in LoadInst()
969 LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, in LoadInst() argument
975 setVolatile(isVolatile); in LoadInst()
1002 LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile, in LoadInst() argument
1006 setVolatile(isVolatile); in LoadInst()
1013 LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile, in LoadInst() argument
1017 setVolatile(isVolatile); in LoadInst()
1054 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, in StoreInst() argument
1056 : StoreInst(val, addr, isVolatile, /*Align=*/0, InsertBefore) {} in StoreInst()
1058 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, in StoreInst() argument
1060 : StoreInst(val, addr, isVolatile, /*Align=*/0, InsertAtEnd) {} in StoreInst()
1062 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, unsigned Align, in StoreInst() argument
1064 : StoreInst(val, addr, isVolatile, Align, NotAtomic, CrossThread, in StoreInst()
1067 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, unsigned Align, in StoreInst() argument
1069 : StoreInst(val, addr, isVolatile, Align, NotAtomic, CrossThread, in StoreInst()
1072 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, in StoreInst() argument
1082 setVolatile(isVolatile); in StoreInst()
1088 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, in StoreInst() argument
1098 setVolatile(isVolatile); in StoreInst()
3546 return new LoadInst(getOperand(0), Twine(), isVolatile(), in clone_impl()
3551 return new StoreInst(getOperand(0), getOperand(1), isVolatile(), in clone_impl()
3561 Result->setVolatile(isVolatile()); in clone_impl()
3570 Result->setVolatile(isVolatile()); in clone_impl()