• Home
  • Raw
  • Download

Lines Matching refs:CE0

988   if (ConstantExpr *CE0 = dyn_cast<ConstantExpr>(Ops0)) {  in ConstantFoldCompareInstOperands()  local
990 Type *IntPtrTy = TD->getIntPtrType(CE0->getContext()); in ConstantFoldCompareInstOperands()
991 if (CE0->getOpcode() == Instruction::IntToPtr) { in ConstantFoldCompareInstOperands()
994 Constant *C = ConstantExpr::getIntegerCast(CE0->getOperand(0), in ConstantFoldCompareInstOperands()
1002 if (CE0->getOpcode() == Instruction::PtrToInt && in ConstantFoldCompareInstOperands()
1003 CE0->getType() == IntPtrTy) { in ConstantFoldCompareInstOperands()
1004 Constant *C = CE0->getOperand(0); in ConstantFoldCompareInstOperands()
1011 if (TD && CE0->getOpcode() == CE1->getOpcode()) { in ConstantFoldCompareInstOperands()
1012 Type *IntPtrTy = TD->getIntPtrType(CE0->getContext()); in ConstantFoldCompareInstOperands()
1014 if (CE0->getOpcode() == Instruction::IntToPtr) { in ConstantFoldCompareInstOperands()
1017 Constant *C0 = ConstantExpr::getIntegerCast(CE0->getOperand(0), in ConstantFoldCompareInstOperands()
1026 if ((CE0->getOpcode() == Instruction::PtrToInt && in ConstantFoldCompareInstOperands()
1027 CE0->getType() == IntPtrTy && in ConstantFoldCompareInstOperands()
1028 CE0->getOperand(0)->getType() == CE1->getOperand(0)->getType())) in ConstantFoldCompareInstOperands()
1029 return ConstantFoldCompareInstOperands(Predicate, CE0->getOperand(0), in ConstantFoldCompareInstOperands()
1037 CE0->getOpcode() == Instruction::Or && Ops1->isNullValue()) { in ConstantFoldCompareInstOperands()
1039 ConstantFoldCompareInstOperands(Predicate, CE0->getOperand(0), Ops1, in ConstantFoldCompareInstOperands()
1042 ConstantFoldCompareInstOperands(Predicate, CE0->getOperand(1), Ops1, in ConstantFoldCompareInstOperands()