Lines Matching refs:InsertBefore
234 Instruction *InsertBefore, Value *FlagsOp) { in CreateAdd() argument
236 return BinaryOperator::CreateAdd(S1, S2, Name, InsertBefore); in CreateAdd()
239 BinaryOperator::CreateFAdd(S1, S2, Name, InsertBefore); in CreateAdd()
246 Instruction *InsertBefore, Value *FlagsOp) { in CreateMul() argument
248 return BinaryOperator::CreateMul(S1, S2, Name, InsertBefore); in CreateMul()
251 BinaryOperator::CreateFMul(S1, S2, Name, InsertBefore); in CreateMul()
258 Instruction *InsertBefore, Value *FlagsOp) { in CreateNeg() argument
260 return BinaryOperator::CreateNeg(S1, Name, InsertBefore); in CreateNeg()
262 BinaryOperator *Res = BinaryOperator::CreateFNeg(S1, Name, InsertBefore); in CreateNeg()
1154 static Value *createAndInstr(Instruction *InsertBefore, Value *Opnd, in createAndInstr() argument
1164 InsertBefore); in createAndInstr()
1165 I->setDebugLoc(InsertBefore->getDebugLoc()); in createAndInstr()