Home
last modified time | relevance | path

Searched refs:getArgTLS (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp377 void *(*getArgTLS)() = nullptr, void *(*getRetValTLS)() = nullptr);
416 Value *getArgTLS(unsigned Index, Instruction *Pos);
468 void *(*getArgTLS)(), in createDataFlowSanitizerPass() argument
470 return new DataFlowSanitizer(ABIListFiles, getArgTLS, getRetValTLS); in createDataFlowSanitizerPass()
474 const std::vector<std::string> &ABIListFiles, void *(*getArgTLS)(), in DataFlowSanitizer() argument
476 : ModulePass(ID), GetArgTLSPtr(getArgTLS), GetRetvalTLSPtr(getRetValTLS) { in DataFlowSanitizer()
998 Value *DFSanFunction::getArgTLS(unsigned Idx, Instruction *Pos) { in getArgTLS() function in DFSanFunction
1018 Shadow = IRB.CreateLoad(getArgTLS(A->getArgNo(), ArgTLSPos)); in getShadow()
1648 DFSF.getArgTLS(i, CS.getInstruction())); in visitCallSite()
/freebsd-12.1/contrib/llvm/include/llvm/Transforms/
H A DInstrumentation.h161 void *(*getArgTLS)() = nullptr, void *(*getRetValTLS)() = nullptr);