Lines Matching refs:StoreInst

1453 void StoreInst::AssertOK() {  in AssertOK()
1459 StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore) in StoreInst() function in StoreInst
1460 : StoreInst(val, addr, /*isVolatile=*/false, InsertBefore) {} in StoreInst()
1462 StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd) in StoreInst() function in StoreInst
1463 : StoreInst(val, addr, /*isVolatile=*/false, InsertAtEnd) {} in StoreInst()
1465 StoreInst::StoreInst(Value *val, Value *addr, BasicBlock::iterator InsertBefore) in StoreInst() function in StoreInst
1466 : StoreInst(val, addr, /*isVolatile=*/false, InsertBefore) {} in StoreInst()
1468 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, in StoreInst() function in StoreInst
1470 : StoreInst(val, addr, isVolatile, in StoreInst()
1474 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, in StoreInst() function in StoreInst
1476 : StoreInst(val, addr, isVolatile, in StoreInst()
1480 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, in StoreInst() function in StoreInst
1482 : StoreInst(val, addr, isVolatile, in StoreInst()
1486 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, Align Align, in StoreInst() function in StoreInst
1488 : StoreInst(val, addr, isVolatile, Align, AtomicOrdering::NotAtomic, in StoreInst()
1491 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, Align Align, in StoreInst() function in StoreInst
1493 : StoreInst(val, addr, isVolatile, Align, AtomicOrdering::NotAtomic, in StoreInst()
1496 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, Align Align, in StoreInst() function in StoreInst
1498 : StoreInst(val, addr, isVolatile, Align, AtomicOrdering::NotAtomic, in StoreInst()
1501 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, Align Align, in StoreInst() function in StoreInst
1505 OperandTraits<StoreInst>::op_begin(this), in StoreInst()
1506 OperandTraits<StoreInst>::operands(this), InsertBefore) { in StoreInst()
1515 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, Align Align, in StoreInst() function in StoreInst
1519 OperandTraits<StoreInst>::op_begin(this), in StoreInst()
1520 OperandTraits<StoreInst>::operands(this), InsertAtEnd) { in StoreInst()
1529 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, Align Align, in StoreInst() function in StoreInst
1533 OperandTraits<StoreInst>::op_begin(this), in StoreInst()
1534 OperandTraits<StoreInst>::operands(this)) { in StoreInst()
4818 StoreInst *StoreInst::cloneImpl() const { in cloneImpl()
4819 return new StoreInst(getOperand(0), getOperand(1), isVolatile(), getAlign(), in cloneImpl()