Lines Matching defs:StoreInst
1290 // StoreInst Implementation
1293 void StoreInst::AssertOK() {
1299 StoreInst::StoreInst(Value *val, Value *addr, InsertPosition InsertBefore)
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,
1317 OperandTraits<StoreInst>::op_begin(this),
1318 OperandTraits<StoreInst>::operands(this), InsertBefore) {
4232 StoreInst *StoreInst::cloneImpl() const {
4233 return new StoreInst(getOperand(0), getOperand(1), isVolatile(), getAlign(),