Home | History | Annotate | Download | only in Instrumentation

Lines Matching refs:V2

321   Value *combineShadows(Value *V1, Value *V2, Instruction *Pos);
955 Value *DFSanFunction::combineShadows(Value *V1, Value *V2, Instruction *Pos) {
957 return V2;
958 if (V2 == DFS.ZeroShadow)
960 if (V1 == V2)
964 auto V2Elems = ShadowElements.find(V2);
971 return V2;
974 if (V1Elems->second.count(V2))
978 return V2;
981 auto Key = std::make_pair(V1, V2);
982 if (V1 > V2)
990 CallInst *Call = IRB.CreateCall(DFS.DFSanCheckedUnionFn, {V1, V2});
999 Value *Ne = IRB.CreateICmpNE(V1, V2);
1003 CallInst *Call = ThenIRB.CreateCall(DFS.DFSanUnionFn, {V1, V2});
1026 UnionElems.insert(V2);