blob: 36f845d1667dfc0528385493769ab9c050b17f97 [file] [log] [blame]
Jim Stichnothf7c9a142014-04-29 10:52:43 -07001//===- subzero/src/IceOperand.h - High-level operands -----------*- C++ -*-===//
2//
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 Declares the Operand class and its target-independent subclasses.
12///
Andrew Scull6ef79492015-09-09 15:50:42 -070013/// The main classes are Variable, which represents an LLVM variable that is
14/// either register- or stack-allocated, and the Constant hierarchy, which
15/// represents integer, floating-point, and/or symbolic constants.
Andrew Scull9612d322015-07-06 14:53:25 -070016///
Jim Stichnothf7c9a142014-04-29 10:52:43 -070017//===----------------------------------------------------------------------===//
18
19#ifndef SUBZERO_SRC_ICEOPERAND_H
20#define SUBZERO_SRC_ICEOPERAND_H
21
John Portoe82b5602016-02-24 15:58:55 -080022#include "IceCfg.h"
Antonio Maioranodebdfa22020-11-10 16:28:34 -050023#include "IceDefs.h"
Jan Voungfe14fb82014-10-13 15:56:32 -070024#include "IceGlobalContext.h"
Jim Stichnoth467ffe52016-03-29 15:01:06 -070025#include "IceStringPool.h"
Jim Stichnothf7c9a142014-04-29 10:52:43 -070026#include "IceTypes.h"
27
Nicolas Capens4d708022016-09-07 15:03:32 -040028#include "llvm/Support/ErrorHandling.h"
Jim Stichnothb36757e2015-10-05 13:55:11 -070029#include "llvm/Support/Format.h"
30
John Porto27fddcc2016-02-02 15:06:09 -080031#include <limits>
Jim Stichnoth9f9aa2c2016-03-07 08:25:24 -080032#include <type_traits>
John Porto27fddcc2016-02-02 15:06:09 -080033
Jim Stichnothf7c9a142014-04-29 10:52:43 -070034namespace Ice {
35
36class Operand {
Jim Stichnothc6ead202015-02-24 09:30:30 -080037 Operand() = delete;
Jim Stichnoth7b451a92014-10-15 14:39:23 -070038 Operand(const Operand &) = delete;
39 Operand &operator=(const Operand &) = delete;
40
Jim Stichnothf7c9a142014-04-29 10:52:43 -070041public:
Andrew Scull6ef79492015-09-09 15:50:42 -070042 static constexpr size_t MaxTargetKinds = 10;
Jim Stichnothf7c9a142014-04-29 10:52:43 -070043 enum OperandKind {
44 kConst_Base,
Jan Voungbc004632014-09-16 15:09:10 -070045 kConstInteger32,
46 kConstInteger64,
Jim Stichnothf7c9a142014-04-29 10:52:43 -070047 kConstFloat,
48 kConstDouble,
49 kConstRelocatable,
Matt Walad8f4a7d2014-06-18 09:55:03 -070050 kConstUndef,
Jim Stichnoth800dab22014-09-20 12:25:02 -070051 kConst_Target, // leave space for target-specific constant kinds
Andrew Scull6ef79492015-09-09 15:50:42 -070052 kConst_Max = kConst_Target + MaxTargetKinds,
Jim Stichnothf7c9a142014-04-29 10:52:43 -070053 kVariable,
Andrew Scull6d47bcd2015-09-17 17:10:05 -070054 kVariable64On32,
Jaydeep Patil958ddb72016-10-03 07:52:48 -070055 kVariableVecOn32,
Eric Holk80ee5b32016-05-06 14:28:04 -070056 kVariableBoolean,
Jim Stichnoth800dab22014-09-20 12:25:02 -070057 kVariable_Target, // leave space for target-specific variable kinds
Andrew Scull6ef79492015-09-09 15:50:42 -070058 kVariable_Max = kVariable_Target + MaxTargetKinds,
Andrew Scull57e12682015-09-16 11:30:19 -070059 // Target-specific operand classes use kTarget as the starting point for
60 // their Kind enum space. Note that the value-spaces are shared across
61 // targets. To avoid confusion over the definition of shared values, an
62 // object specific to one target should never be passed to a different
63 // target.
Andrew Scull6ef79492015-09-09 15:50:42 -070064 kTarget,
65 kTarget_Max = std::numeric_limits<uint8_t>::max(),
Jim Stichnothf7c9a142014-04-29 10:52:43 -070066 };
Andrew Scull6ef79492015-09-09 15:50:42 -070067 static_assert(kTarget <= kTarget_Max, "Must not be above max.");
Jim Stichnothf7c9a142014-04-29 10:52:43 -070068 OperandKind getKind() const { return Kind; }
69 Type getType() const { return Ty; }
70
Andrew Scull6ef79492015-09-09 15:50:42 -070071 /// Every Operand keeps an array of the Variables referenced in the operand.
72 /// This is so that the liveness operations can get quick access to the
73 /// variables of interest, without having to dig so far into the operand.
Jim Stichnothf7c9a142014-04-29 10:52:43 -070074 SizeT getNumVars() const { return NumVars; }
75 Variable *getVar(SizeT I) const {
76 assert(I < getNumVars());
77 return Vars[I];
78 }
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -070079 virtual void emit(const Cfg *Func) const = 0;
Andrew Scull9612d322015-07-06 14:53:25 -070080
81 /// \name Dumping functions.
82 /// @{
83
Andrew Scull57e12682015-09-16 11:30:19 -070084 /// The dump(Func,Str) implementation must be sure to handle the situation
85 /// where Func==nullptr.
Jim Stichnoth2e8bfbb2014-09-16 10:16:00 -070086 virtual void dump(const Cfg *Func, Ostream &Str) const = 0;
87 void dump(const Cfg *Func) const {
Jim Stichnoth20b71f52015-06-24 15:52:24 -070088 if (!BuildDefs::dump())
Karl Schimpfb6c96af2014-11-17 10:58:39 -080089 return;
Jim Stichnoth2e8bfbb2014-09-16 10:16:00 -070090 assert(Func);
91 dump(Func, Func->getContext()->getStrDump());
92 }
Karl Schimpfb6c96af2014-11-17 10:58:39 -080093 void dump(Ostream &Str) const {
Jim Stichnoth20b71f52015-06-24 15:52:24 -070094 if (BuildDefs::dump())
Jim Stichnothae953202014-12-20 06:17:49 -080095 dump(nullptr, Str);
Karl Schimpfb6c96af2014-11-17 10:58:39 -080096 }
Andrew Scull9612d322015-07-06 14:53:25 -070097 /// @}
Jim Stichnothf7c9a142014-04-29 10:52:43 -070098
Sean Kleinfc707ff2016-02-29 16:44:07 -080099 virtual ~Operand() = default;
Andrew Scull00741a02015-09-16 19:04:09 -0700100
Eric Holk80ee5b32016-05-06 14:28:04 -0700101 virtual Variable *asBoolean() { return nullptr; }
102
Manasij Mukherjee032c3152016-05-24 14:25:04 -0700103 virtual SizeT hashValue() const {
104 llvm::report_fatal_error("Tried to hash unsupported operand type : " +
105 std::to_string(Kind));
106 return 0;
107 }
108
Antonio Maioranodebdfa22020-11-10 16:28:34 -0500109 inline void *getExternalData() const { return externalData; }
110 inline void setExternalData(void *data) { externalData = data; }
Alexis Hetu932640b2018-06-20 15:35:53 -0400111
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700112protected:
Andrew Scull6ef79492015-09-09 15:50:42 -0700113 Operand(OperandKind Kind, Type Ty) : Ty(Ty), Kind(Kind) {
114 // It is undefined behavior to have a larger value in the enum
115 assert(Kind <= kTarget_Max);
116 }
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700117
118 const Type Ty;
119 const OperandKind Kind;
Andrew Scull9612d322015-07-06 14:53:25 -0700120 /// Vars and NumVars are initialized by the derived class.
Jim Stichnotheafb56c2015-06-22 10:35:22 -0700121 SizeT NumVars = 0;
122 Variable **Vars = nullptr;
Alexis Hetu932640b2018-06-20 15:35:53 -0400123
124 /// External data can be set by an optimizer to compute and retain any
125 /// information related to the current operand. All the memory used to
126 /// store this information must be managed by the optimizer.
Antonio Maioranodebdfa22020-11-10 16:28:34 -0500127 void *externalData = nullptr;
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700128};
129
Jim Stichnothdd842db2015-01-27 12:53:53 -0800130template <class StreamType>
Karl Schimpf97501832014-09-16 13:35:32 -0700131inline StreamType &operator<<(StreamType &Str, const Operand &Op) {
132 Op.dump(Str);
133 return Str;
134}
135
Andrew Scull57e12682015-09-16 11:30:19 -0700136/// Constant is the abstract base class for constants. All constants are
137/// allocated from a global arena and are pooled.
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700138class Constant : public Operand {
Jim Stichnothc6ead202015-02-24 09:30:30 -0800139 Constant() = delete;
Jim Stichnoth7b451a92014-10-15 14:39:23 -0700140 Constant(const Constant &) = delete;
141 Constant &operator=(const Constant &) = delete;
142
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700143public:
Jim Stichnoth9f9aa2c2016-03-07 08:25:24 -0800144 // Declare the lookup counter to take minimal space in a non-DUMP build.
145 using CounterType =
146 std::conditional<BuildDefs::dump(), uint64_t, uint8_t>::type;
Jan Voung76bb0be2015-05-14 09:26:19 -0700147 void emit(const Cfg *Func) const override { emit(Func->getTarget()); }
148 virtual void emit(TargetLowering *Target) const = 0;
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700149
150 static bool classof(const Operand *Operand) {
151 OperandKind Kind = Operand->getKind();
Andrew Scull6ef79492015-09-09 15:50:42 -0700152 return Kind >= kConst_Base && Kind <= kConst_Max;
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700153 }
154
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700155 const GlobalString getLabelName() const { return LabelName; }
156
Jim Stichnoth9f9aa2c2016-03-07 08:25:24 -0800157 bool getShouldBePooled() const { return ShouldBePooled; }
Qining Lu253dc8a2015-06-22 10:10:23 -0700158
Jim Stichnoth9f9aa2c2016-03-07 08:25:24 -0800159 // This should be thread-safe because the constant pool lock is acquired
160 // before the method is invoked.
161 void updateLookupCount() {
162 if (!BuildDefs::dump())
163 return;
164 ++LookupCount;
165 }
166 CounterType getLookupCount() const { return LookupCount; }
Manasij Mukherjee032c3152016-05-24 14:25:04 -0700167 SizeT hashValue() const override { return 0; }
Qining Lu253dc8a2015-06-22 10:10:23 -0700168
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700169protected:
Jim Stichnoth9f9aa2c2016-03-07 08:25:24 -0800170 Constant(OperandKind Kind, Type Ty) : Operand(Kind, Ty) {
Jim Stichnothae953202014-12-20 06:17:49 -0800171 Vars = nullptr;
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700172 NumVars = 0;
173 }
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700174 /// Set the ShouldBePooled field to the proper value after the object is fully
175 /// initialized.
176 void initShouldBePooled();
177 GlobalString LabelName;
Andrew Scull9612d322015-07-06 14:53:25 -0700178 /// Whether we should pool this constant. Usually Float/Double and pooled
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700179 /// Integers should be flagged true. Ideally this field would be const, but
180 /// it needs to be initialized only after the subclass is fully constructed.
Jim Stichnoth9f9aa2c2016-03-07 08:25:24 -0800181 bool ShouldBePooled = false;
182 /// Note: If ShouldBePooled is ever removed from the base class, we will want
183 /// to completely disable LookupCount in a non-DUMP build to save space.
184 CounterType LookupCount = 0;
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700185};
186
Andrew Scull9612d322015-07-06 14:53:25 -0700187/// ConstantPrimitive<> wraps a primitive type.
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700188template <typename T, Operand::OperandKind K>
189class ConstantPrimitive : public Constant {
Jim Stichnothc6ead202015-02-24 09:30:30 -0800190 ConstantPrimitive() = delete;
Jim Stichnoth7b451a92014-10-15 14:39:23 -0700191 ConstantPrimitive(const ConstantPrimitive &) = delete;
192 ConstantPrimitive &operator=(const ConstantPrimitive &) = delete;
193
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700194public:
Andrew Scull8072bae2015-09-14 16:01:26 -0700195 using PrimType = T;
Jan Voung91a3e2c2015-01-09 13:01:42 -0800196
Jim Stichnothb36757e2015-10-05 13:55:11 -0700197 static ConstantPrimitive *create(GlobalContext *Ctx, Type Ty,
198 PrimType Value) {
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700199 auto *Const =
200 new (Ctx->allocate<ConstantPrimitive>()) ConstantPrimitive(Ty, Value);
201 Const->initShouldBePooled();
202 if (Const->getShouldBePooled())
203 Const->initName(Ctx);
204 return Const;
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700205 }
Jan Voung91a3e2c2015-01-09 13:01:42 -0800206 PrimType getValue() const { return Value; }
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700207 using Constant::emit;
208 void emit(TargetLowering *Target) const final;
209 using Constant::dump;
210 void dump(const Cfg *, Ostream &Str) const override {
211 if (BuildDefs::dump())
212 Str << getValue();
213 }
214
215 static bool classof(const Operand *Operand) {
216 return Operand->getKind() == K;
217 }
218
Sagar Thakure160ed92016-05-30 07:54:47 -0700219 SizeT hashValue() const override { return std::hash<PrimType>()(Value); }
Manasij Mukherjee032c3152016-05-24 14:25:04 -0700220
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700221private:
222 ConstantPrimitive(Type Ty, PrimType Value) : Constant(K, Ty), Value(Value) {}
223
224 void initName(GlobalContext *Ctx) {
225 std::string Buffer;
226 llvm::raw_string_ostream Str(Buffer);
Jim Stichnothe922c232016-04-09 08:54:20 -0700227 constexpr bool IsCompact = !BuildDefs::dump();
228 if (IsCompact) {
229 switch (getType()) {
230 case IceType_f32:
231 Str << "$F";
232 break;
233 case IceType_f64:
234 Str << "$D";
235 break;
236 default:
237 // For constant pooling diversification
238 Str << ".L$" << getType() << "$";
239 break;
240 }
241 } else {
242 Str << ".L$" << getType() << "$";
243 }
Jim Stichnothb36757e2015-10-05 13:55:11 -0700244 // Print hex characters byte by byte, starting from the most significant
245 // byte. NOTE: This ordering assumes Subzero runs on a little-endian
246 // platform. That means the possibility of different label names depending
247 // on the endian-ness of the platform where Subzero runs.
248 for (unsigned i = 0; i < sizeof(Value); ++i) {
249 constexpr unsigned HexWidthChars = 2;
250 unsigned Offset = sizeof(Value) - 1 - i;
251 Str << llvm::format_hex_no_prefix(
252 *(Offset + (const unsigned char *)&Value), HexWidthChars);
253 }
254 // For a floating-point value in DecorateAsm mode, also append the value in
255 // human-readable sprintf form, changing '+' to 'p' and '-' to 'm' to
256 // maintain valid asm labels.
Jim Stichnothe922c232016-04-09 08:54:20 -0700257 if (BuildDefs::dump() && std::is_floating_point<PrimType>::value &&
Karl Schimpfd4699942016-04-02 09:55:31 -0700258 getFlags().getDecorateAsm()) {
Jim Stichnothb36757e2015-10-05 13:55:11 -0700259 char Buf[30];
260 snprintf(Buf, llvm::array_lengthof(Buf), "$%g", (double)Value);
261 for (unsigned i = 0; i < llvm::array_lengthof(Buf) && Buf[i]; ++i) {
262 if (Buf[i] == '-')
263 Buf[i] = 'm';
264 else if (Buf[i] == '+')
265 Buf[i] = 'p';
266 }
267 Str << Buf;
268 }
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700269 LabelName = GlobalString::createWithString(Ctx, Str.str());
Karl Schimpfb6c96af2014-11-17 10:58:39 -0800270 }
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700271
Jan Voung91a3e2c2015-01-09 13:01:42 -0800272 const PrimType Value;
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700273};
274
Andrew Scull8072bae2015-09-14 16:01:26 -0700275using ConstantInteger32 = ConstantPrimitive<int32_t, Operand::kConstInteger32>;
276using ConstantInteger64 = ConstantPrimitive<int64_t, Operand::kConstInteger64>;
277using ConstantFloat = ConstantPrimitive<float, Operand::kConstFloat>;
278using ConstantDouble = ConstantPrimitive<double, Operand::kConstDouble>;
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700279
Jim Stichnothdd842db2015-01-27 12:53:53 -0800280template <>
281inline void ConstantInteger32::dump(const Cfg *, Ostream &Str) const {
Jim Stichnoth20b71f52015-06-24 15:52:24 -0700282 if (!BuildDefs::dump())
Karl Schimpfb6c96af2014-11-17 10:58:39 -0800283 return;
Jim Stichnothcabfa302014-09-03 15:19:12 -0700284 if (getType() == IceType_i1)
285 Str << (getValue() ? "true" : "false");
286 else
Jan Voungbc004632014-09-16 15:09:10 -0700287 Str << static_cast<int32_t>(getValue());
288}
289
Jim Stichnothdd842db2015-01-27 12:53:53 -0800290template <>
291inline void ConstantInteger64::dump(const Cfg *, Ostream &Str) const {
Jim Stichnoth20b71f52015-06-24 15:52:24 -0700292 if (!BuildDefs::dump())
Karl Schimpfb6c96af2014-11-17 10:58:39 -0800293 return;
Jan Voungbc004632014-09-16 15:09:10 -0700294 assert(getType() == IceType_i64);
295 Str << static_cast<int64_t>(getValue());
Jim Stichnothcabfa302014-09-03 15:19:12 -0700296}
297
John Porto27fddcc2016-02-02 15:06:09 -0800298/// RelocOffset allows symbolic references in ConstantRelocatables' offsets,
299/// e.g., 8 + LabelOffset, where label offset is the location (code or data)
300/// of a Label that is only determinable during ELF emission.
301class RelocOffset final {
302 RelocOffset(const RelocOffset &) = delete;
303 RelocOffset &operator=(const RelocOffset &) = delete;
304
305public:
Jim Stichnoth3e324002016-03-08 16:18:40 -0800306 template <typename T> static RelocOffset *create(T *AllocOwner) {
307 return new (AllocOwner->template allocate<RelocOffset>()) RelocOffset();
John Porto27fddcc2016-02-02 15:06:09 -0800308 }
309
310 static RelocOffset *create(GlobalContext *Ctx, RelocOffsetT Value) {
311 return new (Ctx->allocate<RelocOffset>()) RelocOffset(Value);
312 }
313
John Porto6e8d3fa2016-02-04 10:35:20 -0800314 void setSubtract(bool Value) { Subtract = Value; }
John Porto27fddcc2016-02-02 15:06:09 -0800315 bool hasOffset() const { return HasOffset; }
316
317 RelocOffsetT getOffset() const {
318 assert(HasOffset);
319 return Offset;
320 }
321
322 void setOffset(const RelocOffsetT Value) {
323 assert(!HasOffset);
John Porto6e8d3fa2016-02-04 10:35:20 -0800324 if (Subtract) {
325 assert(Value != std::numeric_limits<RelocOffsetT>::lowest());
326 Offset = -Value;
327 } else {
328 Offset = Value;
329 }
John Porto27fddcc2016-02-02 15:06:09 -0800330 HasOffset = true;
331 }
332
333private:
334 RelocOffset() = default;
335 explicit RelocOffset(RelocOffsetT Offset) { setOffset(Offset); }
336
John Porto6e8d3fa2016-02-04 10:35:20 -0800337 bool Subtract = false;
John Porto27fddcc2016-02-02 15:06:09 -0800338 bool HasOffset = false;
339 RelocOffsetT Offset;
340};
341
Andrew Scull57e12682015-09-16 11:30:19 -0700342/// RelocatableTuple bundles the parameters that are used to construct an
343/// ConstantRelocatable. It is done this way so that ConstantRelocatable can fit
344/// into the global constant pool template mechanism.
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700345class RelocatableTuple {
Jim Stichnothc6ead202015-02-24 09:30:30 -0800346 RelocatableTuple() = delete;
Jim Stichnoth0795ba02014-10-01 14:23:01 -0700347 RelocatableTuple &operator=(const RelocatableTuple &) = delete;
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700348
349public:
John Portoe82b5602016-02-24 15:58:55 -0800350 RelocatableTuple(const RelocOffsetT Offset,
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700351 const RelocOffsetArray &OffsetExpr, GlobalString Name)
Jim Stichnoth98ba0062016-03-07 09:26:22 -0800352 : Offset(Offset), OffsetExpr(OffsetExpr), Name(Name) {}
John Porto27fddcc2016-02-02 15:06:09 -0800353
John Portoe82b5602016-02-24 15:58:55 -0800354 RelocatableTuple(const RelocOffsetT Offset,
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700355 const RelocOffsetArray &OffsetExpr, GlobalString Name,
356 const std::string &EmitString)
John Portoe82b5602016-02-24 15:58:55 -0800357 : Offset(Offset), OffsetExpr(OffsetExpr), Name(Name),
Jim Stichnoth98ba0062016-03-07 09:26:22 -0800358 EmitString(EmitString) {}
John Portoe82b5602016-02-24 15:58:55 -0800359
Jim Stichnothd2cb4362014-11-20 11:24:42 -0800360 RelocatableTuple(const RelocatableTuple &) = default;
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700361
John Portoe82b5602016-02-24 15:58:55 -0800362 const RelocOffsetT Offset;
John Porto27fddcc2016-02-02 15:06:09 -0800363 const RelocOffsetArray OffsetExpr;
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700364 const GlobalString Name;
365 const std::string EmitString;
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700366};
367
Jim Stichnothd2cb4362014-11-20 11:24:42 -0800368bool operator==(const RelocatableTuple &A, const RelocatableTuple &B);
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700369
Andrew Scull57e12682015-09-16 11:30:19 -0700370/// ConstantRelocatable represents a symbolic constant combined with a fixed
371/// offset.
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700372class ConstantRelocatable : public Constant {
Jim Stichnothc6ead202015-02-24 09:30:30 -0800373 ConstantRelocatable() = delete;
Jim Stichnoth7b451a92014-10-15 14:39:23 -0700374 ConstantRelocatable(const ConstantRelocatable &) = delete;
375 ConstantRelocatable &operator=(const ConstantRelocatable &) = delete;
376
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700377public:
Jim Stichnoth3e324002016-03-08 16:18:40 -0800378 template <typename T>
379 static ConstantRelocatable *create(T *AllocOwner, Type Ty,
Jim Stichnothb36757e2015-10-05 13:55:11 -0700380 const RelocatableTuple &Tuple) {
Jim Stichnoth3e324002016-03-08 16:18:40 -0800381 return new (AllocOwner->template allocate<ConstantRelocatable>())
382 ConstantRelocatable(Ty, Tuple.Offset, Tuple.OffsetExpr, Tuple.Name,
383 Tuple.EmitString);
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700384 }
Jan Voungfe14fb82014-10-13 15:56:32 -0700385
John Porto27fddcc2016-02-02 15:06:09 -0800386 RelocOffsetT getOffset() const {
John Portoe82b5602016-02-24 15:58:55 -0800387 RelocOffsetT Ret = Offset;
John Porto27fddcc2016-02-02 15:06:09 -0800388 for (const auto *const OffsetReloc : OffsetExpr) {
John Portoe82b5602016-02-24 15:58:55 -0800389 Ret += OffsetReloc->getOffset();
John Porto27fddcc2016-02-02 15:06:09 -0800390 }
John Portoe82b5602016-02-24 15:58:55 -0800391 return Ret;
John Porto27fddcc2016-02-02 15:06:09 -0800392 }
393
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700394 const std::string &getEmitString() const { return EmitString; }
John Porto27fddcc2016-02-02 15:06:09 -0800395
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700396 GlobalString getName() const { return Name; }
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700397 using Constant::emit;
Jan Voung76bb0be2015-05-14 09:26:19 -0700398 void emit(TargetLowering *Target) const final;
Jim Stichnoth8ff4b282016-01-04 15:39:06 -0800399 void emitWithoutPrefix(const TargetLowering *Target,
400 const char *Suffix = "") const;
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700401 using Constant::dump;
Jim Stichnothb56c8f42014-09-26 09:28:46 -0700402 void dump(const Cfg *Func, Ostream &Str) const override;
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700403
404 static bool classof(const Operand *Operand) {
405 OperandKind Kind = Operand->getKind();
406 return Kind == kConstRelocatable;
407 }
408
409private:
John Portoe82b5602016-02-24 15:58:55 -0800410 ConstantRelocatable(Type Ty, const RelocOffsetT Offset,
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700411 const RelocOffsetArray &OffsetExpr, GlobalString Name,
412 const std::string &EmitString)
John Portoe82b5602016-02-24 15:58:55 -0800413 : Constant(kConstRelocatable, Ty), Offset(Offset), OffsetExpr(OffsetExpr),
Jim Stichnoth98ba0062016-03-07 09:26:22 -0800414 Name(Name), EmitString(EmitString) {}
John Porto27fddcc2016-02-02 15:06:09 -0800415
John Portoe82b5602016-02-24 15:58:55 -0800416 const RelocOffsetT Offset; /// fixed, known offset to add
417 const RelocOffsetArray OffsetExpr; /// fixed, unknown offset to add
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700418 const GlobalString Name; /// optional for debug/dump
419 const std::string EmitString; /// optional for textual emission
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700420};
421
Andrew Scull57e12682015-09-16 11:30:19 -0700422/// ConstantUndef represents an unspecified bit pattern. Although it is legal to
423/// lower ConstantUndef to any value, backends should try to make code
424/// generation deterministic by lowering ConstantUndefs to 0.
Matt Walad8f4a7d2014-06-18 09:55:03 -0700425class ConstantUndef : public Constant {
Jim Stichnothc6ead202015-02-24 09:30:30 -0800426 ConstantUndef() = delete;
Jim Stichnoth7b451a92014-10-15 14:39:23 -0700427 ConstantUndef(const ConstantUndef &) = delete;
428 ConstantUndef &operator=(const ConstantUndef &) = delete;
429
Matt Walad8f4a7d2014-06-18 09:55:03 -0700430public:
Jim Stichnothb36757e2015-10-05 13:55:11 -0700431 static ConstantUndef *create(GlobalContext *Ctx, Type Ty) {
Jim Stichnothb36757e2015-10-05 13:55:11 -0700432 return new (Ctx->allocate<ConstantUndef>()) ConstantUndef(Ty);
Matt Walad8f4a7d2014-06-18 09:55:03 -0700433 }
434
435 using Constant::emit;
Jan Voung76bb0be2015-05-14 09:26:19 -0700436 void emit(TargetLowering *Target) const final;
Jim Stichnoth2e8bfbb2014-09-16 10:16:00 -0700437 using Constant::dump;
Karl Schimpfb6c96af2014-11-17 10:58:39 -0800438 void dump(const Cfg *, Ostream &Str) const override {
Jim Stichnoth20b71f52015-06-24 15:52:24 -0700439 if (BuildDefs::dump())
Karl Schimpfb6c96af2014-11-17 10:58:39 -0800440 Str << "undef";
441 }
Matt Walad8f4a7d2014-06-18 09:55:03 -0700442
443 static bool classof(const Operand *Operand) {
444 return Operand->getKind() == kConstUndef;
445 }
446
447private:
Jim Stichnothb36757e2015-10-05 13:55:11 -0700448 ConstantUndef(Type Ty) : Constant(kConstUndef, Ty) {}
Matt Walad8f4a7d2014-06-18 09:55:03 -0700449};
450
Jim Stichnoth8aa39662016-02-10 11:20:30 -0800451/// RegNumT is for holding target-specific register numbers, plus the sentinel
Reed Kotler5fa0a5f2016-02-15 20:01:24 -0800452/// value if no register is assigned. Its public ctor allows direct use of enum
453/// values, such as RegNumT(Reg_eax), but not things like RegNumT(Reg_eax+1).
454/// This is to try to prevent inappropriate assumptions about enum ordering. If
455/// needed, the fromInt() method can be used, such as when a RegNumT is based
456/// on a bitvector index.
Jim Stichnoth8aa39662016-02-10 11:20:30 -0800457class RegNumT {
458public:
459 using BaseType = uint32_t;
460 RegNumT() = default;
461 RegNumT(const RegNumT &) = default;
462 template <typename AnyEnum>
463 RegNumT(AnyEnum Value,
464 typename std::enable_if<std::is_enum<AnyEnum>::value, int>::type = 0)
465 : Value(Value) {
466 validate(Value);
467 }
468 RegNumT &operator=(const RegNumT &) = default;
469 operator unsigned() const { return Value; }
470 /// Asserts that the register is valid, i.e. not NoRegisterValue. Note that
471 /// the ctor already does the target-specific limit check.
472 void assertIsValid() const { assert(Value != NoRegisterValue); }
473 static RegNumT fromInt(BaseType Value) { return RegNumT(Value); }
474 /// Marks cases that inappropriately add/subtract RegNumT values, and
475 /// therefore need to be fixed because they make assumptions about register
476 /// enum value ordering. TODO(stichnot): Remove fixme() as soon as all
477 /// current uses are fixed/removed.
478 static RegNumT fixme(BaseType Value) { return RegNumT(Value); }
479 /// The target's staticInit() method should call setLimit() to register the
480 /// upper bound of allowable values.
481 static void setLimit(BaseType Value) {
482 // Make sure it's only called once.
483 assert(Limit == 0);
484 assert(Value != 0);
485 Limit = Value;
486 }
487 // Define NoRegisterValue as an enum value so that it can be used as an
488 // argument for the public ctor if desired.
Nicolas Capens5c4d6772017-01-18 16:57:52 -0500489 enum : BaseType { NoRegisterValue = std::numeric_limits<BaseType>::max() };
Reed Kotler5fa0a5f2016-02-15 20:01:24 -0800490
491 bool hasValue() const { return Value != NoRegisterValue; }
492 bool hasNoValue() const { return !hasValue(); }
Jim Stichnoth8aa39662016-02-10 11:20:30 -0800493
494private:
495 BaseType Value = NoRegisterValue;
496 static BaseType Limit;
497 /// Private ctor called only by fromInt() and fixme().
498 RegNumT(BaseType Value) : Value(Value) { validate(Value); }
499 /// The ctor calls this to validate against the target-supplied limit.
500 static void validate(BaseType Value) {
501 (void)Value;
502 assert(Value == NoRegisterValue || Value < Limit);
503 }
504 /// Disallow operators that inappropriately make assumptions about register
505 /// enum value ordering.
506 bool operator<(const RegNumT &) = delete;
507 bool operator<=(const RegNumT &) = delete;
508 bool operator>(const RegNumT &) = delete;
509 bool operator>=(const RegNumT &) = delete;
510};
511
John Portoe82b5602016-02-24 15:58:55 -0800512/// RegNumBVIter wraps SmallBitVector so that instead of this pattern:
Jim Stichnoth8aa39662016-02-10 11:20:30 -0800513///
514/// for (int i = V.find_first(); i != -1; i = V.find_next(i)) {
515/// RegNumT RegNum = RegNumT::fromInt(i);
516/// ...
517/// }
518///
519/// this cleaner pattern can be used:
520///
521/// for (RegNumT RegNum : RegNumBVIter(V)) {
522/// ...
523/// }
John Portoe82b5602016-02-24 15:58:55 -0800524template <class B> class RegNumBVIterImpl {
525 using T = B;
Jim Stichnoth8aa39662016-02-10 11:20:30 -0800526 static constexpr int Sentinel = -1;
John Portoe82b5602016-02-24 15:58:55 -0800527 RegNumBVIterImpl() = delete;
Jim Stichnoth8aa39662016-02-10 11:20:30 -0800528
529public:
530 class Iterator {
531 Iterator() = delete;
532 Iterator &operator=(const Iterator &) = delete;
533
534 public:
535 explicit Iterator(const T &V) : V(V), Current(V.find_first()) {}
536 Iterator(const T &V, int Value) : V(V), Current(Value) {}
537 Iterator(const Iterator &) = default;
538 RegNumT operator*() {
539 assert(Current != Sentinel);
540 return RegNumT::fromInt(Current);
541 }
542 Iterator &operator++() {
543 assert(Current != Sentinel);
544 Current = V.find_next(Current);
545 return *this;
546 }
547 bool operator!=(Iterator &Other) { return Current != Other.Current; }
548
549 private:
550 const T &V;
551 int Current;
552 };
553
John Portoe82b5602016-02-24 15:58:55 -0800554 RegNumBVIterImpl(const RegNumBVIterImpl &) = default;
555 RegNumBVIterImpl &operator=(const RegNumBVIterImpl &) = delete;
556 explicit RegNumBVIterImpl(const T &V) : V(V) {}
Jim Stichnoth8aa39662016-02-10 11:20:30 -0800557 Iterator begin() { return Iterator(V); }
558 Iterator end() { return Iterator(V, Sentinel); }
559
560private:
561 const T &V;
562};
563
John Portoe82b5602016-02-24 15:58:55 -0800564template <class B> RegNumBVIterImpl<B> RegNumBVIter(const B &BV) {
565 return RegNumBVIterImpl<B>(BV);
566}
567
Andrew Scull57e12682015-09-16 11:30:19 -0700568/// RegWeight is a wrapper for a uint32_t weight value, with a special value
569/// that represents infinite weight, and an addWeight() method that ensures that
570/// W+infinity=infinity.
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700571class RegWeight {
572public:
Jim Stichnoth8aa39662016-02-10 11:20:30 -0800573 using BaseType = uint32_t;
Jim Stichnotheafb56c2015-06-22 10:35:22 -0700574 RegWeight() = default;
Jim Stichnoth8aa39662016-02-10 11:20:30 -0800575 explicit RegWeight(BaseType Weight) : Weight(Weight) {}
Jim Stichnoth7e571362015-01-09 11:43:26 -0800576 RegWeight(const RegWeight &) = default;
577 RegWeight &operator=(const RegWeight &) = default;
Jim Stichnoth8aa39662016-02-10 11:20:30 -0800578 constexpr static BaseType Inf = ~0; /// Force regalloc to give a register
579 constexpr static BaseType Zero = 0; /// Force regalloc NOT to give a register
580 constexpr static BaseType Max = Inf - 1; /// Max natural weight.
581 void addWeight(BaseType Delta) {
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700582 if (Delta == Inf)
583 Weight = Inf;
584 else if (Weight != Inf)
Andrew Scullaa6c1092015-09-03 17:50:30 -0700585 if (Utils::add_overflow(Weight, Delta, &Weight) || Weight == Inf)
586 Weight = Max;
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700587 }
588 void addWeight(const RegWeight &Other) { addWeight(Other.Weight); }
Jim Stichnoth8aa39662016-02-10 11:20:30 -0800589 void setWeight(BaseType Val) { Weight = Val; }
590 BaseType getWeight() const { return Weight; }
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700591
592private:
Jim Stichnoth8aa39662016-02-10 11:20:30 -0800593 BaseType Weight = 0;
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700594};
595Ostream &operator<<(Ostream &Str, const RegWeight &W);
596bool operator<(const RegWeight &A, const RegWeight &B);
597bool operator<=(const RegWeight &A, const RegWeight &B);
598bool operator==(const RegWeight &A, const RegWeight &B);
599
Andrew Scull57e12682015-09-16 11:30:19 -0700600/// LiveRange is a set of instruction number intervals representing a variable's
601/// live range. Generally there is one interval per basic block where the
602/// variable is live, but adjacent intervals get coalesced into a single
603/// interval.
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700604class LiveRange {
605public:
Manasij Mukherjee7cd926d2016-08-04 12:33:23 -0700606 using RangeElementType = std::pair<InstNumberT, InstNumberT>;
607 /// RangeType is arena-allocated from the Cfg's allocator.
608 using RangeType = CfgVector<RangeElementType>;
Jim Stichnotheafb56c2015-06-22 10:35:22 -0700609 LiveRange() = default;
Andrew Scull57e12682015-09-16 11:30:19 -0700610 /// Special constructor for building a kill set. The advantage is that we can
611 /// reserve the right amount of space in advance.
Andrew Scull00741a02015-09-16 19:04:09 -0700612 explicit LiveRange(const CfgVector<InstNumberT> &Kills) {
Jim Stichnoth2a7fcbb2014-12-04 11:45:03 -0800613 Range.reserve(Kills.size());
614 for (InstNumberT I : Kills)
615 addSegment(I, I);
616 }
Jim Stichnoth87ff3a12014-11-14 10:27:29 -0800617 LiveRange(const LiveRange &) = default;
618 LiveRange &operator=(const LiveRange &) = default;
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700619
620 void reset() {
621 Range.clear();
Jim Stichnoth037fa1d2014-10-07 11:09:33 -0700622 untrim();
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700623 }
Manasij Mukherjee7cd926d2016-08-04 12:33:23 -0700624 void addSegment(InstNumberT Start, InstNumberT End, CfgNode *Node = nullptr);
625 void addSegment(RangeElementType Segment, CfgNode *Node = nullptr) {
626 addSegment(Segment.first, Segment.second, Node);
627 }
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700628
629 bool endsBefore(const LiveRange &Other) const;
Jim Stichnoth037fa1d2014-10-07 11:09:33 -0700630 bool overlaps(const LiveRange &Other, bool UseTrimmed = false) const;
631 bool overlapsInst(InstNumberT OtherBegin, bool UseTrimmed = false) const;
Jim Stichnoth47752552014-10-13 17:15:08 -0700632 bool containsValue(InstNumberT Value, bool IsDest) const;
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700633 bool isEmpty() const { return Range.empty(); }
634 InstNumberT getStart() const {
635 return Range.empty() ? -1 : Range.begin()->first;
636 }
Jim Stichnotha3f57b92015-07-30 12:46:04 -0700637 InstNumberT getEnd() const {
638 return Range.empty() ? -1 : Range.rbegin()->second;
639 }
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700640
Jim Stichnoth037fa1d2014-10-07 11:09:33 -0700641 void untrim() { TrimmedBegin = Range.begin(); }
642 void trim(InstNumberT Lower);
643
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700644 void dump(Ostream &Str) const;
645
Manasij Mukherjee7cd926d2016-08-04 12:33:23 -0700646 SizeT getNumSegments() const { return Range.size(); }
647
648 const RangeType &getSegments() const { return Range; }
649 CfgNode *getNodeForSegment(InstNumberT Begin) {
650 auto Iter = NodeMap.find(Begin);
651 assert(Iter != NodeMap.end());
652 return Iter->second;
653 }
654
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700655private:
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700656 RangeType Range;
Manasij Mukherjee7cd926d2016-08-04 12:33:23 -0700657 CfgUnorderedMap<InstNumberT, CfgNode *> NodeMap;
Andrew Scull57e12682015-09-16 11:30:19 -0700658 /// TrimmedBegin is an optimization for the overlaps() computation. Since the
659 /// linear-scan algorithm always calls it as overlaps(Cur) and Cur advances
660 /// monotonically according to live range start, we can optimize overlaps() by
661 /// ignoring all segments that end before the start of Cur's range. The
662 /// linear-scan code enables this by calling trim() on the ranges of interest
663 /// as Cur advances. Note that linear-scan also has to initialize TrimmedBegin
664 /// at the beginning by calling untrim().
Jim Stichnoth037fa1d2014-10-07 11:09:33 -0700665 RangeType::const_iterator TrimmedBegin;
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700666};
667
668Ostream &operator<<(Ostream &Str, const LiveRange &L);
669
Andrew Scull9612d322015-07-06 14:53:25 -0700670/// Variable represents an operand that is register-allocated or
Andrew Scull57e12682015-09-16 11:30:19 -0700671/// stack-allocated. If it is register-allocated, it will ultimately have a
Jim Stichnothe343e062016-06-28 21:40:33 -0700672/// valid RegNum field.
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700673class Variable : public Operand {
Jim Stichnothc6ead202015-02-24 09:30:30 -0800674 Variable() = delete;
Jim Stichnoth0795ba02014-10-01 14:23:01 -0700675 Variable(const Variable &) = delete;
676 Variable &operator=(const Variable &) = delete;
Jim Stichnoth800dab22014-09-20 12:25:02 -0700677
Andrew Scull6d47bcd2015-09-17 17:10:05 -0700678 enum RegRequirement : uint8_t {
Andrew Scull11c9a322015-08-28 14:24:14 -0700679 RR_MayHaveRegister,
680 RR_MustHaveRegister,
681 RR_MustNotHaveRegister,
682 };
683
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700684public:
Jim Stichnoth9a04c072014-12-11 15:51:42 -0800685 static Variable *create(Cfg *Func, Type Ty, SizeT Index) {
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700686 return new (Func->allocate<Variable>())
687 Variable(Func, kVariable, Ty, Index);
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700688 }
689
690 SizeT getIndex() const { return Number; }
Jim Stichnotha91c3412016-04-05 15:31:43 -0700691 std::string getName() const {
692 if (Name.hasStdString())
693 return Name.toString();
694 return "__" + std::to_string(getIndex());
695 }
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700696 virtual void setName(const Cfg *Func, const std::string &NewName) {
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700697 if (NewName.empty())
698 return;
699 Name = VariableString::createWithString(Func, NewName);
Karl Schimpfc132b762014-09-11 09:43:47 -0700700 }
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700701
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700702 bool getIsArg() const { return IsArgument; }
Andrew Scull6d47bcd2015-09-17 17:10:05 -0700703 virtual void setIsArg(bool Val = true) { IsArgument = Val; }
Jim Stichnoth144cdce2014-09-22 16:02:59 -0700704 bool getIsImplicitArg() const { return IsImplicitArgument; }
705 void setIsImplicitArg(bool Val = true) { IsImplicitArgument = Val; }
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700706
Jim Stichnoth47752552014-10-13 17:15:08 -0700707 void setIgnoreLiveness() { IgnoreLiveness = true; }
Jim Stichnothcc89c952016-03-31 11:55:23 -0700708 bool getIgnoreLiveness() const {
709 return IgnoreLiveness || IsRematerializable;
710 }
Jim Stichnoth47752552014-10-13 17:15:08 -0700711
Jim Stichnothb9a84722016-08-01 13:18:36 -0700712 /// Returns true if the variable either has a definite stack offset, or has
713 /// the UndeterminedStackOffset such that it is guaranteed to have a definite
714 /// stack offset at emission time.
Jim Stichnothfe62f0a2016-07-10 05:13:18 -0700715 bool hasStackOffset() const { return StackOffset != InvalidStackOffset; }
Jim Stichnothb9a84722016-08-01 13:18:36 -0700716 /// Returns true if the variable has a stack offset that is known at this
717 /// time.
718 bool hasKnownStackOffset() const {
719 return StackOffset != InvalidStackOffset &&
720 StackOffset != UndeterminedStackOffset;
721 }
Jim Stichnothfe62f0a2016-07-10 05:13:18 -0700722 int32_t getStackOffset() const {
Jim Stichnothb9a84722016-08-01 13:18:36 -0700723 assert(hasKnownStackOffset());
Jim Stichnothfe62f0a2016-07-10 05:13:18 -0700724 return StackOffset;
725 }
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700726 void setStackOffset(int32_t Offset) { StackOffset = Offset; }
Jim Stichnothb9a84722016-08-01 13:18:36 -0700727 /// Set a "placeholder" stack offset before its actual offset has been
728 /// determined.
729 void setHasStackOffset() {
730 if (!hasStackOffset())
731 StackOffset = UndeterminedStackOffset;
732 }
Jim Stichnoth238b4c12015-10-01 07:46:38 -0700733 /// Returns the variable's stack offset in symbolic form, to improve
734 /// readability in DecorateAsm mode.
Jim Stichnotha91c3412016-04-05 15:31:43 -0700735 std::string getSymbolicStackOffset() const {
Jim Stichnoth98ba0062016-03-07 09:26:22 -0800736 if (!BuildDefs::dump())
737 return "";
Jim Stichnoth00b9edb2016-06-25 10:14:39 -0700738 return ".L$lv$" + getName();
Jim Stichnoth238b4c12015-10-01 07:46:38 -0700739 }
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700740
Reed Kotler5fa0a5f2016-02-15 20:01:24 -0800741 bool hasReg() const { return getRegNum().hasValue(); }
Jim Stichnoth8aa39662016-02-10 11:20:30 -0800742 RegNumT getRegNum() const { return RegNum; }
743 void setRegNum(RegNumT NewRegNum) {
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700744 // Regnum shouldn't be set more than once.
745 assert(!hasReg() || RegNum == NewRegNum);
746 RegNum = NewRegNum;
747 }
Reed Kotler5fa0a5f2016-02-15 20:01:24 -0800748 bool hasRegTmp() const { return getRegNumTmp().hasValue(); }
Jim Stichnoth8aa39662016-02-10 11:20:30 -0800749 RegNumT getRegNumTmp() const { return RegNumTmp; }
750 void setRegNumTmp(RegNumT NewRegNum) { RegNumTmp = NewRegNum; }
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700751
Andrew Scull11c9a322015-08-28 14:24:14 -0700752 RegWeight getWeight(const Cfg *Func) const;
753
754 void setMustHaveReg() { RegRequirement = RR_MustHaveRegister; }
755 bool mustHaveReg() const { return RegRequirement == RR_MustHaveRegister; }
756 void setMustNotHaveReg() { RegRequirement = RR_MustNotHaveRegister; }
757 bool mustNotHaveReg() const {
758 return RegRequirement == RR_MustNotHaveRegister;
759 }
Jim Stichnothb9a84722016-08-01 13:18:36 -0700760 bool mayHaveReg() const { return RegRequirement == RR_MayHaveRegister; }
Jim Stichnoth8aa39662016-02-10 11:20:30 -0800761 void setRematerializable(RegNumT NewRegNum, int32_t NewOffset) {
David Sehr4318a412015-11-11 15:01:55 -0800762 IsRematerializable = true;
763 setRegNum(NewRegNum);
764 setStackOffset(NewOffset);
765 setMustHaveReg();
766 }
767 bool isRematerializable() const { return IsRematerializable; }
Nicolas Capensf8c7e512021-07-13 15:16:40 -0400768 int32_t getRematerializableOffset(const ::Ice::TargetLowering *Target);
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700769
Jim Stichnothc59288b2015-11-09 11:38:40 -0800770 void setRegClass(uint8_t RC) { RegisterClass = static_cast<RegClass>(RC); }
771 RegClass getRegClass() const { return RegisterClass; }
772
Jim Stichnoth5ce0abb2014-10-15 10:16:54 -0700773 LiveRange &getLiveRange() { return Live; }
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700774 const LiveRange &getLiveRange() const { return Live; }
775 void setLiveRange(const LiveRange &Range) { Live = Range; }
776 void resetLiveRange() { Live.reset(); }
Manasij Mukherjee7cd926d2016-08-04 12:33:23 -0700777 void addLiveRange(InstNumberT Start, InstNumberT End,
778 CfgNode *Node = nullptr) {
Jim Stichnothf9df4522015-08-06 17:50:14 -0700779 assert(!getIgnoreLiveness());
Manasij Mukherjee7cd926d2016-08-04 12:33:23 -0700780 Live.addSegment(Start, End, Node);
Jim Stichnothc6ead202015-02-24 09:30:30 -0800781 }
Jim Stichnoth037fa1d2014-10-07 11:09:33 -0700782 void trimLiveRange(InstNumberT Start) { Live.trim(Start); }
783 void untrimLiveRange() { Live.untrim(); }
Jim Stichnoth5ce0abb2014-10-15 10:16:54 -0700784 bool rangeEndsBefore(const Variable *Other) const {
785 return Live.endsBefore(Other->Live);
786 }
787 bool rangeOverlaps(const Variable *Other) const {
Jim Stichnoth5bff61c2015-10-28 09:26:00 -0700788 constexpr bool UseTrimmed = true;
Jim Stichnoth5ce0abb2014-10-15 10:16:54 -0700789 return Live.overlaps(Other->Live, UseTrimmed);
790 }
791 bool rangeOverlapsStart(const Variable *Other) const {
Jim Stichnoth5bff61c2015-10-28 09:26:00 -0700792 constexpr bool UseTrimmed = true;
Jim Stichnoth5ce0abb2014-10-15 10:16:54 -0700793 return Live.overlapsInst(Other->Live.getStart(), UseTrimmed);
794 }
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700795
Andrew Scull57e12682015-09-16 11:30:19 -0700796 /// Creates a temporary copy of the variable with a different type. Used
797 /// primarily for syntactic correctness of textual assembly emission. Note
798 /// that only basic information is copied, in particular not IsArgument,
799 /// IsImplicitArgument, IgnoreLiveness, RegNumTmp, Live, LoVar, HiVar,
Reed Kotler5fa0a5f2016-02-15 20:01:24 -0800800 /// VarsReal. If NewRegNum.hasValue(), then that register assignment is made
Jim Stichnoth5bff61c2015-10-28 09:26:00 -0700801 /// instead of copying the existing assignment.
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700802 const Variable *asType(const Cfg *Func, Type Ty, RegNumT NewRegNum) const;
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700803
Jim Stichnothb56c8f42014-09-26 09:28:46 -0700804 void emit(const Cfg *Func) const override;
Jim Stichnoth2e8bfbb2014-09-16 10:16:00 -0700805 using Operand::dump;
Jim Stichnothb56c8f42014-09-26 09:28:46 -0700806 void dump(const Cfg *Func, Ostream &Str) const override;
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700807
Jan Voung28068ad2015-07-31 12:58:46 -0700808 /// Return reg num of base register, if different from stack/frame register.
Reed Kotler5fa0a5f2016-02-15 20:01:24 -0800809 virtual RegNumT getBaseRegNum() const { return RegNumT(); }
Jan Voung28068ad2015-07-31 12:58:46 -0700810
Jim Stichnothfe62f0a2016-07-10 05:13:18 -0700811 /// Access the LinkedTo field.
812 void setLinkedTo(Variable *Var) { LinkedTo = Var; }
813 Variable *getLinkedTo() const { return LinkedTo; }
814 /// Follow the LinkedTo chain up to the furthest ancestor.
815 Variable *getLinkedToRoot() const {
816 Variable *Root = LinkedTo;
817 if (Root == nullptr)
818 return nullptr;
819 while (Root->LinkedTo != nullptr)
820 Root = Root->LinkedTo;
821 return Root;
Jim Stichnothe343e062016-06-28 21:40:33 -0700822 }
Jim Stichnothb9a84722016-08-01 13:18:36 -0700823 /// Follow the LinkedTo chain up to the furthest stack-allocated ancestor.
824 /// This is only certain to be accurate after register allocation and stack
825 /// slot assignment have completed.
826 Variable *getLinkedToStackRoot() const {
827 Variable *FurthestStackVar = nullptr;
828 for (Variable *Root = LinkedTo; Root != nullptr; Root = Root->LinkedTo) {
829 if (!Root->hasReg() && Root->hasStackOffset()) {
830 FurthestStackVar = Root;
831 }
832 }
833 return FurthestStackVar;
834 }
Jim Stichnothe343e062016-06-28 21:40:33 -0700835
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700836 static bool classof(const Operand *Operand) {
Jim Stichnoth800dab22014-09-20 12:25:02 -0700837 OperandKind Kind = Operand->getKind();
Andrew Scull6ef79492015-09-09 15:50:42 -0700838 return Kind >= kVariable && Kind <= kVariable_Max;
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700839 }
840
Sagar Thakure160ed92016-05-30 07:54:47 -0700841 SizeT hashValue() const override { return std::hash<SizeT>()(getIndex()); }
Manasij Mukherjee032c3152016-05-24 14:25:04 -0700842
Antonio Maioranodebdfa22020-11-10 16:28:34 -0500843 inline void *getExternalData() const { return externalData; }
844 inline void setExternalData(void *data) { externalData = data; }
Alexis Hetu932640b2018-06-20 15:35:53 -0400845
Jim Stichnoth800dab22014-09-20 12:25:02 -0700846protected:
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700847 Variable(const Cfg *Func, OperandKind K, Type Ty, SizeT Index)
Jim Stichnothc59288b2015-11-09 11:38:40 -0800848 : Operand(K, Ty), Number(Index),
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700849 Name(VariableString::createWithoutString(Func)),
Jim Stichnothc59288b2015-11-09 11:38:40 -0800850 RegisterClass(static_cast<RegClass>(Ty)) {
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700851 Vars = VarsReal;
852 Vars[0] = this;
853 NumVars = 1;
854 }
Andrew Scull57e12682015-09-16 11:30:19 -0700855 /// Number is unique across all variables, and is used as a (bit)vector index
856 /// for liveness analysis.
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700857 const SizeT Number;
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700858 VariableString Name;
Jim Stichnotheafb56c2015-06-22 10:35:22 -0700859 bool IsArgument = false;
860 bool IsImplicitArgument = false;
Andrew Scull57e12682015-09-16 11:30:19 -0700861 /// IgnoreLiveness means that the variable should be ignored when constructing
862 /// and validating live ranges. This is usually reserved for the stack
Jim Stichnoth69660552015-09-18 06:41:02 -0700863 /// pointer and other physical registers specifically referenced by name.
Jim Stichnotheafb56c2015-06-22 10:35:22 -0700864 bool IgnoreLiveness = false;
David Sehr4318a412015-11-11 15:01:55 -0800865 // If IsRematerializable, RegNum keeps track of which register (stack or frame
866 // pointer), and StackOffset is the known offset from that register.
867 bool IsRematerializable = false;
Andrew Scull6d47bcd2015-09-17 17:10:05 -0700868 RegRequirement RegRequirement = RR_MayHaveRegister;
Jim Stichnothc59288b2015-11-09 11:38:40 -0800869 RegClass RegisterClass;
Reed Kotler5fa0a5f2016-02-15 20:01:24 -0800870 /// RegNum is the allocated register, (as long as RegNum.hasValue() is true).
871 RegNumT RegNum;
Andrew Scull9612d322015-07-06 14:53:25 -0700872 /// RegNumTmp is the tentative assignment during register allocation.
Reed Kotler5fa0a5f2016-02-15 20:01:24 -0800873 RegNumT RegNumTmp;
Jim Stichnothb9a84722016-08-01 13:18:36 -0700874 static constexpr int32_t InvalidStackOffset =
875 std::numeric_limits<int32_t>::min();
876 static constexpr int32_t UndeterminedStackOffset =
877 1 + std::numeric_limits<int32_t>::min();
Andrew Scull6d47bcd2015-09-17 17:10:05 -0700878 /// StackOffset is the canonical location on stack (only if
Reed Kotler5fa0a5f2016-02-15 20:01:24 -0800879 /// RegNum.hasNoValue() || IsArgument).
Jim Stichnothfe62f0a2016-07-10 05:13:18 -0700880 int32_t StackOffset = InvalidStackOffset;
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700881 LiveRange Live;
Andrew Scull57e12682015-09-16 11:30:19 -0700882 /// VarsReal (and Operand::Vars) are set up such that Vars[0] == this.
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700883 Variable *VarsReal[1];
Jim Stichnothe343e062016-06-28 21:40:33 -0700884 /// This Variable may be "linked" to another Variable, such that if neither
885 /// Variable gets a register, they are guaranteed to share a stack location.
Jim Stichnothfe62f0a2016-07-10 05:13:18 -0700886 Variable *LinkedTo = nullptr;
Alexis Hetu932640b2018-06-20 15:35:53 -0400887 /// External data can be set by an optimizer to compute and retain any
888 /// information related to the current variable. All the memory used to
889 /// store this information must be managed by the optimizer.
Antonio Maioranodebdfa22020-11-10 16:28:34 -0500890 void *externalData = nullptr;
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700891};
892
Andrew Scull6d47bcd2015-09-17 17:10:05 -0700893// Variable64On32 represents a 64-bit variable on a 32-bit architecture. In
894// this situation the variable must be split into a low and a high word.
895class Variable64On32 : public Variable {
896 Variable64On32() = delete;
897 Variable64On32(const Variable64On32 &) = delete;
898 Variable64On32 &operator=(const Variable64On32 &) = delete;
899
900public:
901 static Variable64On32 *create(Cfg *Func, Type Ty, SizeT Index) {
John Portoa83bfde2015-09-18 08:43:02 -0700902 return new (Func->allocate<Variable64On32>())
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700903 Variable64On32(Func, kVariable64On32, Ty, Index);
Andrew Scull6d47bcd2015-09-17 17:10:05 -0700904 }
905
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700906 void setName(const Cfg *Func, const std::string &NewName) override {
Andrew Scull6d47bcd2015-09-17 17:10:05 -0700907 Variable::setName(Func, NewName);
908 if (LoVar && HiVar) {
Jim Stichnotha91c3412016-04-05 15:31:43 -0700909 LoVar->setName(Func, getName() + "__lo");
910 HiVar->setName(Func, getName() + "__hi");
Andrew Scull6d47bcd2015-09-17 17:10:05 -0700911 }
912 }
913
914 void setIsArg(bool Val = true) override {
915 Variable::setIsArg(Val);
916 if (LoVar && HiVar) {
917 LoVar->setIsArg(Val);
918 HiVar->setIsArg(Val);
919 }
920 }
921
922 Variable *getLo() const {
923 assert(LoVar != nullptr);
924 return LoVar;
925 }
926 Variable *getHi() const {
927 assert(HiVar != nullptr);
928 return HiVar;
929 }
930
931 void initHiLo(Cfg *Func) {
932 assert(LoVar == nullptr);
933 assert(HiVar == nullptr);
934 LoVar = Func->makeVariable(IceType_i32);
935 HiVar = Func->makeVariable(IceType_i32);
936 LoVar->setIsArg(getIsArg());
937 HiVar->setIsArg(getIsArg());
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700938 if (BuildDefs::dump()) {
Jim Stichnotha91c3412016-04-05 15:31:43 -0700939 LoVar->setName(Func, getName() + "__lo");
940 HiVar->setName(Func, getName() + "__hi");
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700941 }
Andrew Scull6d47bcd2015-09-17 17:10:05 -0700942 }
943
944 static bool classof(const Operand *Operand) {
945 OperandKind Kind = Operand->getKind();
946 return Kind == kVariable64On32;
947 }
948
949protected:
Jim Stichnoth467ffe52016-03-29 15:01:06 -0700950 Variable64On32(const Cfg *Func, OperandKind K, Type Ty, SizeT Index)
951 : Variable(Func, K, Ty, Index) {
Andrew Scull6d47bcd2015-09-17 17:10:05 -0700952 assert(typeWidthInBytes(Ty) == 8);
953 }
954
955 Variable *LoVar = nullptr;
956 Variable *HiVar = nullptr;
957};
958
Jaydeep Patil958ddb72016-10-03 07:52:48 -0700959// VariableVecOn32 represents a 128-bit vector variable on a 32-bit
960// architecture. In this case the variable must be split into 4 containers.
961class VariableVecOn32 : public Variable {
962 VariableVecOn32() = delete;
963 VariableVecOn32(const VariableVecOn32 &) = delete;
964 VariableVecOn32 &operator=(const VariableVecOn32 &) = delete;
965
966public:
967 static VariableVecOn32 *create(Cfg *Func, Type Ty, SizeT Index) {
968 return new (Func->allocate<VariableVecOn32>())
969 VariableVecOn32(Func, kVariableVecOn32, Ty, Index);
970 }
971
972 void setName(const Cfg *Func, const std::string &NewName) override {
973 Variable::setName(Func, NewName);
974 if (!Containers.empty()) {
Jaydeep Patil3a01f332016-10-17 06:33:50 -0700975 for (SizeT i = 0; i < ContainersPerVector; ++i) {
Jaydeep Patil958ddb72016-10-03 07:52:48 -0700976 Containers[i]->setName(Func, getName() + "__cont" + std::to_string(i));
977 }
978 }
979 }
980
981 void setIsArg(bool Val = true) override {
982 Variable::setIsArg(Val);
983 for (Variable *Var : Containers) {
984 Var->setIsArg(getIsArg());
985 }
986 }
987
988 const VarList &getContainers() const { return Containers; }
989
990 void initVecElement(Cfg *Func) {
Jaydeep Patil3a01f332016-10-17 06:33:50 -0700991 for (SizeT i = 0; i < ContainersPerVector; ++i) {
Jaydeep Patil958ddb72016-10-03 07:52:48 -0700992 Variable *Var = Func->makeVariable(IceType_i32);
993 Var->setIsArg(getIsArg());
994 if (BuildDefs::dump()) {
995 Var->setName(Func, getName() + "__cont" + std::to_string(i));
996 }
997 Containers.push_back(Var);
998 }
999 }
1000
1001 static bool classof(const Operand *Operand) {
1002 OperandKind Kind = Operand->getKind();
1003 return Kind == kVariableVecOn32;
1004 }
1005
1006 // A 128-bit vector value is mapped onto 4 32-bit register values.
Jaydeep Patil3a01f332016-10-17 06:33:50 -07001007 static constexpr SizeT ContainersPerVector = 4;
Jaydeep Patil958ddb72016-10-03 07:52:48 -07001008
1009protected:
1010 VariableVecOn32(const Cfg *Func, OperandKind K, Type Ty, SizeT Index)
1011 : Variable(Func, K, Ty, Index) {
1012 assert(typeWidthInBytes(Ty) ==
Jaydeep Patil3a01f332016-10-17 06:33:50 -07001013 ContainersPerVector * typeWidthInBytes(IceType_i32));
Jaydeep Patil958ddb72016-10-03 07:52:48 -07001014 }
1015
1016 VarList Containers;
1017};
1018
Jim Stichnoth877b04e2014-10-15 15:13:06 -07001019enum MetadataKind {
Andrew Scull9612d322015-07-06 14:53:25 -07001020 VMK_Uses, /// Track only uses, not defs
1021 VMK_SingleDefs, /// Track uses+defs, but only record single def
1022 VMK_All /// Track uses+defs, including full def list
Jim Stichnoth877b04e2014-10-15 15:13:06 -07001023};
Andrew Scull00741a02015-09-16 19:04:09 -07001024using InstDefList = CfgVector<const Inst *>;
Jim Stichnothad403532014-09-25 12:44:17 -07001025
Andrew Scull9612d322015-07-06 14:53:25 -07001026/// VariableTracking tracks the metadata for a single variable. It is
1027/// only meant to be used internally by VariablesMetadata.
Jim Stichnoth144cdce2014-09-22 16:02:59 -07001028class VariableTracking {
1029public:
1030 enum MultiDefState {
1031 // TODO(stichnot): Consider using just a simple counter.
1032 MDS_Unknown,
1033 MDS_SingleDef,
Jim Stichnothad403532014-09-25 12:44:17 -07001034 MDS_MultiDefSingleBlock,
1035 MDS_MultiDefMultiBlock
Jim Stichnoth144cdce2014-09-22 16:02:59 -07001036 };
Jim Stichnothcc89c952016-03-31 11:55:23 -07001037 enum MultiBlockState {
1038 MBS_Unknown, // Not yet initialized, so be conservative
1039 MBS_NoUses, // Known to have no uses
1040 MBS_SingleBlock, // All uses in are in a single block
1041 MBS_MultiBlock // Several uses across several blocks
1042 };
Jim Stichnotheafb56c2015-06-22 10:35:22 -07001043 VariableTracking() = default;
Jim Stichnoth7e571362015-01-09 11:43:26 -08001044 VariableTracking(const VariableTracking &) = default;
Jim Stichnothcc89c952016-03-31 11:55:23 -07001045 VariableTracking &operator=(const VariableTracking &) = default;
1046 VariableTracking(MultiBlockState MultiBlock) : MultiBlock(MultiBlock) {}
Jim Stichnoth144cdce2014-09-22 16:02:59 -07001047 MultiDefState getMultiDef() const { return MultiDef; }
1048 MultiBlockState getMultiBlock() const { return MultiBlock; }
Jim Stichnoth48e3ae52015-10-01 13:33:35 -07001049 const Inst *getFirstDefinitionSingleBlock() const;
Jim Stichnothad403532014-09-25 12:44:17 -07001050 const Inst *getSingleDefinition() const;
Jim Stichnoth48e3ae52015-10-01 13:33:35 -07001051 const Inst *getFirstDefinition() const;
Jim Stichnoth877b04e2014-10-15 15:13:06 -07001052 const InstDefList &getLatterDefinitions() const { return Definitions; }
Jim Stichnotha3f57b92015-07-30 12:46:04 -07001053 CfgNode *getNode() const { return SingleUseNode; }
Andrew Scullaa6c1092015-09-03 17:50:30 -07001054 RegWeight getUseWeight() const { return UseWeight; }
Jim Stichnotha3f57b92015-07-30 12:46:04 -07001055 void markUse(MetadataKind TrackingKind, const Inst *Instr, CfgNode *Node,
1056 bool IsImplicit);
1057 void markDef(MetadataKind TrackingKind, const Inst *Instr, CfgNode *Node);
Jim Stichnoth144cdce2014-09-22 16:02:59 -07001058
1059private:
Jim Stichnotheafb56c2015-06-22 10:35:22 -07001060 MultiDefState MultiDef = MDS_Unknown;
1061 MultiBlockState MultiBlock = MBS_Unknown;
Jim Stichnotha3f57b92015-07-30 12:46:04 -07001062 CfgNode *SingleUseNode = nullptr;
1063 CfgNode *SingleDefNode = nullptr;
Jim Stichnoth48e3ae52015-10-01 13:33:35 -07001064 /// All definitions of the variable are collected in Definitions[] (except for
1065 /// the earliest definition), in increasing order of instruction number.
Andrew Scull9612d322015-07-06 14:53:25 -07001066 InstDefList Definitions; /// Only used if Kind==VMK_All
Jim Stichnoth48e3ae52015-10-01 13:33:35 -07001067 const Inst *FirstOrSingleDefinition = nullptr;
Andrew Scullaa6c1092015-09-03 17:50:30 -07001068 RegWeight UseWeight;
Jim Stichnoth144cdce2014-09-22 16:02:59 -07001069};
1070
Andrew Scull11c9a322015-08-28 14:24:14 -07001071/// VariablesMetadata analyzes and summarizes the metadata for the complete set
1072/// of Variables.
Jim Stichnoth144cdce2014-09-22 16:02:59 -07001073class VariablesMetadata {
Jim Stichnothc6ead202015-02-24 09:30:30 -08001074 VariablesMetadata() = delete;
Jim Stichnoth7b451a92014-10-15 14:39:23 -07001075 VariablesMetadata(const VariablesMetadata &) = delete;
1076 VariablesMetadata &operator=(const VariablesMetadata &) = delete;
1077
Jim Stichnoth144cdce2014-09-22 16:02:59 -07001078public:
Jim Stichnothc6ead202015-02-24 09:30:30 -08001079 explicit VariablesMetadata(const Cfg *Func) : Func(Func) {}
Andrew Scull57e12682015-09-16 11:30:19 -07001080 /// Initialize the state by traversing all instructions/variables in the CFG.
Jim Stichnoth877b04e2014-10-15 15:13:06 -07001081 void init(MetadataKind TrackingKind);
Andrew Scull57e12682015-09-16 11:30:19 -07001082 /// Add a single node. This is called by init(), and can be called
Andrew Scull9612d322015-07-06 14:53:25 -07001083 /// incrementally from elsewhere, e.g. after edge-splitting.
Jim Stichnoth336f6c42014-10-30 15:01:31 -07001084 void addNode(CfgNode *Node);
Jim Stichnoth48e3ae52015-10-01 13:33:35 -07001085 MetadataKind getKind() const { return Kind; }
Andrew Scull57e12682015-09-16 11:30:19 -07001086 /// Returns whether the given Variable is tracked in this object. It should
Andrew Scull11c9a322015-08-28 14:24:14 -07001087 /// only return false if changes were made to the CFG after running init(), in
1088 /// which case the state is stale and the results shouldn't be trusted (but it
1089 /// may be OK e.g. for dumping).
Jim Stichnoth144cdce2014-09-22 16:02:59 -07001090 bool isTracked(const Variable *Var) const {
1091 return Var->getIndex() < Metadata.size();
1092 }
Jim Stichnothad403532014-09-25 12:44:17 -07001093
Andrew Scull9612d322015-07-06 14:53:25 -07001094 /// Returns whether the given Variable has multiple definitions.
Jim Stichnoth144cdce2014-09-22 16:02:59 -07001095 bool isMultiDef(const Variable *Var) const;
Andrew Scull57e12682015-09-16 11:30:19 -07001096 /// Returns the first definition instruction of the given Variable. This is
Andrew Scull11c9a322015-08-28 14:24:14 -07001097 /// only valid for variables whose definitions are all within the same block,
1098 /// e.g. T after the lowered sequence "T=B; T+=C; A=T", for which
Jim Stichnoth48e3ae52015-10-01 13:33:35 -07001099 /// getFirstDefinitionSingleBlock(T) would return the "T=B" instruction. For
1100 /// variables with definitions span multiple blocks, nullptr is returned.
1101 const Inst *getFirstDefinitionSingleBlock(const Variable *Var) const;
Andrew Scull57e12682015-09-16 11:30:19 -07001102 /// Returns the definition instruction of the given Variable, when the
1103 /// variable has exactly one definition. Otherwise, nullptr is returned.
Jim Stichnothad403532014-09-25 12:44:17 -07001104 const Inst *getSingleDefinition(const Variable *Var) const;
Jim Stichnoth48e3ae52015-10-01 13:33:35 -07001105 /// getFirstDefinition() and getLatterDefinitions() are used together to
1106 /// return the complete set of instructions that define the given Variable,
1107 /// regardless of whether the definitions are within the same block (in
1108 /// contrast to getFirstDefinitionSingleBlock).
1109 const Inst *getFirstDefinition(const Variable *Var) const;
Jim Stichnoth877b04e2014-10-15 15:13:06 -07001110 const InstDefList &getLatterDefinitions(const Variable *Var) const;
Jim Stichnothad403532014-09-25 12:44:17 -07001111
Andrew Scull57e12682015-09-16 11:30:19 -07001112 /// Returns whether the given Variable is live across multiple blocks. Mainly,
1113 /// this is used to partition Variables into single-block versus multi-block
1114 /// sets for leveraging sparsity in liveness analysis, and for implementing
1115 /// simple stack slot coalescing. As a special case, function arguments are
1116 /// always considered multi-block because they are live coming into the entry
1117 /// block.
Jim Stichnoth144cdce2014-09-22 16:02:59 -07001118 bool isMultiBlock(const Variable *Var) const;
Jim Stichnothcc89c952016-03-31 11:55:23 -07001119 bool isSingleBlock(const Variable *Var) const;
Andrew Scull9612d322015-07-06 14:53:25 -07001120 /// Returns the node that the given Variable is used in, assuming
Andrew Scull57e12682015-09-16 11:30:19 -07001121 /// isMultiBlock() returns false. Otherwise, nullptr is returned.
Jim Stichnotha3f57b92015-07-30 12:46:04 -07001122 CfgNode *getLocalUseNode(const Variable *Var) const;
Jim Stichnoth144cdce2014-09-22 16:02:59 -07001123
Andrew Scull11c9a322015-08-28 14:24:14 -07001124 /// Returns the total use weight computed as the sum of uses multiplied by a
1125 /// loop nest depth factor for each use.
Andrew Scullaa6c1092015-09-03 17:50:30 -07001126 RegWeight getUseWeight(const Variable *Var) const;
Andrew Scull11c9a322015-08-28 14:24:14 -07001127
Jim Stichnoth144cdce2014-09-22 16:02:59 -07001128private:
1129 const Cfg *Func;
Jim Stichnoth877b04e2014-10-15 15:13:06 -07001130 MetadataKind Kind;
Andrew Scull00741a02015-09-16 19:04:09 -07001131 CfgVector<VariableTracking> Metadata;
Nicolas Capens86e5d882016-09-08 12:47:42 -04001132 static const InstDefList *NoDefinitions;
Jim Stichnoth144cdce2014-09-22 16:02:59 -07001133};
1134
Eric Holk80ee5b32016-05-06 14:28:04 -07001135/// BooleanVariable represents a variable that was the zero-extended result of a
1136/// comparison. It maintains a pointer to its original i1 source so that the
1137/// WASM frontend can avoid adding needless comparisons.
1138class BooleanVariable : public Variable {
1139 BooleanVariable() = delete;
1140 BooleanVariable(const BooleanVariable &) = delete;
1141 BooleanVariable &operator=(const BooleanVariable &) = delete;
1142
1143 BooleanVariable(const Cfg *Func, OperandKind K, Type Ty, SizeT Index)
1144 : Variable(Func, K, Ty, Index) {}
1145
1146public:
1147 static BooleanVariable *create(Cfg *Func, Type Ty, SizeT Index) {
1148 return new (Func->allocate<BooleanVariable>())
1149 BooleanVariable(Func, kVariable, Ty, Index);
1150 }
1151
1152 virtual Variable *asBoolean() { return BoolSource; }
1153
1154 void setBoolSource(Variable *Src) { BoolSource = Src; }
1155
1156 static bool classof(const Operand *Operand) {
1157 return Operand->getKind() == kVariableBoolean;
1158 }
1159
1160private:
1161 Variable *BoolSource = nullptr;
1162};
1163
Jim Stichnothf7c9a142014-04-29 10:52:43 -07001164} // end of namespace Ice
1165
1166#endif // SUBZERO_SRC_ICEOPERAND_H