Lines Matching defs:DFSanFunction
266 struct DFSanFunction { struct
267 DataFlowSanitizer &DFS;
268 Function *F;
269 DataFlowSanitizer::InstrumentedABI IA;
270 bool IsNativeABI;
271 Value *ArgTLSPtr;
272 Value *RetvalTLSPtr;
273 AllocaInst *LabelReturnAlloca;
274 DenseMap<Value *, Value *> ValShadowMap;
275 DenseMap<AllocaInst *, AllocaInst *> AllocaShadowMap;
276 std::vector<std::pair<PHINode *, PHINode *> > PHIFixups;
277 DenseSet<Instruction *> SkipInsts;
278 DenseSet<Value *> NonZeroChecks;
280 DFSanFunction(DataFlowSanitizer &DFS, Function *F, bool IsNativeABI) in DFSanFunction() argument