Lines Matching full:ce1
755 if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(C1)) { in ConstantFoldBinaryInstruction() local
757 if (CE1->getOpcode() == Instruction::PtrToInt && in ConstantFoldBinaryInstruction()
758 isa<GlobalValue>(CE1->getOperand(0))) { in ConstantFoldBinaryInstruction()
759 GlobalValue *GV = cast<GlobalValue>(CE1->getOperand(0)); in ConstantFoldBinaryInstruction()
936 if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(C1)) { in ConstantFoldBinaryInstruction() local
943 if (Instruction::isAssociative(Opcode) && CE1->getOpcode() == Opcode) { in ConstantFoldBinaryInstruction()
944 Constant *T = ConstantExpr::get(Opcode, CE1->getOperand(1), C2); in ConstantFoldBinaryInstruction()
946 return ConstantExpr::get(Opcode, CE1->getOperand(0), T); in ConstantFoldBinaryInstruction()
1074 } else if (auto *CE1 = dyn_cast<ConstantExpr>(V1)) { in evaluateICmpRelation() local
1077 Constant *CE1Op0 = CE1->getOperand(0); in evaluateICmpRelation()
1079 switch (CE1->getOpcode()) { in evaluateICmpRelation()
1081 GEPOperator *CE1GEP = cast<GEPOperator>(CE1); in evaluateICmpRelation()