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

Side by Side Diff: src/IceLiveness.h

Issue 1488913002: fix doxygen brief in subzero header files (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Make changes suggested by stichnot. Created 5 years 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/IceIntrinsics.cpp ('k') | src/IceLiveness.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/IceLiveness.h - Liveness analysis ------------*- C++ -*-===// 1 //===- subzero/src/IceLiveness.h - Liveness analysis ------------*- 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
11 /// This file declares the Liveness and LivenessNode classes, which are used for 11 /// \brief Declares the Liveness and LivenessNode classes, which are used for
12 /// liveness analysis. The node-specific information tracked for each Variable 12 /// liveness analysis.
13 /// includes whether it is live on entry, whether it is live on exit, the 13 ///
14 /// instruction number that starts its live range, and the instruction number 14 /// The node-specific information tracked for each Variable includes whether it
15 /// that ends its live range. At the Cfg level, the actual live intervals are 15 /// is live on entry, whether it is live on exit, the instruction number that
16 /// recorded. 16 /// starts its live range, and the instruction number that ends its live range.
17 /// At the Cfg level, the actual live intervals are recorded.
17 /// 18 ///
18 //===----------------------------------------------------------------------===// 19 //===----------------------------------------------------------------------===//
19 20
20 #ifndef SUBZERO_SRC_ICELIVENESS_H 21 #ifndef SUBZERO_SRC_ICELIVENESS_H
21 #define SUBZERO_SRC_ICELIVENESS_H 22 #define SUBZERO_SRC_ICELIVENESS_H
22 23
23 #include "IceCfgNode.h" 24 #include "IceCfgNode.h"
24 #include "IceDefs.h" 25 #include "IceDefs.h"
25 #include "IceTypes.h" 26 #include "IceTypes.h"
26 27
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 /// variables. 116 /// variables.
116 CfgVector<Variable *> LiveToVarMap; 117 CfgVector<Variable *> LiveToVarMap;
117 /// RangeMask[Variable::Number] indicates whether we want to track that 118 /// RangeMask[Variable::Number] indicates whether we want to track that
118 /// Variable's live range. 119 /// Variable's live range.
119 llvm::BitVector RangeMask; 120 llvm::BitVector RangeMask;
120 }; 121 };
121 122
122 } // end of namespace Ice 123 } // end of namespace Ice
123 124
124 #endif // SUBZERO_SRC_ICELIVENESS_H 125 #endif // SUBZERO_SRC_ICELIVENESS_H
OLDNEW
« no previous file with comments | « src/IceIntrinsics.cpp ('k') | src/IceLiveness.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698