blob: 78e3d18f414a94f1baa6f68923eb977604f30f42 [file] [log] [blame]
Jim Stichnothf7c9a142014-04-29 10:52:43 -07001//===- subzero/src/IceCfgNode.cpp - Basic block (node) implementation -----===//
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 Implements the CfgNode class, including the complexities of
Andrew Scull57e12682015-09-16 11:30:19 -070012/// instruction insertion and in-edge calculation.
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 "IceCfgNode.h"
17
John Portoaff4ccf2015-06-10 16:35:06 -070018#include "IceAssembler.h"
Jim Stichnothf7c9a142014-04-29 10:52:43 -070019#include "IceCfg.h"
John Portof8b4cc82015-06-09 18:06:19 -070020#include "IceGlobalInits.h"
Jim Stichnothf7c9a142014-04-29 10:52:43 -070021#include "IceInst.h"
John Portoec3f5652015-08-31 15:07:09 -070022#include "IceInstVarIter.h"
Jim Stichnothd97c7df2014-06-04 11:57:08 -070023#include "IceLiveness.h"
Jim Stichnothf7c9a142014-04-29 10:52:43 -070024#include "IceOperand.h"
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -070025#include "IceTargetLowering.h"
Jim Stichnothf7c9a142014-04-29 10:52:43 -070026
27namespace Ice {
28
Andrew Scull57e12682015-09-16 11:30:19 -070029// Adds an instruction to either the Phi list or the regular instruction list.
30// Validates that all Phis are added before all regular instructions.
Eric Holk085bdae2016-04-18 15:08:19 -070031void CfgNode::appendInst(Inst *Instr) {
Jim Stichnoth47752552014-10-13 17:15:08 -070032 ++InstCountEstimate;
Eric Holk16f80612016-04-04 17:07:42 -070033
34 if (BuildDefs::wasm()) {
35 if (llvm::isa<InstSwitch>(Instr) || llvm::isa<InstBr>(Instr)) {
36 for (auto *N : Instr->getTerminatorEdges()) {
37 N->addInEdge(this);
38 addOutEdge(N);
39 }
40 }
41 }
42
Jim Stichnoth8cfeb692016-02-05 09:50:02 -080043 if (auto *Phi = llvm::dyn_cast<InstPhi>(Instr)) {
Eric Holk085bdae2016-04-18 15:08:19 -070044 if (!Insts.empty()) {
Jim Stichnothf7c9a142014-04-29 10:52:43 -070045 Func->setError("Phi instruction added to the middle of a block");
46 return;
47 }
48 Phis.push_back(Phi);
49 } else {
Jim Stichnoth8cfeb692016-02-05 09:50:02 -080050 Insts.push_back(Instr);
Jim Stichnothf7c9a142014-04-29 10:52:43 -070051 }
Jim Stichnothf7c9a142014-04-29 10:52:43 -070052}
53
Jim Stichnoth76719b42016-03-14 08:37:52 -070054namespace {
55template <typename List> void removeDeletedAndRenumber(List *L, Cfg *Func) {
56 const bool DoDelete =
Karl Schimpfd4699942016-04-02 09:55:31 -070057 BuildDefs::minimal() || !getFlags().getKeepDeletedInsts();
Jim Stichnoth76719b42016-03-14 08:37:52 -070058 auto I = L->begin(), E = L->end(), Next = I;
59 for (++Next; I != E; I = Next++) {
60 if (DoDelete && I->isDeleted()) {
61 L->erase(I);
62 } else {
63 I->renumber(Func);
64 }
65 }
66}
67} // end of anonymous namespace
68
Jim Stichnothd97c7df2014-06-04 11:57:08 -070069void CfgNode::renumberInstructions() {
Jim Stichnoth47752552014-10-13 17:15:08 -070070 InstNumberT FirstNumber = Func->getNextInstNumber();
Jim Stichnoth76719b42016-03-14 08:37:52 -070071 removeDeletedAndRenumber(&Phis, Func);
72 removeDeletedAndRenumber(&Insts, Func);
Jim Stichnoth47752552014-10-13 17:15:08 -070073 InstCountEstimate = Func->getNextInstNumber() - FirstNumber;
Jim Stichnothd97c7df2014-06-04 11:57:08 -070074}
75
Andrew Scull57e12682015-09-16 11:30:19 -070076// When a node is created, the OutEdges are immediately known, but the InEdges
77// have to be built up incrementally. After the CFG has been constructed, the
78// computePredecessors() pass finalizes it by creating the InEdges list.
Jim Stichnothf7c9a142014-04-29 10:52:43 -070079void CfgNode::computePredecessors() {
Jim Stichnothf44f3712014-10-01 14:05:51 -070080 for (CfgNode *Succ : OutEdges)
81 Succ->InEdges.push_back(this);
Jim Stichnothf7c9a142014-04-29 10:52:43 -070082}
83
Jim Stichnoth69d3f9c2015-03-23 10:33:38 -070084void CfgNode::computeSuccessors() {
Eric Holk16f80612016-04-04 17:07:42 -070085 OutEdges.clear();
86 InEdges.clear();
Eric Holk085bdae2016-04-18 15:08:19 -070087 assert(!Insts.empty());
Jim Stichnoth69d3f9c2015-03-23 10:33:38 -070088 OutEdges = Insts.rbegin()->getTerminatorEdges();
89}
90
David Sehr263ac522016-04-04 10:11:08 -070091// Ensure each Phi instruction in the node is consistent with respect to control
92// flow. For each predecessor, there must be a phi argument with that label.
93// If a phi argument's label doesn't appear in the predecessor list (which can
94// happen as a result of e.g. unreachable node elimination), its value is
95// modified to be zero, to maintain consistency in liveness analysis. This
96// allows us to remove some dead control flow without a major rework of the phi
97// instructions. We don't check that phi arguments with the same label have the
98// same value.
99void CfgNode::enforcePhiConsistency() {
Jim Stichnoth1aca2302015-09-16 11:25:22 -0700100 for (Inst &Instr : Phis) {
101 auto *Phi = llvm::cast<InstPhi>(&Instr);
Andrew Scull57e12682015-09-16 11:30:19 -0700102 // We do a simple O(N^2) algorithm to check for consistency. Even so, it
103 // shows up as only about 0.2% of the total translation time. But if
104 // necessary, we could improve the complexity by using a hash table to
105 // count how many times each node is referenced in the Phi instruction, and
106 // how many times each node is referenced in the incoming edge list, and
107 // compare the two for equality.
Jim Stichnoth1aca2302015-09-16 11:25:22 -0700108 for (SizeT i = 0; i < Phi->getSrcSize(); ++i) {
109 CfgNode *Label = Phi->getLabel(i);
110 bool Found = false;
111 for (CfgNode *InNode : getInEdges()) {
112 if (InNode == Label) {
113 Found = true;
114 break;
115 }
116 }
David Sehr263ac522016-04-04 10:11:08 -0700117 if (!Found) {
118 // Predecessor was unreachable, so if (impossibly) the control flow
119 // enters from that predecessor, the value should be zero.
120 Phi->clearOperandForTarget(Label);
121 }
Jim Stichnoth1aca2302015-09-16 11:25:22 -0700122 }
123 for (CfgNode *InNode : getInEdges()) {
124 bool Found = false;
125 for (SizeT i = 0; i < Phi->getSrcSize(); ++i) {
126 CfgNode *Label = Phi->getLabel(i);
127 if (InNode == Label) {
128 Found = true;
129 break;
130 }
131 }
132 if (!Found)
133 llvm::report_fatal_error("Phi error: missing label for incoming edge");
134 }
135 }
136}
137
Andrew Scull57e12682015-09-16 11:30:19 -0700138// This does part 1 of Phi lowering, by creating a new dest variable for each
139// Phi instruction, replacing the Phi instruction's dest with that variable,
140// and adding an explicit assignment of the old dest to the new dest. For
141// example,
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700142// a=phi(...)
143// changes to
144// "a_phi=phi(...); a=a_phi".
145//
Andrew Scull57e12682015-09-16 11:30:19 -0700146// This is in preparation for part 2 which deletes the Phi instructions and
147// appends assignment instructions to predecessor blocks. Note that this
148// transformation preserves SSA form.
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700149void CfgNode::placePhiLoads() {
Jim Stichnoth29841e82014-12-23 12:26:24 -0800150 for (Inst &I : Phis) {
Jim Stichnoth5bff61c2015-10-28 09:26:00 -0700151 auto *Phi = llvm::dyn_cast<InstPhi>(&I);
Jim Stichnoth1502e592014-12-11 09:22:45 -0800152 Insts.insert(Insts.begin(), Phi->lower(Func));
153 }
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700154}
155
Andrew Scull57e12682015-09-16 11:30:19 -0700156// This does part 2 of Phi lowering. For each Phi instruction at each out-edge,
157// create a corresponding assignment instruction, and add all the assignments
158// near the end of this block. They need to be added before any branch
159// instruction, and also if the block ends with a compare instruction followed
160// by a branch instruction that we may want to fuse, it's better to insert the
161// new assignments before the compare instruction. The
162// tryOptimizedCmpxchgCmpBr() method assumes this ordering of instructions.
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700163//
Andrew Scull57e12682015-09-16 11:30:19 -0700164// Note that this transformation takes the Phi dest variables out of SSA form,
165// as there may be assignments to the dest variable in multiple blocks.
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700166void CfgNode::placePhiStores() {
Jim Stichnothe5a5be72014-09-10 11:51:38 -0700167 // Find the insertion point.
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700168 InstList::iterator InsertionPoint = Insts.end();
Andrew Scull57e12682015-09-16 11:30:19 -0700169 // Every block must end in a terminator instruction, and therefore must have
170 // at least one instruction, so it's valid to decrement InsertionPoint (but
171 // assert just in case).
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700172 assert(InsertionPoint != Insts.begin());
173 --InsertionPoint;
Andrew Scull57e12682015-09-16 11:30:19 -0700174 // Confirm that InsertionPoint is a terminator instruction. Calling
175 // getTerminatorEdges() on a non-terminator instruction will cause an
176 // llvm_unreachable().
Jim Stichnoth607e9f02014-11-06 13:32:05 -0800177 (void)InsertionPoint->getTerminatorEdges();
Jim Stichnothe5a5be72014-09-10 11:51:38 -0700178 // SafeInsertionPoint is always immediately before the terminator
Andrew Scull57e12682015-09-16 11:30:19 -0700179 // instruction. If the block ends in a compare and conditional branch, it's
180 // better to place the Phi store before the compare so as not to interfere
181 // with compare/branch fusing. However, if the compare instruction's dest
182 // operand is the same as the new assignment statement's source operand, this
183 // can't be done due to data dependences, so we need to fall back to the
184 // SafeInsertionPoint. To illustrate:
Jim Stichnothe5a5be72014-09-10 11:51:38 -0700185 // ; <label>:95
186 // %97 = load i8* %96, align 1
187 // %98 = icmp ne i8 %97, 0
188 // br i1 %98, label %99, label %2132
189 // ; <label>:99
190 // %100 = phi i8 [ %97, %95 ], [ %110, %108 ]
191 // %101 = phi i1 [ %98, %95 ], [ %111, %108 ]
192 // would be Phi-lowered as:
193 // ; <label>:95
194 // %97 = load i8* %96, align 1
195 // %100_phi = %97 ; can be at InsertionPoint
196 // %98 = icmp ne i8 %97, 0
197 // %101_phi = %98 ; must be at SafeInsertionPoint
198 // br i1 %98, label %99, label %2132
199 // ; <label>:99
200 // %100 = %100_phi
201 // %101 = %101_phi
202 //
Andrew Scull57e12682015-09-16 11:30:19 -0700203 // TODO(stichnot): It may be possible to bypass this whole SafeInsertionPoint
204 // mechanism. If a source basic block ends in a conditional branch:
Jim Stichnothe5a5be72014-09-10 11:51:38 -0700205 // labelSource:
206 // ...
207 // br i1 %foo, label %labelTrue, label %labelFalse
208 // and a branch target has a Phi involving the branch operand:
209 // labelTrue:
210 // %bar = phi i1 [ %foo, %labelSource ], ...
211 // then we actually know the constant i1 value of the Phi operand:
212 // labelTrue:
213 // %bar = phi i1 [ true, %labelSource ], ...
Andrew Scull57e12682015-09-16 11:30:19 -0700214 // It seems that this optimization should be done by clang or opt, but we
215 // could also do it here.
Jim Stichnothe5a5be72014-09-10 11:51:38 -0700216 InstList::iterator SafeInsertionPoint = InsertionPoint;
Andrew Scull57e12682015-09-16 11:30:19 -0700217 // Keep track of the dest variable of a compare instruction, so that we
218 // insert the new instruction at the SafeInsertionPoint if the compare's dest
219 // matches the Phi-lowered assignment's source.
Jim Stichnothae953202014-12-20 06:17:49 -0800220 Variable *CmpInstDest = nullptr;
Andrew Scull57e12682015-09-16 11:30:19 -0700221 // If the current insertion point is at a conditional branch instruction, and
222 // the previous instruction is a compare instruction, then we move the
223 // insertion point before the compare instruction so as not to interfere with
224 // compare/branch fusing.
Jim Stichnoth54f3d512015-12-11 09:53:00 -0800225 if (auto *Branch = llvm::dyn_cast<InstBr>(InsertionPoint)) {
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700226 if (!Branch->isUnconditional()) {
227 if (InsertionPoint != Insts.begin()) {
228 --InsertionPoint;
Jim Stichnoth607e9f02014-11-06 13:32:05 -0800229 if (llvm::isa<InstIcmp>(InsertionPoint) ||
230 llvm::isa<InstFcmp>(InsertionPoint)) {
231 CmpInstDest = InsertionPoint->getDest();
Jim Stichnothe5a5be72014-09-10 11:51:38 -0700232 } else {
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700233 ++InsertionPoint;
234 }
235 }
236 }
237 }
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700238
239 // Consider every out-edge.
Jim Stichnothf44f3712014-10-01 14:05:51 -0700240 for (CfgNode *Succ : OutEdges) {
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700241 // Consider every Phi instruction at the out-edge.
Jim Stichnoth29841e82014-12-23 12:26:24 -0800242 for (Inst &I : Succ->Phis) {
Jim Stichnoth5bff61c2015-10-28 09:26:00 -0700243 auto *Phi = llvm::dyn_cast<InstPhi>(&I);
Jim Stichnoth1502e592014-12-11 09:22:45 -0800244 Operand *Operand = Phi->getOperandForTarget(this);
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700245 assert(Operand);
Jim Stichnoth29841e82014-12-23 12:26:24 -0800246 Variable *Dest = I.getDest();
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700247 assert(Dest);
Jim Stichnoth54f3d512015-12-11 09:53:00 -0800248 auto *NewInst = InstAssign::create(Func, Dest, Operand);
Jim Stichnothe5a5be72014-09-10 11:51:38 -0700249 if (CmpInstDest == Operand)
250 Insts.insert(SafeInsertionPoint, NewInst);
251 else
252 Insts.insert(InsertionPoint, NewInst);
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700253 }
254 }
255}
256
257// Deletes the phi instructions after the loads and stores are placed.
258void CfgNode::deletePhis() {
Jim Stichnoth29841e82014-12-23 12:26:24 -0800259 for (Inst &I : Phis)
260 I.setDeleted();
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700261}
262
Andrew Scull57e12682015-09-16 11:30:19 -0700263// Splits the edge from Pred to this node by creating a new node and hooking up
264// the in and out edges appropriately. (The EdgeIndex parameter is only used to
265// make the new node's name unique when there are multiple edges between the
266// same pair of nodes.) The new node's instruction list is initialized to the
267// empty list, with no terminator instruction. There must not be multiple edges
268// from Pred to this node so all Inst::getTerminatorEdges implementations must
Andrew Scull87f80c12015-07-20 10:19:16 -0700269// not contain duplicates.
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700270CfgNode *CfgNode::splitIncomingEdge(CfgNode *Pred, SizeT EdgeIndex) {
Jim Stichnoth668a7a32014-12-10 15:32:25 -0800271 CfgNode *NewNode = Func->makeNode();
Andrew Scullaa6c1092015-09-03 17:50:30 -0700272 // Depth is the minimum as it works if both are the same, but if one is
273 // outside the loop and the other is inside, the new node should be placed
274 // outside and not be executed multiple times within the loop.
275 NewNode->setLoopNestDepth(
276 std::min(getLoopNestDepth(), Pred->getLoopNestDepth()));
Jim Stichnoth20b71f52015-06-24 15:52:24 -0700277 if (BuildDefs::dump())
Jim Stichnoth668a7a32014-12-10 15:32:25 -0800278 NewNode->setName("split_" + Pred->getName() + "_" + getName() + "_" +
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700279 std::to_string(EdgeIndex));
Andrew Scull57e12682015-09-16 11:30:19 -0700280 // The new node is added to the end of the node list, and will later need to
281 // be sorted into a reasonable topological order.
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700282 NewNode->setNeedsPlacement(true);
283 // Repoint Pred's out-edge.
284 bool Found = false;
Andrew Scull87f80c12015-07-20 10:19:16 -0700285 for (CfgNode *&I : Pred->OutEdges) {
286 if (I == this) {
287 I = NewNode;
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700288 NewNode->InEdges.push_back(Pred);
289 Found = true;
Andrew Scull87f80c12015-07-20 10:19:16 -0700290 break;
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700291 }
292 }
293 assert(Found);
Jim Stichnotha8d47132015-09-08 14:43:38 -0700294 (void)Found;
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700295 // Repoint this node's in-edge.
296 Found = false;
Andrew Scull87f80c12015-07-20 10:19:16 -0700297 for (CfgNode *&I : InEdges) {
298 if (I == Pred) {
299 I = NewNode;
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700300 NewNode->OutEdges.push_back(this);
301 Found = true;
Andrew Scull87f80c12015-07-20 10:19:16 -0700302 break;
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700303 }
304 }
305 assert(Found);
Jim Stichnotha8d47132015-09-08 14:43:38 -0700306 (void)Found;
Andrew Scull87f80c12015-07-20 10:19:16 -0700307 // Repoint all suitable branch instructions' target and return.
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700308 Found = false;
Andrew Scull87f80c12015-07-20 10:19:16 -0700309 for (Inst &I : Pred->getInsts())
310 if (!I.isDeleted() && I.repointEdges(this, NewNode))
311 Found = true;
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700312 assert(Found);
Jim Stichnotha8d47132015-09-08 14:43:38 -0700313 (void)Found;
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700314 return NewNode;
315}
316
317namespace {
318
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800319// Helpers for advancedPhiLowering().
320
321class PhiDesc {
322 PhiDesc() = delete;
323 PhiDesc(const PhiDesc &) = delete;
324 PhiDesc &operator=(const PhiDesc &) = delete;
Jim Stichnothc59288b2015-11-09 11:38:40 -0800325
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800326public:
327 PhiDesc(InstPhi *Phi, Variable *Dest) : Phi(Phi), Dest(Dest) {}
328 PhiDesc(PhiDesc &&) = default;
329 InstPhi *Phi = nullptr;
330 Variable *Dest = nullptr;
331 Operand *Src = nullptr;
332 bool Processed = false;
333 size_t NumPred = 0; // number of entries whose Src is this Dest
334 int32_t Weight = 0; // preference for topological order
335};
336using PhiDescList = llvm::SmallVector<PhiDesc, 32>;
337
338// Always pick NumPred=0 over NumPred>0.
Jim Stichnothbbd449d2016-03-30 15:30:30 -0700339constexpr int32_t WeightNoPreds = 8;
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800340// Prefer Src as a register because the register might free up.
Jim Stichnothbbd449d2016-03-30 15:30:30 -0700341constexpr int32_t WeightSrcIsReg = 4;
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800342// Prefer Dest not as a register because the register stays free longer.
Jim Stichnothbbd449d2016-03-30 15:30:30 -0700343constexpr int32_t WeightDestNotReg = 2;
344// Prefer NumPred=1 over NumPred>1. This is used as a tiebreaker when a
345// dependency cycle must be broken so that hopefully only one temporary
346// assignment has to be added to break the cycle.
347constexpr int32_t WeightOnePred = 1;
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800348
Jim Stichnoth1fb030c2015-10-15 11:10:38 -0700349bool sameVarOrReg(TargetLowering *Target, const Variable *Var1,
350 const Operand *Opnd) {
351 if (Var1 == Opnd)
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700352 return true;
Jim Stichnoth5bff61c2015-10-28 09:26:00 -0700353 const auto *Var2 = llvm::dyn_cast<Variable>(Opnd);
Jim Stichnoth1fb030c2015-10-15 11:10:38 -0700354 if (Var2 == nullptr)
355 return false;
356
357 // If either operand lacks a register, they cannot be the same.
358 if (!Var1->hasReg())
359 return false;
360 if (!Var2->hasReg())
361 return false;
362
Jim Stichnoth8aa39662016-02-10 11:20:30 -0800363 const auto RegNum1 = Var1->getRegNum();
364 const auto RegNum2 = Var2->getRegNum();
Jim Stichnoth1fb030c2015-10-15 11:10:38 -0700365 // Quick common-case check.
366 if (RegNum1 == RegNum2)
367 return true;
368
369 assert(Target->getAliasesForRegister(RegNum1)[RegNum2] ==
370 Target->getAliasesForRegister(RegNum2)[RegNum1]);
371 return Target->getAliasesForRegister(RegNum1)[RegNum2];
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700372}
373
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800374// Update NumPred for all Phi assignments using Var as their Dest variable.
Jim Stichnothbbd449d2016-03-30 15:30:30 -0700375// Also update Weight if NumPred dropped from 2 to 1, or 1 to 0.
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800376void updatePreds(PhiDescList &Desc, TargetLowering *Target, Variable *Var) {
377 for (PhiDesc &Item : Desc) {
378 if (!Item.Processed && sameVarOrReg(Target, Var, Item.Dest)) {
Jim Stichnothbbd449d2016-03-30 15:30:30 -0700379 --Item.NumPred;
380 if (Item.NumPred == 1) {
381 // If NumPred changed from 2 to 1, add in WeightOnePred.
382 Item.Weight += WeightOnePred;
383 } else if (Item.NumPred == 0) {
384 // If NumPred changed from 1 to 0, subtract WeightOnePred and add in
385 // WeightNoPreds.
386 Item.Weight += (WeightNoPreds - WeightOnePred);
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800387 }
388 }
389 }
390}
391
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700392} // end of anonymous namespace
393
Andrew Scull57e12682015-09-16 11:30:19 -0700394// This the "advanced" version of Phi lowering for a basic block, in contrast
395// to the simple version that lowers through assignments involving temporaries.
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700396//
Jim Stichnotha3f57b92015-07-30 12:46:04 -0700397// All Phi instructions in a basic block are conceptually executed in parallel.
398// However, if we lower Phis early and commit to a sequential ordering, we may
399// end up creating unnecessary interferences which lead to worse register
Andrew Scull57e12682015-09-16 11:30:19 -0700400// allocation. Delaying Phi scheduling until after register allocation can help
401// unless there are no free registers for shuffling registers or stack slots
402// and spilling becomes necessary.
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700403//
Jim Stichnotha3f57b92015-07-30 12:46:04 -0700404// The advanced Phi lowering starts by finding a topological sort of the Phi
Andrew Scull57e12682015-09-16 11:30:19 -0700405// instructions, where "A=B" comes before "B=C" due to the anti-dependence on
406// B. Preexisting register assignments are considered in the topological sort.
407// If a topological sort is not possible due to a cycle, the cycle is broken by
408// introducing a non-parallel temporary. For example, a cycle arising from a
409// permutation like "A=B;B=C;C=A" can become "T=A;A=B;B=C;C=T". All else being
Jim Stichnotha3f57b92015-07-30 12:46:04 -0700410// equal, prefer to schedule assignments with register-allocated Src operands
411// earlier, in case that register becomes free afterwards, and prefer to
412// schedule assignments with register-allocated Dest variables later, to keep
413// that register free for longer.
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700414//
Jim Stichnotha3f57b92015-07-30 12:46:04 -0700415// Once the ordering is determined, the Cfg edge is split and the assignment
Andrew Scull57e12682015-09-16 11:30:19 -0700416// list is lowered by the target lowering layer. Since the assignment lowering
Jim Stichnotha3f57b92015-07-30 12:46:04 -0700417// may create new infinite-weight temporaries, a follow-on register allocation
Andrew Scull57e12682015-09-16 11:30:19 -0700418// pass will be needed. To prepare for this, liveness (including live range
Jim Stichnotha3f57b92015-07-30 12:46:04 -0700419// calculation) of the split nodes needs to be calculated, and liveness of the
420// original node need to be updated to "undo" the effects of the phi
421// assignments.
422
423// The specific placement of the new node within the Cfg node list is deferred
424// until later, including after empty node contraction.
425//
426// After phi assignments are lowered across all blocks, another register
427// allocation pass is run, focusing only on pre-colored and infinite-weight
428// variables, similar to Om1 register allocation (except without the need to
429// specially compute these variables' live ranges, since they have already been
Andrew Scull57e12682015-09-16 11:30:19 -0700430// precisely calculated). The register allocator in this mode needs the ability
Jim Stichnotha3f57b92015-07-30 12:46:04 -0700431// to forcibly spill and reload registers in case none are naturally available.
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700432void CfgNode::advancedPhiLowering() {
433 if (getPhis().empty())
434 return;
435
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800436 PhiDescList Desc;
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700437
Jim Stichnoth29841e82014-12-23 12:26:24 -0800438 for (Inst &I : Phis) {
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800439 auto *Phi = llvm::dyn_cast<InstPhi>(&I);
440 if (!Phi->isDeleted()) {
441 Variable *Dest = Phi->getDest();
442 Desc.emplace_back(Phi, Dest);
Jim Stichnotha3f57b92015-07-30 12:46:04 -0700443 // Undo the effect of the phi instruction on this node's live-in set by
444 // marking the phi dest variable as live on entry.
445 SizeT VarNum = Func->getLiveness()->getLiveIndex(Dest->getIndex());
446 assert(!Func->getLiveness()->getLiveIn(this)[VarNum]);
447 Func->getLiveness()->getLiveIn(this)[VarNum] = true;
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800448 Phi->setDeleted();
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700449 }
450 }
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800451 if (Desc.empty())
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700452 return;
453
Jim Stichnoth1fb030c2015-10-15 11:10:38 -0700454 TargetLowering *Target = Func->getTarget();
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700455 SizeT InEdgeIndex = 0;
456 for (CfgNode *Pred : InEdges) {
457 CfgNode *Split = splitIncomingEdge(Pred, InEdgeIndex++);
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800458 SizeT Remaining = Desc.size();
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700459
460 // First pass computes Src and initializes NumPred.
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800461 for (PhiDesc &Item : Desc) {
462 Variable *Dest = Item.Dest;
463 Operand *Src = Item.Phi->getOperandForTarget(Pred);
464 Item.Src = Src;
465 Item.Processed = false;
466 Item.NumPred = 0;
Andrew Scull57e12682015-09-16 11:30:19 -0700467 // Cherry-pick any trivial assignments, so that they don't contribute to
468 // the running complexity of the topological sort.
Jim Stichnoth1fb030c2015-10-15 11:10:38 -0700469 if (sameVarOrReg(Target, Dest, Src)) {
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800470 Item.Processed = true;
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700471 --Remaining;
472 if (Dest != Src)
Andrew Scull57e12682015-09-16 11:30:19 -0700473 // If Dest and Src are syntactically the same, don't bother adding
474 // the assignment, because in all respects it would be redundant, and
475 // if Dest/Src are on the stack, the target lowering may naively
476 // decide to lower it using a temporary register.
Jim Stichnotha3f57b92015-07-30 12:46:04 -0700477 Split->appendInst(InstAssign::create(Func, Dest, Src));
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700478 }
479 }
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800480 // Second pass computes NumPred by comparing every pair of Phi instructions.
481 for (PhiDesc &Item : Desc) {
482 if (Item.Processed)
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700483 continue;
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800484 const Variable *Dest = Item.Dest;
485 for (PhiDesc &Item2 : Desc) {
486 if (Item2.Processed)
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700487 continue;
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800488 // There shouldn't be two different Phis with the same Dest variable or
Jim Stichnothc59288b2015-11-09 11:38:40 -0800489 // register.
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800490 assert((&Item == &Item2) || !sameVarOrReg(Target, Dest, Item2.Dest));
491 if (sameVarOrReg(Target, Dest, Item2.Src))
492 ++Item.NumPred;
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700493 }
494 }
495
496 // Another pass to compute initial Weight values.
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800497 for (PhiDesc &Item : Desc) {
498 if (Item.Processed)
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700499 continue;
500 int32_t Weight = 0;
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800501 if (Item.NumPred == 0)
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700502 Weight += WeightNoPreds;
Jim Stichnothbbd449d2016-03-30 15:30:30 -0700503 if (Item.NumPred == 1)
504 Weight += WeightOnePred;
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800505 if (auto *Var = llvm::dyn_cast<Variable>(Item.Src))
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700506 if (Var->hasReg())
507 Weight += WeightSrcIsReg;
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800508 if (!Item.Dest->hasReg())
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700509 Weight += WeightDestNotReg;
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800510 Item.Weight = Weight;
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700511 }
512
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800513 // Repeatedly choose and process the best candidate in the topological sort,
514 // until no candidates remain. This implementation is O(N^2) where N is the
515 // number of Phi instructions, but with a small constant factor compared to
516 // a likely implementation of O(N) topological sort.
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700517 for (; Remaining; --Remaining) {
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700518 int32_t BestWeight = -1;
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800519 PhiDesc *BestItem = nullptr;
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700520 // Find the best candidate.
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800521 for (PhiDesc &Item : Desc) {
522 if (Item.Processed)
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700523 continue;
Jim Stichnothbbd449d2016-03-30 15:30:30 -0700524 const int32_t Weight = Item.Weight;
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700525 if (Weight > BestWeight) {
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800526 BestItem = &Item;
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700527 BestWeight = Weight;
528 }
529 }
530 assert(BestWeight >= 0);
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800531 Variable *Dest = BestItem->Dest;
532 Operand *Src = BestItem->Src;
Jim Stichnoth1fb030c2015-10-15 11:10:38 -0700533 assert(!sameVarOrReg(Target, Dest, Src));
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700534 // Break a cycle by introducing a temporary.
Jim Stichnothbbd449d2016-03-30 15:30:30 -0700535 while (BestItem->NumPred > 0) {
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700536 bool Found = false;
Andrew Scull57e12682015-09-16 11:30:19 -0700537 // If the target instruction "A=B" is part of a cycle, find the "X=A"
538 // assignment in the cycle because it will have to be rewritten as
539 // "X=tmp".
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800540 for (PhiDesc &Item : Desc) {
541 if (Item.Processed)
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700542 continue;
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800543 Operand *OtherSrc = Item.Src;
544 if (Item.NumPred && sameVarOrReg(Target, Dest, OtherSrc)) {
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700545 SizeT VarNum = Func->getNumVariables();
Jim Stichnoth9a04c072014-12-11 15:51:42 -0800546 Variable *Tmp = Func->makeVariable(OtherSrc->getType());
Jim Stichnoth20b71f52015-06-24 15:52:24 -0700547 if (BuildDefs::dump())
Jim Stichnoth9a04c072014-12-11 15:51:42 -0800548 Tmp->setName(Func, "__split_" + std::to_string(VarNum));
Jim Stichnotha3f57b92015-07-30 12:46:04 -0700549 Split->appendInst(InstAssign::create(Func, Tmp, OtherSrc));
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800550 Item.Src = Tmp;
551 updatePreds(Desc, Target, llvm::cast<Variable>(OtherSrc));
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700552 Found = true;
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800553 break;
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700554 }
555 }
556 assert(Found);
Jim Stichnothb0051df2016-01-13 11:39:15 -0800557 (void)Found;
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700558 }
559 // Now that a cycle (if any) has been broken, create the actual
560 // assignment.
Jim Stichnotha3f57b92015-07-30 12:46:04 -0700561 Split->appendInst(InstAssign::create(Func, Dest, Src));
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800562 if (auto *Var = llvm::dyn_cast<Variable>(Src))
563 updatePreds(Desc, Target, Var);
564 BestItem->Processed = true;
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700565 }
Jim Stichnotha3f57b92015-07-30 12:46:04 -0700566 Split->appendInst(InstBr::create(Func, this));
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700567
Jim Stichnotha3f57b92015-07-30 12:46:04 -0700568 Split->genCode();
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700569 Func->getVMetadata()->addNode(Split);
Jim Stichnothea15bbe2015-11-09 11:19:11 -0800570 // Validate to be safe. All items should be marked as processed, and have
571 // no predecessors.
572 if (BuildDefs::asserts()) {
573 for (PhiDesc &Item : Desc) {
574 (void)Item;
575 assert(Item.Processed);
576 assert(Item.NumPred == 0);
577 }
578 }
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700579 }
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700580}
581
Andrew Scull57e12682015-09-16 11:30:19 -0700582// Does address mode optimization. Pass each instruction to the TargetLowering
583// object. If it returns a new instruction (representing the optimized address
584// mode), then insert the new instruction and delete the old.
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700585void CfgNode::doAddressOpt() {
586 TargetLowering *Target = Func->getTarget();
587 LoweringContext &Context = Target->getContext();
588 Context.init(this);
589 while (!Context.atEnd()) {
590 Target->doAddressOpt();
591 }
592}
593
Qining Luaee5fa82015-08-20 14:59:03 -0700594void CfgNode::doNopInsertion(RandomNumberGenerator &RNG) {
Matt Walac3302742014-08-15 16:21:56 -0700595 TargetLowering *Target = Func->getTarget();
596 LoweringContext &Context = Target->getContext();
597 Context.init(this);
Qining Lu969f6a32015-07-31 09:58:34 -0700598 Context.setInsertPoint(Context.getCur());
599 // Do not insert nop in bundle locked instructions.
600 bool PauseNopInsertion = false;
Matt Walac3302742014-08-15 16:21:56 -0700601 while (!Context.atEnd()) {
Qining Lu969f6a32015-07-31 09:58:34 -0700602 if (llvm::isa<InstBundleLock>(Context.getCur())) {
603 PauseNopInsertion = true;
604 } else if (llvm::isa<InstBundleUnlock>(Context.getCur())) {
605 PauseNopInsertion = false;
606 }
607 if (!PauseNopInsertion)
Qining Luaee5fa82015-08-20 14:59:03 -0700608 Target->doNopInsertion(RNG);
Matt Walac3302742014-08-15 16:21:56 -0700609 // Ensure Cur=Next, so that the nops are inserted before the current
610 // instruction rather than after.
Matt Walac3302742014-08-15 16:21:56 -0700611 Context.advanceCur();
Qining Lu969f6a32015-07-31 09:58:34 -0700612 Context.advanceNext();
Matt Walac3302742014-08-15 16:21:56 -0700613 }
Matt Walac3302742014-08-15 16:21:56 -0700614}
615
Andrew Scull57e12682015-09-16 11:30:19 -0700616// Drives the target lowering. Passes the current instruction and the next
617// non-deleted instruction for target lowering.
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700618void CfgNode::genCode() {
619 TargetLowering *Target = Func->getTarget();
620 LoweringContext &Context = Target->getContext();
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700621 // Lower the regular instructions.
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700622 Context.init(this);
Jim Stichnotha59ae6f2015-05-17 10:11:41 -0700623 Target->initNodeForLowering(this);
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700624 while (!Context.atEnd()) {
625 InstList::iterator Orig = Context.getCur();
626 if (llvm::isa<InstRet>(*Orig))
627 setHasReturn();
628 Target->lower();
629 // Ensure target lowering actually moved the cursor.
630 assert(Context.getCur() != Orig);
631 }
Jim Stichnoth318f4cd2015-10-01 21:02:37 -0700632 Context.availabilityReset();
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700633 // Do preliminary lowering of the Phi instructions.
634 Target->prelowerPhis();
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -0700635}
636
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700637void CfgNode::livenessLightweight() {
638 SizeT NumVars = Func->getNumVariables();
Jim Stichnoth47752552014-10-13 17:15:08 -0700639 LivenessBV Live(NumVars);
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700640 // Process regular instructions in reverse order.
Jim Stichnoth7e571362015-01-09 11:43:26 -0800641 for (Inst &I : reverse_range(Insts)) {
642 if (I.isDeleted())
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700643 continue;
Jim Stichnoth7e571362015-01-09 11:43:26 -0800644 I.livenessLightweight(Func, Live);
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700645 }
Jim Stichnoth29841e82014-12-23 12:26:24 -0800646 for (Inst &I : Phis) {
647 if (I.isDeleted())
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700648 continue;
Jim Stichnoth29841e82014-12-23 12:26:24 -0800649 I.livenessLightweight(Func, Live);
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700650 }
651}
652
Andrew Scull57e12682015-09-16 11:30:19 -0700653// Performs liveness analysis on the block. Returns true if the incoming
654// liveness changed from before, false if it stayed the same. (If it changes,
655// the node's predecessors need to be processed again.)
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700656bool CfgNode::liveness(Liveness *Liveness) {
Jim Stichnoth1bdb7352016-02-29 16:58:15 -0800657 const SizeT NumVars = Liveness->getNumVarsInNode(this);
658 const SizeT NumGlobalVars = Liveness->getNumGlobalVars();
659 LivenessBV &Live = Liveness->getScratchBV();
660 Live.clear();
661
Jim Stichnothae953202014-12-20 06:17:49 -0800662 LiveBeginEndMap *LiveBegin = nullptr;
663 LiveBeginEndMap *LiveEnd = nullptr;
Andrew Scull57e12682015-09-16 11:30:19 -0700664 // Mark the beginning and ending of each variable's live range with the
665 // sentinel instruction number 0.
Jim Stichnoth47752552014-10-13 17:15:08 -0700666 if (Liveness->getMode() == Liveness_Intervals) {
667 LiveBegin = Liveness->getLiveBegin(this);
668 LiveEnd = Liveness->getLiveEnd(this);
669 LiveBegin->clear();
670 LiveEnd->clear();
Andrew Scull57e12682015-09-16 11:30:19 -0700671 // Guess that the number of live ranges beginning is roughly the number of
672 // instructions, and same for live ranges ending.
Jim Stichnoth47752552014-10-13 17:15:08 -0700673 LiveBegin->reserve(getInstCountEstimate());
674 LiveEnd->reserve(getInstCountEstimate());
675 }
Jim Stichnoth1bdb7352016-02-29 16:58:15 -0800676
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700677 // Initialize Live to be the union of all successors' LiveIn.
Jim Stichnothf44f3712014-10-01 14:05:51 -0700678 for (CfgNode *Succ : OutEdges) {
Jim Stichnoth1bdb7352016-02-29 16:58:15 -0800679 const LivenessBV &LiveIn = Liveness->getLiveIn(Succ);
680 assert(LiveIn.empty() || LiveIn.size() == NumGlobalVars);
681 Live |= LiveIn;
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700682 // Mark corresponding argument of phis in successor as live.
Jim Stichnoth29841e82014-12-23 12:26:24 -0800683 for (Inst &I : Succ->Phis) {
Jim Stichnoth552490c2015-08-05 16:21:42 -0700684 if (I.isDeleted())
685 continue;
Jim Stichnoth1bdb7352016-02-29 16:58:15 -0800686 auto *Phi = llvm::cast<InstPhi>(&I);
Jim Stichnoth1502e592014-12-11 09:22:45 -0800687 Phi->livenessPhiOperand(Live, this, Liveness);
688 }
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700689 }
Jim Stichnoth1bdb7352016-02-29 16:58:15 -0800690 assert(Live.empty() || Live.size() == NumGlobalVars);
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700691 Liveness->getLiveOut(this) = Live;
692
Jim Stichnoth1bdb7352016-02-29 16:58:15 -0800693 // Expand Live so it can hold locals in addition to globals.
694 Live.resize(NumVars);
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700695 // Process regular instructions in reverse order.
Jim Stichnoth7e571362015-01-09 11:43:26 -0800696 for (Inst &I : reverse_range(Insts)) {
697 if (I.isDeleted())
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700698 continue;
Jim Stichnoth7e571362015-01-09 11:43:26 -0800699 I.liveness(I.getNumber(), Live, Liveness, LiveBegin, LiveEnd);
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700700 }
Andrew Scull57e12682015-09-16 11:30:19 -0700701 // Process phis in forward order so that we can override the instruction
702 // number to be that of the earliest phi instruction in the block.
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700703 SizeT NumNonDeadPhis = 0;
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700704 InstNumberT FirstPhiNumber = Inst::NumberSentinel;
Jim Stichnoth29841e82014-12-23 12:26:24 -0800705 for (Inst &I : Phis) {
706 if (I.isDeleted())
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700707 continue;
708 if (FirstPhiNumber == Inst::NumberSentinel)
Jim Stichnoth29841e82014-12-23 12:26:24 -0800709 FirstPhiNumber = I.getNumber();
710 if (I.liveness(FirstPhiNumber, Live, Liveness, LiveBegin, LiveEnd))
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700711 ++NumNonDeadPhis;
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700712 }
713
Andrew Scull57e12682015-09-16 11:30:19 -0700714 // When using the sparse representation, after traversing the instructions in
715 // the block, the Live bitvector should only contain set bits for global
Jim Stichnoth1bdb7352016-02-29 16:58:15 -0800716 // variables upon block entry. We validate this by testing the upper bits of
717 // the Live bitvector.
718 if (Live.find_next(NumGlobalVars) != -1) {
Jim Stichnoth20b71f52015-06-24 15:52:24 -0700719 if (BuildDefs::dump()) {
Andrew Scull57e12682015-09-16 11:30:19 -0700720 // This is a fatal liveness consistency error. Print some diagnostics and
721 // abort.
Jim Stichnoth69d3f9c2015-03-23 10:33:38 -0700722 Ostream &Str = Func->getContext()->getStrDump();
723 Func->resetCurrentNode();
Jim Stichnoth1bdb7352016-02-29 16:58:15 -0800724 Str << "Invalid Live =";
725 for (SizeT i = NumGlobalVars; i < Live.size(); ++i) {
726 if (Live.test(i)) {
Jim Stichnoth69d3f9c2015-03-23 10:33:38 -0700727 Str << " ";
728 Liveness->getVariable(i, this)->dump(Func);
729 }
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700730 }
Jim Stichnoth69d3f9c2015-03-23 10:33:38 -0700731 Str << "\n";
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700732 }
Jim Stichnoth69d3f9c2015-03-23 10:33:38 -0700733 llvm::report_fatal_error("Fatal inconsistency in liveness analysis");
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700734 }
Jim Stichnoth1bdb7352016-02-29 16:58:15 -0800735 // Now truncate Live to prevent LiveIn from growing.
736 Live.resize(NumGlobalVars);
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700737
738 bool Changed = false;
Jim Stichnoth47752552014-10-13 17:15:08 -0700739 LivenessBV &LiveIn = Liveness->getLiveIn(this);
Jim Stichnoth1bdb7352016-02-29 16:58:15 -0800740 assert(LiveIn.empty() || LiveIn.size() == NumGlobalVars);
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700741 // Add in current LiveIn
742 Live |= LiveIn;
743 // Check result, set LiveIn=Live
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700744 SizeT &PrevNumNonDeadPhis = Liveness->getNumNonDeadPhis(this);
745 bool LiveInChanged = (Live != LiveIn);
746 Changed = (NumNonDeadPhis != PrevNumNonDeadPhis || LiveInChanged);
747 if (LiveInChanged)
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700748 LiveIn = Live;
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700749 PrevNumNonDeadPhis = NumNonDeadPhis;
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700750 return Changed;
751}
752
Jim Stichnoth230d4102015-09-25 17:40:32 -0700753// Validate the integrity of the live ranges in this block. If there are any
754// errors, it prints details and returns false. On success, it returns true.
Jim Stichnoth318f4cd2015-10-01 21:02:37 -0700755bool CfgNode::livenessValidateIntervals(Liveness *Liveness) const {
Jim Stichnoth230d4102015-09-25 17:40:32 -0700756 if (!BuildDefs::asserts())
757 return true;
758
759 // Verify there are no duplicates.
760 auto ComparePair =
761 [](const LiveBeginEndMapEntry &A, const LiveBeginEndMapEntry &B) {
762 return A.first == B.first;
763 };
764 LiveBeginEndMap &MapBegin = *Liveness->getLiveBegin(this);
765 LiveBeginEndMap &MapEnd = *Liveness->getLiveEnd(this);
766 if (std::adjacent_find(MapBegin.begin(), MapBegin.end(), ComparePair) ==
767 MapBegin.end() &&
768 std::adjacent_find(MapEnd.begin(), MapEnd.end(), ComparePair) ==
769 MapEnd.end())
770 return true;
771
772 // There is definitely a liveness error. All paths from here return false.
773 if (!BuildDefs::dump())
774 return false;
775
776 // Print all the errors.
777 if (BuildDefs::dump()) {
778 GlobalContext *Ctx = Func->getContext();
779 OstreamLocker L(Ctx);
780 Ostream &Str = Ctx->getStrDump();
781 if (Func->isVerbose()) {
782 Str << "Live range errors in the following block:\n";
783 dump(Func);
784 }
785 for (auto Start = MapBegin.begin();
786 (Start = std::adjacent_find(Start, MapBegin.end(), ComparePair)) !=
787 MapBegin.end();
788 ++Start) {
789 auto Next = Start + 1;
790 Str << "Duplicate LR begin, block " << getName() << ", instructions "
791 << Start->second << " & " << Next->second << ", variable "
Jim Stichnotha91c3412016-04-05 15:31:43 -0700792 << Liveness->getVariable(Start->first, this)->getName() << "\n";
Jim Stichnoth230d4102015-09-25 17:40:32 -0700793 }
794 for (auto Start = MapEnd.begin();
795 (Start = std::adjacent_find(Start, MapEnd.end(), ComparePair)) !=
796 MapEnd.end();
797 ++Start) {
798 auto Next = Start + 1;
799 Str << "Duplicate LR end, block " << getName() << ", instructions "
800 << Start->second << " & " << Next->second << ", variable "
Jim Stichnotha91c3412016-04-05 15:31:43 -0700801 << Liveness->getVariable(Start->first, this)->getName() << "\n";
Jim Stichnoth230d4102015-09-25 17:40:32 -0700802 }
803 }
804
805 return false;
806}
807
Andrew Scull57e12682015-09-16 11:30:19 -0700808// Once basic liveness is complete, compute actual live ranges. It is assumed
809// that within a single basic block, a live range begins at most once and ends
810// at most once. This is certainly true for pure SSA form. It is also true once
811// phis are lowered, since each assignment to the phi-based temporary is in a
812// different basic block, and there is a single read that ends the live in the
813// basic block that contained the actual phi instruction.
Jim Stichnothe5b73e62014-12-15 09:58:51 -0800814void CfgNode::livenessAddIntervals(Liveness *Liveness, InstNumberT FirstInstNum,
815 InstNumberT LastInstNum) {
816 TimerMarker T1(TimerStack::TT_liveRange, Func);
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700817
Jim Stichnoth1bdb7352016-02-29 16:58:15 -0800818 const SizeT NumVars = Liveness->getNumVarsInNode(this);
819 const LivenessBV &LiveIn = Liveness->getLiveIn(this);
820 const LivenessBV &LiveOut = Liveness->getLiveOut(this);
Jim Stichnoth47752552014-10-13 17:15:08 -0700821 LiveBeginEndMap &MapBegin = *Liveness->getLiveBegin(this);
822 LiveBeginEndMap &MapEnd = *Liveness->getLiveEnd(this);
823 std::sort(MapBegin.begin(), MapBegin.end());
824 std::sort(MapEnd.begin(), MapEnd.end());
Jim Stichnoth230d4102015-09-25 17:40:32 -0700825
826 if (!livenessValidateIntervals(Liveness)) {
827 llvm::report_fatal_error("livenessAddIntervals: Liveness error");
828 return;
829 }
Jim Stichnoth47752552014-10-13 17:15:08 -0700830
Jim Stichnoth1bdb7352016-02-29 16:58:15 -0800831 LivenessBV &LiveInAndOut = Liveness->getScratchBV();
832 LiveInAndOut = LiveIn;
Jim Stichnoth47752552014-10-13 17:15:08 -0700833 LiveInAndOut &= LiveOut;
834
835 // Iterate in parallel across the sorted MapBegin[] and MapEnd[].
836 auto IBB = MapBegin.begin(), IEB = MapEnd.begin();
837 auto IBE = MapBegin.end(), IEE = MapEnd.end();
838 while (IBB != IBE || IEB != IEE) {
839 SizeT i1 = IBB == IBE ? NumVars : IBB->first;
840 SizeT i2 = IEB == IEE ? NumVars : IEB->first;
841 SizeT i = std::min(i1, i2);
Andrew Scull57e12682015-09-16 11:30:19 -0700842 // i1 is the Variable number of the next MapBegin entry, and i2 is the
843 // Variable number of the next MapEnd entry. If i1==i2, then the Variable's
844 // live range begins and ends in this block. If i1<i2, then i1's live range
845 // begins at instruction IBB->second and extends through the end of the
846 // block. If i1>i2, then i2's live range begins at the first instruction of
847 // the block and ends at IEB->second. In any case, we choose the lesser of
848 // i1 and i2 and proceed accordingly.
Jim Stichnoth47752552014-10-13 17:15:08 -0700849 InstNumberT LB = i == i1 ? IBB->second : FirstInstNum;
850 InstNumberT LE = i == i2 ? IEB->second : LastInstNum + 1;
851
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700852 Variable *Var = Liveness->getVariable(i, this);
Jim Stichnothf9df4522015-08-06 17:50:14 -0700853 if (LB > LE) {
Andrew Scull11c9a322015-08-28 14:24:14 -0700854 Var->addLiveRange(FirstInstNum, LE);
855 Var->addLiveRange(LB, LastInstNum + 1);
Andrew Scull57e12682015-09-16 11:30:19 -0700856 // Assert that Var is a global variable by checking that its liveness
857 // index is less than the number of globals. This ensures that the
858 // LiveInAndOut[] access is valid.
Jim Stichnothf9df4522015-08-06 17:50:14 -0700859 assert(i < Liveness->getNumGlobalVars());
860 LiveInAndOut[i] = false;
861 } else {
Andrew Scull11c9a322015-08-28 14:24:14 -0700862 Var->addLiveRange(LB, LE);
Jim Stichnoth47752552014-10-13 17:15:08 -0700863 }
864 if (i == i1)
865 ++IBB;
866 if (i == i2)
867 ++IEB;
868 }
869 // Process the variables that are live across the entire block.
870 for (int i = LiveInAndOut.find_first(); i != -1;
871 i = LiveInAndOut.find_next(i)) {
872 Variable *Var = Liveness->getVariable(i, this);
Jim Stichnoth552490c2015-08-05 16:21:42 -0700873 if (Liveness->getRangeMask(Var->getIndex()))
Andrew Scull11c9a322015-08-28 14:24:14 -0700874 Var->addLiveRange(FirstInstNum, LastInstNum + 1);
Jim Stichnothd97c7df2014-06-04 11:57:08 -0700875 }
876}
877
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700878// If this node contains only deleted instructions, and ends in an
Andrew Scull57e12682015-09-16 11:30:19 -0700879// unconditional branch, contract the node by repointing all its in-edges to
880// its successor.
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700881void CfgNode::contractIfEmpty() {
Jim Stichnothbfb410d2014-11-05 16:04:05 -0800882 if (InEdges.empty())
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700883 return;
Jim Stichnothae953202014-12-20 06:17:49 -0800884 Inst *Branch = nullptr;
Jim Stichnoth29841e82014-12-23 12:26:24 -0800885 for (Inst &I : Insts) {
886 if (I.isDeleted())
Jim Stichnoth3d44fe82014-11-01 10:10:18 -0700887 continue;
Jim Stichnoth29841e82014-12-23 12:26:24 -0800888 if (I.isUnconditionalBranch())
889 Branch = &I;
890 else if (!I.isRedundantAssign())
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700891 return;
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700892 }
Jim Stichnoth6f7ad6c2016-01-15 09:52:54 -0800893 // Make sure there is actually a successor to repoint in-edges to.
894 if (OutEdges.empty())
895 return;
Eric Holk16f80612016-04-04 17:07:42 -0700896 assert(hasSingleOutEdge());
Jim Stichnoth1921fba2015-09-15 10:06:30 -0700897 // Don't try to delete a self-loop.
898 if (OutEdges[0] == this)
899 return;
Jim Stichnoth6f7ad6c2016-01-15 09:52:54 -0800900 // Make sure the node actually contains (ends with) an unconditional branch.
901 if (Branch == nullptr)
902 return;
Jim Stichnoth1921fba2015-09-15 10:06:30 -0700903
904 Branch->setDeleted();
Andrew Scull713278a2015-07-22 17:17:02 -0700905 CfgNode *Successor = OutEdges.front();
Andrew Scull57e12682015-09-16 11:30:19 -0700906 // Repoint all this node's in-edges to this node's successor, unless this
907 // node's successor is actually itself (in which case the statement
908 // "OutEdges.front()->InEdges.push_back(Pred)" could invalidate the iterator
909 // over this->InEdges).
Andrew Scull713278a2015-07-22 17:17:02 -0700910 if (Successor != this) {
Jim Stichnothbfb410d2014-11-05 16:04:05 -0800911 for (CfgNode *Pred : InEdges) {
Andrew Scull713278a2015-07-22 17:17:02 -0700912 for (CfgNode *&I : Pred->OutEdges) {
913 if (I == this) {
914 I = Successor;
915 Successor->InEdges.push_back(Pred);
Jim Stichnothbfb410d2014-11-05 16:04:05 -0800916 }
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700917 }
Jim Stichnoth29841e82014-12-23 12:26:24 -0800918 for (Inst &I : Pred->getInsts()) {
919 if (!I.isDeleted())
Andrew Scull713278a2015-07-22 17:17:02 -0700920 I.repointEdges(this, Successor);
Jim Stichnothbfb410d2014-11-05 16:04:05 -0800921 }
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700922 }
Andrew Scull713278a2015-07-22 17:17:02 -0700923
924 // Remove the in-edge to the successor to allow node reordering to make
Andrew Scull57e12682015-09-16 11:30:19 -0700925 // better decisions. For example it's more helpful to place a node after a
926 // reachable predecessor than an unreachable one (like the one we just
Andrew Scull713278a2015-07-22 17:17:02 -0700927 // contracted).
928 Successor->InEdges.erase(
929 std::find(Successor->InEdges.begin(), Successor->InEdges.end(), this));
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700930 }
931 InEdges.clear();
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700932}
933
Jim Stichnothff9c7062014-09-18 04:50:49 -0700934void CfgNode::doBranchOpt(const CfgNode *NextNode) {
935 TargetLowering *Target = Func->getTarget();
Andrew Scull713278a2015-07-22 17:17:02 -0700936 // Find the first opportunity for branch optimization (which will be the last
Andrew Scull57e12682015-09-16 11:30:19 -0700937 // instruction in the block) and stop. This is sufficient unless there is
938 // some target lowering where we have the possibility of multiple
939 // optimizations per block. Take care with switch lowering as there are
940 // multiple unconditional branches and only the last can be deleted.
Andrew Scull713278a2015-07-22 17:17:02 -0700941 for (Inst &I : reverse_range(Insts)) {
Jim Stichnoth29841e82014-12-23 12:26:24 -0800942 if (!I.isDeleted()) {
943 Target->doBranchOpt(&I, NextNode);
Andrew Scull713278a2015-07-22 17:17:02 -0700944 return;
Jim Stichnoth336f6c42014-10-30 15:01:31 -0700945 }
946 }
Jim Stichnothff9c7062014-09-18 04:50:49 -0700947}
948
Jim Stichnothf7c9a142014-04-29 10:52:43 -0700949// ======================== Dump routines ======================== //
950
Jim Stichnoth3d44fe82014-11-01 10:10:18 -0700951namespace {
952
953// Helper functions for emit().
954
955void emitRegisterUsage(Ostream &Str, const Cfg *Func, const CfgNode *Node,
Andrew Scull00741a02015-09-16 19:04:09 -0700956 bool IsLiveIn, CfgVector<SizeT> &LiveRegCount) {
Jim Stichnoth20b71f52015-06-24 15:52:24 -0700957 if (!BuildDefs::dump())
Karl Schimpfb6c96af2014-11-17 10:58:39 -0800958 return;
Jim Stichnoth3d44fe82014-11-01 10:10:18 -0700959 Liveness *Liveness = Func->getLiveness();
960 const LivenessBV *Live;
Jim Stichnoth8aa39662016-02-10 11:20:30 -0800961 const auto StackReg = Func->getTarget()->getStackReg();
962 const auto FrameOrStackReg = Func->getTarget()->getFrameOrStackReg();
Jim Stichnoth3d44fe82014-11-01 10:10:18 -0700963 if (IsLiveIn) {
964 Live = &Liveness->getLiveIn(Node);
Jim Stichnoth751e27e2015-12-16 12:40:31 -0800965 Str << "\t\t\t\t/* LiveIn=";
Jim Stichnoth3d44fe82014-11-01 10:10:18 -0700966 } else {
967 Live = &Liveness->getLiveOut(Node);
Jim Stichnoth751e27e2015-12-16 12:40:31 -0800968 Str << "\t\t\t\t/* LiveOut=";
Jim Stichnoth3d44fe82014-11-01 10:10:18 -0700969 }
970 if (!Live->empty()) {
Andrew Scull00741a02015-09-16 19:04:09 -0700971 CfgVector<Variable *> LiveRegs;
Jim Stichnoth3d44fe82014-11-01 10:10:18 -0700972 for (SizeT i = 0; i < Live->size(); ++i) {
Jim Stichnothe7418712015-10-09 06:54:02 -0700973 if (!(*Live)[i])
974 continue;
975 Variable *Var = Liveness->getVariable(i, Node);
976 if (!Var->hasReg())
977 continue;
Jim Stichnoth8aa39662016-02-10 11:20:30 -0800978 const auto RegNum = Var->getRegNum();
Jim Stichnothe7418712015-10-09 06:54:02 -0700979 if (RegNum == StackReg || RegNum == FrameOrStackReg)
980 continue;
981 if (IsLiveIn)
982 ++LiveRegCount[RegNum];
983 LiveRegs.push_back(Var);
Jim Stichnoth3d44fe82014-11-01 10:10:18 -0700984 }
Andrew Scull57e12682015-09-16 11:30:19 -0700985 // Sort the variables by regnum so they are always printed in a familiar
986 // order.
Jim Stichnoth9a05aea2015-05-26 16:01:23 -0700987 std::sort(LiveRegs.begin(), LiveRegs.end(),
988 [](const Variable *V1, const Variable *V2) {
Jim Stichnoth8aa39662016-02-10 11:20:30 -0800989 return unsigned(V1->getRegNum()) < unsigned(V2->getRegNum());
Jim Stichnoth8e6bf6e2015-06-03 15:58:12 -0700990 });
Jim Stichnoth9a05aea2015-05-26 16:01:23 -0700991 bool First = true;
992 for (Variable *Var : LiveRegs) {
993 if (!First)
994 Str << ",";
995 First = false;
996 Var->emit(Func);
997 }
Jim Stichnoth3d44fe82014-11-01 10:10:18 -0700998 }
Jim Stichnoth751e27e2015-12-16 12:40:31 -0800999 Str << " */\n";
Jim Stichnoth3d44fe82014-11-01 10:10:18 -07001000}
1001
Jim Stichnoth3e859b72015-11-10 14:39:51 -08001002/// Returns true if some text was emitted - in which case the caller definitely
1003/// needs to emit a newline character.
1004bool emitLiveRangesEnded(Ostream &Str, const Cfg *Func, const Inst *Instr,
Andrew Scull00741a02015-09-16 19:04:09 -07001005 CfgVector<SizeT> &LiveRegCount) {
Jim Stichnoth3e859b72015-11-10 14:39:51 -08001006 bool Printed = false;
Jim Stichnoth20b71f52015-06-24 15:52:24 -07001007 if (!BuildDefs::dump())
Jim Stichnoth3e859b72015-11-10 14:39:51 -08001008 return Printed;
Jim Stichnoth3d44fe82014-11-01 10:10:18 -07001009 Variable *Dest = Instr->getDest();
Andrew Scull57e12682015-09-16 11:30:19 -07001010 // Normally we increment the live count for the dest register. But we
Jim Stichnoth230d4102015-09-25 17:40:32 -07001011 // shouldn't if the instruction's IsDestRedefined flag is set, because this
Andrew Scull57e12682015-09-16 11:30:19 -07001012 // means that the target lowering created this instruction as a non-SSA
1013 // assignment; i.e., a different, previous instruction started the dest
1014 // variable's live range.
Jim Stichnoth230d4102015-09-25 17:40:32 -07001015 if (!Instr->isDestRedefined() && Dest && Dest->hasReg())
Jim Stichnoth3d44fe82014-11-01 10:10:18 -07001016 ++LiveRegCount[Dest->getRegNum()];
John Portoec3f5652015-08-31 15:07:09 -07001017 FOREACH_VAR_IN_INST(Var, *Instr) {
1018 bool ShouldReport = Instr->isLastUse(Var);
1019 if (ShouldReport && Var->hasReg()) {
1020 // Don't report end of live range until the live count reaches 0.
1021 SizeT NewCount = --LiveRegCount[Var->getRegNum()];
1022 if (NewCount)
1023 ShouldReport = false;
1024 }
1025 if (ShouldReport) {
Jim Stichnoth3e859b72015-11-10 14:39:51 -08001026 if (Printed)
John Portoec3f5652015-08-31 15:07:09 -07001027 Str << ",";
Jim Stichnoth3e859b72015-11-10 14:39:51 -08001028 else
Jim Stichnoth751e27e2015-12-16 12:40:31 -08001029 Str << " \t/* END=";
John Portoec3f5652015-08-31 15:07:09 -07001030 Var->emit(Func);
Jim Stichnoth3e859b72015-11-10 14:39:51 -08001031 Printed = true;
Jim Stichnoth3d44fe82014-11-01 10:10:18 -07001032 }
1033 }
Jim Stichnoth751e27e2015-12-16 12:40:31 -08001034 if (Printed)
1035 Str << " */";
Jim Stichnoth3e859b72015-11-10 14:39:51 -08001036 return Printed;
Jim Stichnoth3d44fe82014-11-01 10:10:18 -07001037}
1038
Jan Voung0faec4c2014-11-05 17:29:56 -08001039void updateStats(Cfg *Func, const Inst *I) {
Jim Stichnoth20b71f52015-06-24 15:52:24 -07001040 if (!BuildDefs::dump())
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001041 return;
Andrew Scull57e12682015-09-16 11:30:19 -07001042 // Update emitted instruction count, plus fill/spill count for Variable
1043 // operands without a physical register.
Jan Voung0faec4c2014-11-05 17:29:56 -08001044 if (uint32_t Count = I->getEmitInstCount()) {
1045 Func->getContext()->statsUpdateEmitted(Count);
1046 if (Variable *Dest = I->getDest()) {
1047 if (!Dest->hasReg())
1048 Func->getContext()->statsUpdateFills();
1049 }
1050 for (SizeT S = 0; S < I->getSrcSize(); ++S) {
Jim Stichnoth54f3d512015-12-11 09:53:00 -08001051 if (auto *Src = llvm::dyn_cast<Variable>(I->getSrc(S))) {
Jan Voung0faec4c2014-11-05 17:29:56 -08001052 if (!Src->hasReg())
1053 Func->getContext()->statsUpdateSpills();
1054 }
1055 }
1056 }
1057}
1058
Jim Stichnoth3d44fe82014-11-01 10:10:18 -07001059} // end of anonymous namespace
1060
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -07001061void CfgNode::emit(Cfg *Func) const {
Jim Stichnoth20b71f52015-06-24 15:52:24 -07001062 if (!BuildDefs::dump())
Karl Schimpfb6c96af2014-11-17 10:58:39 -08001063 return;
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -07001064 Func->setCurrentNode(this);
1065 Ostream &Str = Func->getContext()->getStrEmit();
Jim Stichnoth3d44fe82014-11-01 10:10:18 -07001066 Liveness *Liveness = Func->getLiveness();
Karl Schimpfd4699942016-04-02 09:55:31 -07001067 const bool DecorateAsm = Liveness && getFlags().getDecorateAsm();
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -07001068 Str << getAsmName() << ":\n";
Andrew Scull57e12682015-09-16 11:30:19 -07001069 // LiveRegCount keeps track of the number of currently live variables that
1070 // each register is assigned to. Normally that would be only 0 or 1, but the
1071 // register allocator's AllowOverlap inference allows it to be greater than 1
1072 // for short periods.
Andrew Scull00741a02015-09-16 19:04:09 -07001073 CfgVector<SizeT> LiveRegCount(Func->getTarget()->getNumRegisters());
Jim Stichnoth4175b2a2015-04-30 12:26:22 -07001074 if (DecorateAsm) {
Jim Stichnotha3f57b92015-07-30 12:46:04 -07001075 constexpr bool IsLiveIn = true;
Jim Stichnoth4175b2a2015-04-30 12:26:22 -07001076 emitRegisterUsage(Str, Func, this, IsLiveIn, LiveRegCount);
Jim Stichnoth238b4c12015-10-01 07:46:38 -07001077 if (getInEdges().size()) {
Jim Stichnoth751e27e2015-12-16 12:40:31 -08001078 Str << "\t\t\t\t/* preds=";
Jim Stichnoth238b4c12015-10-01 07:46:38 -07001079 bool First = true;
1080 for (CfgNode *I : getInEdges()) {
1081 if (!First)
1082 Str << ",";
1083 First = false;
Jim Stichnoth9a63bab2015-10-05 11:13:59 -07001084 Str << "$" << I->getName();
Jim Stichnoth238b4c12015-10-01 07:46:38 -07001085 }
Jim Stichnoth751e27e2015-12-16 12:40:31 -08001086 Str << " */\n";
Jim Stichnoth238b4c12015-10-01 07:46:38 -07001087 }
1088 if (getLoopNestDepth()) {
Jim Stichnoth751e27e2015-12-16 12:40:31 -08001089 Str << "\t\t\t\t/* loop depth=" << getLoopNestDepth() << " */\n";
Jim Stichnoth238b4c12015-10-01 07:46:38 -07001090 }
Jim Stichnoth4175b2a2015-04-30 12:26:22 -07001091 }
Jim Stichnoth3d44fe82014-11-01 10:10:18 -07001092
Jim Stichnoth29841e82014-12-23 12:26:24 -08001093 for (const Inst &I : Phis) {
1094 if (I.isDeleted())
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -07001095 continue;
1096 // Emitting a Phi instruction should cause an error.
Jim Stichnoth29841e82014-12-23 12:26:24 -08001097 I.emit(Func);
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -07001098 }
Jim Stichnoth29841e82014-12-23 12:26:24 -08001099 for (const Inst &I : Insts) {
1100 if (I.isDeleted())
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -07001101 continue;
Jim Stichnothb82baf22015-05-27 10:41:07 -07001102 if (I.isRedundantAssign()) {
Andrew Scull57e12682015-09-16 11:30:19 -07001103 // Usually, redundant assignments end the live range of the src variable
1104 // and begin the live range of the dest variable, with no net effect on
1105 // the liveness of their register. However, if the register allocator
1106 // infers the AllowOverlap condition, then this may be a redundant
1107 // assignment that does not end the src variable's live range, in which
1108 // case the active variable count for that register needs to be bumped.
1109 // That normally would have happened as part of emitLiveRangesEnded(),
1110 // but that isn't called for redundant assignments.
Jim Stichnothb82baf22015-05-27 10:41:07 -07001111 Variable *Dest = I.getDest();
Jim Stichnoth1fb030c2015-10-15 11:10:38 -07001112 if (DecorateAsm && Dest->hasReg()) {
Jim Stichnothb82baf22015-05-27 10:41:07 -07001113 ++LiveRegCount[Dest->getRegNum()];
Jim Stichnoth1fb030c2015-10-15 11:10:38 -07001114 if (I.isLastUse(I.getSrc(0)))
1115 --LiveRegCount[llvm::cast<Variable>(I.getSrc(0))->getRegNum()];
1116 }
Jim Stichnoth3d44fe82014-11-01 10:10:18 -07001117 continue;
Jim Stichnothb82baf22015-05-27 10:41:07 -07001118 }
Jim Stichnoth29841e82014-12-23 12:26:24 -08001119 I.emit(Func);
Jim Stichnoth3e859b72015-11-10 14:39:51 -08001120 bool Printed = false;
Jan Voung0faec4c2014-11-05 17:29:56 -08001121 if (DecorateAsm)
Jim Stichnoth3e859b72015-11-10 14:39:51 -08001122 Printed = emitLiveRangesEnded(Str, Func, &I, LiveRegCount);
1123 if (Printed || llvm::isa<InstTarget>(&I))
1124 Str << "\n";
Jim Stichnoth29841e82014-12-23 12:26:24 -08001125 updateStats(Func, &I);
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -07001126 }
Jim Stichnoth4175b2a2015-04-30 12:26:22 -07001127 if (DecorateAsm) {
Jim Stichnotha3f57b92015-07-30 12:46:04 -07001128 constexpr bool IsLiveIn = false;
Jim Stichnoth4175b2a2015-04-30 12:26:22 -07001129 emitRegisterUsage(Str, Func, this, IsLiveIn, LiveRegCount);
1130 }
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -07001131}
1132
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001133// Helper class for emitIAS().
1134namespace {
1135class BundleEmitHelper {
1136 BundleEmitHelper() = delete;
1137 BundleEmitHelper(const BundleEmitHelper &) = delete;
1138 BundleEmitHelper &operator=(const BundleEmitHelper &) = delete;
1139
1140public:
David Sehr26217e32015-11-26 13:03:50 -08001141 BundleEmitHelper(Assembler *Asm, const InstList &Insts)
1142 : Asm(Asm), End(Insts.end()), BundleLockStart(End),
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001143 BundleSize(1 << Asm->getBundleAlignLog2Bytes()),
Jim Stichnotheafb56c2015-06-22 10:35:22 -07001144 BundleMaskLo(BundleSize - 1), BundleMaskHi(~BundleMaskLo) {}
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001145 // Check whether we're currently within a bundle_lock region.
1146 bool isInBundleLockRegion() const { return BundleLockStart != End; }
Andrew Scull57e12682015-09-16 11:30:19 -07001147 // Check whether the current bundle_lock region has the align_to_end option.
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001148 bool isAlignToEnd() const {
1149 assert(isInBundleLockRegion());
1150 return llvm::cast<InstBundleLock>(getBundleLockStart())->getOption() ==
1151 InstBundleLock::Opt_AlignToEnd;
1152 }
John Porto56958cb2016-01-14 09:18:18 -08001153 bool isPadToEnd() const {
1154 assert(isInBundleLockRegion());
1155 return llvm::cast<InstBundleLock>(getBundleLockStart())->getOption() ==
1156 InstBundleLock::Opt_PadToEnd;
1157 }
Andrew Scull57e12682015-09-16 11:30:19 -07001158 // Check whether the entire bundle_lock region falls within the same bundle.
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001159 bool isSameBundle() const {
1160 assert(isInBundleLockRegion());
1161 return SizeSnapshotPre == SizeSnapshotPost ||
1162 (SizeSnapshotPre & BundleMaskHi) ==
1163 ((SizeSnapshotPost - 1) & BundleMaskHi);
1164 }
Andrew Scull57e12682015-09-16 11:30:19 -07001165 // Get the bundle alignment of the first instruction of the bundle_lock
1166 // region.
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001167 intptr_t getPreAlignment() const {
1168 assert(isInBundleLockRegion());
1169 return SizeSnapshotPre & BundleMaskLo;
1170 }
Andrew Scull57e12682015-09-16 11:30:19 -07001171 // Get the bundle alignment of the first instruction past the bundle_lock
1172 // region.
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001173 intptr_t getPostAlignment() const {
1174 assert(isInBundleLockRegion());
1175 return SizeSnapshotPost & BundleMaskLo;
1176 }
Andrew Scull57e12682015-09-16 11:30:19 -07001177 // Get the iterator pointing to the bundle_lock instruction, e.g. to roll
1178 // back the instruction iteration to that point.
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001179 InstList::const_iterator getBundleLockStart() const {
1180 assert(isInBundleLockRegion());
1181 return BundleLockStart;
1182 }
Andrew Scull57e12682015-09-16 11:30:19 -07001183 // Set up bookkeeping when the bundle_lock instruction is first processed.
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001184 void enterBundleLock(InstList::const_iterator I) {
1185 assert(!isInBundleLockRegion());
1186 BundleLockStart = I;
1187 SizeSnapshotPre = Asm->getBufferSize();
1188 Asm->setPreliminary(true);
1189 assert(isInBundleLockRegion());
1190 }
Andrew Scull57e12682015-09-16 11:30:19 -07001191 // Update bookkeeping when the bundle_unlock instruction is processed.
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001192 void enterBundleUnlock() {
1193 assert(isInBundleLockRegion());
1194 SizeSnapshotPost = Asm->getBufferSize();
1195 }
Andrew Scull57e12682015-09-16 11:30:19 -07001196 // Update bookkeeping when we are completely finished with the bundle_lock
1197 // region.
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001198 void leaveBundleLockRegion() { BundleLockStart = End; }
Andrew Scull57e12682015-09-16 11:30:19 -07001199 // Check whether the instruction sequence fits within the current bundle, and
1200 // if not, add nop padding to the end of the current bundle.
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001201 void padToNextBundle() {
1202 assert(isInBundleLockRegion());
1203 if (!isSameBundle()) {
1204 intptr_t PadToNextBundle = BundleSize - getPreAlignment();
1205 Asm->padWithNop(PadToNextBundle);
1206 SizeSnapshotPre += PadToNextBundle;
1207 SizeSnapshotPost += PadToNextBundle;
1208 assert((Asm->getBufferSize() & BundleMaskLo) == 0);
1209 assert(Asm->getBufferSize() == SizeSnapshotPre);
1210 }
1211 }
Andrew Scull57e12682015-09-16 11:30:19 -07001212 // If align_to_end is specified, add padding such that the instruction
1213 // sequences ends precisely at a bundle boundary.
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001214 void padForAlignToEnd() {
1215 assert(isInBundleLockRegion());
1216 if (isAlignToEnd()) {
1217 if (intptr_t Offset = getPostAlignment()) {
1218 Asm->padWithNop(BundleSize - Offset);
1219 SizeSnapshotPre = Asm->getBufferSize();
1220 }
1221 }
1222 }
John Porto56958cb2016-01-14 09:18:18 -08001223 // If pad_to_end is specified, add padding such that the first instruction
1224 // after the instruction sequence starts at a bundle boundary.
1225 void padForPadToEnd() {
1226 assert(isInBundleLockRegion());
1227 if (isPadToEnd()) {
1228 if (intptr_t Offset = getPostAlignment()) {
1229 Asm->padWithNop(BundleSize - Offset);
1230 SizeSnapshotPre = Asm->getBufferSize();
1231 }
1232 }
1233 } // Update bookkeeping when rolling back for the second pass.
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001234 void rollback() {
1235 assert(isInBundleLockRegion());
1236 Asm->setBufferSize(SizeSnapshotPre);
1237 Asm->setPreliminary(false);
1238 }
1239
1240private:
1241 Assembler *const Asm;
Andrew Scull57e12682015-09-16 11:30:19 -07001242 // End is a sentinel value such that BundleLockStart==End implies that we are
1243 // not in a bundle_lock region.
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001244 const InstList::const_iterator End;
1245 InstList::const_iterator BundleLockStart;
1246 const intptr_t BundleSize;
1247 // Masking with BundleMaskLo identifies an address's bundle offset.
1248 const intptr_t BundleMaskLo;
1249 // Masking with BundleMaskHi identifies an address's bundle.
1250 const intptr_t BundleMaskHi;
Jim Stichnotheafb56c2015-06-22 10:35:22 -07001251 intptr_t SizeSnapshotPre = 0;
1252 intptr_t SizeSnapshotPost = 0;
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001253};
1254
1255} // end of anonymous namespace
1256
Jan Voung0faec4c2014-11-05 17:29:56 -08001257void CfgNode::emitIAS(Cfg *Func) const {
1258 Func->setCurrentNode(this);
Jim Stichnothbbca7542015-02-11 16:08:31 -08001259 Assembler *Asm = Func->getAssembler<>();
Andrew Scull57e12682015-09-16 11:30:19 -07001260 // TODO(stichnot): When sandboxing, defer binding the node label until just
1261 // before the first instruction is emitted, to reduce the chance that a
1262 // padding nop is a branch target.
Karl Schimpf50a33312015-10-23 09:19:48 -07001263 Asm->bindCfgNodeLabel(this);
Jim Stichnoth29841e82014-12-23 12:26:24 -08001264 for (const Inst &I : Phis) {
1265 if (I.isDeleted())
Jan Voung0faec4c2014-11-05 17:29:56 -08001266 continue;
1267 // Emitting a Phi instruction should cause an error.
Jim Stichnoth29841e82014-12-23 12:26:24 -08001268 I.emitIAS(Func);
Jan Voung0faec4c2014-11-05 17:29:56 -08001269 }
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001270
1271 // Do the simple emission if not sandboxed.
Karl Schimpfd4699942016-04-02 09:55:31 -07001272 if (!getFlags().getUseSandboxing()) {
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001273 for (const Inst &I : Insts) {
1274 if (!I.isDeleted() && !I.isRedundantAssign()) {
1275 I.emitIAS(Func);
1276 updateStats(Func, &I);
1277 }
1278 }
1279 return;
Jan Voung0faec4c2014-11-05 17:29:56 -08001280 }
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001281
Andrew Scull57e12682015-09-16 11:30:19 -07001282 // The remainder of the function handles emission with sandboxing. There are
1283 // explicit bundle_lock regions delimited by bundle_lock and bundle_unlock
1284 // instructions. All other instructions are treated as an implicit
1285 // one-instruction bundle_lock region. Emission is done twice for each
1286 // bundle_lock region. The first pass is a preliminary pass, after which we
1287 // can figure out what nop padding is needed, then roll back, and make the
1288 // final pass.
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001289 //
Andrew Scull57e12682015-09-16 11:30:19 -07001290 // Ideally, the first pass would be speculative and the second pass would
1291 // only be done if nop padding were needed, but the structure of the
1292 // integrated assembler makes it hard to roll back the state of label
1293 // bindings, label links, and relocation fixups. Instead, the first pass just
1294 // disables all mutation of that state.
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001295
David Sehr26217e32015-11-26 13:03:50 -08001296 BundleEmitHelper Helper(Asm, Insts);
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001297 InstList::const_iterator End = Insts.end();
Andrew Scull57e12682015-09-16 11:30:19 -07001298 // Retrying indicates that we had to roll back to the bundle_lock instruction
1299 // to apply padding before the bundle_lock sequence.
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001300 bool Retrying = false;
1301 for (InstList::const_iterator I = Insts.begin(); I != End; ++I) {
1302 if (I->isDeleted() || I->isRedundantAssign())
1303 continue;
1304
1305 if (llvm::isa<InstBundleLock>(I)) {
Andrew Scull57e12682015-09-16 11:30:19 -07001306 // Set up the initial bundle_lock state. This should not happen while
1307 // retrying, because the retry rolls back to the instruction following
1308 // the bundle_lock instruction.
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001309 assert(!Retrying);
1310 Helper.enterBundleLock(I);
1311 continue;
1312 }
1313
1314 if (llvm::isa<InstBundleUnlock>(I)) {
1315 Helper.enterBundleUnlock();
1316 if (Retrying) {
1317 // Make sure all instructions are in the same bundle.
1318 assert(Helper.isSameBundle());
Andrew Scull57e12682015-09-16 11:30:19 -07001319 // If align_to_end is specified, make sure the next instruction begins
1320 // the bundle.
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001321 assert(!Helper.isAlignToEnd() || Helper.getPostAlignment() == 0);
John Porto56958cb2016-01-14 09:18:18 -08001322 Helper.padForPadToEnd();
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001323 Helper.leaveBundleLockRegion();
1324 Retrying = false;
1325 } else {
1326 // This is the first pass, so roll back for the retry pass.
1327 Helper.rollback();
Andrew Scull57e12682015-09-16 11:30:19 -07001328 // Pad to the next bundle if the instruction sequence crossed a bundle
1329 // boundary.
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001330 Helper.padToNextBundle();
1331 // Insert additional padding to make AlignToEnd work.
1332 Helper.padForAlignToEnd();
1333 // Prepare for the retry pass after padding is done.
1334 Retrying = true;
1335 I = Helper.getBundleLockStart();
1336 }
1337 continue;
1338 }
1339
1340 // I points to a non bundle_lock/bundle_unlock instruction.
1341 if (Helper.isInBundleLockRegion()) {
1342 I->emitIAS(Func);
1343 // Only update stats during the final pass.
1344 if (Retrying)
Jim Stichnothf5fdd232016-05-09 12:24:36 -07001345 updateStats(Func, iteratorToInst(I));
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001346 } else {
1347 // Treat it as though there were an implicit bundle_lock and
1348 // bundle_unlock wrapping the instruction.
1349 Helper.enterBundleLock(I);
1350 I->emitIAS(Func);
1351 Helper.enterBundleUnlock();
1352 Helper.rollback();
1353 Helper.padToNextBundle();
1354 I->emitIAS(Func);
Jim Stichnothf5fdd232016-05-09 12:24:36 -07001355 updateStats(Func, iteratorToInst(I));
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001356 Helper.leaveBundleLockRegion();
1357 }
1358 }
1359
Andrew Scull57e12682015-09-16 11:30:19 -07001360 // Don't allow bundle locking across basic blocks, to keep the backtracking
1361 // mechanism simple.
Jim Stichnoth9f42d8c2015-02-20 09:20:14 -08001362 assert(!Helper.isInBundleLockRegion());
1363 assert(!Retrying);
Jan Voung0faec4c2014-11-05 17:29:56 -08001364}
1365
Jim Stichnothf7c9a142014-04-29 10:52:43 -07001366void CfgNode::dump(Cfg *Func) const {
Jim Stichnoth20b71f52015-06-24 15:52:24 -07001367 if (!BuildDefs::dump())
Karl Schimpfb6c96af2014-11-17 10:58:39 -08001368 return;
Jim Stichnothf7c9a142014-04-29 10:52:43 -07001369 Func->setCurrentNode(this);
1370 Ostream &Str = Func->getContext()->getStrDump();
Jim Stichnothd97c7df2014-06-04 11:57:08 -07001371 Liveness *Liveness = Func->getLiveness();
Andrew Scullaa6c1092015-09-03 17:50:30 -07001372 if (Func->isVerbose(IceV_Instructions) || Func->isVerbose(IceV_Loop))
Jim Stichnothf7c9a142014-04-29 10:52:43 -07001373 Str << getName() << ":\n";
Andrew Scullaa6c1092015-09-03 17:50:30 -07001374 // Dump the loop nest depth
1375 if (Func->isVerbose(IceV_Loop))
1376 Str << " // LoopNestDepth = " << getLoopNestDepth() << "\n";
Jim Stichnothf7c9a142014-04-29 10:52:43 -07001377 // Dump list of predecessor nodes.
Jim Stichnothfa4efea2015-01-27 05:06:03 -08001378 if (Func->isVerbose(IceV_Preds) && !InEdges.empty()) {
Jim Stichnothf7c9a142014-04-29 10:52:43 -07001379 Str << " // preds = ";
Jim Stichnothf44f3712014-10-01 14:05:51 -07001380 bool First = true;
1381 for (CfgNode *I : InEdges) {
Jim Stichnoth8363a062014-10-07 10:02:38 -07001382 if (!First)
Jim Stichnothf7c9a142014-04-29 10:52:43 -07001383 Str << ", ";
Jim Stichnothf44f3712014-10-01 14:05:51 -07001384 First = false;
1385 Str << "%" << I->getName();
Jim Stichnothf7c9a142014-04-29 10:52:43 -07001386 }
1387 Str << "\n";
1388 }
Jim Stichnothd97c7df2014-06-04 11:57:08 -07001389 // Dump the live-in variables.
Jim Stichnoth1bdb7352016-02-29 16:58:15 -08001390 if (Func->isVerbose(IceV_Liveness)) {
1391 if (Liveness != nullptr && !Liveness->getLiveIn(this).empty()) {
1392 const LivenessBV &LiveIn = Liveness->getLiveIn(this);
1393 Str << " // LiveIn:";
1394 for (SizeT i = 0; i < LiveIn.size(); ++i) {
1395 if (LiveIn[i]) {
1396 Variable *Var = Liveness->getVariable(i, this);
Jim Stichnotha91c3412016-04-05 15:31:43 -07001397 Str << " %" << Var->getName();
Jim Stichnoth1bdb7352016-02-29 16:58:15 -08001398 if (Func->isVerbose(IceV_RegOrigins) && Var->hasReg()) {
1399 Str << ":"
1400 << Func->getTarget()->getRegName(Var->getRegNum(),
1401 Var->getType());
1402 }
Jim Stichnoth088b2be2014-10-23 12:02:08 -07001403 }
Jim Stichnothd97c7df2014-06-04 11:57:08 -07001404 }
Jim Stichnoth1bdb7352016-02-29 16:58:15 -08001405 Str << "\n";
Jim Stichnothd97c7df2014-06-04 11:57:08 -07001406 }
Jim Stichnothd97c7df2014-06-04 11:57:08 -07001407 }
Jim Stichnothf7c9a142014-04-29 10:52:43 -07001408 // Dump each instruction.
Jim Stichnothfa4efea2015-01-27 05:06:03 -08001409 if (Func->isVerbose(IceV_Instructions)) {
Jim Stichnoth29841e82014-12-23 12:26:24 -08001410 for (const Inst &I : Phis)
1411 I.dumpDecorated(Func);
1412 for (const Inst &I : Insts)
1413 I.dumpDecorated(Func);
Jim Stichnothf7c9a142014-04-29 10:52:43 -07001414 }
Jim Stichnothd97c7df2014-06-04 11:57:08 -07001415 // Dump the live-out variables.
Jim Stichnoth1bdb7352016-02-29 16:58:15 -08001416 if (Func->isVerbose(IceV_Liveness)) {
1417 if (Liveness != nullptr && !Liveness->getLiveOut(this).empty()) {
1418 const LivenessBV &LiveOut = Liveness->getLiveOut(this);
1419 Str << " // LiveOut:";
1420 for (SizeT i = 0; i < LiveOut.size(); ++i) {
1421 if (LiveOut[i]) {
1422 Variable *Var = Liveness->getVariable(i, this);
Jim Stichnotha91c3412016-04-05 15:31:43 -07001423 Str << " %" << Var->getName();
Jim Stichnoth1bdb7352016-02-29 16:58:15 -08001424 if (Func->isVerbose(IceV_RegOrigins) && Var->hasReg()) {
1425 Str << ":"
1426 << Func->getTarget()->getRegName(Var->getRegNum(),
1427 Var->getType());
1428 }
Jim Stichnoth088b2be2014-10-23 12:02:08 -07001429 }
Jim Stichnothd97c7df2014-06-04 11:57:08 -07001430 }
Jim Stichnoth1bdb7352016-02-29 16:58:15 -08001431 Str << "\n";
Jim Stichnothd97c7df2014-06-04 11:57:08 -07001432 }
Jim Stichnothd97c7df2014-06-04 11:57:08 -07001433 }
Jim Stichnothf7c9a142014-04-29 10:52:43 -07001434 // Dump list of successor nodes.
Jim Stichnothfa4efea2015-01-27 05:06:03 -08001435 if (Func->isVerbose(IceV_Succs)) {
Jim Stichnothf7c9a142014-04-29 10:52:43 -07001436 Str << " // succs = ";
Jim Stichnothf44f3712014-10-01 14:05:51 -07001437 bool First = true;
1438 for (CfgNode *I : OutEdges) {
Jim Stichnoth8363a062014-10-07 10:02:38 -07001439 if (!First)
Jim Stichnothf7c9a142014-04-29 10:52:43 -07001440 Str << ", ";
Jim Stichnothf44f3712014-10-01 14:05:51 -07001441 First = false;
1442 Str << "%" << I->getName();
Jim Stichnothf7c9a142014-04-29 10:52:43 -07001443 }
1444 Str << "\n";
1445 }
1446}
1447
John Portof8b4cc82015-06-09 18:06:19 -07001448void CfgNode::profileExecutionCount(VariableDeclaration *Var) {
Jim Stichnoth467ffe52016-03-29 15:01:06 -07001449 GlobalContext *Ctx = Func->getContext();
1450 GlobalString RMW_I64 = Ctx->getGlobalString("llvm.nacl.atomic.rmw.i64");
John Portof8b4cc82015-06-09 18:06:19 -07001451
1452 bool BadIntrinsic = false;
1453 const Intrinsics::FullIntrinsicInfo *Info =
Jim Stichnoth467ffe52016-03-29 15:01:06 -07001454 Ctx->getIntrinsicsInfo().find(RMW_I64, BadIntrinsic);
John Portof8b4cc82015-06-09 18:06:19 -07001455 assert(!BadIntrinsic);
1456 assert(Info != nullptr);
1457
Jim Stichnoth467ffe52016-03-29 15:01:06 -07001458 Operand *RMWI64Name = Ctx->getConstantExternSym(RMW_I64);
John Porto8b1a7052015-06-17 13:20:08 -07001459 constexpr RelocOffsetT Offset = 0;
Jim Stichnoth467ffe52016-03-29 15:01:06 -07001460 Constant *Counter = Ctx->getConstantSym(Offset, Var->getName());
1461 Constant *AtomicRMWOp = Ctx->getConstantInt32(Intrinsics::AtomicAdd);
1462 Constant *One = Ctx->getConstantInt64(1);
John Portof8b4cc82015-06-09 18:06:19 -07001463 Constant *OrderAcquireRelease =
Jim Stichnoth467ffe52016-03-29 15:01:06 -07001464 Ctx->getConstantInt32(Intrinsics::MemoryOrderAcquireRelease);
John Portof8b4cc82015-06-09 18:06:19 -07001465
Jim Stichnoth8cfeb692016-02-05 09:50:02 -08001466 auto *Instr = InstIntrinsicCall::create(
John Portof8b4cc82015-06-09 18:06:19 -07001467 Func, 5, Func->makeVariable(IceType_i64), RMWI64Name, Info->Info);
Jim Stichnoth8cfeb692016-02-05 09:50:02 -08001468 Instr->addArg(AtomicRMWOp);
1469 Instr->addArg(Counter);
1470 Instr->addArg(One);
1471 Instr->addArg(OrderAcquireRelease);
1472 Insts.push_front(Instr);
John Portof8b4cc82015-06-09 18:06:19 -07001473}
1474
Jim Stichnothf7c9a142014-04-29 10:52:43 -07001475} // end of namespace Ice