Home | History | Annotate | Download | only in Instrumentation

Lines Matching refs:V1

321   Value *combineShadows(Value *V1, Value *V2, Instruction *Pos);
955 Value *DFSanFunction::combineShadows(Value *V1, Value *V2, Instruction *Pos) {
956 if (V1 == DFS.ZeroShadow)
959 return V1;
960 if (V1 == V2)
961 return V1;
963 auto V1Elems = ShadowElements.find(V1);
968 return V1;
975 return V1;
977 if (V2Elems->second.count(V1))
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});
1011 Phi->addIncoming(V1, Head);
1021 UnionElems.insert(V1);