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

References

lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
 1491   IRBuilder<> IRB(&I);
 1492   Value *DestShadow = DFSF.DFS.getShadowAddress(I.getDest(), &I);
 1492   Value *DestShadow = DFSF.DFS.getShadowAddress(I.getDest(), &I);
 1493   Value *SrcShadow = DFSF.DFS.getShadowAddress(I.getSource(), &I);
 1493   Value *SrcShadow = DFSF.DFS.getShadowAddress(I.getSource(), &I);
 1495       I.getLength(),
 1496       ConstantInt::get(I.getLength()->getType(), DFSF.DFS.ShadowWidth / 8));
 1501       IRB.CreateCall(I.getFunctionType(), I.getCalledValue(),
 1501       IRB.CreateCall(I.getFunctionType(), I.getCalledValue(),
 1502                      {DestShadow, SrcShadow, LenShadow, I.getVolatileCst()}));
 1504     MTI->setDestAlignment(I.getDestAlignment() * (DFSF.DFS.ShadowWidth / 8));
 1505     MTI->setSourceAlignment(I.getSourceAlignment() * (DFSF.DFS.ShadowWidth / 8));