Lines Matching defs:LoadInst
1280 // LoadInst Implementation
1283 void LoadInst::AssertOK() {
1298 LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name,
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,
4332 LoadInst *LoadInst::cloneImpl() const {
4333 return new LoadInst(getType(), getOperand(0), Twine(), isVolatile(),