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

Side by Side Diff: src/IceGlobalContext.h

Issue 828873002: Subzero: Start writing out some relocation sections (text) (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: review fixes Created 5 years, 11 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 | « src/IceFixups.cpp ('k') | src/IceGlobalContext.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/IceGlobalContext.h - Global context defs -----*- C++ -*-===// 1 //===- subzero/src/IceGlobalContext.h - Global context defs -----*- 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 // This file declares aspects of the compilation that persist across 10 // This file declares aspects of the compilation that persist across
11 // multiple functions. 11 // multiple functions.
12 // 12 //
13 //===----------------------------------------------------------------------===// 13 //===----------------------------------------------------------------------===//
14 14
15 #ifndef SUBZERO_SRC_ICEGLOBALCONTEXT_H 15 #ifndef SUBZERO_SRC_ICEGLOBALCONTEXT_H
16 #define SUBZERO_SRC_ICEGLOBALCONTEXT_H 16 #define SUBZERO_SRC_ICEGLOBALCONTEXT_H
17 17
18 #include <memory> 18 #include <memory>
19 19
20 #include "IceDefs.h" 20 #include "IceDefs.h"
21 #include "IceClFlags.h" 21 #include "IceClFlags.h"
22 #include "IceELFObjectWriter.h"
23 #include "IceIntrinsics.h" 22 #include "IceIntrinsics.h"
24 #include "IceRNG.h" 23 #include "IceRNG.h"
25 #include "IceTimerTree.h" 24 #include "IceTimerTree.h"
26 #include "IceTypes.h" 25 #include "IceTypes.h"
27 26
28 namespace Ice { 27 namespace Ice {
29 28
30 class ClFlags; 29 class ClFlags;
31 class FuncSigType; 30 class FuncSigType;
32 31
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 241
243 private: 242 private:
244 TimerIdT ID; 243 TimerIdT ID;
245 GlobalContext *const Ctx; 244 GlobalContext *const Ctx;
246 bool Active; 245 bool Active;
247 }; 246 };
248 247
249 } // end of namespace Ice 248 } // end of namespace Ice
250 249
251 #endif // SUBZERO_SRC_ICEGLOBALCONTEXT_H 250 #endif // SUBZERO_SRC_ICEGLOBALCONTEXT_H
OLDNEW
« no previous file with comments | « src/IceFixups.cpp ('k') | src/IceGlobalContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698