Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Unified Diff: src/IceASanInstrumentation.h

Issue 2079723002: Instrumented malloc and free with dummy functions. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/IceASanInstrumentation.h
diff --git a/src/IceASanInstrumentation.h b/src/IceASanInstrumentation.h
index 761a33282fc23bf0c01d5600439a4a197b585663..b911d45a08d4e57115628ccc8e00f479374d890b 100644
--- a/src/IceASanInstrumentation.h
+++ b/src/IceASanInstrumentation.h
@@ -40,9 +40,9 @@ private:
VariableDeclaration *RzArray,
SizeT &RzArraySize,
VariableDeclaration *Global);
- void instrumentLoad(LoweringContext &Context, const InstLoad *Inst) override;
- void instrumentStore(LoweringContext &Context,
- const InstStore *Inst) override;
+ void instrumentCall(LoweringContext &Context, InstCall *Inst) override;
+ void instrumentLoad(LoweringContext &Context, InstLoad *Inst) override;
+ void instrumentStore(LoweringContext &Context, InstStore *Inst) override;
void instrumentAccess(LoweringContext &Context, Operand *Op, SizeT Size);
void instrumentStart(Cfg *Func) override;
bool DidInsertRedZones = false;

Powered by Google App Engine
This is Rietveld 408576698