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

Side by Side Diff: src/IceCfg.h

Issue 1790063003: Subzero: Control whether deleted instructions are retained. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Move comment into .h file Created 4 years, 9 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/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/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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 /// Returns true if Var is a global variable that is used by the profiling 178 /// Returns true if Var is a global variable that is used by the profiling
179 /// code. 179 /// code.
180 static bool isProfileGlobal(const VariableDeclaration &Var); 180 static bool isProfileGlobal(const VariableDeclaration &Var);
181 181
182 /// Passes over the CFG. 182 /// Passes over the CFG.
183 void translate(); 183 void translate();
184 /// After the CFG is fully constructed, iterate over the nodes and compute the 184 /// After the CFG is fully constructed, iterate over the nodes and compute the
185 /// predecessor and successor edges, in the form of CfgNode::InEdges[] and 185 /// predecessor and successor edges, in the form of CfgNode::InEdges[] and
186 /// CfgNode::OutEdges[]. 186 /// CfgNode::OutEdges[].
187 void computeInOutEdges(); 187 void computeInOutEdges();
188 /// Renumber the non-deleted instructions in the Cfg. This needs to be done
189 /// in preparation for live range analysis. The instruction numbers in a
190 /// block must be monotonically increasing. The range of instruction numbers
191 /// in a block, from lowest to highest, must not overlap with the range of any
192 /// other block.
193 ///
194 /// Also, if the configuration specifies to do so, remove/unlink all deleted
195 /// instructions from the Cfg, to speed up later passes over the instructions.
188 void renumberInstructions(); 196 void renumberInstructions();
189 void placePhiLoads(); 197 void placePhiLoads();
190 void placePhiStores(); 198 void placePhiStores();
191 void deletePhis(); 199 void deletePhis();
192 void advancedPhiLowering(); 200 void advancedPhiLowering();
193 void reorderNodes(); 201 void reorderNodes();
194 void shuffleNodes(); 202 void shuffleNodes();
195 203
196 /// Scan allocas to determine whether we need to use a frame pointer. 204 /// Scan allocas to determine whether we need to use a frame pointer.
197 /// If SortAndCombine == true, merge all the fixed-size allocas in the 205 /// If SortAndCombine == true, merge all the fixed-size allocas in the
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 319
312 public: 320 public:
313 static void TlsInit() { CfgAllocatorTraits::init(); } 321 static void TlsInit() { CfgAllocatorTraits::init(); }
314 }; 322 };
315 323
316 template <> Variable *Cfg::makeVariable<Variable>(Type Ty); 324 template <> Variable *Cfg::makeVariable<Variable>(Type Ty);
317 325
318 } // end of namespace Ice 326 } // end of namespace Ice
319 327
320 #endif // SUBZERO_SRC_ICECFG_H 328 #endif // SUBZERO_SRC_ICECFG_H
OLDNEW
« no previous file with comments | « no previous file | src/IceCfgNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698