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

Side by Side Diff: src/IceCfgNode.h

Issue 1419903002: Subzero: Refactor x86 register definitions to use the alias mechanism. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix assembler unit tests. Fix register names. Code review changes. Rebase Created 5 years, 1 month 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/IceCfg.cpp ('k') | src/IceCfgNode.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/IceCfgNode.h - Control flow graph node -------*- C++ -*-===// 1 //===- subzero/src/IceCfgNode.h - Control flow graph node -------*- 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 13 matching lines...) Expand all
24 class CfgNode { 24 class CfgNode {
25 CfgNode() = delete; 25 CfgNode() = delete;
26 CfgNode(const CfgNode &) = delete; 26 CfgNode(const CfgNode &) = delete;
27 CfgNode &operator=(const CfgNode &) = delete; 27 CfgNode &operator=(const CfgNode &) = delete;
28 28
29 public: 29 public:
30 static CfgNode *create(Cfg *Func, SizeT LabelIndex) { 30 static CfgNode *create(Cfg *Func, SizeT LabelIndex) {
31 return new (Func->allocate<CfgNode>()) CfgNode(Func, LabelIndex); 31 return new (Func->allocate<CfgNode>()) CfgNode(Func, LabelIndex);
32 } 32 }
33 33
34 Cfg *getCfg() const { return Func; }
35
34 /// Access the label number and name for this node. 36 /// Access the label number and name for this node.
35 SizeT getIndex() const { return Number; } 37 SizeT getIndex() const { return Number; }
36 void resetIndex(SizeT NewNumber) { Number = NewNumber; } 38 void resetIndex(SizeT NewNumber) { Number = NewNumber; }
37 IceString getName() const; 39 IceString getName() const;
38 void setName(const IceString &NewName) { 40 void setName(const IceString &NewName) {
39 // Make sure that the name can only be set once. 41 // Make sure that the name can only be set once.
40 assert(NameIndex == Cfg::IdentifierIndexInvalid); 42 assert(NameIndex == Cfg::IdentifierIndexInvalid);
41 if (!NewName.empty()) 43 if (!NewName.empty())
42 NameIndex = Func->addIdentifierName(NewName); 44 NameIndex = Func->addIdentifierName(NewName);
43 } 45 }
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 InstNumberT InstCountEstimate = 0; /// rough instruction count estimate 125 InstNumberT InstCountEstimate = 0; /// rough instruction count estimate
124 NodeList InEdges; /// in no particular order 126 NodeList InEdges; /// in no particular order
125 NodeList OutEdges; /// in no particular order 127 NodeList OutEdges; /// in no particular order
126 PhiList Phis; /// unordered set of phi instructions 128 PhiList Phis; /// unordered set of phi instructions
127 InstList Insts; /// ordered list of non-phi instructions 129 InstList Insts; /// ordered list of non-phi instructions
128 }; 130 };
129 131
130 } // end of namespace Ice 132 } // end of namespace Ice
131 133
132 #endif // SUBZERO_SRC_ICECFGNODE_H 134 #endif // SUBZERO_SRC_ICECFGNODE_H
OLDNEW
« no previous file with comments | « src/IceCfg.cpp ('k') | src/IceCfgNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698