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

Side by Side Diff: src/IceCfg.h

Issue 1349833005: Improve use of CfgLocalAllocator and introduce containers that use it. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 3 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 | « Makefile.standalone ('k') | src/IceCfg.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/IceCfg.h - Control flow graph ----------------*- C++ -*-===// 1 //===- subzero/src/IceCfg.h - Control flow graph ----------------*- 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 VarList Variables; 266 VarList Variables;
267 VarList Args; /// subset of Variables, in argument order 267 VarList Args; /// subset of Variables, in argument order
268 VarList ImplicitArgs; /// subset of Variables 268 VarList ImplicitArgs; /// subset of Variables
269 std::unique_ptr<ArenaAllocator<>> Allocator; 269 std::unique_ptr<ArenaAllocator<>> Allocator;
270 std::unique_ptr<Liveness> Live; 270 std::unique_ptr<Liveness> Live;
271 std::unique_ptr<TargetLowering> Target; 271 std::unique_ptr<TargetLowering> Target;
272 std::unique_ptr<VariablesMetadata> VMetadata; 272 std::unique_ptr<VariablesMetadata> VMetadata;
273 std::unique_ptr<Assembler> TargetAssembler; 273 std::unique_ptr<Assembler> TargetAssembler;
274 /// Globals required by this CFG. Mostly used for the profiler's globals. 274 /// Globals required by this CFG. Mostly used for the profiler's globals.
275 std::unique_ptr<VariableDeclarationList> GlobalInits; 275 std::unique_ptr<VariableDeclarationList> GlobalInits;
276 std::vector<InstJumpTable *> JumpTables; 276 CfgVector<InstJumpTable *> JumpTables;
277 277
278 /// CurrentNode is maintained during dumping/emitting just for validating 278 /// CurrentNode is maintained during dumping/emitting just for validating
279 /// Variable::DefNode. Normally, a traversal over CfgNodes maintains this, but 279 /// Variable::DefNode. Normally, a traversal over CfgNodes maintains this, but
280 /// before global operations like register allocation, resetCurrentNode() 280 /// before global operations like register allocation, resetCurrentNode()
281 /// should be called to avoid spurious validation failures. 281 /// should be called to avoid spurious validation failures.
282 const CfgNode *CurrentNode = nullptr; 282 const CfgNode *CurrentNode = nullptr;
283 283
284 /// Maintain a pointer in TLS to the current Cfg being translated. This is 284 /// Maintain a pointer in TLS to the current Cfg being translated. This is
285 /// primarily for accessing its allocator statelessly, but other uses are 285 /// primarily for accessing its allocator statelessly, but other uses are
286 /// possible. 286 /// possible.
287 ICE_TLS_DECLARE_FIELD(const Cfg *, CurrentCfg); 287 ICE_TLS_DECLARE_FIELD(const Cfg *, CurrentCfg);
288 288
289 public: 289 public:
290 static void TlsInit() { ICE_TLS_INIT_FIELD(CurrentCfg); } 290 static void TlsInit() { ICE_TLS_INIT_FIELD(CurrentCfg); }
291 }; 291 };
292 292
293 } // end of namespace Ice 293 } // end of namespace Ice
294 294
295 #endif // SUBZERO_SRC_ICECFG_H 295 #endif // SUBZERO_SRC_ICECFG_H
OLDNEW
« no previous file with comments | « Makefile.standalone ('k') | src/IceCfg.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698