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

Side by Side Diff: src/IceDefs.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 | « src/IceCfgNode.cpp ('k') | src/IceGlobalContext.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/IceDefs.h - Common Subzero declarations ------*- C++ -*-===// 1 //===- subzero/src/IceDefs.h - Common Subzero declarations ------*- 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 138
139 #define ENABLE_MAKE_UNIQUE friend struct ::Ice::Internal::MakeUniqueEnabler 139 #define ENABLE_MAKE_UNIQUE friend struct ::Ice::Internal::MakeUniqueEnabler
140 140
141 using IceString = std::string; 141 using IceString = std::string;
142 using InstList = llvm::ilist<Inst>; 142 using InstList = llvm::ilist<Inst>;
143 // Ideally PhiList would be llvm::ilist<InstPhi>, and similar for AssignList, 143 // Ideally PhiList would be llvm::ilist<InstPhi>, and similar for AssignList,
144 // but this runs into issues with SFINAE. 144 // but this runs into issues with SFINAE.
145 using PhiList = InstList; 145 using PhiList = InstList;
146 using AssignList = InstList; 146 using AssignList = InstList;
147 147
148 // Standard library containers with CfgLocalAllocator.
149 template <typename T> using CfgVector = std::vector<T, CfgLocalAllocator<T>>;
150 template <typename T> using CfgList = std::list<T, CfgLocalAllocator<T>>;
151
148 // Containers that are arena-allocated from the Cfg's allocator. 152 // Containers that are arena-allocated from the Cfg's allocator.
149 using OperandList = std::vector<Operand *, CfgLocalAllocator<Operand *>>; 153 using OperandList = CfgVector<Operand *>;
150 using VarList = std::vector<Variable *, CfgLocalAllocator<Variable *>>; 154 using VarList = CfgVector<Variable *>;
151 using NodeList = std::vector<CfgNode *, CfgLocalAllocator<CfgNode *>>; 155 using NodeList = CfgVector<CfgNode *>;
152 156
153 // Contains that use the default (global) allocator. 157 // Contains that use the default (global) allocator.
154 using ConstantList = std::vector<Constant *>; 158 using ConstantList = std::vector<Constant *>;
155 using FunctionDeclarationList = std::vector<FunctionDeclaration *>; 159 using FunctionDeclarationList = std::vector<FunctionDeclaration *>;
156 using VariableDeclarationList = std::vector<VariableDeclaration *>; 160 using VariableDeclarationList = std::vector<VariableDeclaration *>;
157 161
158 /// SizeT is for holding small-ish limits like number of source operands in an 162 /// SizeT is for holding small-ish limits like number of source operands in an
159 /// instruction. It is used instead of size_t (which may be 64-bits wide) when 163 /// instruction. It is used instead of size_t (which may be 64-bits wide) when
160 /// we want to save space. 164 /// we want to save space.
161 using SizeT = uint32_t; 165 using SizeT = uint32_t;
162 166
163 /// InstNumberT is for holding an instruction number. Instruction numbers are 167 /// InstNumberT is for holding an instruction number. Instruction numbers are
164 /// used for representing Variable live ranges. 168 /// used for representing Variable live ranges.
165 using InstNumberT = int32_t; 169 using InstNumberT = int32_t;
166 170
167 /// A LiveBeginEndMapEntry maps a Variable::Number value to an Inst::Number 171 /// A LiveBeginEndMapEntry maps a Variable::Number value to an Inst::Number
168 /// value, giving the instruction number that begins or ends a variable's live 172 /// value, giving the instruction number that begins or ends a variable's live
169 /// range. 173 /// range.
170 using LiveBeginEndMapEntry = std::pair<SizeT, InstNumberT>; 174 using LiveBeginEndMapEntry = std::pair<SizeT, InstNumberT>;
171 using LiveBeginEndMap = 175 using LiveBeginEndMap = CfgVector<LiveBeginEndMapEntry>;
172 std::vector<LiveBeginEndMapEntry, CfgLocalAllocator<LiveBeginEndMapEntry>>;
173 using LivenessBV = llvm::BitVector; 176 using LivenessBV = llvm::BitVector;
174 177
175 using TimerStackIdT = uint32_t; 178 using TimerStackIdT = uint32_t;
176 using TimerIdT = uint32_t; 179 using TimerIdT = uint32_t;
177 180
178 /// Use alignas(MaxCacheLineSize) to isolate variables/fields that might be 181 /// Use alignas(MaxCacheLineSize) to isolate variables/fields that might be
179 /// contended while multithreading. Assumes the maximum cache line size is 64. 182 /// contended while multithreading. Assumes the maximum cache line size is 64.
180 enum { MaxCacheLineSize = 64 }; 183 enum { MaxCacheLineSize = 64 };
181 // Use ICE_CACHELINE_BOUNDARY to force the next field in a declaration 184 // Use ICE_CACHELINE_BOUNDARY to force the next field in a declaration
182 // list to be aligned to the next cache line. 185 // list to be aligned to the next cache line.
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 RPE_GlobalVariableReordering, 290 RPE_GlobalVariableReordering,
288 RPE_NopInsertion, 291 RPE_NopInsertion,
289 RPE_PooledConstantReordering, 292 RPE_PooledConstantReordering,
290 RPE_RegAllocRandomization, 293 RPE_RegAllocRandomization,
291 RPE_num 294 RPE_num
292 }; 295 };
293 296
294 } // end of namespace Ice 297 } // end of namespace Ice
295 298
296 #endif // SUBZERO_SRC_ICEDEFS_H 299 #endif // SUBZERO_SRC_ICEDEFS_H
OLDNEW
« no previous file with comments | « src/IceCfgNode.cpp ('k') | src/IceGlobalContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698