• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/InstCombine/

Lines Matching refs:getOpcode

122 // The No Signed Wrap flag can be kept if the operation "B (I.getOpcode) C",
133 Instruction::BinaryOps Opcode = I.getOpcode();
181 Instruction::BinaryOps Opcode = I.getOpcode();
197 if (Op0 && Op0->getOpcode() == Opcode) {
226 if (Op1 && Op1->getOpcode() == Opcode) {
248 if (Op0 && Op0->getOpcode() == Opcode) {
268 if (Op1 && Op1->getOpcode() == Opcode) {
290 Op0->getOpcode() == Opcode && Op1->getOpcode() == Opcode &&
379 Instruction::BinaryOps TopLevelOpcode = I.getOpcode(); // op
382 if (Op0 && Op1 && Op0->getOpcode() == Op1->getOpcode()) {
387 Instruction::BinaryOps InnerOpcode = Op0->getOpcode(); // op'
438 if (Op0 && RightDistributesOverLeft(Op0->getOpcode(), TopLevelOpcode)) {
442 Instruction::BinaryOps InnerOpcode = Op0->getOpcode(); // op'
463 if (Op1 && LeftDistributesOverRight(TopLevelOpcode, Op1->getOpcode())) {
467 Instruction::BinaryOps InnerOpcode = Op1->getOpcode(); // op'
531 return IC->Builder->CreateCast(CI->getOpcode(), SO, I.getType());
540 return ConstantExpr::get(I.getOpcode(), SOC, ConstOperand);
541 return ConstantExpr::get(I.getOpcode(), ConstOperand, SOC);
549 return IC->Builder->CreateBinOp(BO->getOpcode(), Op0, Op1,
707 InV = ConstantExpr::get(I.getOpcode(), InC, C);
709 InV = Builder->CreateBinOp(cast<BinaryOperator>(I).getOpcode(),
719 InV = ConstantExpr::getCast(CI->getOpcode(), InC, RetTy);
721 InV = Builder->CreateCast(CI->getOpcode(),
1009 if (Inst->getOpcode() == Instruction::Shl &&
1016 } else if (Inst->getOpcode() == Instruction::Mul &&
1120 switch (I->getOpcode()) {
1299 if (I->getOpcode() == Instruction::Add)