OLD | NEW |
---|---|
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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
195 /// instructions from the Cfg, to speed up later passes over the instructions. | 195 /// instructions from the Cfg, to speed up later passes over the instructions. |
196 void renumberInstructions(); | 196 void renumberInstructions(); |
197 void placePhiLoads(); | 197 void placePhiLoads(); |
198 void placePhiStores(); | 198 void placePhiStores(); |
199 void deletePhis(); | 199 void deletePhis(); |
200 void advancedPhiLowering(); | 200 void advancedPhiLowering(); |
201 void reorderNodes(); | 201 void reorderNodes(); |
202 void shuffleNodes(); | 202 void shuffleNodes(); |
203 void localCSE(); | 203 void localCSE(); |
204 void shortCircuitJumps(); | 204 void shortCircuitJumps(); |
205 void invertICMP(); | |
John
2016/07/07 21:20:56
This seems like X86-specific. If it is, then it sh
manasijm
2016/07/07 22:43:35
Found a nice place to move it.
Added a virtual fun
| |
205 | 206 |
206 /// Scan allocas to determine whether we need to use a frame pointer. | 207 /// Scan allocas to determine whether we need to use a frame pointer. |
207 /// If SortAndCombine == true, merge all the fixed-size allocas in the | 208 /// If SortAndCombine == true, merge all the fixed-size allocas in the |
208 /// entry block and emit stack or frame pointer-relative addressing. | 209 /// entry block and emit stack or frame pointer-relative addressing. |
209 void processAllocas(bool SortAndCombine); | 210 void processAllocas(bool SortAndCombine); |
210 void doAddressOpt(); | 211 void doAddressOpt(); |
211 /// Find clusters of insertelement/extractelement instructions that can be | 212 /// Find clusters of insertelement/extractelement instructions that can be |
212 /// replaced by a shufflevector instruction. | 213 /// replaced by a shufflevector instruction. |
213 void materializeVectorShuffles(); | 214 void materializeVectorShuffles(); |
214 void doArgLowering(); | 215 void doArgLowering(); |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
355 using OwnerType = Cfg; | 356 using OwnerType = Cfg; |
356 static StringPool *getStrings(const OwnerType *PoolOwner) { | 357 static StringPool *getStrings(const OwnerType *PoolOwner) { |
357 return PoolOwner->getVarStrings(); | 358 return PoolOwner->getVarStrings(); |
358 } | 359 } |
359 }; | 360 }; |
360 using VariableString = StringID<VariableStringPoolTraits>; | 361 using VariableString = StringID<VariableStringPoolTraits>; |
361 | 362 |
362 } // end of namespace Ice | 363 } // end of namespace Ice |
363 | 364 |
364 #endif // SUBZERO_SRC_ICECFG_H | 365 #endif // SUBZERO_SRC_ICECFG_H |
OLD | NEW |