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

References

lib/Transforms/Scalar/SCCP.cpp
 1151   if (I.getType()->isStructTy())
 1152     return (void)markOverdefined(&I);
 1154   LatticeVal PtrVal = getValueState(I.getOperand(0));
 1157   LatticeVal &IV = ValueState[&I];
 1160   if (!PtrVal.isConstant() || I.isVolatile())
 1161     return (void)markOverdefined(IV, &I);
 1167     if (NullPointerIsDefined(I.getFunction(), I.getPointerAddressSpace()))
 1167     if (NullPointerIsDefined(I.getFunction(), I.getPointerAddressSpace()))
 1168       return (void)markOverdefined(IV, &I);
 1180         mergeInValue(IV, &I, It->second);
 1187   if (Constant *C = ConstantFoldLoadFromConstPtr(Ptr, I.getType(), DL)) {
 1190     return (void)markConstant(IV, &I, C);
 1195   markOverdefined(IV, &I);