Home | History | Annotate | Download | only in Scalar

Lines Matching refs:InsertBefore

319                                  Instruction *InsertBefore, Value *FlagsOp) {
321 return BinaryOperator::CreateAdd(S1, S2, Name, InsertBefore);
324 BinaryOperator::CreateFAdd(S1, S2, Name, InsertBefore);
331 Instruction *InsertBefore, Value *FlagsOp) {
333 return BinaryOperator::CreateMul(S1, S2, Name, InsertBefore);
336 BinaryOperator::CreateFMul(S1, S2, Name, InsertBefore);
343 Instruction *InsertBefore, Value *FlagsOp) {
345 return BinaryOperator::CreateNeg(S1, Name, InsertBefore);
347 BinaryOperator *Res = BinaryOperator::CreateFNeg(S1, Name, InsertBefore);
1237 static Value *createAndInstr(Instruction *InsertBefore, Value *Opnd,
1244 "and.ra", InsertBefore);
1245 I->setDebugLoc(InsertBefore->getDebugLoc());
2020 NI->insertBefore(User);