Home | History | Annotate | Download | only in IR

Lines Matching defs:StoreInst

1075 //                           StoreInst Implementation
1078 void StoreInst::AssertOK() {
1090 StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
1092 OperandTraits<StoreInst>::op_begin(this),
1093 OperandTraits<StoreInst>::operands(this),
1103 StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
1105 OperandTraits<StoreInst>::op_begin(this),
1106 OperandTraits<StoreInst>::operands(this),
1116 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1119 OperandTraits<StoreInst>::op_begin(this),
1120 OperandTraits<StoreInst>::operands(this),
1130 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1133 OperandTraits<StoreInst>::op_begin(this),
1134 OperandTraits<StoreInst>::operands(this),
1144 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1149 OperandTraits<StoreInst>::op_begin(this),
1150 OperandTraits<StoreInst>::operands(this),
1160 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1163 OperandTraits<StoreInst>::op_begin(this),
1164 OperandTraits<StoreInst>::operands(this),
1174 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1177 OperandTraits<StoreInst>::op_begin(this),
1178 OperandTraits<StoreInst>::operands(this),
1188 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1193 OperandTraits<StoreInst>::op_begin(this),
1194 OperandTraits<StoreInst>::operands(this),
1204 void StoreInst::setAlignment(unsigned Align) {
3506 StoreInst *StoreInst::clone_impl() const {
3507 return new StoreInst(getOperand(0), getOperand(1), isVolatile(),