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

Side by Side Diff: src/IceASanInstrumentation.h

Issue 2194853003: Subzero: Implemented codegen for poisoning and unpoisoning stack redzones (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Added missing REQUIRES directive Created 4 years, 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | src/IceASanInstrumentation.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 //===- subzero/src/IceASanInstrumentation.h - AddressSanitizer --*- C++ -*-===// 1 //===- subzero/src/IceASanInstrumentation.h - AddressSanitizer --*- C++ -*-===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 /// 9 ///
10 /// \file 10 /// \file
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 void instrumentFuncStart(LoweringContext &Context) override; 47 void instrumentFuncStart(LoweringContext &Context) override;
48 void instrumentCall(LoweringContext &Context, InstCall *Instr) override; 48 void instrumentCall(LoweringContext &Context, InstCall *Instr) override;
49 void instrumentRet(LoweringContext &Context, InstRet *Instr) override; 49 void instrumentRet(LoweringContext &Context, InstRet *Instr) override;
50 void instrumentLoad(LoweringContext &Context, InstLoad *Instr) override; 50 void instrumentLoad(LoweringContext &Context, InstLoad *Instr) override;
51 void instrumentStore(LoweringContext &Context, InstStore *Instr) override; 51 void instrumentStore(LoweringContext &Context, InstStore *Instr) override;
52 void instrumentAccess(LoweringContext &Context, Operand *Op, SizeT Size, 52 void instrumentAccess(LoweringContext &Context, Operand *Op, SizeT Size,
53 Constant *AccessFunc); 53 Constant *AccessFunc);
54 void instrumentStart(Cfg *Func) override; 54 void instrumentStart(Cfg *Func) override;
55 void finishFunc(Cfg *Func) override; 55 void finishFunc(Cfg *Func) override;
56 ICE_TLS_DECLARE_FIELD(VarSizeMap *, LocalVars); 56 ICE_TLS_DECLARE_FIELD(VarSizeMap *, LocalVars);
57 ICE_TLS_DECLARE_FIELD(std::vector<InstCall *> *, LocalDtors); 57 ICE_TLS_DECLARE_FIELD(std::vector<InstStore *> *, LocalDtors);
58 GlobalSizeMap GlobalSizes; 58 GlobalSizeMap GlobalSizes;
59 std::atomic<uint32_t> RzNum; 59 std::atomic<uint32_t> RzNum;
60 bool DidProcessGlobals = false; 60 bool DidProcessGlobals = false;
61 SizeT RzGlobalsNum = 0; 61 SizeT RzGlobalsNum = 0;
62 std::mutex GlobalsMutex; 62 std::mutex GlobalsMutex;
63 }; 63 };
64 } // end of namespace Ice 64 } // end of namespace Ice
65 65
66 #endif // SUBZERO_SRC_ICEASANINSTRUMENTATION_H 66 #endif // SUBZERO_SRC_ICEASANINSTRUMENTATION_H
OLDNEW
« no previous file with comments | « no previous file | src/IceASanInstrumentation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698