Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:getOpcode

82   switch (I->getOpcode()) {
102 switch (I->getOpcode()) {
143 return CastInst::Create(Instruction::CastOps(TI->getOpcode()), NewSI,
186 return BinaryOperator::Create(BO->getOpcode(), MatchOp, NewSI);
188 return BinaryOperator::Create(BO->getOpcode(), NewSI, MatchOp);
232 BinaryOperator *BO = BinaryOperator::Create(TVI_BO->getOpcode(),
267 BinaryOperator *BO = BinaryOperator::Create(FVI_BO->getOpcode(),
1000 if (TI->getOpcode() == FI->getOpcode())
1006 if ((TI->getOpcode() == Instruction::Sub &&
1007 FI->getOpcode() == Instruction::Add) ||
1008 (TI->getOpcode() == Instruction::FSub &&
1009 FI->getOpcode() == Instruction::FAdd)) {
1011 } else if ((FI->getOpcode() == Instruction::Sub &&
1012 TI->getOpcode() == Instruction::Add) ||
1013 (FI->getOpcode() == Instruction::FSub &&
1014 TI->getOpcode() == Instruction::FAdd)) {