Lines Matching defs:StoreInst
1324 // StoreInst Implementation
1327 void StoreInst::AssertOK() {
1333 StoreInst::StoreInst(Value *val, Value *addr, InsertPosition InsertBefore)
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,
4337 StoreInst *StoreInst::cloneImpl() const {
4338 return new StoreInst(getOperand(0), getOperand(1), isVolatile(), getAlign(),