Lines Matching refs:StoreInst
1047 // StoreInst Implementation
1050 void StoreInst::AssertOK() {
1062 StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
1064 OperandTraits<StoreInst>::op_begin(this),
1065 OperandTraits<StoreInst>::operands(this),
1075 StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
1077 OperandTraits<StoreInst>::op_begin(this),
1078 OperandTraits<StoreInst>::operands(this),
1088 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1091 OperandTraits<StoreInst>::op_begin(this),
1092 OperandTraits<StoreInst>::operands(this),
1102 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1105 OperandTraits<StoreInst>::op_begin(this),
1106 OperandTraits<StoreInst>::operands(this),
1116 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1121 OperandTraits<StoreInst>::op_begin(this),
1122 OperandTraits<StoreInst>::operands(this),
1132 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1135 OperandTraits<StoreInst>::op_begin(this),
1136 OperandTraits<StoreInst>::operands(this),
1146 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,
1165 OperandTraits<StoreInst>::op_begin(this),
1166 OperandTraits<StoreInst>::operands(this),
1176 void StoreInst::setAlignment(unsigned Align) {
3373 StoreInst *StoreInst::clone_impl() const {
3374 return new StoreInst(getOperand(0), getOperand(1), isVolatile(),