blob: 678c521ddf462f48f2362c9de99903a90283410b [file] [log] [blame]
Jim Stichnothc4554d72014-09-30 16:49:38 -07001//===- subzero/src/IceGlobalContext.cpp - Global context defs -------------===//
Jim Stichnothf7c9a142014-04-29 10:52:43 -07002//
3// The Subzero Code Generator
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Andrew Scull9612d322015-07-06 14:53:25 -07009///
10/// \file
Jim Stichnoth92a6e5b2015-12-02 16:52:44 -080011/// \brief Defines aspects of the compilation that persist across multiple
Andrew Scull57e12682015-09-16 11:30:19 -070012/// functions.
Andrew Scull9612d322015-07-06 14:53:25 -070013///
Jim Stichnothf7c9a142014-04-29 10:52:43 -070014//===----------------------------------------------------------------------===//
15
John Porto67f8de92015-06-25 10:14:17 -070016#include "IceGlobalContext.h"
Jim Stichnoth639c9212014-12-11 10:04:32 -080017
Jim Stichnothf7c9a142014-04-29 10:52:43 -070018#include "IceCfg.h"
John Portof8b4cc82015-06-09 18:06:19 -070019#include "IceCfgNode.h"
Jim Stichnoth989a7032014-08-08 10:13:44 -070020#include "IceClFlags.h"
Jim Stichnotha18cc9c2014-09-30 19:10:22 -070021#include "IceDefs.h"
Jan Voungec270732015-01-12 17:00:22 -080022#include "IceELFObjectWriter.h"
Karl Schimpf9d98d792014-10-13 15:01:08 -070023#include "IceGlobalInits.h"
John Porto7bb9cab2016-04-01 05:43:09 -070024#include "IceLiveness.h"
Jim Stichnothf7c9a142014-04-29 10:52:43 -070025#include "IceOperand.h"
Jim Stichnoth54cf1a22016-08-08 14:15:00 -070026#include "IceRevision.h"
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -070027#include "IceTargetLowering.h"
Jim Stichnothc4554d72014-09-30 16:49:38 -070028#include "IceTimerTree.h"
Karl Schimpf20070e82016-03-17 13:30:13 -070029#include "IceTypes.def"
Jim Stichnotha18cc9c2014-09-30 19:10:22 -070030#include "IceTypes.h"
Jim Stichnoth98da9662015-06-27 06:38:08 -070031
Jim Stichnothb0051df2016-01-13 11:39:15 -080032#ifdef __clang__
Jim Stichnoth98da9662015-06-27 06:38:08 -070033#pragma clang diagnostic push
34#pragma clang diagnostic ignored "-Wunused-parameter"
Jim Stichnothb0051df2016-01-13 11:39:15 -080035#endif // __clang__
36
John Porto67f8de92015-06-25 10:14:17 -070037#include "llvm/Support/Timer.h"
Jim Stichnothb0051df2016-01-13 11:39:15 -080038
39#ifdef __clang__
Jim Stichnoth98da9662015-06-27 06:38:08 -070040#pragma clang diagnostic pop
Jim Stichnothb0051df2016-01-13 11:39:15 -080041#endif // __clang__
John Porto67f8de92015-06-25 10:14:17 -070042
Qining Lu7cd53512015-06-26 09:36:00 -070043#include <algorithm> // max()
John Porto67f8de92015-06-25 10:14:17 -070044
Jim Stichnothdddaf9c2014-12-04 14:09:21 -080045namespace std {
46template <> struct hash<Ice::RelocatableTuple> {
47 size_t operator()(const Ice::RelocatableTuple &Key) const {
Jim Stichnoth467ffe52016-03-29 15:01:06 -070048 // Use the relocatable's name, plus the hash of a combination of the number
49 // of OffsetExprs and the known, fixed offset for the reloc. We left shift
50 // the known relocatable by 5 trying to minimize the interaction between the
51 // bits in OffsetExpr.size() and Key.Offset.
52 return hash<Ice::SizeT>()(Key.Name.getID()) +
John Portoe82b5602016-02-24 15:58:55 -080053 hash<std::size_t>()(Key.OffsetExpr.size() + (Key.Offset << 5));
Jim Stichnothd2cb4362014-11-20 11:24:42 -080054 }
55};
Jim Stichnothdddaf9c2014-12-04 14:09:21 -080056} // end of namespace std
Jim Stichnothd2cb4362014-11-20 11:24:42 -080057
Jim Stichnothf7c9a142014-04-29 10:52:43 -070058namespace Ice {
59
Jim Stichnoth5bfe2152015-03-19 13:51:56 -070060namespace {
61
Andrew Scull57e12682015-09-16 11:30:19 -070062// Define the key comparison function for the constant pool's unordered_map,
63// but only for key types of interest: integer types, floating point types, and
64// the special RelocatableTuple.
Jim Stichnoth5bfe2152015-03-19 13:51:56 -070065template <typename KeyType, class Enable = void> struct KeyCompare {};
66
67template <typename KeyType>
68struct KeyCompare<KeyType,
69 typename std::enable_if<
70 std::is_integral<KeyType>::value ||
71 std::is_same<KeyType, RelocatableTuple>::value>::type> {
72 bool operator()(const KeyType &Value1, const KeyType &Value2) const {
73 return Value1 == Value2;
74 }
75};
76template <typename KeyType>
77struct KeyCompare<KeyType, typename std::enable_if<
78 std::is_floating_point<KeyType>::value>::type> {
79 bool operator()(const KeyType &Value1, const KeyType &Value2) const {
80 return !memcmp(&Value1, &Value2, sizeof(KeyType));
81 }
82};
83
Andrew Scull57e12682015-09-16 11:30:19 -070084// Define a key comparison function for sorting the constant pool's values
85// after they are dumped to a vector. This covers integer types, floating point
86// types, and ConstantRelocatable values.
Jim Stichnoth6e293c82015-04-09 09:11:18 -070087template <typename ValueType, class Enable = void> struct KeyCompareLess {};
88
89template <typename ValueType>
90struct KeyCompareLess<ValueType,
91 typename std::enable_if<std::is_floating_point<
92 typename ValueType::PrimType>::value>::type> {
93 bool operator()(const Constant *Const1, const Constant *Const2) const {
Andrew Scull8072bae2015-09-14 16:01:26 -070094 using CompareType = uint64_t;
Jim Stichnoth6e293c82015-04-09 09:11:18 -070095 static_assert(sizeof(typename ValueType::PrimType) <= sizeof(CompareType),
96 "Expected floating-point type of width 64-bit or less");
97 typename ValueType::PrimType V1 = llvm::cast<ValueType>(Const1)->getValue();
98 typename ValueType::PrimType V2 = llvm::cast<ValueType>(Const2)->getValue();
99 // We avoid "V1<V2" because of NaN.
100 // We avoid "memcmp(&V1,&V2,sizeof(V1))<0" which depends on the
101 // endian-ness of the host system running Subzero.
102 // Instead, compare the result of bit_cast to uint64_t.
103 uint64_t I1 = 0, I2 = 0;
104 memcpy(&I1, &V1, sizeof(V1));
105 memcpy(&I2, &V2, sizeof(V2));
106 return I1 < I2;
107 }
108};
109template <typename ValueType>
110struct KeyCompareLess<ValueType,
111 typename std::enable_if<std::is_integral<
112 typename ValueType::PrimType>::value>::type> {
113 bool operator()(const Constant *Const1, const Constant *Const2) const {
114 typename ValueType::PrimType V1 = llvm::cast<ValueType>(Const1)->getValue();
115 typename ValueType::PrimType V2 = llvm::cast<ValueType>(Const2)->getValue();
116 return V1 < V2;
117 }
118};
119template <typename ValueType>
120struct KeyCompareLess<
121 ValueType, typename std::enable_if<
122 std::is_same<ValueType, ConstantRelocatable>::value>::type> {
123 bool operator()(const Constant *Const1, const Constant *Const2) const {
Jim Stichnoth5bff61c2015-10-28 09:26:00 -0700124 auto *V1 = llvm::cast<ValueType>(Const1);
125 auto *V2 = llvm::cast<ValueType>(Const2);
Jim Stichnoth6e293c82015-04-09 09:11:18 -0700126 if (V1->getName() == V2->getName())
127 return V1->getOffset() < V2->getOffset();
128 return V1->getName() < V2->getName();
129 }
130};
131
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700132// TypePool maps constants of type KeyType (e.g. float) to pointers to
Jim Stichnothd2cb4362014-11-20 11:24:42 -0800133// type ValueType (e.g. ConstantFloat).
134template <Type Ty, typename KeyType, typename ValueType> class TypePool {
Jim Stichnoth0795ba02014-10-01 14:23:01 -0700135 TypePool(const TypePool &) = delete;
136 TypePool &operator=(const TypePool &) = delete;
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700137
138public:
Jim Stichnotheafb56c2015-06-22 10:35:22 -0700139 TypePool() = default;
Jim Stichnothd2cb4362014-11-20 11:24:42 -0800140 ValueType *getOrAdd(GlobalContext *Ctx, KeyType Key) {
141 auto Iter = Pool.find(Key);
Jim Stichnoth9f9aa2c2016-03-07 08:25:24 -0800142 if (Iter != Pool.end()) {
143 Iter->second->updateLookupCount();
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700144 return Iter->second;
Jim Stichnoth9f9aa2c2016-03-07 08:25:24 -0800145 }
Jim Stichnoth54f3d512015-12-11 09:53:00 -0800146 auto *Result = ValueType::create(Ctx, Ty, Key);
Jim Stichnothd2cb4362014-11-20 11:24:42 -0800147 Pool[Key] = Result;
Jim Stichnoth9f9aa2c2016-03-07 08:25:24 -0800148 Result->updateLookupCount();
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700149 return Result;
150 }
Jim Stichnothf61d5b22014-05-23 13:31:24 -0700151 ConstantList getConstantPool() const {
152 ConstantList Constants;
153 Constants.reserve(Pool.size());
Jim Stichnothf44f3712014-10-01 14:05:51 -0700154 for (auto &I : Pool)
155 Constants.push_back(I.second);
Andrew Scull8072bae2015-09-14 16:01:26 -0700156 // The sort (and its KeyCompareLess machinery) is not strictly necessary,
157 // but is desirable for producing output that is deterministic across
158 // unordered_map::iterator implementations.
Jim Stichnoth6e293c82015-04-09 09:11:18 -0700159 std::sort(Constants.begin(), Constants.end(), KeyCompareLess<ValueType>());
Jim Stichnothf61d5b22014-05-23 13:31:24 -0700160 return Constants;
161 }
Jim Stichnoth3d5e08d2016-03-01 12:22:29 -0800162 size_t size() const { return Pool.size(); }
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700163
164private:
Andrew Scull8072bae2015-09-14 16:01:26 -0700165 // Use the default hash function, and a custom key comparison function. The
166 // key comparison function for floating point variables can't use the default
167 // == based implementation because of special C++ semantics regarding +0.0,
168 // -0.0, and NaN comparison. However, it's OK to use the default hash for
169 // floating point values because KeyCompare is the final source of truth - in
170 // the worst case a "false" collision must be resolved.
171 using ContainerType =
172 std::unordered_map<KeyType, ValueType *, std::hash<KeyType>,
173 KeyCompare<KeyType>>;
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700174 ContainerType Pool;
175};
176
Matt Walad8f4a7d2014-06-18 09:55:03 -0700177// UndefPool maps ICE types to the corresponding ConstantUndef values.
178class UndefPool {
Jim Stichnoth0795ba02014-10-01 14:23:01 -0700179 UndefPool(const UndefPool &) = delete;
180 UndefPool &operator=(const UndefPool &) = delete;
Matt Walad8f4a7d2014-06-18 09:55:03 -0700181
182public:
Jim Stichnotheafb56c2015-06-22 10:35:22 -0700183 UndefPool() : Pool(IceType_NUM) {}
Matt Walad8f4a7d2014-06-18 09:55:03 -0700184
185 ConstantUndef *getOrAdd(GlobalContext *Ctx, Type Ty) {
Jim Stichnothae953202014-12-20 06:17:49 -0800186 if (Pool[Ty] == nullptr)
Jim Stichnothb36757e2015-10-05 13:55:11 -0700187 Pool[Ty] = ConstantUndef::create(Ctx, Ty);
Jim Stichnothd2cb4362014-11-20 11:24:42 -0800188 return Pool[Ty];
Matt Walad8f4a7d2014-06-18 09:55:03 -0700189 }
190
191private:
Jim Stichnothd2cb4362014-11-20 11:24:42 -0800192 std::vector<ConstantUndef *> Pool;
Matt Walad8f4a7d2014-06-18 09:55:03 -0700193};
194
Jim Stichnoth5bfe2152015-03-19 13:51:56 -0700195} // end of anonymous namespace
196
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700197// The global constant pool bundles individual pools of each type of
198// interest.
199class ConstantPool {
Jim Stichnoth0795ba02014-10-01 14:23:01 -0700200 ConstantPool(const ConstantPool &) = delete;
201 ConstantPool &operator=(const ConstantPool &) = delete;
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700202
203public:
Jim Stichnotheafb56c2015-06-22 10:35:22 -0700204 ConstantPool() = default;
Jim Stichnothd2cb4362014-11-20 11:24:42 -0800205 TypePool<IceType_f32, float, ConstantFloat> Floats;
206 TypePool<IceType_f64, double, ConstantDouble> Doubles;
207 TypePool<IceType_i1, int8_t, ConstantInteger32> Integers1;
208 TypePool<IceType_i8, int8_t, ConstantInteger32> Integers8;
209 TypePool<IceType_i16, int16_t, ConstantInteger32> Integers16;
210 TypePool<IceType_i32, int32_t, ConstantInteger32> Integers32;
211 TypePool<IceType_i64, int64_t, ConstantInteger64> Integers64;
212 TypePool<IceType_i32, RelocatableTuple, ConstantRelocatable> Relocatables;
Jan Voung261cae32015-02-01 10:31:03 -0800213 TypePool<IceType_i32, RelocatableTuple, ConstantRelocatable>
214 ExternRelocatables;
Matt Walad8f4a7d2014-06-18 09:55:03 -0700215 UndefPool Undefs;
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700216};
217
Karl Schimpfe8457a22016-03-31 10:20:23 -0700218void GlobalContext::waitForWorkerThreads() {
219 if (WaitForWorkerThreadsCalled.exchange(true))
220 return;
221 optQueueNotifyEnd();
222 for (std::thread &Worker : TranslationThreads) {
223 Worker.join();
224 }
225 TranslationThreads.clear();
226
227 // Only notify the emit queue to end after all the translation threads have
228 // ended.
229 emitQueueNotifyEnd();
230 for (std::thread &Worker : EmitterThreads) {
231 Worker.join();
232 }
233 EmitterThreads.clear();
234
235 if (BuildDefs::timers()) {
236 auto Timers = getTimers();
237 for (ThreadContext *TLS : AllThreadContexts)
238 Timers->mergeFrom(TLS->Timers);
239 }
240 if (BuildDefs::dump()) {
241 // Do a separate loop over AllThreadContexts to avoid holding two locks at
242 // once.
243 auto Stats = getStatsCumulative();
244 for (ThreadContext *TLS : AllThreadContexts)
245 Stats->add(TLS->StatsCumulative);
246 }
247}
248
Jim Stichnothb5eee3d2016-03-31 11:05:39 -0700249void GlobalContext::CodeStats::dump(const Cfg *Func, GlobalContext *Ctx) {
Jim Stichnoth20b71f52015-06-24 15:52:24 -0700250 if (!BuildDefs::dump())
Jim Stichnoth639c9212014-12-11 10:04:32 -0800251 return;
Jim Stichnoth3d5e08d2016-03-01 12:22:29 -0800252 OstreamLocker _(Ctx);
253 Ostream &Str = Ctx->getStrDump();
Jim Stichnothb5eee3d2016-03-31 11:05:39 -0700254 const std::string Name =
255 (Func == nullptr ? "_FINAL_" : Func->getFunctionNameAndSize());
Jim Stichnotha1dd3cc2015-01-31 10:48:11 -0800256#define X(str, tag) \
257 Str << "|" << Name << "|" str "|" << Stats[CS_##tag] << "\n";
258 CODESTATS_TABLE
259#undef X
260 Str << "|" << Name << "|Spills+Fills|"
261 << Stats[CS_NumSpills] + Stats[CS_NumFills] << "\n";
John Portoa3984a12016-04-01 11:14:30 -0700262 Str << "|" << Name << "|Memory Usage |";
263 if (const auto MemUsed = static_cast<size_t>(
264 llvm::TimeRecord::getCurrentTime(false).getMemUsed())) {
265 static constexpr size_t _1MB = 1024 * 1024;
266 Str << (MemUsed / _1MB) << " MB";
267 } else {
Jim Stichnoth639c9212014-12-11 10:04:32 -0800268 Str << "(requires '-track-memory')";
John Portoa3984a12016-04-01 11:14:30 -0700269 }
Jim Stichnoth639c9212014-12-11 10:04:32 -0800270 Str << "\n";
Jim Stichnoth3d5e08d2016-03-01 12:22:29 -0800271 Str << "|" << Name << "|CPool Sizes ";
272 {
273 auto Pool = Ctx->getConstPool();
274 Str << "|f32=" << Pool->Floats.size();
275 Str << "|f64=" << Pool->Doubles.size();
276 Str << "|i1=" << Pool->Integers1.size();
277 Str << "|i8=" << Pool->Integers8.size();
278 Str << "|i16=" << Pool->Integers16.size();
279 Str << "|i32=" << Pool->Integers32.size();
280 Str << "|i64=" << Pool->Integers64.size();
281 Str << "|Rel=" << Pool->Relocatables.size();
282 Str << "|ExtRel=" << Pool->ExternRelocatables.size();
283 }
284 Str << "\n";
Jim Stichnothb5eee3d2016-03-31 11:05:39 -0700285 if (Func != nullptr) {
John Portoa3984a12016-04-01 11:14:30 -0700286 Str << "|" << Name << "|Cfg Memory |" << Func->getTotalMemoryMB()
287 << " MB\n";
288 Str << "|" << Name << "|Liveness Memory |" << Func->getLivenessMemoryMB()
Jim Stichnothb5eee3d2016-03-31 11:05:39 -0700289 << " MB\n";
290 }
Jim Stichnoth639c9212014-12-11 10:04:32 -0800291}
292
Karl Schimpf3018cf22016-04-11 14:49:01 -0700293namespace {
294
295// By default, wake up the main parser thread when the OptQ gets half empty.
296static constexpr size_t DefaultOptQWakeupSize = GlobalContext::MaxOptQSize >> 1;
297
298} // end of anonymous namespace
299
Karl Schimpf2f67b922015-04-22 15:20:16 -0700300GlobalContext::GlobalContext(Ostream *OsDump, Ostream *OsEmit, Ostream *OsError,
Jim Stichnoth98ba0062016-03-07 09:26:22 -0800301 ELFStreamer *ELFStr)
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700302 : Strings(new StringPool()), ConstPool(new ConstantPool()), ErrorStatus(),
303 StrDump(OsDump), StrEmit(OsEmit), StrError(OsError), IntrinsicsInfo(this),
Karl Schimpf3018cf22016-04-11 14:49:01 -0700304 ObjectWriter(),
305 OptQWakeupSize(std::max(DefaultOptQWakeupSize,
306 size_t(getFlags().getNumTranslationThreads()))),
307 OptQ(/*Sequential=*/getFlags().isSequential(),
308 /*MaxSize=*/
309 getFlags().isParseParallel()
310 ? MaxOptQSize
311 : getFlags().getNumTranslationThreads()),
Jim Stichnothbbca7542015-02-11 16:08:31 -0800312 // EmitQ is allowed unlimited size.
Karl Schimpfd4699942016-04-02 09:55:31 -0700313 EmitQ(/*Sequential=*/getFlags().isSequential()),
John Porto1bec8bc2015-06-22 10:51:13 -0700314 DataLowering(TargetDataLowering::createLowering(this)) {
Karl Schimpf2f67b922015-04-22 15:20:16 -0700315 assert(OsDump && "OsDump is not defined for GlobalContext");
316 assert(OsEmit && "OsEmit is not defined for GlobalContext");
317 assert(OsError && "OsError is not defined for GlobalContext");
Jim Stichnotha5fe17a2015-01-26 11:10:03 -0800318 // Make sure thread_local fields are properly initialized before any
319 // accesses are made. Do this here instead of at the start of
320 // main() so that all clients (e.g. unit tests) can benefit for
321 // free.
322 GlobalContext::TlsInit();
323 Cfg::TlsInit();
John Porto7bb9cab2016-04-01 05:43:09 -0700324 Liveness::TlsInit();
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800325 // Create a new ThreadContext for the current thread. No need to
326 // lock AllThreadContexts at this point since no other threads have
327 // access yet to this GlobalContext object.
Jim Stichnoth380d7b92015-01-30 13:10:39 -0800328 ThreadContext *MyTLS = new ThreadContext();
329 AllThreadContexts.push_back(MyTLS);
330 ICE_TLS_SET_FIELD(TLS, MyTLS);
Jim Stichnoth8363a062014-10-07 10:02:38 -0700331 // Pre-register built-in stack names.
Jim Stichnothb88d8c82016-03-11 15:33:00 -0800332 if (BuildDefs::timers()) {
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800333 // TODO(stichnot): There needs to be a strong relationship between
334 // the newTimerStackID() return values and TSK_Default/TSK_Funcs.
Jim Stichnoth1c44d812014-12-08 14:57:52 -0800335 newTimerStackID("Total across all functions");
336 newTimerStackID("Per-function summary");
337 }
Jim Stichnoth380d7b92015-01-30 13:10:39 -0800338 Timers.initInto(MyTLS->Timers);
Karl Schimpfd4699942016-04-02 09:55:31 -0700339 switch (getFlags().getOutFileType()) {
Jim Stichnothd442e7e2015-02-12 14:01:48 -0800340 case FT_Elf:
Jan Voung08c3bcd2014-12-01 17:55:16 -0800341 ObjectWriter.reset(new ELFObjectWriter(*this, *ELFStr));
Jim Stichnothd442e7e2015-02-12 14:01:48 -0800342 break;
343 case FT_Asm:
344 case FT_Iasm:
345 break;
Jan Voung08c3bcd2014-12-01 17:55:16 -0800346 }
Karl Schimpf20070e82016-03-17 13:30:13 -0700347// Cache up front common constants.
348#define X(tag, sizeLog2, align, elts, elty, str, rcstr) \
349 ConstZeroForType[IceType_##tag] = getConstantZeroInternal(IceType_##tag);
350 ICETYPE_TABLE;
351#undef X
352 ConstantTrue = getConstantInt1Internal(1);
353// Define runtime helper functions.
354#define X(Tag, Name) \
355 RuntimeHelperFunc[static_cast<size_t>(RuntimeHelper::H_##Tag)] = \
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700356 getConstantExternSym(getGlobalString(Name));
Karl Schimpf20070e82016-03-17 13:30:13 -0700357 RUNTIME_HELPER_FUNCTIONS_TABLE
358#undef X
John Porto1bec8bc2015-06-22 10:51:13 -0700359
Karl Schimpf5403f5d2016-01-15 11:07:46 -0800360 TargetLowering::staticInit(this);
Jim Stichnoth54cf1a22016-08-08 14:15:00 -0700361
362 if (getFlags().getEmitRevision()) {
363 // Embed the Subzero revision into the compiled binary by creating a special
364 // global variable initialized with the revision string.
365 auto *Revision = VariableDeclaration::create(&Globals, true);
366 Revision->setName(this, "__Sz_revision");
367 Revision->setIsConstant(true);
368 const char *RevisionString = getSubzeroRevision();
369 Revision->addInitializer(VariableDeclaration::DataInitializer::create(
370 &Globals, RevisionString, 1 + strlen(RevisionString)));
371 Globals.push_back(Revision);
372 }
Jim Stichnoth8363a062014-10-07 10:02:38 -0700373}
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700374
Jim Stichnothfa4efea2015-01-27 05:06:03 -0800375void GlobalContext::translateFunctions() {
Karl Schimpfb6e9b892016-03-08 12:27:12 -0800376 TimerMarker Timer(TimerStack::TT_translateFunctions, this);
Karl Schimpfe8457a22016-03-31 10:20:23 -0700377 while (std::unique_ptr<OptWorkItem> OptItem = optQueueBlockingPop()) {
Jim Stichnoth5f55d402016-06-27 07:30:56 -0700378 std::unique_ptr<EmitterWorkItem> Item;
Karl Schimpfe8457a22016-03-31 10:20:23 -0700379 auto Func = OptItem->getParsedCfg();
Jim Stichnoth8e928382015-02-02 17:03:08 -0800380 // Install Func in TLS for Cfg-specific container allocators.
John Portoe82b5602016-02-24 15:58:55 -0800381 CfgLocalAllocatorScope _(Func.get());
Jim Stichnothfa4efea2015-01-27 05:06:03 -0800382 // Reset per-function stats being accumulated in TLS.
383 resetStats();
Jim Stichnothdd6dcfa2016-04-18 12:52:09 -0700384 // Set verbose level to none if the current function does NOT match the
385 // -verbose-focus command-line option.
386 if (!getFlags().matchVerboseFocusOn(Func->getFunctionName(),
387 Func->getSequenceNumber()))
Jim Stichnothfa4efea2015-01-27 05:06:03 -0800388 Func->setVerbose(IceV_None);
Jim Stichnothdd6dcfa2016-04-18 12:52:09 -0700389 // Disable translation if -notranslate is specified, or if the current
390 // function matches the -translate-only option. If translation is disabled,
391 // just dump the high-level IR and continue.
Karl Schimpfdf80eb82015-02-09 14:20:22 -0800392 if (getFlags().getDisableTranslation() ||
Jim Stichnothdd6dcfa2016-04-18 12:52:09 -0700393 !getFlags().matchTranslateOnly(Func->getFunctionName(),
394 Func->getSequenceNumber())) {
Jim Stichnothfa4efea2015-01-27 05:06:03 -0800395 Func->dump();
Jim Stichnoth5f55d402016-06-27 07:30:56 -0700396 // Add a dummy work item as a placeholder. This maintains sequence
397 // numbers so that the emitter thread will emit subsequent functions.
398 Item = makeUnique<EmitterWorkItem>(Func->getSequenceNumber());
399 emitQueueBlockingPush(std::move(Item));
Jim Stichnothbbca7542015-02-11 16:08:31 -0800400 continue; // Func goes out of scope and gets deleted
401 }
John Portof8b4cc82015-06-09 18:06:19 -0700402
Jim Stichnothbbca7542015-02-11 16:08:31 -0800403 Func->translate();
Jim Stichnothbbca7542015-02-11 16:08:31 -0800404 if (Func->hasError()) {
405 getErrorStatus()->assign(EC_Translation);
406 OstreamLocker L(this);
Karl Schimpf2f67b922015-04-22 15:20:16 -0700407 getStrError() << "ICE translation error: " << Func->getFunctionName()
Jim Stichnothb40595a2016-01-29 06:14:31 -0800408 << ": " << Func->getError() << ": "
409 << Func->getFunctionNameAndSize() << "\n";
John Portobd2e2312016-03-15 11:06:25 -0700410 Item = makeUnique<EmitterWorkItem>(Func->getSequenceNumber());
Jim Stichnothfa4efea2015-01-27 05:06:03 -0800411 } else {
Jim Stichnoth24824e72015-02-12 21:35:34 -0800412 Func->getAssembler<>()->setInternal(Func->getInternal());
Jim Stichnothd442e7e2015-02-12 14:01:48 -0800413 switch (getFlags().getOutFileType()) {
414 case FT_Elf:
415 case FT_Iasm: {
Jim Stichnothbbca7542015-02-11 16:08:31 -0800416 Func->emitIAS();
417 // The Cfg has already emitted into the assembly buffer, so
418 // stats have been fully collected into this thread's TLS.
419 // Dump them before TLS is reset for the next Cfg.
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700420 if (BuildDefs::dump())
Jim Stichnothb5eee3d2016-03-31 11:05:39 -0700421 dumpStats(Func.get());
John Portobd2e2312016-03-15 11:06:25 -0700422 auto Asm = Func->releaseAssembler();
Jim Stichnothbbca7542015-02-11 16:08:31 -0800423 // Copy relevant fields into Asm before Func is deleted.
424 Asm->setFunctionName(Func->getFunctionName());
John Portobd2e2312016-03-15 11:06:25 -0700425 Item = makeUnique<EmitterWorkItem>(Func->getSequenceNumber(),
426 std::move(Asm));
John Portof8b4cc82015-06-09 18:06:19 -0700427 Item->setGlobalInits(Func->getGlobalInits());
Jim Stichnothd442e7e2015-02-12 14:01:48 -0800428 } break;
429 case FT_Asm:
Jim Stichnothbbca7542015-02-11 16:08:31 -0800430 // The Cfg has not been emitted yet, so stats are not ready
431 // to be dumped.
John Portof8b4cc82015-06-09 18:06:19 -0700432 std::unique_ptr<VariableDeclarationList> GlobalInits =
433 Func->getGlobalInits();
John Portobd2e2312016-03-15 11:06:25 -0700434 Item = makeUnique<EmitterWorkItem>(Func->getSequenceNumber(),
435 std::move(Func));
John Portof8b4cc82015-06-09 18:06:19 -0700436 Item->setGlobalInits(std::move(GlobalInits));
Jim Stichnothd442e7e2015-02-12 14:01:48 -0800437 break;
Jim Stichnothfa4efea2015-01-27 05:06:03 -0800438 }
Jim Stichnothfa4efea2015-01-27 05:06:03 -0800439 }
John Portobd2e2312016-03-15 11:06:25 -0700440 assert(Item != nullptr);
441 emitQueueBlockingPush(std::move(Item));
Jim Stichnoth8e928382015-02-02 17:03:08 -0800442 // The Cfg now gets deleted as Func goes out of scope.
Jim Stichnothfa4efea2015-01-27 05:06:03 -0800443 }
444}
445
Jim Stichnothbbca7542015-02-11 16:08:31 -0800446namespace {
447
Jim Stichnothbbca7542015-02-11 16:08:31 -0800448// Ensure Pending is large enough that Pending[Index] is valid.
John Portobd2e2312016-03-15 11:06:25 -0700449void resizePending(std::vector<std::unique_ptr<EmitterWorkItem>> *Pending,
450 uint32_t Index) {
451 if (Index >= Pending->size())
452 Utils::reserveAndResize(*Pending, Index + 1);
Jim Stichnothbbca7542015-02-11 16:08:31 -0800453}
454
455} // end of anonymous namespace
456
Jan Voungfb792842015-06-11 15:27:50 -0700457void GlobalContext::emitFileHeader() {
Karl Schimpfb6e9b892016-03-08 12:27:12 -0800458 TimerMarker T1(Ice::TimerStack::TT_emitAsm, this);
Jan Voungfb792842015-06-11 15:27:50 -0700459 if (getFlags().getOutFileType() == FT_Elf) {
460 getObjectWriter()->writeInitialELFHeader();
461 } else {
Jim Stichnoth20b71f52015-06-24 15:52:24 -0700462 if (!BuildDefs::dump()) {
Jim Stichnothc8799682015-06-22 13:04:10 -0700463 getStrError() << "emitFileHeader for non-ELF";
464 getErrorStatus()->assign(EC_Translation);
465 }
Jan Voungfb792842015-06-11 15:27:50 -0700466 TargetHeaderLowering::createLowering(this)->lower();
467 }
468}
469
Jim Stichnothcac003e2015-06-18 12:48:58 -0700470void GlobalContext::lowerConstants() { DataLowering->lowerConstants(); }
John Porto8b1a7052015-06-17 13:20:08 -0700471
Andrew Scull86df4e92015-07-30 13:54:44 -0700472void GlobalContext::lowerJumpTables() { DataLowering->lowerJumpTables(); }
473
John Portoa78e4ba2016-03-15 09:28:04 -0700474void GlobalContext::saveBlockInfoPtrs() {
475 for (VariableDeclaration *Global : Globals) {
John Porto844211e2016-02-04 08:42:48 -0800476 if (Cfg::isProfileGlobal(*Global)) {
John Portoa78e4ba2016-03-15 09:28:04 -0700477 ProfileBlockInfos.push_back(Global);
John Porto844211e2016-02-04 08:42:48 -0800478 }
479 }
480}
481
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700482void GlobalContext::lowerGlobals(const std::string &SectionSuffix) {
John Porto8b1a7052015-06-17 13:20:08 -0700483 TimerMarker T(TimerStack::TT_emitGlobalInitializers, this);
Karl Schimpfd4699942016-04-02 09:55:31 -0700484 const bool DumpGlobalVariables =
485 BuildDefs::dump() && (getFlags().getVerbose() & IceV_GlobalInit) &&
Jim Stichnothdd6dcfa2016-04-18 12:52:09 -0700486 getFlags().matchVerboseFocusOn("", 0);
John Porto8b1a7052015-06-17 13:20:08 -0700487 if (DumpGlobalVariables) {
488 OstreamLocker L(this);
489 Ostream &Stream = getStrDump();
490 for (const Ice::VariableDeclaration *Global : Globals) {
Jim Stichnoth98ba0062016-03-07 09:26:22 -0800491 Global->dump(Stream);
John Porto8b1a7052015-06-17 13:20:08 -0700492 }
493 }
Karl Schimpfd4699942016-04-02 09:55:31 -0700494 if (getFlags().getDisableTranslation())
John Porto8b1a7052015-06-17 13:20:08 -0700495 return;
496
John Portoa78e4ba2016-03-15 09:28:04 -0700497 saveBlockInfoPtrs();
Qining Lu7cd53512015-06-26 09:36:00 -0700498 // If we need to shuffle the layout of global variables, shuffle them now.
John Portoc5bc5cb2016-03-21 11:18:02 -0700499 if (getFlags().getReorderGlobalVariables()) {
Qining Luaee5fa82015-08-20 14:59:03 -0700500 // Create a random number generator for global variable reordering.
501 RandomNumberGenerator RNG(getFlags().getRandomSeed(),
502 RPE_GlobalVariableReordering);
Qining Lu7cd53512015-06-26 09:36:00 -0700503 RandomShuffle(Globals.begin(), Globals.end(),
Qining Luaee5fa82015-08-20 14:59:03 -0700504 [&RNG](int N) { return (uint32_t)RNG.next(N); });
Qining Lu7cd53512015-06-26 09:36:00 -0700505 }
Thomas Livelyaab70992016-06-07 13:54:59 -0700506
507 if (!BuildDefs::minimal() && Instrumentor)
Thomas Lively3f5cb6f2016-06-13 11:23:29 -0700508 Instrumentor->instrumentGlobals(Globals);
Thomas Livelyaab70992016-06-07 13:54:59 -0700509
John Porto8b1a7052015-06-17 13:20:08 -0700510 DataLowering->lowerGlobals(Globals, SectionSuffix);
John Portoa78e4ba2016-03-15 09:28:04 -0700511 if (ProfileBlockInfos.empty() && DisposeGlobalVariablesAfterLowering) {
512 Globals.clearAndPurge();
513 } else {
514 Globals.clear();
John Porto1bec8bc2015-06-22 10:51:13 -0700515 }
John Porto8b1a7052015-06-17 13:20:08 -0700516}
517
518void GlobalContext::lowerProfileData() {
John Porto1bec8bc2015-06-22 10:51:13 -0700519 // ProfileBlockInfoVarDecl is initialized in the constructor, and will only
520 // ever be nullptr after this method completes. This assertion is a convoluted
521 // way of ensuring lowerProfileData is invoked a single time.
John Portoa78e4ba2016-03-15 09:28:04 -0700522 assert(ProfileBlockInfoVarDecl == nullptr);
523
524 auto GlobalVariablePool = getInitializerAllocator();
525 ProfileBlockInfoVarDecl =
526 VariableDeclaration::createExternal(GlobalVariablePool.get());
527 ProfileBlockInfoVarDecl->setAlignment(typeWidthInBytes(IceType_i64));
528 ProfileBlockInfoVarDecl->setIsConstant(true);
529
530 // Note: if you change this symbol, make sure to update
531 // runtime/szrt_profiler.c as well.
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700532 ProfileBlockInfoVarDecl->setName(this, "__Sz_block_profile_info");
John Portoa78e4ba2016-03-15 09:28:04 -0700533
534 for (const VariableDeclaration *PBI : ProfileBlockInfos) {
535 if (Cfg::isProfileGlobal(*PBI)) {
536 constexpr RelocOffsetT BlockExecutionCounterOffset = 0;
537 ProfileBlockInfoVarDecl->addInitializer(
538 VariableDeclaration::RelocInitializer::create(
539 GlobalVariablePool.get(), PBI,
540 {RelocOffset::create(this, BlockExecutionCounterOffset)}));
541 }
542 }
543
John Porto8b1a7052015-06-17 13:20:08 -0700544 // This adds a 64-bit sentinel entry to the end of our array. For 32-bit
545 // architectures this will waste 4 bytes.
546 const SizeT Sizeof64BitNullPtr = typeWidthInBytes(IceType_i64);
547 ProfileBlockInfoVarDecl->addInitializer(
John Portoa78e4ba2016-03-15 09:28:04 -0700548 VariableDeclaration::ZeroInitializer::create(GlobalVariablePool.get(),
549 Sizeof64BitNullPtr));
John Porto1bec8bc2015-06-22 10:51:13 -0700550 Globals.push_back(ProfileBlockInfoVarDecl);
John Porto8b1a7052015-06-17 13:20:08 -0700551 constexpr char ProfileDataSection[] = "$sz_profiler$";
552 lowerGlobals(ProfileDataSection);
553}
554
Jim Stichnothbbca7542015-02-11 16:08:31 -0800555void GlobalContext::emitItems() {
556 const bool Threaded = !getFlags().isSequential();
557 // Pending is a vector containing the reassembled, ordered list of
558 // work items. When we're ready for the next item, we first check
559 // whether it's in the Pending list. If not, we take an item from
560 // the work queue, and if it's not the item we're waiting for, we
561 // insert it into Pending and repeat. The work item is deleted
562 // after it is processed.
John Portobd2e2312016-03-15 11:06:25 -0700563 std::vector<std::unique_ptr<EmitterWorkItem>> Pending;
Jim Stichnothbbca7542015-02-11 16:08:31 -0800564 uint32_t DesiredSequenceNumber = getFirstSequenceNumber();
Qining Lu7cd53512015-06-26 09:36:00 -0700565 uint32_t ShuffleStartIndex = DesiredSequenceNumber;
566 uint32_t ShuffleEndIndex = DesiredSequenceNumber;
567 bool EmitQueueEmpty = false;
568 const uint32_t ShuffleWindowSize =
569 std::max(1u, getFlags().getReorderFunctionsWindowSize());
John Portoc5bc5cb2016-03-21 11:18:02 -0700570 bool Shuffle = Threaded && getFlags().getReorderFunctions();
Qining Luaee5fa82015-08-20 14:59:03 -0700571 // Create a random number generator for function reordering.
572 RandomNumberGenerator RNG(getFlags().getRandomSeed(), RPE_FunctionReordering);
573
Qining Lu7cd53512015-06-26 09:36:00 -0700574 while (!EmitQueueEmpty) {
John Portobd2e2312016-03-15 11:06:25 -0700575 resizePending(&Pending, DesiredSequenceNumber);
Jim Stichnothbbca7542015-02-11 16:08:31 -0800576 // See if Pending contains DesiredSequenceNumber.
John Portobd2e2312016-03-15 11:06:25 -0700577 if (Pending[DesiredSequenceNumber] == nullptr) {
Qining Lu7cd53512015-06-26 09:36:00 -0700578 // We need to fetch an EmitterWorkItem from the queue.
John Portobd2e2312016-03-15 11:06:25 -0700579 auto RawItem = emitQueueBlockingPop();
Qining Lu7cd53512015-06-26 09:36:00 -0700580 if (RawItem == nullptr) {
581 // This is the notifier for an empty queue.
582 EmitQueueEmpty = true;
583 } else {
584 // We get an EmitterWorkItem, we need to add it to Pending.
585 uint32_t ItemSeq = RawItem->getSequenceNumber();
586 if (Threaded && ItemSeq != DesiredSequenceNumber) {
587 // Not the desired one, add it to Pending but do not increase
588 // DesiredSequenceNumber. Continue the loop, do not emit the item.
John Portobd2e2312016-03-15 11:06:25 -0700589 resizePending(&Pending, ItemSeq);
590 Pending[ItemSeq] = std::move(RawItem);
Qining Lu7cd53512015-06-26 09:36:00 -0700591 continue;
592 }
593 // ItemSeq == DesiredSequenceNumber, we need to check if we should
594 // emit it or not. If !Threaded, we're OK with ItemSeq !=
595 // DesiredSequenceNumber.
John Portobd2e2312016-03-15 11:06:25 -0700596 Pending[DesiredSequenceNumber] = std::move(RawItem);
Jim Stichnothbbca7542015-02-11 16:08:31 -0800597 }
Jim Stichnothbbca7542015-02-11 16:08:31 -0800598 }
John Portobd2e2312016-03-15 11:06:25 -0700599 const auto *CurrentWorkItem = Pending[DesiredSequenceNumber].get();
600
Qining Lu7cd53512015-06-26 09:36:00 -0700601 // We have the desired EmitterWorkItem or nullptr as the end notifier.
602 // If the emitter queue is not empty, increase DesiredSequenceNumber and
603 // ShuffleEndIndex.
604 if (!EmitQueueEmpty) {
605 DesiredSequenceNumber++;
606 ShuffleEndIndex++;
607 }
608
609 if (Shuffle) {
610 // Continue fetching EmitterWorkItem if function reordering is turned on,
611 // and emit queue is not empty, and the number of consecutive pending
612 // items is smaller than the window size, and RawItem is not a
613 // WI_GlobalInits kind. Emit WI_GlobalInits kind block first to avoid
614 // holding an arbitrarily large GlobalDeclarationList.
615 if (!EmitQueueEmpty &&
616 ShuffleEndIndex - ShuffleStartIndex < ShuffleWindowSize &&
John Portobd2e2312016-03-15 11:06:25 -0700617 CurrentWorkItem->getKind() != EmitterWorkItem::WI_GlobalInits)
Qining Lu7cd53512015-06-26 09:36:00 -0700618 continue;
619
620 // Emit the EmitterWorkItem between Pending[ShuffleStartIndex] to
621 // Pending[ShuffleEndIndex]. If function reordering turned on, shuffle the
622 // pending items from Pending[ShuffleStartIndex] to
623 // Pending[ShuffleEndIndex].
624 RandomShuffle(Pending.begin() + ShuffleStartIndex,
625 Pending.begin() + ShuffleEndIndex,
Qining Luaee5fa82015-08-20 14:59:03 -0700626 [&RNG](uint64_t N) { return (uint32_t)RNG.next(N); });
Qining Lu7cd53512015-06-26 09:36:00 -0700627 }
628
629 // Emit the item from ShuffleStartIndex to ShuffleEndIndex.
630 for (uint32_t I = ShuffleStartIndex; I < ShuffleEndIndex; I++) {
John Portobd2e2312016-03-15 11:06:25 -0700631 std::unique_ptr<EmitterWorkItem> Item = std::move(Pending[I]);
Qining Lu7cd53512015-06-26 09:36:00 -0700632
633 switch (Item->getKind()) {
634 case EmitterWorkItem::WI_Nop:
635 break;
636 case EmitterWorkItem::WI_GlobalInits: {
637 accumulateGlobals(Item->getGlobalInits());
638 } break;
639 case EmitterWorkItem::WI_Asm: {
640 lowerGlobalsIfNoCodeHasBeenSeen();
641 accumulateGlobals(Item->getGlobalInits());
642
643 std::unique_ptr<Assembler> Asm = Item->getAsm();
644 Asm->alignFunction();
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700645 GlobalString Name = Asm->getFunctionName();
Qining Lu7cd53512015-06-26 09:36:00 -0700646 switch (getFlags().getOutFileType()) {
647 case FT_Elf:
Jim Stichnoth98ba0062016-03-07 09:26:22 -0800648 getObjectWriter()->writeFunctionCode(Name, Asm->getInternal(),
Qining Lu7cd53512015-06-26 09:36:00 -0700649 Asm.get());
650 break;
651 case FT_Iasm: {
652 OstreamLocker L(this);
Jim Stichnoth98ba0062016-03-07 09:26:22 -0800653 Cfg::emitTextHeader(Name, this, Asm.get());
Jim Stichnoth5bff61c2015-10-28 09:26:00 -0700654 Asm->emitIASBytes(this);
Qining Lu7cd53512015-06-26 09:36:00 -0700655 } break;
656 case FT_Asm:
657 llvm::report_fatal_error("Unexpected FT_Asm");
658 break;
659 }
660 } break;
661 case EmitterWorkItem::WI_Cfg: {
662 if (!BuildDefs::dump())
663 llvm::report_fatal_error("WI_Cfg work item created inappropriately");
664 lowerGlobalsIfNoCodeHasBeenSeen();
665 accumulateGlobals(Item->getGlobalInits());
666
667 assert(getFlags().getOutFileType() == FT_Asm);
668 std::unique_ptr<Cfg> Func = Item->getCfg();
669 // Unfortunately, we have to temporarily install the Cfg in TLS
670 // because Variable::asType() uses the allocator to create the
671 // differently-typed copy.
John Portoe82b5602016-02-24 15:58:55 -0800672 CfgLocalAllocatorScope _(Func.get());
Qining Lu7cd53512015-06-26 09:36:00 -0700673 Func->emit();
Jim Stichnothb5eee3d2016-03-31 11:05:39 -0700674 dumpStats(Func.get());
Qining Lu7cd53512015-06-26 09:36:00 -0700675 } break;
676 }
677 }
678 // Update the start index for next shuffling queue
679 ShuffleStartIndex = ShuffleEndIndex;
Jim Stichnothbbca7542015-02-11 16:08:31 -0800680 }
John Portof8b4cc82015-06-09 18:06:19 -0700681
John Porto8b1a7052015-06-17 13:20:08 -0700682 // In case there are no code to be generated, we invoke the conditional
683 // lowerGlobals again -- this is a no-op if code has been emitted.
684 lowerGlobalsIfNoCodeHasBeenSeen();
Jim Stichnothbbca7542015-02-11 16:08:31 -0800685}
686
Karl Schimpf9d98d792014-10-13 15:01:08 -0700687GlobalContext::~GlobalContext() {
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800688 llvm::DeleteContainerPointers(AllThreadContexts);
John Porto1bec8bc2015-06-22 10:51:13 -0700689 LockedPtr<DestructorArray> Dtors = getDestructors();
690 // Destructors are invoked in the opposite object construction order.
Andrew Scull00741a02015-09-16 19:04:09 -0700691 for (const auto &Dtor : reverse_range(*Dtors))
692 Dtor();
Karl Schimpf9d98d792014-10-13 15:01:08 -0700693}
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700694
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700695void GlobalContext::dumpStrings() {
696 if (!getFlags().getDumpStrings())
697 return;
698 OstreamLocker _(this);
699 Ostream &Str = getStrDump();
700 Str << "GlobalContext strings:\n";
701 getStrings()->dump(Str);
702}
703
Jim Stichnoth9f9aa2c2016-03-07 08:25:24 -0800704void GlobalContext::dumpConstantLookupCounts() {
705 if (!BuildDefs::dump())
706 return;
Karl Schimpfd4699942016-04-02 09:55:31 -0700707 const bool DumpCounts = (getFlags().getVerbose() & IceV_ConstPoolStats) &&
Jim Stichnothdd6dcfa2016-04-18 12:52:09 -0700708 getFlags().matchVerboseFocusOn("", 0);
Jim Stichnoth9f9aa2c2016-03-07 08:25:24 -0800709 if (!DumpCounts)
710 return;
711
712 OstreamLocker _(this);
713 Ostream &Str = getStrDump();
714 Str << "Constant pool use stats: count+value+type\n";
715#define X(WhichPool) \
716 for (auto *C : getConstPool()->WhichPool.getConstantPool()) { \
717 Str << C->getLookupCount() << " "; \
718 C->dump(Str); \
719 Str << " " << C->getType() << "\n"; \
720 }
721 X(Integers1);
722 X(Integers8);
723 X(Integers16);
724 X(Integers32);
725 X(Integers64);
726 X(Floats);
727 X(Doubles);
728 X(Relocatables);
729 X(ExternRelocatables);
730#undef X
731}
732
Andrew Scull57e12682015-09-16 11:30:19 -0700733// TODO(stichnot): Consider adding thread-local caches of constant pool entries
734// to reduce contention.
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800735
736// All locking is done by the getConstantInt[0-9]+() target function.
Jim Stichnothd2cb4362014-11-20 11:24:42 -0800737Constant *GlobalContext::getConstantInt(Type Ty, int64_t Value) {
738 switch (Ty) {
739 case IceType_i1:
740 return getConstantInt1(Value);
741 case IceType_i8:
742 return getConstantInt8(Value);
743 case IceType_i16:
744 return getConstantInt16(Value);
745 case IceType_i32:
746 return getConstantInt32(Value);
747 case IceType_i64:
748 return getConstantInt64(Value);
749 default:
750 llvm_unreachable("Bad integer type for getConstant");
751 }
Jim Stichnothae953202014-12-20 06:17:49 -0800752 return nullptr;
Jan Voungbc004632014-09-16 15:09:10 -0700753}
754
Karl Schimpf20070e82016-03-17 13:30:13 -0700755Constant *GlobalContext::getConstantInt1Internal(int8_t ConstantInt1) {
Jim Stichnothd2cb4362014-11-20 11:24:42 -0800756 ConstantInt1 &= INT8_C(1);
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800757 return getConstPool()->Integers1.getOrAdd(this, ConstantInt1);
Jim Stichnothd2cb4362014-11-20 11:24:42 -0800758}
759
Karl Schimpf20070e82016-03-17 13:30:13 -0700760Constant *GlobalContext::getConstantInt8Internal(int8_t ConstantInt8) {
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800761 return getConstPool()->Integers8.getOrAdd(this, ConstantInt8);
Jim Stichnothd2cb4362014-11-20 11:24:42 -0800762}
763
Karl Schimpf20070e82016-03-17 13:30:13 -0700764Constant *GlobalContext::getConstantInt16Internal(int16_t ConstantInt16) {
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800765 return getConstPool()->Integers16.getOrAdd(this, ConstantInt16);
Jim Stichnothd2cb4362014-11-20 11:24:42 -0800766}
767
Karl Schimpf20070e82016-03-17 13:30:13 -0700768Constant *GlobalContext::getConstantInt32Internal(int32_t ConstantInt32) {
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800769 return getConstPool()->Integers32.getOrAdd(this, ConstantInt32);
Jim Stichnothd2cb4362014-11-20 11:24:42 -0800770}
771
Karl Schimpf20070e82016-03-17 13:30:13 -0700772Constant *GlobalContext::getConstantInt64Internal(int64_t ConstantInt64) {
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800773 return getConstPool()->Integers64.getOrAdd(this, ConstantInt64);
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700774}
775
776Constant *GlobalContext::getConstantFloat(float ConstantFloat) {
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800777 return getConstPool()->Floats.getOrAdd(this, ConstantFloat);
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700778}
779
780Constant *GlobalContext::getConstantDouble(double ConstantDouble) {
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800781 return getConstPool()->Doubles.getOrAdd(this, ConstantDouble);
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700782}
783
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700784Constant *GlobalContext::getConstantSymWithEmitString(
785 const RelocOffsetT Offset, const RelocOffsetArray &OffsetExpr,
786 GlobalString Name, const std::string &EmitString) {
John Porto27fddcc2016-02-02 15:06:09 -0800787 return getConstPool()->Relocatables.getOrAdd(
Jim Stichnoth98ba0062016-03-07 09:26:22 -0800788 this, RelocatableTuple(Offset, OffsetExpr, Name, EmitString));
John Porto27fddcc2016-02-02 15:06:09 -0800789}
790
Jim Stichnothd2cb4362014-11-20 11:24:42 -0800791Constant *GlobalContext::getConstantSym(RelocOffsetT Offset,
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700792 GlobalString Name) {
John Porto27fddcc2016-02-02 15:06:09 -0800793 constexpr char EmptyEmitString[] = "";
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700794 return getConstantSymWithEmitString(Offset, {}, Name, EmptyEmitString);
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700795}
796
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700797Constant *GlobalContext::getConstantExternSym(GlobalString Name) {
Jim Stichnoth5bff61c2015-10-28 09:26:00 -0700798 constexpr RelocOffsetT Offset = 0;
Jan Voung261cae32015-02-01 10:31:03 -0800799 return getConstPool()->ExternRelocatables.getOrAdd(
Jim Stichnoth98ba0062016-03-07 09:26:22 -0800800 this, RelocatableTuple(Offset, {}, Name));
Jan Voung261cae32015-02-01 10:31:03 -0800801}
802
Matt Walad8f4a7d2014-06-18 09:55:03 -0700803Constant *GlobalContext::getConstantUndef(Type Ty) {
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800804 return getConstPool()->Undefs.getOrAdd(this, Ty);
Matt Walad8f4a7d2014-06-18 09:55:03 -0700805}
806
807Constant *GlobalContext::getConstantZero(Type Ty) {
Karl Schimpf20070e82016-03-17 13:30:13 -0700808 Constant *Zero = ConstZeroForType[Ty];
809 if (Zero == nullptr)
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700810 llvm::report_fatal_error("Unsupported constant type: " + typeStdString(Ty));
Karl Schimpf20070e82016-03-17 13:30:13 -0700811 return Zero;
812}
813
814// All locking is done by the getConstant*() target function.
815Constant *GlobalContext::getConstantZeroInternal(Type Ty) {
Matt Walad8f4a7d2014-06-18 09:55:03 -0700816 switch (Ty) {
817 case IceType_i1:
Karl Schimpf20070e82016-03-17 13:30:13 -0700818 return getConstantInt1Internal(0);
Matt Walad8f4a7d2014-06-18 09:55:03 -0700819 case IceType_i8:
Karl Schimpf20070e82016-03-17 13:30:13 -0700820 return getConstantInt8Internal(0);
Matt Walad8f4a7d2014-06-18 09:55:03 -0700821 case IceType_i16:
Karl Schimpf20070e82016-03-17 13:30:13 -0700822 return getConstantInt16Internal(0);
Matt Walad8f4a7d2014-06-18 09:55:03 -0700823 case IceType_i32:
Karl Schimpf20070e82016-03-17 13:30:13 -0700824 return getConstantInt32Internal(0);
Matt Walad8f4a7d2014-06-18 09:55:03 -0700825 case IceType_i64:
Karl Schimpf20070e82016-03-17 13:30:13 -0700826 return getConstantInt64Internal(0);
Matt Walad8f4a7d2014-06-18 09:55:03 -0700827 case IceType_f32:
828 return getConstantFloat(0);
829 case IceType_f64:
830 return getConstantDouble(0);
Karl Schimpf20070e82016-03-17 13:30:13 -0700831 default:
832 return nullptr;
Matt Walad8f4a7d2014-06-18 09:55:03 -0700833 }
Matt Walad8f4a7d2014-06-18 09:55:03 -0700834}
835
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800836ConstantList GlobalContext::getConstantPool(Type Ty) {
Jim Stichnothf61d5b22014-05-23 13:31:24 -0700837 switch (Ty) {
838 case IceType_i1:
839 case IceType_i8:
Qining Lu253dc8a2015-06-22 10:10:23 -0700840 return getConstPool()->Integers8.getConstantPool();
Jim Stichnothf61d5b22014-05-23 13:31:24 -0700841 case IceType_i16:
Qining Lu253dc8a2015-06-22 10:10:23 -0700842 return getConstPool()->Integers16.getConstantPool();
Jim Stichnothf61d5b22014-05-23 13:31:24 -0700843 case IceType_i32:
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800844 return getConstPool()->Integers32.getConstantPool();
Jim Stichnothf61d5b22014-05-23 13:31:24 -0700845 case IceType_i64:
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800846 return getConstPool()->Integers64.getConstantPool();
Jim Stichnothf61d5b22014-05-23 13:31:24 -0700847 case IceType_f32:
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800848 return getConstPool()->Floats.getConstantPool();
Jim Stichnothf61d5b22014-05-23 13:31:24 -0700849 case IceType_f64:
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800850 return getConstPool()->Doubles.getConstantPool();
Matt Wala928f1292014-07-07 16:50:46 -0700851 case IceType_v4i1:
852 case IceType_v8i1:
853 case IceType_v16i1:
854 case IceType_v16i8:
855 case IceType_v8i16:
856 case IceType_v4i32:
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700857 case IceType_v4f32:
858 llvm::report_fatal_error("Unsupported constant type: " + typeStdString(Ty));
859 break;
Jim Stichnothf61d5b22014-05-23 13:31:24 -0700860 case IceType_void:
861 case IceType_NUM:
862 break;
863 }
864 llvm_unreachable("Unknown type");
865}
866
Jan Voung261cae32015-02-01 10:31:03 -0800867ConstantList GlobalContext::getConstantExternSyms() {
868 return getConstPool()->ExternRelocatables.getConstantPool();
869}
870
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700871GlobalString GlobalContext::getGlobalString(const std::string &Name) {
872 return GlobalString::createWithString(this, Name);
873}
874
Andrew Scull1eda90a2015-08-04 17:03:19 -0700875JumpTableDataList GlobalContext::getJumpTables() {
876 JumpTableDataList JumpTables(*getJumpTableList());
Andrew Scull57e12682015-09-16 11:30:19 -0700877 // Make order deterministic by sorting into functions and then ID of the jump
878 // table within that function.
Qining Luaee5fa82015-08-20 14:59:03 -0700879 std::sort(JumpTables.begin(), JumpTables.end(),
880 [](const JumpTableData &A, const JumpTableData &B) {
881 if (A.getFunctionName() != B.getFunctionName())
882 return A.getFunctionName() < B.getFunctionName();
883 return A.getId() < B.getId();
884 });
885
John Portoc5bc5cb2016-03-21 11:18:02 -0700886 if (getFlags().getReorderPooledConstants()) {
Qining Luaee5fa82015-08-20 14:59:03 -0700887 // If reorder-pooled-constants option is set to true, we also shuffle the
888 // jump tables before emitting them.
889
890 // Create a random number generator for jump tables reordering, considering
891 // jump tables as pooled constants.
892 RandomNumberGenerator RNG(getFlags().getRandomSeed(),
893 RPE_PooledConstantReordering);
John Portoe0d9afa2015-08-05 10:13:44 -0700894 RandomShuffle(JumpTables.begin(), JumpTables.end(),
Qining Luaee5fa82015-08-20 14:59:03 -0700895 [&RNG](uint64_t N) { return (uint32_t)RNG.next(N); });
Andrew Scull1eda90a2015-08-04 17:03:19 -0700896 }
897 return JumpTables;
898}
899
John Porto03077212016-04-05 06:30:21 -0700900void GlobalContext::addJumpTableData(JumpTableData JumpTable) {
901 getJumpTableList()->emplace_back(std::move(JumpTable));
Andrew Scull86df4e92015-07-30 13:54:44 -0700902}
903
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700904TimerStackIdT GlobalContext::newTimerStackID(const std::string &Name) {
Jim Stichnothb88d8c82016-03-11 15:33:00 -0800905 if (!BuildDefs::timers())
Jim Stichnoth1c44d812014-12-08 14:57:52 -0800906 return 0;
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800907 auto Timers = getTimers();
908 TimerStackIdT NewID = Timers->size();
909 Timers->push_back(TimerStack(Name));
Jim Stichnoth8363a062014-10-07 10:02:38 -0700910 return NewID;
911}
Jim Stichnothc4554d72014-09-30 16:49:38 -0700912
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800913TimerIdT GlobalContext::getTimerID(TimerStackIdT StackID,
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700914 const std::string &Name) {
Jim Stichnoth2b000fd2016-04-06 06:37:15 -0700915 auto *Timers = &ICE_TLS_GET_FIELD(TLS)->Timers;
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800916 assert(StackID < Timers->size());
917 return Timers->at(StackID).getTimerID(Name);
918}
919
Jim Stichnoth8363a062014-10-07 10:02:38 -0700920void GlobalContext::pushTimer(TimerIdT ID, TimerStackIdT StackID) {
Jim Stichnoth2b000fd2016-04-06 06:37:15 -0700921 auto *Timers = &ICE_TLS_GET_FIELD(TLS)->Timers;
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800922 assert(StackID < Timers->size());
923 Timers->at(StackID).push(ID);
Jim Stichnoth8363a062014-10-07 10:02:38 -0700924}
925
926void GlobalContext::popTimer(TimerIdT ID, TimerStackIdT StackID) {
Jim Stichnoth2b000fd2016-04-06 06:37:15 -0700927 auto *Timers = &ICE_TLS_GET_FIELD(TLS)->Timers;
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800928 assert(StackID < Timers->size());
929 Timers->at(StackID).pop(ID);
Jim Stichnoth8363a062014-10-07 10:02:38 -0700930}
Jim Stichnothc4554d72014-09-30 16:49:38 -0700931
Jim Stichnothd14b1a02014-10-08 08:28:36 -0700932void GlobalContext::resetTimer(TimerStackIdT StackID) {
Jim Stichnoth2b000fd2016-04-06 06:37:15 -0700933 auto *Timers = &ICE_TLS_GET_FIELD(TLS)->Timers;
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800934 assert(StackID < Timers->size());
935 Timers->at(StackID).reset();
Jim Stichnothd14b1a02014-10-08 08:28:36 -0700936}
937
Jim Stichnoth2b000fd2016-04-06 06:37:15 -0700938std::string GlobalContext::getTimerName(TimerStackIdT StackID) {
939 auto *Timers = &ICE_TLS_GET_FIELD(TLS)->Timers;
940 assert(StackID < Timers->size());
941 return Timers->at(StackID).getName();
942}
943
Jim Stichnothd14b1a02014-10-08 08:28:36 -0700944void GlobalContext::setTimerName(TimerStackIdT StackID,
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700945 const std::string &NewName) {
Jim Stichnoth2b000fd2016-04-06 06:37:15 -0700946 auto *Timers = &ICE_TLS_GET_FIELD(TLS)->Timers;
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800947 assert(StackID < Timers->size());
948 Timers->at(StackID).setName(NewName);
Jim Stichnothd14b1a02014-10-08 08:28:36 -0700949}
950
Andrew Scull57e12682015-09-16 11:30:19 -0700951// Note: optQueueBlockingPush and optQueueBlockingPop use unique_ptr at the
952// interface to take and transfer ownership, but they internally store the raw
953// Cfg pointer in the work queue. This allows e.g. future queue optimizations
954// such as the use of atomics to modify queue elements.
Karl Schimpfe8457a22016-03-31 10:20:23 -0700955void GlobalContext::optQueueBlockingPush(std::unique_ptr<OptWorkItem> Item) {
956 assert(Item);
Jim Stichnothb88d8c82016-03-11 15:33:00 -0800957 {
958 TimerMarker _(TimerStack::TT_qTransPush, this);
Karl Schimpfe8457a22016-03-31 10:20:23 -0700959 OptQ.blockingPush(std::move(Item));
Jim Stichnothb88d8c82016-03-11 15:33:00 -0800960 }
Jim Stichnothbbca7542015-02-11 16:08:31 -0800961 if (getFlags().isSequential())
962 translateFunctions();
Jim Stichnoth8e928382015-02-02 17:03:08 -0800963}
964
Karl Schimpfe8457a22016-03-31 10:20:23 -0700965std::unique_ptr<OptWorkItem> GlobalContext::optQueueBlockingPop() {
Jim Stichnothb88d8c82016-03-11 15:33:00 -0800966 TimerMarker _(TimerStack::TT_qTransPop, this);
Karl Schimpf3018cf22016-04-11 14:49:01 -0700967 return OptQ.blockingPop(OptQWakeupSize);
Jim Stichnothbbca7542015-02-11 16:08:31 -0800968}
969
John Portobd2e2312016-03-15 11:06:25 -0700970void GlobalContext::emitQueueBlockingPush(
971 std::unique_ptr<EmitterWorkItem> Item) {
Jim Stichnothbbca7542015-02-11 16:08:31 -0800972 assert(Item);
Jim Stichnothb88d8c82016-03-11 15:33:00 -0800973 {
974 TimerMarker _(TimerStack::TT_qEmitPush, this);
John Portobd2e2312016-03-15 11:06:25 -0700975 EmitQ.blockingPush(std::move(Item));
Jim Stichnothb88d8c82016-03-11 15:33:00 -0800976 }
Jim Stichnothbbca7542015-02-11 16:08:31 -0800977 if (getFlags().isSequential())
978 emitItems();
979}
980
John Portobd2e2312016-03-15 11:06:25 -0700981std::unique_ptr<EmitterWorkItem> GlobalContext::emitQueueBlockingPop() {
Jim Stichnothb88d8c82016-03-11 15:33:00 -0800982 TimerMarker _(TimerStack::TT_qEmitPop, this);
Jim Stichnothbbca7542015-02-11 16:08:31 -0800983 return EmitQ.blockingPop();
Jim Stichnoth8e928382015-02-02 17:03:08 -0800984}
985
Jim Stichnothb5eee3d2016-03-31 11:05:39 -0700986void GlobalContext::dumpStats(const Cfg *Func) {
Karl Schimpfdf80eb82015-02-09 14:20:22 -0800987 if (!getFlags().getDumpStats())
Karl Schimpfb6c96af2014-11-17 10:58:39 -0800988 return;
Jim Stichnothb5eee3d2016-03-31 11:05:39 -0700989 if (Func == nullptr) {
990 getStatsCumulative()->dump(Func, this);
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800991 } else {
Jim Stichnothb5eee3d2016-03-31 11:05:39 -0700992 ICE_TLS_GET_FIELD(TLS)->StatsFunction.dump(Func, this);
Jim Stichnoth18735602014-09-16 19:59:35 -0700993 }
994}
995
Jim Stichnoth8363a062014-10-07 10:02:38 -0700996void GlobalContext::dumpTimers(TimerStackIdT StackID, bool DumpCumulative) {
Jim Stichnothb88d8c82016-03-11 15:33:00 -0800997 if (!BuildDefs::timers())
Karl Schimpfb6c96af2014-11-17 10:58:39 -0800998 return;
Jim Stichnothe4a8f402015-01-20 12:52:51 -0800999 auto Timers = getTimers();
1000 assert(Timers->size() > StackID);
1001 OstreamLocker L(this);
1002 Timers->at(StackID).dump(getStrDump(), DumpCumulative);
Jim Stichnoth8363a062014-10-07 10:02:38 -07001003}
1004
Jim Stichnoth2b000fd2016-04-06 06:37:15 -07001005void GlobalContext::dumpLocalTimers(const std::string &TimerNameOverride,
1006 TimerStackIdT StackID,
1007 bool DumpCumulative) {
1008 if (!BuildDefs::timers())
1009 return;
1010 auto *Timers = &ICE_TLS_GET_FIELD(TLS)->Timers;
1011 assert(Timers->size() > StackID);
1012 // Temporarily override the thread-local timer name with the given name.
1013 // Don't do it permanently because the final timer merge at the end expects
1014 // the thread-local timer names to be the same as the global timer name.
1015 auto OrigName = getTimerName(StackID);
1016 setTimerName(StackID, TimerNameOverride);
1017 {
1018 OstreamLocker _(this);
1019 Timers->at(StackID).dump(getStrDump(), DumpCumulative);
1020 }
1021 setTimerName(StackID, OrigName);
1022}
1023
Jim Stichnoth467ffe52016-03-29 15:01:06 -07001024LockedPtr<StringPool>
1025GlobalStringPoolTraits::getStrings(const GlobalContext *PoolOwner) {
1026 return PoolOwner->getStrings();
1027}
1028
Jim Stichnothb88d8c82016-03-11 15:33:00 -08001029TimerIdT TimerMarker::getTimerIdFromFuncName(GlobalContext *Ctx,
Jim Stichnoth467ffe52016-03-29 15:01:06 -07001030 const std::string &FuncName) {
Jim Stichnothb88d8c82016-03-11 15:33:00 -08001031 if (!BuildDefs::timers())
1032 return 0;
Karl Schimpfd4699942016-04-02 09:55:31 -07001033 if (!getFlags().getTimeEachFunction())
Jim Stichnothb88d8c82016-03-11 15:33:00 -08001034 return 0;
1035 return Ctx->getTimerID(GlobalContext::TSK_Funcs, FuncName);
1036}
1037
Jim Stichnoth380d7b92015-01-30 13:10:39 -08001038void TimerMarker::push() {
1039 switch (StackID) {
1040 case GlobalContext::TSK_Default:
Jim Stichnoth318c01b2016-04-03 21:58:03 -07001041 Active = getFlags().getSubzeroTimingEnabled() ||
Jim Stichnothdd6dcfa2016-04-18 12:52:09 -07001042 !getFlags().getTimingFocusOnString().empty();
Jim Stichnoth380d7b92015-01-30 13:10:39 -08001043 break;
1044 case GlobalContext::TSK_Funcs:
Karl Schimpfd4699942016-04-02 09:55:31 -07001045 Active = getFlags().getTimeEachFunction();
Jim Stichnoth380d7b92015-01-30 13:10:39 -08001046 break;
1047 default:
1048 break;
Jim Stichnoth1c44d812014-12-08 14:57:52 -08001049 }
Jim Stichnoth380d7b92015-01-30 13:10:39 -08001050 if (Active)
1051 Ctx->pushTimer(ID, StackID);
1052}
1053
1054void TimerMarker::pushCfg(const Cfg *Func) {
1055 Ctx = Func->getContext();
Karl Schimpfd4699942016-04-02 09:55:31 -07001056 Active = Func->getFocusedTiming() || getFlags().getSubzeroTimingEnabled();
Jim Stichnoth380d7b92015-01-30 13:10:39 -08001057 if (Active)
1058 Ctx->pushTimer(ID, StackID);
Jim Stichnoth8363a062014-10-07 10:02:38 -07001059}
Jim Stichnothf7c9a142014-04-29 10:52:43 -07001060
Jim Stichnotha5fe17a2015-01-26 11:10:03 -08001061ICE_TLS_DEFINE_FIELD(GlobalContext::ThreadContext *, GlobalContext, TLS);
Jim Stichnothe4a8f402015-01-20 12:52:51 -08001062
Jim Stichnothf7c9a142014-04-29 10:52:43 -07001063} // end of namespace Ice