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

References

lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
 1085   if (V1 == DFS.ZeroShadow)
 1088     return V1;
 1089   if (V1 == V2)
 1090     return V1;
 1092   auto V1Elems = ShadowElements.find(V1);
 1097       return V1;
 1104       return V1;
 1106     if (V2Elems->second.count(V1))
 1110   auto Key = std::make_pair(V1, V2);
 1111   if (V1 > V2)
 1119     CallInst *Call = IRB.CreateCall(DFS.DFSanCheckedUnionFn, {V1, V2});
 1128     Value *Ne = IRB.CreateICmpNE(V1, V2);
 1132     CallInst *Call = ThenIRB.CreateCall(DFS.DFSanUnionFn, {V1, V2});
 1140     Phi->addIncoming(V1, Head);
 1150     UnionElems.insert(V1);