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

References

lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
 1460   Value *CondShadow = DFSF.getShadow(I.getCondition());
 1461   Value *TrueShadow = DFSF.getShadow(I.getTrueValue());
 1462   Value *FalseShadow = DFSF.getShadow(I.getFalseValue());
 1464   if (isa<VectorType>(I.getCondition()->getType())) {
 1466         &I,
 1468             CondShadow, DFSF.combineShadows(TrueShadow, FalseShadow, &I), &I));
 1468             CondShadow, DFSF.combineShadows(TrueShadow, FalseShadow, &I), &I));
 1475           SelectInst::Create(I.getCondition(), TrueShadow, FalseShadow, "", &I);
 1475           SelectInst::Create(I.getCondition(), TrueShadow, FalseShadow, "", &I);
 1477     DFSF.setShadow(&I, DFSF.combineShadows(CondShadow, ShadowSel, &I));
 1477     DFSF.setShadow(&I, DFSF.combineShadows(CondShadow, ShadowSel, &I));