Lines Matching defs:StoreInst

1053 //                           StoreInst Implementation
1056 void StoreInst::AssertOK() {
1068 StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
1070 OperandTraits<StoreInst>::op_begin(this),
1071 OperandTraits<StoreInst>::operands(this),
1081 StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
1083 OperandTraits<StoreInst>::op_begin(this),
1084 OperandTraits<StoreInst>::operands(this),
1094 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1097 OperandTraits<StoreInst>::op_begin(this),
1098 OperandTraits<StoreInst>::operands(this),
1108 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1111 OperandTraits<StoreInst>::op_begin(this),
1112 OperandTraits<StoreInst>::operands(this),
1122 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1127 OperandTraits<StoreInst>::op_begin(this),
1128 OperandTraits<StoreInst>::operands(this),
1138 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1141 OperandTraits<StoreInst>::op_begin(this),
1142 OperandTraits<StoreInst>::operands(this),
1152 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1155 OperandTraits<StoreInst>::op_begin(this),
1156 OperandTraits<StoreInst>::operands(this),
1166 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1171 OperandTraits<StoreInst>::op_begin(this),
1172 OperandTraits<StoreInst>::operands(this),
1182 void StoreInst::setAlignment(unsigned Align) {
3403 StoreInst *StoreInst::clone_impl() const {
3404 return new StoreInst(getOperand(0), getOperand(1), isVolatile(),