Home
last modified time | relevance | path

Searched refs:ASanInstrumentation (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceASanInstrumentation.h31 class ASanInstrumentation : public Instrumentation {
32 ASanInstrumentation() = delete;
33 ASanInstrumentation(const ASanInstrumentation &) = delete;
34 ASanInstrumentation &operator=(const ASanInstrumentation &) = delete;
37 ASanInstrumentation(GlobalContext *Ctx) : Instrumentation(Ctx), RzNum(0) { in ASanInstrumentation() function
DIceASanInstrumentation.cpp70 ICE_TLS_DEFINE_FIELD(VarSizeMap *, ASanInstrumentation, LocalVars);
71 ICE_TLS_DEFINE_FIELD(std::vector<InstStore *> *, ASanInstrumentation,
73 ICE_TLS_DEFINE_FIELD(CfgNode *, ASanInstrumentation, CurNode);
74 ICE_TLS_DEFINE_FIELD(VarSizeMap *, ASanInstrumentation, CheckedVars);
76 bool ASanInstrumentation::isInstrumentable(Cfg *Func) { in isInstrumentable()
85 void ASanInstrumentation::instrumentGlobals(VariableDeclarationList &Globals) { in instrumentGlobals()
210 std::string ASanInstrumentation::nextRzName() { in nextRzName()
218 void ASanInstrumentation::instrumentFuncStart(LoweringContext &Context) { in instrumentFuncStart()
341 void ASanInstrumentation::instrumentCall(LoweringContext &Context, in instrumentCall()
364 void ASanInstrumentation::instrumentLoad(LoweringContext &Context, in instrumentLoad()
[all …]
DIceCompileServer.cpp253 std::unique_ptr<Instrumentation> Instr(new ASanInstrumentation(Ctx.get())); in run()