reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Analysis/ConstantFolding.cpp
 1218       if (CE0->getOpcode() == Instruction::IntToPtr) {
 1219         Type *IntPtrTy = DL.getIntPtrType(CE0->getType());
 1222         Constant *C = ConstantExpr::getIntegerCast(CE0->getOperand(0),
 1230       if (CE0->getOpcode() == Instruction::PtrToInt) {
 1231         Type *IntPtrTy = DL.getIntPtrType(CE0->getOperand(0)->getType());
 1232         if (CE0->getType() == IntPtrTy) {
 1233           Constant *C = CE0->getOperand(0);
 1241       if (CE0->getOpcode() == CE1->getOpcode()) {
 1242         if (CE0->getOpcode() == Instruction::IntToPtr) {
 1243           Type *IntPtrTy = DL.getIntPtrType(CE0->getType());
 1247           Constant *C0 = ConstantExpr::getIntegerCast(CE0->getOperand(0),
 1256         if (CE0->getOpcode() == Instruction::PtrToInt) {
 1257           Type *IntPtrTy = DL.getIntPtrType(CE0->getOperand(0)->getType());
 1258           if (CE0->getType() == IntPtrTy &&
 1259               CE0->getOperand(0)->getType() == CE1->getOperand(0)->getType()) {
 1261                 Predicate, CE0->getOperand(0), CE1->getOperand(0), DL, TLI);
 1270         CE0->getOpcode() == Instruction::Or && Ops1->isNullValue()) {
 1272           Predicate, CE0->getOperand(0), Ops1, DL, TLI);
 1274           Predicate, CE0->getOperand(1), Ops1, DL, TLI);