Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 1 | //===- subzero/src/IceCfg.cpp - Control flow graph 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 Scull | 9612d32 | 2015-07-06 14:53:25 -0700 | [diff] [blame] | 9 | /// |
| 10 | /// \file |
Jim Stichnoth | 92a6e5b | 2015-12-02 16:52:44 -0800 | [diff] [blame] | 11 | /// \brief Implements the Cfg class. |
Andrew Scull | 9612d32 | 2015-07-06 14:53:25 -0700 | [diff] [blame] | 12 | /// |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "IceCfg.h" |
John Porto | 67f8de9 | 2015-06-25 10:14:17 -0700 | [diff] [blame] | 16 | |
| 17 | #include "IceAssembler.h" |
John Porto | 36d6aa6 | 2016-02-26 07:19:59 -0800 | [diff] [blame] | 18 | #include "IceBitVector.h" |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 19 | #include "IceCfgNode.h" |
Jim Stichnoth | 989a703 | 2014-08-08 10:13:44 -0700 | [diff] [blame] | 20 | #include "IceClFlags.h" |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 21 | #include "IceDefs.h" |
Jan Voung | ec27073 | 2015-01-12 17:00:22 -0800 | [diff] [blame] | 22 | #include "IceELFObjectWriter.h" |
John Porto | f8b4cc8 | 2015-06-09 18:06:19 -0700 | [diff] [blame] | 23 | #include "IceGlobalInits.h" |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 24 | #include "IceInst.h" |
John Porto | ec3f565 | 2015-08-31 15:07:09 -0700 | [diff] [blame] | 25 | #include "IceInstVarIter.h" |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 26 | #include "IceLiveness.h" |
Andrew Scull | aa6c109 | 2015-09-03 17:50:30 -0700 | [diff] [blame] | 27 | #include "IceLoopAnalyzer.h" |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 28 | #include "IceOperand.h" |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 29 | #include "IceTargetLowering.h" |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 30 | |
| 31 | namespace Ice { |
| 32 | |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 33 | Cfg::Cfg(GlobalContext *Ctx, uint32_t SequenceNumber) |
Jan Voung | 1f47ad0 | 2015-03-20 15:01:26 -0700 | [diff] [blame] | 34 | : Ctx(Ctx), SequenceNumber(SequenceNumber), |
Jim Stichnoth | eafb56c | 2015-06-22 10:35:22 -0700 | [diff] [blame] | 35 | VMask(Ctx->getFlags().getVerbose()), NextInstNumber(Inst::NumberInitial), |
John Porto | 44b3ce8 | 2016-02-26 13:10:55 -0800 | [diff] [blame] | 36 | Live(nullptr) { |
| 37 | Allocator.reset(new ArenaAllocator()); |
| 38 | CfgLocalAllocatorScope _(this); |
| 39 | Target = |
| 40 | TargetLowering::createLowering(Ctx->getFlags().getTargetArch(), this); |
| 41 | VMetadata.reset(new VariablesMetadata(this)); |
| 42 | TargetAssembler = Target->createAssembler(); |
| 43 | |
Qining Lu | aee5fa8 | 2015-08-20 14:59:03 -0700 | [diff] [blame] | 44 | if (Ctx->getFlags().getRandomizeAndPoolImmediatesOption() == RPI_Randomize) { |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 45 | // If -randomize-pool-immediates=randomize, create a random number |
| 46 | // generator to generate a cookie for constant blinding. |
Qining Lu | aee5fa8 | 2015-08-20 14:59:03 -0700 | [diff] [blame] | 47 | RandomNumberGenerator RNG(Ctx->getFlags().getRandomSeed(), |
Qining Lu | 360e319 | 2015-08-20 17:13:07 -0700 | [diff] [blame] | 48 | RPE_ConstantBlinding, this->SequenceNumber); |
Qining Lu | aee5fa8 | 2015-08-20 14:59:03 -0700 | [diff] [blame] | 49 | ConstantBlindingCookie = |
Qining Lu | 360e319 | 2015-08-20 17:13:07 -0700 | [diff] [blame] | 50 | (uint32_t)RNG.next((uint64_t)std::numeric_limits<uint32_t>::max() + 1); |
Qining Lu | aee5fa8 | 2015-08-20 14:59:03 -0700 | [diff] [blame] | 51 | } |
Karl Schimpf | 6fcbddd | 2014-11-06 09:49:24 -0800 | [diff] [blame] | 52 | } |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 53 | |
John Porto | e82b560 | 2016-02-24 15:58:55 -0800 | [diff] [blame] | 54 | Cfg::~Cfg() { assert(CfgAllocatorTraits::current() == nullptr); } |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 55 | |
Jim Stichnoth | b40595a | 2016-01-29 06:14:31 -0800 | [diff] [blame] | 56 | /// Create a string like "foo(i=123:b=9)" indicating the function name, number |
| 57 | /// of high-level instructions, and number of basic blocks. This string is only |
| 58 | /// used for dumping and other diagnostics, and the idea is that given a set of |
| 59 | /// functions to debug a problem on, it's easy to find the smallest or simplest |
| 60 | /// function to attack. Note that the counts may change somewhat depending on |
| 61 | /// what point it is called during the translation passes. |
| 62 | IceString Cfg::getFunctionNameAndSize() const { |
| 63 | if (!BuildDefs::dump()) |
| 64 | return getFunctionName(); |
| 65 | SizeT NodeCount = 0; |
| 66 | SizeT InstCount = 0; |
| 67 | for (CfgNode *Node : getNodes()) { |
| 68 | ++NodeCount; |
| 69 | // Note: deleted instructions are *not* ignored. |
| 70 | InstCount += Node->getPhis().size(); |
| 71 | for (Inst &I : Node->getInsts()) { |
| 72 | if (!llvm::isa<InstTarget>(&I)) |
| 73 | ++InstCount; |
| 74 | } |
| 75 | } |
| 76 | return getFunctionName() + "(i=" + std::to_string(InstCount) + ":b=" + |
| 77 | std::to_string(NodeCount) + ")"; |
| 78 | } |
| 79 | |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 80 | void Cfg::setError(const IceString &Message) { |
| 81 | HasError = true; |
| 82 | ErrorMessage = Message; |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 83 | } |
| 84 | |
Jim Stichnoth | 668a7a3 | 2014-12-10 15:32:25 -0800 | [diff] [blame] | 85 | CfgNode *Cfg::makeNode() { |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 86 | SizeT LabelIndex = Nodes.size(); |
Jim Stichnoth | 54f3d51 | 2015-12-11 09:53:00 -0800 | [diff] [blame] | 87 | auto *Node = CfgNode::create(this, LabelIndex); |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 88 | Nodes.push_back(Node); |
| 89 | return Node; |
| 90 | } |
| 91 | |
Karl Schimpf | ac7d734 | 2015-08-06 12:55:23 -0700 | [diff] [blame] | 92 | void Cfg::swapNodes(NodeList &NewNodes) { |
Jim Stichnoth | e7dbc0b | 2015-09-15 10:09:24 -0700 | [diff] [blame] | 93 | assert(Nodes.size() == NewNodes.size()); |
Karl Schimpf | ac7d734 | 2015-08-06 12:55:23 -0700 | [diff] [blame] | 94 | Nodes.swap(NewNodes); |
| 95 | for (SizeT I = 0, NumNodes = getNumNodes(); I < NumNodes; ++I) |
| 96 | Nodes[I]->resetIndex(I); |
| 97 | } |
| 98 | |
John Porto | a83bfde | 2015-09-18 08:43:02 -0700 | [diff] [blame] | 99 | template <> Variable *Cfg::makeVariable<Variable>(Type Ty) { |
Andrew Scull | 6d47bcd | 2015-09-17 17:10:05 -0700 | [diff] [blame] | 100 | SizeT Index = Variables.size(); |
| 101 | Variable *Var = Target->shouldSplitToVariable64On32(Ty) |
| 102 | ? Variable64On32::create(this, Ty, Index) |
| 103 | : Variable::create(this, Ty, Index); |
| 104 | Variables.push_back(Var); |
| 105 | return Var; |
| 106 | } |
| 107 | |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 108 | void Cfg::addArg(Variable *Arg) { |
Jim Stichnoth | 144cdce | 2014-09-22 16:02:59 -0700 | [diff] [blame] | 109 | Arg->setIsArg(); |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 110 | Args.push_back(Arg); |
| 111 | } |
| 112 | |
Jim Stichnoth | 144cdce | 2014-09-22 16:02:59 -0700 | [diff] [blame] | 113 | void Cfg::addImplicitArg(Variable *Arg) { |
| 114 | Arg->setIsImplicitArg(); |
| 115 | ImplicitArgs.push_back(Arg); |
| 116 | } |
| 117 | |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 118 | // Returns whether the stack frame layout has been computed yet. This is used |
| 119 | // for dumping the stack frame location of Variables. |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 120 | bool Cfg::hasComputedFrame() const { return getTarget()->hasComputedFrame(); } |
| 121 | |
John Porto | f8b4cc8 | 2015-06-09 18:06:19 -0700 | [diff] [blame] | 122 | namespace { |
| 123 | constexpr char BlockNameGlobalPrefix[] = ".L$profiler$block_name$"; |
| 124 | constexpr char BlockStatsGlobalPrefix[] = ".L$profiler$block_info$"; |
| 125 | |
John Porto | 1bec8bc | 2015-06-22 10:51:13 -0700 | [diff] [blame] | 126 | VariableDeclaration *nodeNameDeclaration(GlobalContext *Ctx, |
| 127 | const IceString &NodeAsmName) { |
Jim Stichnoth | 54f3d51 | 2015-12-11 09:53:00 -0800 | [diff] [blame] | 128 | auto *Var = VariableDeclaration::create(Ctx); |
John Porto | f8b4cc8 | 2015-06-09 18:06:19 -0700 | [diff] [blame] | 129 | Var->setName(BlockNameGlobalPrefix + NodeAsmName); |
| 130 | Var->setIsConstant(true); |
John Porto | 1bec8bc | 2015-06-22 10:51:13 -0700 | [diff] [blame] | 131 | Var->addInitializer(VariableDeclaration::DataInitializer::create( |
John Porto | f8b4cc8 | 2015-06-09 18:06:19 -0700 | [diff] [blame] | 132 | NodeAsmName.data(), NodeAsmName.size() + 1)); |
| 133 | const SizeT Int64ByteSize = typeWidthInBytes(IceType_i64); |
| 134 | Var->setAlignment(Int64ByteSize); // Wasteful, 32-bit could use 4 bytes. |
| 135 | return Var; |
| 136 | } |
| 137 | |
| 138 | VariableDeclaration * |
John Porto | 1bec8bc | 2015-06-22 10:51:13 -0700 | [diff] [blame] | 139 | blockProfilingInfoDeclaration(GlobalContext *Ctx, const IceString &NodeAsmName, |
John Porto | f8b4cc8 | 2015-06-09 18:06:19 -0700 | [diff] [blame] | 140 | VariableDeclaration *NodeNameDeclaration) { |
Jim Stichnoth | 54f3d51 | 2015-12-11 09:53:00 -0800 | [diff] [blame] | 141 | auto *Var = VariableDeclaration::create(Ctx); |
John Porto | f8b4cc8 | 2015-06-09 18:06:19 -0700 | [diff] [blame] | 142 | Var->setName(BlockStatsGlobalPrefix + NodeAsmName); |
| 143 | const SizeT Int64ByteSize = typeWidthInBytes(IceType_i64); |
John Porto | 1bec8bc | 2015-06-22 10:51:13 -0700 | [diff] [blame] | 144 | Var->addInitializer( |
| 145 | VariableDeclaration::ZeroInitializer::create(Int64ByteSize)); |
John Porto | f8b4cc8 | 2015-06-09 18:06:19 -0700 | [diff] [blame] | 146 | |
| 147 | const RelocOffsetT NodeNameDeclarationOffset = 0; |
John Porto | 1bec8bc | 2015-06-22 10:51:13 -0700 | [diff] [blame] | 148 | Var->addInitializer(VariableDeclaration::RelocInitializer::create( |
John Porto | 844211e | 2016-02-04 08:42:48 -0800 | [diff] [blame] | 149 | NodeNameDeclaration, |
| 150 | {RelocOffset::create(Ctx, NodeNameDeclarationOffset)})); |
John Porto | f8b4cc8 | 2015-06-09 18:06:19 -0700 | [diff] [blame] | 151 | Var->setAlignment(Int64ByteSize); |
| 152 | return Var; |
| 153 | } |
John Porto | f8b4cc8 | 2015-06-09 18:06:19 -0700 | [diff] [blame] | 154 | } // end of anonymous namespace |
| 155 | |
| 156 | void Cfg::profileBlocks() { |
| 157 | if (GlobalInits == nullptr) |
| 158 | GlobalInits.reset(new VariableDeclarationList()); |
| 159 | |
| 160 | for (CfgNode *Node : Nodes) { |
| 161 | IceString NodeAsmName = Node->getAsmName(); |
John Porto | 1bec8bc | 2015-06-22 10:51:13 -0700 | [diff] [blame] | 162 | GlobalInits->push_back(nodeNameDeclaration(Ctx, NodeAsmName)); |
John Porto | f8b4cc8 | 2015-06-09 18:06:19 -0700 | [diff] [blame] | 163 | GlobalInits->push_back( |
John Porto | 1bec8bc | 2015-06-22 10:51:13 -0700 | [diff] [blame] | 164 | blockProfilingInfoDeclaration(Ctx, NodeAsmName, GlobalInits->back())); |
John Porto | f8b4cc8 | 2015-06-09 18:06:19 -0700 | [diff] [blame] | 165 | Node->profileExecutionCount(GlobalInits->back()); |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | bool Cfg::isProfileGlobal(const VariableDeclaration &Var) { |
| 170 | return Var.getName().find(BlockStatsGlobalPrefix) == 0; |
| 171 | } |
| 172 | |
| 173 | void Cfg::addCallToProfileSummary() { |
| 174 | // The call(s) to __Sz_profile_summary are added by the profiler in functions |
| 175 | // that cause the program to exit. This function is defined in |
| 176 | // runtime/szrt_profiler.c. |
| 177 | Constant *ProfileSummarySym = |
| 178 | Ctx->getConstantExternSym("__Sz_profile_summary"); |
| 179 | constexpr SizeT NumArgs = 0; |
| 180 | constexpr Variable *Void = nullptr; |
| 181 | constexpr bool HasTailCall = false; |
| 182 | auto *Call = |
| 183 | InstCall::create(this, NumArgs, Void, ProfileSummarySym, HasTailCall); |
| 184 | getEntryNode()->getInsts().push_front(Call); |
| 185 | } |
| 186 | |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 187 | void Cfg::translate() { |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 188 | if (hasError()) |
| 189 | return; |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 190 | // FunctionTimer conditionally pushes/pops a TimerMarker if TimeEachFunction |
| 191 | // is enabled. |
Jim Stichnoth | 380d7b9 | 2015-01-30 13:10:39 -0800 | [diff] [blame] | 192 | std::unique_ptr<TimerMarker> FunctionTimer; |
Jim Stichnoth | 20b71f5 | 2015-06-24 15:52:24 -0700 | [diff] [blame] | 193 | if (BuildDefs::dump()) { |
Karl Schimpf | df80eb8 | 2015-02-09 14:20:22 -0800 | [diff] [blame] | 194 | const IceString &TimingFocusOn = |
| 195 | getContext()->getFlags().getTimingFocusOn(); |
Jim Stichnoth | 380d7b9 | 2015-01-30 13:10:39 -0800 | [diff] [blame] | 196 | const IceString &Name = getFunctionName(); |
| 197 | if (TimingFocusOn == "*" || TimingFocusOn == Name) { |
Jim Stichnoth | 1c44d81 | 2014-12-08 14:57:52 -0800 | [diff] [blame] | 198 | setFocusedTiming(); |
| 199 | getContext()->resetTimer(GlobalContext::TSK_Default); |
Jim Stichnoth | 380d7b9 | 2015-01-30 13:10:39 -0800 | [diff] [blame] | 200 | getContext()->setTimerName(GlobalContext::TSK_Default, Name); |
Jim Stichnoth | 1c44d81 | 2014-12-08 14:57:52 -0800 | [diff] [blame] | 201 | } |
Karl Schimpf | df80eb8 | 2015-02-09 14:20:22 -0800 | [diff] [blame] | 202 | if (getContext()->getFlags().getTimeEachFunction()) |
Jim Stichnoth | 380d7b9 | 2015-01-30 13:10:39 -0800 | [diff] [blame] | 203 | FunctionTimer.reset(new TimerMarker( |
| 204 | getContext()->getTimerID(GlobalContext::TSK_Funcs, Name), |
| 205 | getContext(), GlobalContext::TSK_Funcs)); |
Jim Stichnoth | a522965 | 2015-11-12 10:25:21 -0800 | [diff] [blame] | 206 | if (isVerbose(IceV_Status)) |
| 207 | getContext()->getStrDump() << ">>>Translating " << Name << "\n"; |
Jim Stichnoth | d14b1a0 | 2014-10-08 08:28:36 -0700 | [diff] [blame] | 208 | } |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 209 | TimerMarker T(TimerStack::TT_translate, this); |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 210 | |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 211 | dump("Initial CFG"); |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 212 | |
John Porto | f8b4cc8 | 2015-06-09 18:06:19 -0700 | [diff] [blame] | 213 | if (getContext()->getFlags().getEnableBlockProfile()) { |
| 214 | profileBlocks(); |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 215 | // TODO(jpp): this is fragile, at best. Figure out a better way of |
| 216 | // detecting exit functions. |
John Porto | f8b4cc8 | 2015-06-09 18:06:19 -0700 | [diff] [blame] | 217 | if (GlobalContext::matchSymbolName(getFunctionName(), "exit")) { |
| 218 | addCallToProfileSummary(); |
| 219 | } |
| 220 | dump("Profiled CFG"); |
| 221 | } |
| 222 | |
Jim Stichnoth | be87b2e | 2015-09-18 15:43:59 -0700 | [diff] [blame] | 223 | // Create the Hi and Lo variables where a split was needed |
| 224 | for (Variable *Var : Variables) |
Jim Stichnoth | 5bff61c | 2015-10-28 09:26:00 -0700 | [diff] [blame] | 225 | if (auto *Var64On32 = llvm::dyn_cast<Variable64On32>(Var)) |
Jim Stichnoth | be87b2e | 2015-09-18 15:43:59 -0700 | [diff] [blame] | 226 | Var64On32->initHiLo(this); |
| 227 | |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 228 | // The set of translation passes and their order are determined by the |
| 229 | // target. |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 230 | getTarget()->translate(); |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 231 | |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 232 | dump("Final output"); |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 233 | if (getFocusedTiming()) |
| 234 | getContext()->dumpTimers(); |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 235 | } |
| 236 | |
Jim Stichnoth | 69d3f9c | 2015-03-23 10:33:38 -0700 | [diff] [blame] | 237 | void Cfg::computeInOutEdges() { |
| 238 | // Compute the out-edges. |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 239 | for (CfgNode *Node : Nodes) |
Jim Stichnoth | 69d3f9c | 2015-03-23 10:33:38 -0700 | [diff] [blame] | 240 | Node->computeSuccessors(); |
| 241 | |
| 242 | // Prune any unreachable nodes before computing in-edges. |
| 243 | SizeT NumNodes = getNumNodes(); |
John Porto | 36d6aa6 | 2016-02-26 07:19:59 -0800 | [diff] [blame] | 244 | BitVector Reachable(NumNodes); |
| 245 | BitVector Pending(NumNodes); |
Jim Stichnoth | 69d3f9c | 2015-03-23 10:33:38 -0700 | [diff] [blame] | 246 | Pending.set(getEntryNode()->getIndex()); |
| 247 | while (true) { |
| 248 | int Index = Pending.find_first(); |
| 249 | if (Index == -1) |
| 250 | break; |
| 251 | Pending.reset(Index); |
| 252 | Reachable.set(Index); |
| 253 | CfgNode *Node = Nodes[Index]; |
| 254 | assert(Node->getIndex() == (SizeT)Index); |
| 255 | for (CfgNode *Succ : Node->getOutEdges()) { |
| 256 | SizeT SuccIndex = Succ->getIndex(); |
| 257 | if (!Reachable.test(SuccIndex)) |
| 258 | Pending.set(SuccIndex); |
| 259 | } |
| 260 | } |
| 261 | SizeT Dest = 0; |
| 262 | for (SizeT Source = 0; Source < NumNodes; ++Source) { |
| 263 | if (Reachable.test(Source)) { |
| 264 | Nodes[Dest] = Nodes[Source]; |
| 265 | Nodes[Dest]->resetIndex(Dest); |
| 266 | // Compute the in-edges. |
| 267 | Nodes[Dest]->computePredecessors(); |
| 268 | ++Dest; |
| 269 | } |
| 270 | } |
| 271 | Nodes.resize(Dest); |
Jim Stichnoth | 1aca230 | 2015-09-16 11:25:22 -0700 | [diff] [blame] | 272 | |
| 273 | TimerMarker T(TimerStack::TT_phiValidation, this); |
| 274 | for (CfgNode *Node : Nodes) |
| 275 | Node->validatePhis(); |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 276 | } |
| 277 | |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 278 | void Cfg::renumberInstructions() { |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 279 | TimerMarker T(TimerStack::TT_renumberInstructions, this); |
Jim Stichnoth | e5b73e6 | 2014-12-15 09:58:51 -0800 | [diff] [blame] | 280 | NextInstNumber = Inst::NumberInitial; |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 281 | for (CfgNode *Node : Nodes) |
| 282 | Node->renumberInstructions(); |
Jim Stichnoth | 6f7ad6c | 2016-01-15 09:52:54 -0800 | [diff] [blame] | 283 | // Make sure the entry node is the first node and therefore got the lowest |
| 284 | // instruction numbers, to facilitate live range computation of function |
| 285 | // arguments. We want to model function arguments as being live on entry to |
| 286 | // the function, otherwise an argument whose only use is in the first |
| 287 | // instruction will be assigned a trivial live range and the register |
| 288 | // allocator will not recognize its live range as overlapping another |
| 289 | // variable's live range. |
| 290 | assert(Nodes.empty() || (*Nodes.begin() == getEntryNode())); |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 291 | } |
| 292 | |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 293 | // placePhiLoads() must be called before placePhiStores(). |
| 294 | void Cfg::placePhiLoads() { |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 295 | TimerMarker T(TimerStack::TT_placePhiLoads, this); |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 296 | for (CfgNode *Node : Nodes) |
| 297 | Node->placePhiLoads(); |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 298 | } |
| 299 | |
| 300 | // placePhiStores() must be called after placePhiLoads(). |
| 301 | void Cfg::placePhiStores() { |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 302 | TimerMarker T(TimerStack::TT_placePhiStores, this); |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 303 | for (CfgNode *Node : Nodes) |
| 304 | Node->placePhiStores(); |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 305 | } |
| 306 | |
| 307 | void Cfg::deletePhis() { |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 308 | TimerMarker T(TimerStack::TT_deletePhis, this); |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 309 | for (CfgNode *Node : Nodes) |
| 310 | Node->deletePhis(); |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 311 | } |
| 312 | |
Jim Stichnoth | 336f6c4 | 2014-10-30 15:01:31 -0700 | [diff] [blame] | 313 | void Cfg::advancedPhiLowering() { |
| 314 | TimerMarker T(TimerStack::TT_advancedPhiLowering, this); |
Jim Stichnoth | a3f57b9 | 2015-07-30 12:46:04 -0700 | [diff] [blame] | 315 | // Clear all previously computed live ranges (but not live-in/live-out bit |
| 316 | // vectors or last-use markers), because the follow-on register allocation is |
| 317 | // only concerned with live ranges across the newly created blocks. |
| 318 | for (Variable *Var : Variables) { |
| 319 | Var->getLiveRange().reset(); |
| 320 | } |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 321 | // This splits edges and appends new nodes to the end of the node list. This |
| 322 | // can invalidate iterators, so don't use an iterator. |
Jim Stichnoth | 336f6c4 | 2014-10-30 15:01:31 -0700 | [diff] [blame] | 323 | SizeT NumNodes = getNumNodes(); |
Jim Stichnoth | a3f57b9 | 2015-07-30 12:46:04 -0700 | [diff] [blame] | 324 | SizeT NumVars = getNumVariables(); |
Jim Stichnoth | 336f6c4 | 2014-10-30 15:01:31 -0700 | [diff] [blame] | 325 | for (SizeT I = 0; I < NumNodes; ++I) |
| 326 | Nodes[I]->advancedPhiLowering(); |
Jim Stichnoth | a3f57b9 | 2015-07-30 12:46:04 -0700 | [diff] [blame] | 327 | |
| 328 | TimerMarker TT(TimerStack::TT_lowerPhiAssignments, this); |
| 329 | if (true) { |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 330 | // The following code does an in-place update of liveness and live ranges |
| 331 | // as a result of adding the new phi edge split nodes. |
Jim Stichnoth | a3f57b9 | 2015-07-30 12:46:04 -0700 | [diff] [blame] | 332 | getLiveness()->initPhiEdgeSplits(Nodes.begin() + NumNodes, |
| 333 | Variables.begin() + NumVars); |
| 334 | TimerMarker TTT(TimerStack::TT_liveness, this); |
| 335 | // Iterate over the newly added nodes to add their liveness info. |
| 336 | for (auto I = Nodes.begin() + NumNodes, E = Nodes.end(); I != E; ++I) { |
| 337 | InstNumberT FirstInstNum = getNextInstNumber(); |
| 338 | (*I)->renumberInstructions(); |
| 339 | InstNumberT LastInstNum = getNextInstNumber() - 1; |
Jim Stichnoth | a3f57b9 | 2015-07-30 12:46:04 -0700 | [diff] [blame] | 340 | (*I)->liveness(getLiveness()); |
| 341 | (*I)->livenessAddIntervals(getLiveness(), FirstInstNum, LastInstNum); |
| 342 | } |
| 343 | } else { |
| 344 | // The following code does a brute-force recalculation of live ranges as a |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 345 | // result of adding the new phi edge split nodes. The liveness calculation |
Jim Stichnoth | a3f57b9 | 2015-07-30 12:46:04 -0700 | [diff] [blame] | 346 | // is particularly expensive because the new nodes are not yet in a proper |
| 347 | // topological order and so convergence is slower. |
| 348 | // |
| 349 | // This code is kept here for reference and can be temporarily enabled in |
| 350 | // case the incremental code is under suspicion. |
| 351 | renumberInstructions(); |
| 352 | liveness(Liveness_Intervals); |
| 353 | getVMetadata()->init(VMK_All); |
| 354 | } |
| 355 | Target->regAlloc(RAK_Phi); |
Jim Stichnoth | 336f6c4 | 2014-10-30 15:01:31 -0700 | [diff] [blame] | 356 | } |
| 357 | |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 358 | // Find a reasonable placement for nodes that have not yet been placed, while |
| 359 | // maintaining the same relative ordering among already placed nodes. |
Jim Stichnoth | 336f6c4 | 2014-10-30 15:01:31 -0700 | [diff] [blame] | 360 | void Cfg::reorderNodes() { |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 361 | // TODO(ascull): it would be nice if the switch tests were always followed by |
| 362 | // the default case to allow for fall through. |
Andrew Scull | 00741a0 | 2015-09-16 19:04:09 -0700 | [diff] [blame] | 363 | using PlacedList = CfgList<CfgNode *>; |
Jim Stichnoth | 336f6c4 | 2014-10-30 15:01:31 -0700 | [diff] [blame] | 364 | PlacedList Placed; // Nodes with relative placement locked down |
| 365 | PlacedList Unreachable; // Unreachable nodes |
| 366 | PlacedList::iterator NoPlace = Placed.end(); |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 367 | // Keep track of where each node has been tentatively placed so that we can |
| 368 | // manage insertions into the middle. |
Andrew Scull | 00741a0 | 2015-09-16 19:04:09 -0700 | [diff] [blame] | 369 | CfgVector<PlacedList::iterator> PlaceIndex(Nodes.size(), NoPlace); |
Jim Stichnoth | 336f6c4 | 2014-10-30 15:01:31 -0700 | [diff] [blame] | 370 | for (CfgNode *Node : Nodes) { |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 371 | // The "do ... while(0);" construct is to factor out the --PlaceIndex and |
| 372 | // assert() statements before moving to the next node. |
Jim Stichnoth | 336f6c4 | 2014-10-30 15:01:31 -0700 | [diff] [blame] | 373 | do { |
Andrew Scull | 713278a | 2015-07-22 17:17:02 -0700 | [diff] [blame] | 374 | if (Node != getEntryNode() && Node->getInEdges().empty()) { |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 375 | // The node has essentially been deleted since it is not a successor of |
| 376 | // any other node. |
Andrew Scull | 713278a | 2015-07-22 17:17:02 -0700 | [diff] [blame] | 377 | Unreachable.push_back(Node); |
| 378 | PlaceIndex[Node->getIndex()] = Unreachable.end(); |
| 379 | Node->setNeedsPlacement(false); |
| 380 | continue; |
| 381 | } |
Jim Stichnoth | 336f6c4 | 2014-10-30 15:01:31 -0700 | [diff] [blame] | 382 | if (!Node->needsPlacement()) { |
| 383 | // Add to the end of the Placed list. |
| 384 | Placed.push_back(Node); |
| 385 | PlaceIndex[Node->getIndex()] = Placed.end(); |
| 386 | continue; |
| 387 | } |
| 388 | Node->setNeedsPlacement(false); |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 389 | // Assume for now that the unplaced node is from edge-splitting and |
| 390 | // therefore has 1 in-edge and 1 out-edge (actually, possibly more than 1 |
| 391 | // in-edge if the predecessor node was contracted). If this changes in |
| 392 | // the future, rethink the strategy. |
Jim Stichnoth | 336f6c4 | 2014-10-30 15:01:31 -0700 | [diff] [blame] | 393 | assert(Node->getInEdges().size() >= 1); |
| 394 | assert(Node->getOutEdges().size() == 1); |
| 395 | |
| 396 | // If it's a (non-critical) edge where the successor has a single |
| 397 | // in-edge, then place it before the successor. |
Jim Stichnoth | bfb410d | 2014-11-05 16:04:05 -0800 | [diff] [blame] | 398 | CfgNode *Succ = Node->getOutEdges().front(); |
Jim Stichnoth | 336f6c4 | 2014-10-30 15:01:31 -0700 | [diff] [blame] | 399 | if (Succ->getInEdges().size() == 1 && |
| 400 | PlaceIndex[Succ->getIndex()] != NoPlace) { |
| 401 | Placed.insert(PlaceIndex[Succ->getIndex()], Node); |
| 402 | PlaceIndex[Node->getIndex()] = PlaceIndex[Succ->getIndex()]; |
| 403 | continue; |
| 404 | } |
| 405 | |
| 406 | // Otherwise, place it after the (first) predecessor. |
Jim Stichnoth | bfb410d | 2014-11-05 16:04:05 -0800 | [diff] [blame] | 407 | CfgNode *Pred = Node->getInEdges().front(); |
Jim Stichnoth | 336f6c4 | 2014-10-30 15:01:31 -0700 | [diff] [blame] | 408 | auto PredPosition = PlaceIndex[Pred->getIndex()]; |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 409 | // It shouldn't be the case that PredPosition==NoPlace, but if that |
| 410 | // somehow turns out to be true, we just insert Node before |
Jim Stichnoth | 336f6c4 | 2014-10-30 15:01:31 -0700 | [diff] [blame] | 411 | // PredPosition=NoPlace=Placed.end() . |
| 412 | if (PredPosition != NoPlace) |
| 413 | ++PredPosition; |
| 414 | Placed.insert(PredPosition, Node); |
| 415 | PlaceIndex[Node->getIndex()] = PredPosition; |
| 416 | } while (0); |
| 417 | |
| 418 | --PlaceIndex[Node->getIndex()]; |
| 419 | assert(*PlaceIndex[Node->getIndex()] == Node); |
| 420 | } |
| 421 | |
| 422 | // Reorder Nodes according to the built-up lists. |
Karl Schimpf | ac7d734 | 2015-08-06 12:55:23 -0700 | [diff] [blame] | 423 | NodeList Reordered; |
| 424 | Reordered.reserve(Placed.size() + Unreachable.size()); |
Jim Stichnoth | 336f6c4 | 2014-10-30 15:01:31 -0700 | [diff] [blame] | 425 | for (CfgNode *Node : Placed) |
Karl Schimpf | ac7d734 | 2015-08-06 12:55:23 -0700 | [diff] [blame] | 426 | Reordered.push_back(Node); |
Jim Stichnoth | 336f6c4 | 2014-10-30 15:01:31 -0700 | [diff] [blame] | 427 | for (CfgNode *Node : Unreachable) |
Karl Schimpf | ac7d734 | 2015-08-06 12:55:23 -0700 | [diff] [blame] | 428 | Reordered.push_back(Node); |
| 429 | assert(getNumNodes() == Reordered.size()); |
| 430 | swapNodes(Reordered); |
Jim Stichnoth | 336f6c4 | 2014-10-30 15:01:31 -0700 | [diff] [blame] | 431 | } |
| 432 | |
Qining Lu | 969f6a3 | 2015-07-31 09:58:34 -0700 | [diff] [blame] | 433 | namespace { |
John Porto | 36d6aa6 | 2016-02-26 07:19:59 -0800 | [diff] [blame] | 434 | void getRandomPostOrder(CfgNode *Node, BitVector &ToVisit, |
Qining Lu | 969f6a3 | 2015-07-31 09:58:34 -0700 | [diff] [blame] | 435 | Ice::NodeList &PostOrder, |
| 436 | Ice::RandomNumberGenerator *RNG) { |
| 437 | assert(ToVisit[Node->getIndex()]); |
| 438 | ToVisit[Node->getIndex()] = false; |
| 439 | NodeList Outs = Node->getOutEdges(); |
| 440 | Ice::RandomShuffle(Outs.begin(), Outs.end(), |
| 441 | [RNG](int N) { return RNG->next(N); }); |
| 442 | for (CfgNode *Next : Outs) { |
| 443 | if (ToVisit[Next->getIndex()]) |
| 444 | getRandomPostOrder(Next, ToVisit, PostOrder, RNG); |
| 445 | } |
| 446 | PostOrder.push_back(Node); |
| 447 | } |
| 448 | } // end of anonymous namespace |
| 449 | |
| 450 | void Cfg::shuffleNodes() { |
| 451 | if (!Ctx->getFlags().shouldReorderBasicBlocks()) |
| 452 | return; |
| 453 | |
| 454 | NodeList ReversedReachable; |
| 455 | NodeList Unreachable; |
John Porto | 36d6aa6 | 2016-02-26 07:19:59 -0800 | [diff] [blame] | 456 | BitVector ToVisit(Nodes.size(), true); |
Qining Lu | aee5fa8 | 2015-08-20 14:59:03 -0700 | [diff] [blame] | 457 | // Create Random number generator for function reordering |
| 458 | RandomNumberGenerator RNG(Ctx->getFlags().getRandomSeed(), |
| 459 | RPE_BasicBlockReordering, SequenceNumber); |
Qining Lu | 969f6a3 | 2015-07-31 09:58:34 -0700 | [diff] [blame] | 460 | // Traverse from entry node. |
Qining Lu | aee5fa8 | 2015-08-20 14:59:03 -0700 | [diff] [blame] | 461 | getRandomPostOrder(getEntryNode(), ToVisit, ReversedReachable, &RNG); |
Qining Lu | 969f6a3 | 2015-07-31 09:58:34 -0700 | [diff] [blame] | 462 | // Collect the unreachable nodes. |
| 463 | for (CfgNode *Node : Nodes) |
| 464 | if (ToVisit[Node->getIndex()]) |
| 465 | Unreachable.push_back(Node); |
| 466 | // Copy the layout list to the Nodes. |
Karl Schimpf | ac7d734 | 2015-08-06 12:55:23 -0700 | [diff] [blame] | 467 | NodeList Shuffled; |
| 468 | Shuffled.reserve(ReversedReachable.size() + Unreachable.size()); |
Qining Lu | 969f6a3 | 2015-07-31 09:58:34 -0700 | [diff] [blame] | 469 | for (CfgNode *Node : reverse_range(ReversedReachable)) |
Karl Schimpf | ac7d734 | 2015-08-06 12:55:23 -0700 | [diff] [blame] | 470 | Shuffled.push_back(Node); |
| 471 | for (CfgNode *Node : Unreachable) |
| 472 | Shuffled.push_back(Node); |
| 473 | assert(Nodes.size() == Shuffled.size()); |
| 474 | swapNodes(Shuffled); |
Qining Lu | 969f6a3 | 2015-07-31 09:58:34 -0700 | [diff] [blame] | 475 | |
| 476 | dump("After basic block shuffling"); |
| 477 | } |
| 478 | |
Matt Wala | 45a0623 | 2014-07-09 16:33:22 -0700 | [diff] [blame] | 479 | void Cfg::doArgLowering() { |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 480 | TimerMarker T(TimerStack::TT_doArgLowering, this); |
Matt Wala | 45a0623 | 2014-07-09 16:33:22 -0700 | [diff] [blame] | 481 | getTarget()->lowerArguments(); |
| 482 | } |
| 483 | |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 484 | void Cfg::sortAndCombineAllocas(CfgVector<Inst *> &Allocas, |
| 485 | uint32_t CombinedAlignment, InstList &Insts, |
| 486 | AllocaBaseVariableType BaseVariableType) { |
David Sehr | e39d0ca | 2015-11-06 11:25:41 -0800 | [diff] [blame] | 487 | if (Allocas.empty()) |
| 488 | return; |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 489 | // Sort by decreasing alignment. |
Jim Stichnoth | c59288b | 2015-11-09 11:38:40 -0800 | [diff] [blame] | 490 | std::sort(Allocas.begin(), Allocas.end(), [](Inst *I1, Inst *I2) { |
| 491 | auto *A1 = llvm::dyn_cast<InstAlloca>(I1); |
| 492 | auto *A2 = llvm::dyn_cast<InstAlloca>(I2); |
| 493 | return A1->getAlignInBytes() > A2->getAlignInBytes(); |
| 494 | }); |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 495 | // Process the allocas in order of decreasing stack alignment. This allows |
| 496 | // us to pack less-aligned pieces after more-aligned ones, resulting in less |
| 497 | // stack growth. It also allows there to be at most one stack alignment "and" |
| 498 | // instruction for a whole list of allocas. |
| 499 | uint32_t CurrentOffset = 0; |
| 500 | CfgVector<int32_t> Offsets; |
Jim Stichnoth | c59288b | 2015-11-09 11:38:40 -0800 | [diff] [blame] | 501 | for (Inst *Instr : Allocas) { |
David Sehr | e39d0ca | 2015-11-06 11:25:41 -0800 | [diff] [blame] | 502 | auto *Alloca = llvm::cast<InstAlloca>(Instr); |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 503 | // Adjust the size of the allocation up to the next multiple of the |
| 504 | // object's alignment. |
| 505 | uint32_t Alignment = std::max(Alloca->getAlignInBytes(), 1u); |
| 506 | auto *ConstSize = |
| 507 | llvm::dyn_cast<ConstantInteger32>(Alloca->getSizeInBytes()); |
| 508 | uint32_t Size = Utils::applyAlignment(ConstSize->getValue(), Alignment); |
| 509 | if (BaseVariableType == BVT_FramePointer) { |
| 510 | // Addressing is relative to the frame pointer. Subtract the offset after |
| 511 | // adding the size of the alloca, because it grows downwards from the |
| 512 | // frame pointer. |
| 513 | Offsets.push_back(-(CurrentOffset + Size)); |
| 514 | } else { |
| 515 | // Addressing is relative to the stack pointer or to a user pointer. Add |
| 516 | // the offset before adding the size of the object, because it grows |
John Porto | 614140e | 2015-11-23 11:43:13 -0800 | [diff] [blame] | 517 | // upwards from the stack pointer. In addition, if the addressing is |
| 518 | // relative to the stack pointer, we need to add the pre-computed max out |
| 519 | // args size bytes. |
| 520 | const uint32_t OutArgsOffsetOrZero = |
| 521 | (BaseVariableType == BVT_StackPointer) |
| 522 | ? getTarget()->maxOutArgsSizeBytes() |
| 523 | : 0; |
| 524 | Offsets.push_back(CurrentOffset + OutArgsOffsetOrZero); |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 525 | } |
| 526 | // Update the running offset of the fused alloca region. |
| 527 | CurrentOffset += Size; |
| 528 | } |
| 529 | // Round the offset up to the alignment granularity to use as the size. |
| 530 | uint32_t TotalSize = Utils::applyAlignment(CurrentOffset, CombinedAlignment); |
| 531 | // Ensure every alloca was assigned an offset. |
| 532 | assert(Allocas.size() == Offsets.size()); |
David Sehr | 2f3b8ec | 2015-11-16 16:51:39 -0800 | [diff] [blame] | 533 | |
| 534 | switch (BaseVariableType) { |
| 535 | case BVT_UserPointer: { |
| 536 | Variable *BaseVariable = makeVariable(IceType_i32); |
| 537 | for (SizeT i = 0; i < Allocas.size(); ++i) { |
| 538 | auto *Alloca = llvm::cast<InstAlloca>(Allocas[i]); |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 539 | // Emit a new addition operation to replace the alloca. |
| 540 | Operand *AllocaOffset = Ctx->getConstantInt32(Offsets[i]); |
| 541 | InstArithmetic *Add = |
| 542 | InstArithmetic::create(this, InstArithmetic::Add, Alloca->getDest(), |
| 543 | BaseVariable, AllocaOffset); |
| 544 | Insts.push_front(Add); |
David Sehr | 2f3b8ec | 2015-11-16 16:51:39 -0800 | [diff] [blame] | 545 | Alloca->setDeleted(); |
| 546 | } |
| 547 | Operand *AllocaSize = Ctx->getConstantInt32(TotalSize); |
| 548 | InstAlloca *CombinedAlloca = |
| 549 | InstAlloca::create(this, BaseVariable, AllocaSize, CombinedAlignment); |
| 550 | CombinedAlloca->setKnownFrameOffset(); |
| 551 | Insts.push_front(CombinedAlloca); |
| 552 | } break; |
| 553 | case BVT_StackPointer: |
| 554 | case BVT_FramePointer: { |
| 555 | for (SizeT i = 0; i < Allocas.size(); ++i) { |
| 556 | auto *Alloca = llvm::cast<InstAlloca>(Allocas[i]); |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 557 | // Emit a fake definition of the rematerializable variable. |
| 558 | Variable *Dest = Alloca->getDest(); |
Jim Stichnoth | 54f3d51 | 2015-12-11 09:53:00 -0800 | [diff] [blame] | 559 | auto *Def = InstFakeDef::create(this, Dest); |
David Sehr | 2f3b8ec | 2015-11-16 16:51:39 -0800 | [diff] [blame] | 560 | if (BaseVariableType == BVT_StackPointer) |
| 561 | Dest->setRematerializable(getTarget()->getStackReg(), Offsets[i]); |
| 562 | else |
| 563 | Dest->setRematerializable(getTarget()->getFrameReg(), Offsets[i]); |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 564 | Insts.push_front(Def); |
David Sehr | 2f3b8ec | 2015-11-16 16:51:39 -0800 | [diff] [blame] | 565 | Alloca->setDeleted(); |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 566 | } |
David Sehr | 2f3b8ec | 2015-11-16 16:51:39 -0800 | [diff] [blame] | 567 | // Allocate the fixed area in the function prolog. |
| 568 | getTarget()->reserveFixedAllocaArea(TotalSize, CombinedAlignment); |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 569 | } break; |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 570 | } |
David Sehr | e39d0ca | 2015-11-06 11:25:41 -0800 | [diff] [blame] | 571 | } |
| 572 | |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 573 | void Cfg::processAllocas(bool SortAndCombine) { |
David Sehr | e39d0ca | 2015-11-06 11:25:41 -0800 | [diff] [blame] | 574 | const uint32_t StackAlignment = getTarget()->getStackAlignment(); |
| 575 | CfgNode *EntryNode = getEntryNode(); |
David Sehr | e39d0ca | 2015-11-06 11:25:41 -0800 | [diff] [blame] | 576 | // LLVM enforces power of 2 alignment. |
| 577 | assert(llvm::isPowerOf2_32(StackAlignment)); |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 578 | // Determine if there are large alignment allocations in the entry block or |
| 579 | // dynamic allocations (variable size in the entry block). |
| 580 | bool HasLargeAlignment = false; |
| 581 | bool HasDynamicAllocation = false; |
David Sehr | e39d0ca | 2015-11-06 11:25:41 -0800 | [diff] [blame] | 582 | for (Inst &Instr : EntryNode->getInsts()) { |
| 583 | if (auto *Alloca = llvm::dyn_cast<InstAlloca>(&Instr)) { |
David Sehr | e39d0ca | 2015-11-06 11:25:41 -0800 | [diff] [blame] | 584 | uint32_t AlignmentParam = Alloca->getAlignInBytes(); |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 585 | if (AlignmentParam > StackAlignment) |
| 586 | HasLargeAlignment = true; |
| 587 | if (llvm::isa<Constant>(Alloca->getSizeInBytes())) |
| 588 | Alloca->setKnownFrameOffset(); |
| 589 | else { |
| 590 | HasDynamicAllocation = true; |
| 591 | // If Allocas are not sorted, the first dynamic allocation causes |
| 592 | // later Allocas to be at unknown offsets relative to the stack/frame. |
| 593 | if (!SortAndCombine) |
| 594 | break; |
| 595 | } |
David Sehr | e39d0ca | 2015-11-06 11:25:41 -0800 | [diff] [blame] | 596 | } |
| 597 | } |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 598 | // Don't do the heavyweight sorting and layout for low optimization levels. |
| 599 | if (!SortAndCombine) |
| 600 | return; |
| 601 | // Any alloca outside the entry block is a dynamic allocation. |
David Sehr | e39d0ca | 2015-11-06 11:25:41 -0800 | [diff] [blame] | 602 | for (CfgNode *Node : Nodes) { |
| 603 | if (Node == EntryNode) |
| 604 | continue; |
| 605 | for (Inst &Instr : Node->getInsts()) { |
| 606 | if (llvm::isa<InstAlloca>(&Instr)) { |
| 607 | // Allocations outside the entry block require a frame pointer. |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 608 | HasDynamicAllocation = true; |
David Sehr | e39d0ca | 2015-11-06 11:25:41 -0800 | [diff] [blame] | 609 | break; |
| 610 | } |
| 611 | } |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 612 | if (HasDynamicAllocation) |
David Sehr | e39d0ca | 2015-11-06 11:25:41 -0800 | [diff] [blame] | 613 | break; |
| 614 | } |
| 615 | // Mark the target as requiring a frame pointer. |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 616 | if (HasLargeAlignment || HasDynamicAllocation) |
David Sehr | e39d0ca | 2015-11-06 11:25:41 -0800 | [diff] [blame] | 617 | getTarget()->setHasFramePointer(); |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 618 | // Collect the Allocas into the two vectors. |
| 619 | // Allocas in the entry block that have constant size and alignment less |
| 620 | // than or equal to the function's stack alignment. |
| 621 | CfgVector<Inst *> FixedAllocas; |
| 622 | // Allocas in the entry block that have constant size and alignment greater |
| 623 | // than the function's stack alignment. |
| 624 | CfgVector<Inst *> AlignedAllocas; |
David Sehr | 2f3b8ec | 2015-11-16 16:51:39 -0800 | [diff] [blame] | 625 | // Maximum alignment used by any alloca. |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 626 | uint32_t MaxAlignment = StackAlignment; |
| 627 | for (Inst &Instr : EntryNode->getInsts()) { |
| 628 | if (auto *Alloca = llvm::dyn_cast<InstAlloca>(&Instr)) { |
| 629 | if (!llvm::isa<Constant>(Alloca->getSizeInBytes())) |
| 630 | continue; |
| 631 | uint32_t AlignmentParam = Alloca->getAlignInBytes(); |
| 632 | // For default align=0, set it to the real value 1, to avoid any |
| 633 | // bit-manipulation problems below. |
| 634 | AlignmentParam = std::max(AlignmentParam, 1u); |
| 635 | assert(llvm::isPowerOf2_32(AlignmentParam)); |
| 636 | if (HasDynamicAllocation && AlignmentParam > StackAlignment) { |
| 637 | // If we have both dynamic allocations and large stack alignments, |
| 638 | // high-alignment allocations are pulled out with their own base. |
| 639 | AlignedAllocas.push_back(Alloca); |
| 640 | } else { |
| 641 | FixedAllocas.push_back(Alloca); |
| 642 | } |
| 643 | MaxAlignment = std::max(AlignmentParam, MaxAlignment); |
| 644 | } |
| 645 | } |
David Sehr | e39d0ca | 2015-11-06 11:25:41 -0800 | [diff] [blame] | 646 | // Add instructions to the head of the entry block in reverse order. |
| 647 | InstList &Insts = getEntryNode()->getInsts(); |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 648 | if (HasDynamicAllocation && HasLargeAlignment) { |
| 649 | // We are using a frame pointer, but fixed large-alignment alloca addresses, |
| 650 | // do not have a known offset from either the stack or frame pointer. |
| 651 | // They grow up from a user pointer from an alloca. |
| 652 | sortAndCombineAllocas(AlignedAllocas, MaxAlignment, Insts, BVT_UserPointer); |
David Sehr | 2f3b8ec | 2015-11-16 16:51:39 -0800 | [diff] [blame] | 653 | // Fixed size allocas are addressed relative to the frame pointer. |
| 654 | sortAndCombineAllocas(FixedAllocas, StackAlignment, Insts, |
| 655 | BVT_FramePointer); |
| 656 | } else { |
| 657 | // Otherwise, fixed size allocas are addressed relative to the stack unless |
| 658 | // there are dynamic allocas. |
| 659 | const AllocaBaseVariableType BasePointerType = |
| 660 | (HasDynamicAllocation ? BVT_FramePointer : BVT_StackPointer); |
| 661 | sortAndCombineAllocas(FixedAllocas, MaxAlignment, Insts, BasePointerType); |
David Sehr | 4318a41 | 2015-11-11 15:01:55 -0800 | [diff] [blame] | 662 | } |
Jim Stichnoth | 3607b6c | 2015-11-13 14:28:23 -0800 | [diff] [blame] | 663 | if (!FixedAllocas.empty() || !AlignedAllocas.empty()) |
| 664 | // No use calling findRematerializable() unless there is some |
| 665 | // rematerializable alloca instruction to seed it. |
| 666 | findRematerializable(); |
| 667 | } |
| 668 | |
| 669 | namespace { |
| 670 | |
| 671 | // Helpers for findRematerializable(). For each of them, if a suitable |
| 672 | // rematerialization is found, the instruction's Dest variable is set to be |
| 673 | // rematerializable and it returns true, otherwise it returns false. |
| 674 | |
| 675 | bool rematerializeArithmetic(const Inst *Instr) { |
| 676 | // Check that it's an Arithmetic instruction with an Add operation. |
| 677 | auto *Arith = llvm::dyn_cast<InstArithmetic>(Instr); |
| 678 | if (Arith == nullptr || Arith->getOp() != InstArithmetic::Add) |
| 679 | return false; |
| 680 | // Check that Src(0) is rematerializable. |
| 681 | auto *Src0Var = llvm::dyn_cast<Variable>(Arith->getSrc(0)); |
| 682 | if (Src0Var == nullptr || !Src0Var->isRematerializable()) |
| 683 | return false; |
| 684 | // Check that Src(1) is an immediate. |
| 685 | auto *Src1Imm = llvm::dyn_cast<ConstantInteger32>(Arith->getSrc(1)); |
| 686 | if (Src1Imm == nullptr) |
| 687 | return false; |
| 688 | Arith->getDest()->setRematerializable( |
| 689 | Src0Var->getRegNum(), Src0Var->getStackOffset() + Src1Imm->getValue()); |
| 690 | return true; |
| 691 | } |
| 692 | |
| 693 | bool rematerializeAssign(const Inst *Instr) { |
| 694 | // An InstAssign only originates from an inttoptr or ptrtoint instruction, |
| 695 | // which never occurs in a MINIMAL build. |
| 696 | if (BuildDefs::minimal()) |
| 697 | return false; |
| 698 | // Check that it's an Assign instruction. |
| 699 | if (!llvm::isa<InstAssign>(Instr)) |
| 700 | return false; |
| 701 | // Check that Src(0) is rematerializable. |
| 702 | auto *Src0Var = llvm::dyn_cast<Variable>(Instr->getSrc(0)); |
| 703 | if (Src0Var == nullptr || !Src0Var->isRematerializable()) |
| 704 | return false; |
| 705 | Instr->getDest()->setRematerializable(Src0Var->getRegNum(), |
| 706 | Src0Var->getStackOffset()); |
| 707 | return true; |
| 708 | } |
| 709 | |
| 710 | bool rematerializeCast(const Inst *Instr) { |
| 711 | // An pointer-type bitcast never occurs in a MINIMAL build. |
| 712 | if (BuildDefs::minimal()) |
| 713 | return false; |
| 714 | // Check that it's a Cast instruction with a Bitcast operation. |
| 715 | auto *Cast = llvm::dyn_cast<InstCast>(Instr); |
| 716 | if (Cast == nullptr || Cast->getCastKind() != InstCast::Bitcast) |
| 717 | return false; |
| 718 | // Check that Src(0) is rematerializable. |
| 719 | auto *Src0Var = llvm::dyn_cast<Variable>(Cast->getSrc(0)); |
| 720 | if (Src0Var == nullptr || !Src0Var->isRematerializable()) |
| 721 | return false; |
| 722 | // Check that Dest and Src(0) have the same type. |
| 723 | Variable *Dest = Cast->getDest(); |
| 724 | if (Dest->getType() != Src0Var->getType()) |
| 725 | return false; |
| 726 | Dest->setRematerializable(Src0Var->getRegNum(), Src0Var->getStackOffset()); |
| 727 | return true; |
| 728 | } |
| 729 | |
| 730 | } // end of anonymous namespace |
| 731 | |
| 732 | /// Scan the function to find additional rematerializable variables. This is |
| 733 | /// possible when the source operand of an InstAssignment is a rematerializable |
| 734 | /// variable, or the same for a pointer-type InstCast::Bitcast, or when an |
| 735 | /// InstArithmetic is an add of a rematerializable variable and an immediate. |
| 736 | /// Note that InstAssignment instructions and pointer-type InstCast::Bitcast |
| 737 | /// instructions generally only come about from the IceConverter's treatment of |
| 738 | /// inttoptr, ptrtoint, and bitcast instructions. TODO(stichnot): Consider |
| 739 | /// other possibilities, however unlikely, such as InstArithmetic::Sub, or |
| 740 | /// commutativity. |
| 741 | void Cfg::findRematerializable() { |
| 742 | // Scan the instructions in order, and repeat until no new opportunities are |
| 743 | // found. It may take more than one iteration because a variable's defining |
| 744 | // block may happen to come after a block where it is used, depending on the |
| 745 | // CfgNode linearization order. |
| 746 | bool FoundNewAssignment; |
| 747 | do { |
| 748 | FoundNewAssignment = false; |
| 749 | for (CfgNode *Node : getNodes()) { |
| 750 | // No need to process Phi instructions. |
| 751 | for (Inst &Instr : Node->getInsts()) { |
| 752 | if (Instr.isDeleted()) |
| 753 | continue; |
| 754 | Variable *Dest = Instr.getDest(); |
| 755 | if (Dest == nullptr || Dest->isRematerializable()) |
| 756 | continue; |
| 757 | if (rematerializeArithmetic(&Instr) || rematerializeAssign(&Instr) || |
| 758 | rematerializeCast(&Instr)) { |
| 759 | FoundNewAssignment = true; |
| 760 | } |
| 761 | } |
| 762 | } |
| 763 | } while (FoundNewAssignment); |
David Sehr | e39d0ca | 2015-11-06 11:25:41 -0800 | [diff] [blame] | 764 | } |
| 765 | |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 766 | void Cfg::doAddressOpt() { |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 767 | TimerMarker T(TimerStack::TT_doAddressOpt, this); |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 768 | for (CfgNode *Node : Nodes) |
| 769 | Node->doAddressOpt(); |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 770 | } |
| 771 | |
Matt Wala | c330274 | 2014-08-15 16:21:56 -0700 | [diff] [blame] | 772 | void Cfg::doNopInsertion() { |
Qining Lu | 969f6a3 | 2015-07-31 09:58:34 -0700 | [diff] [blame] | 773 | if (!Ctx->getFlags().shouldDoNopInsertion()) |
| 774 | return; |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 775 | TimerMarker T(TimerStack::TT_doNopInsertion, this); |
Qining Lu | aee5fa8 | 2015-08-20 14:59:03 -0700 | [diff] [blame] | 776 | RandomNumberGenerator RNG(Ctx->getFlags().getRandomSeed(), RPE_NopInsertion, |
| 777 | SequenceNumber); |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 778 | for (CfgNode *Node : Nodes) |
Qining Lu | aee5fa8 | 2015-08-20 14:59:03 -0700 | [diff] [blame] | 779 | Node->doNopInsertion(RNG); |
Matt Wala | c330274 | 2014-08-15 16:21:56 -0700 | [diff] [blame] | 780 | } |
| 781 | |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 782 | void Cfg::genCode() { |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 783 | TimerMarker T(TimerStack::TT_genCode, this); |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 784 | for (CfgNode *Node : Nodes) |
| 785 | Node->genCode(); |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 786 | } |
| 787 | |
| 788 | // Compute the stack frame layout. |
| 789 | void Cfg::genFrame() { |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 790 | TimerMarker T(TimerStack::TT_genFrame, this); |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 791 | getTarget()->addProlog(Entry); |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 792 | for (CfgNode *Node : Nodes) |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 793 | if (Node->getHasReturn()) |
| 794 | getTarget()->addEpilog(Node); |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 795 | } |
| 796 | |
Andrew Scull | aa6c109 | 2015-09-03 17:50:30 -0700 | [diff] [blame] | 797 | void Cfg::computeLoopNestDepth() { |
| 798 | TimerMarker T(TimerStack::TT_computeLoopNestDepth, this); |
| 799 | LoopAnalyzer LA(this); |
| 800 | LA.computeLoopNestDepth(); |
| 801 | } |
| 802 | |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 803 | // This is a lightweight version of live-range-end calculation. Marks the last |
Andrew Scull | aa6c109 | 2015-09-03 17:50:30 -0700 | [diff] [blame] | 804 | // use of only those variables whose definition and uses are completely with a |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 805 | // single block. It is a quick single pass and doesn't need to iterate until |
Andrew Scull | aa6c109 | 2015-09-03 17:50:30 -0700 | [diff] [blame] | 806 | // convergence. |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 807 | void Cfg::livenessLightweight() { |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 808 | TimerMarker T(TimerStack::TT_livenessLightweight, this); |
Jim Stichnoth | 877b04e | 2014-10-15 15:13:06 -0700 | [diff] [blame] | 809 | getVMetadata()->init(VMK_Uses); |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 810 | for (CfgNode *Node : Nodes) |
| 811 | Node->livenessLightweight(); |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 812 | } |
| 813 | |
| 814 | void Cfg::liveness(LivenessMode Mode) { |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 815 | TimerMarker T(TimerStack::TT_liveness, this); |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 816 | Live.reset(new Liveness(this, Mode)); |
Jim Stichnoth | 877b04e | 2014-10-15 15:13:06 -0700 | [diff] [blame] | 817 | getVMetadata()->init(VMK_Uses); |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 818 | Live->init(); |
| 819 | // Initialize with all nodes needing to be processed. |
John Porto | 36d6aa6 | 2016-02-26 07:19:59 -0800 | [diff] [blame] | 820 | BitVector NeedToProcess(Nodes.size(), true); |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 821 | while (NeedToProcess.any()) { |
| 822 | // Iterate in reverse topological order to speed up convergence. |
Jim Stichnoth | 7e57136 | 2015-01-09 11:43:26 -0800 | [diff] [blame] | 823 | for (CfgNode *Node : reverse_range(Nodes)) { |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 824 | if (NeedToProcess[Node->getIndex()]) { |
| 825 | NeedToProcess[Node->getIndex()] = false; |
| 826 | bool Changed = Node->liveness(getLiveness()); |
| 827 | if (Changed) { |
| 828 | // If the beginning-of-block liveness changed since the last |
| 829 | // iteration, mark all in-edges as needing to be processed. |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 830 | for (CfgNode *Pred : Node->getInEdges()) |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 831 | NeedToProcess[Pred->getIndex()] = true; |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 832 | } |
| 833 | } |
| 834 | } |
| 835 | } |
| 836 | if (Mode == Liveness_Intervals) { |
| 837 | // Reset each variable's live range. |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 838 | for (Variable *Var : Variables) |
| 839 | Var->resetLiveRange(); |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 840 | } |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 841 | // Make a final pass over each node to delete dead instructions, collect the |
| 842 | // first and last instruction numbers, and add live range segments for that |
| 843 | // node. |
Jim Stichnoth | e5b73e6 | 2014-12-15 09:58:51 -0800 | [diff] [blame] | 844 | for (CfgNode *Node : Nodes) { |
| 845 | InstNumberT FirstInstNum = Inst::NumberSentinel; |
| 846 | InstNumberT LastInstNum = Inst::NumberSentinel; |
Jim Stichnoth | 29841e8 | 2014-12-23 12:26:24 -0800 | [diff] [blame] | 847 | for (Inst &I : Node->getPhis()) { |
| 848 | I.deleteIfDead(); |
| 849 | if (Mode == Liveness_Intervals && !I.isDeleted()) { |
Jim Stichnoth | e5b73e6 | 2014-12-15 09:58:51 -0800 | [diff] [blame] | 850 | if (FirstInstNum == Inst::NumberSentinel) |
Jim Stichnoth | 29841e8 | 2014-12-23 12:26:24 -0800 | [diff] [blame] | 851 | FirstInstNum = I.getNumber(); |
| 852 | assert(I.getNumber() > LastInstNum); |
| 853 | LastInstNum = I.getNumber(); |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 854 | } |
Jim Stichnoth | e5b73e6 | 2014-12-15 09:58:51 -0800 | [diff] [blame] | 855 | } |
Jim Stichnoth | 29841e8 | 2014-12-23 12:26:24 -0800 | [diff] [blame] | 856 | for (Inst &I : Node->getInsts()) { |
| 857 | I.deleteIfDead(); |
| 858 | if (Mode == Liveness_Intervals && !I.isDeleted()) { |
Jim Stichnoth | e5b73e6 | 2014-12-15 09:58:51 -0800 | [diff] [blame] | 859 | if (FirstInstNum == Inst::NumberSentinel) |
Jim Stichnoth | 29841e8 | 2014-12-23 12:26:24 -0800 | [diff] [blame] | 860 | FirstInstNum = I.getNumber(); |
| 861 | assert(I.getNumber() > LastInstNum); |
| 862 | LastInstNum = I.getNumber(); |
Jim Stichnoth | e5b73e6 | 2014-12-15 09:58:51 -0800 | [diff] [blame] | 863 | } |
| 864 | } |
| 865 | if (Mode == Liveness_Intervals) { |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 866 | // Special treatment for live in-args. Their liveness needs to extend |
| 867 | // beyond the beginning of the function, otherwise an arg whose only use |
| 868 | // is in the first instruction will end up having the trivial live range |
| 869 | // [2,2) and will *not* interfere with other arguments. So if the first |
| 870 | // instruction of the method is "r=arg1+arg2", both args may be assigned |
| 871 | // the same register. This is accomplished by extending the entry block's |
| 872 | // instruction range from [2,n) to [1,n) which will transform the |
Jim Stichnoth | 6f7ad6c | 2016-01-15 09:52:54 -0800 | [diff] [blame] | 873 | // problematic [2,2) live ranges into [1,2). This extension works because |
| 874 | // the entry node is guaranteed to have the lowest instruction numbers. |
Jim Stichnoth | e4f65d8 | 2015-06-17 22:16:02 -0700 | [diff] [blame] | 875 | if (Node == getEntryNode()) { |
Jim Stichnoth | e5b73e6 | 2014-12-15 09:58:51 -0800 | [diff] [blame] | 876 | FirstInstNum = Inst::NumberExtended; |
Jim Stichnoth | 6f7ad6c | 2016-01-15 09:52:54 -0800 | [diff] [blame] | 877 | // Just in case the entry node somehow contains no instructions... |
| 878 | if (LastInstNum == Inst::NumberSentinel) |
| 879 | LastInstNum = FirstInstNum; |
Jim Stichnoth | e4f65d8 | 2015-06-17 22:16:02 -0700 | [diff] [blame] | 880 | } |
Jim Stichnoth | 6f7ad6c | 2016-01-15 09:52:54 -0800 | [diff] [blame] | 881 | // If this node somehow contains no instructions, don't bother trying to |
| 882 | // add liveness intervals for it, because variables that are live-in and |
| 883 | // live-out will have a bogus interval added. |
| 884 | if (FirstInstNum != Inst::NumberSentinel) |
| 885 | Node->livenessAddIntervals(getLiveness(), FirstInstNum, LastInstNum); |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 886 | } |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 887 | } |
| 888 | } |
| 889 | |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 890 | // Traverse every Variable of every Inst and verify that it appears within the |
| 891 | // Variable's computed live range. |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 892 | bool Cfg::validateLiveness() const { |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 893 | TimerMarker T(TimerStack::TT_validateLiveness, this); |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 894 | bool Valid = true; |
Jim Stichnoth | e4a8f40 | 2015-01-20 12:52:51 -0800 | [diff] [blame] | 895 | OstreamLocker L(Ctx); |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 896 | Ostream &Str = Ctx->getStrDump(); |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 897 | for (CfgNode *Node : Nodes) { |
Jim Stichnoth | ae95320 | 2014-12-20 06:17:49 -0800 | [diff] [blame] | 898 | Inst *FirstInst = nullptr; |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 899 | for (Inst &Instr : Node->getInsts()) { |
| 900 | if (Instr.isDeleted()) |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 901 | continue; |
Jim Stichnoth | ae95320 | 2014-12-20 06:17:49 -0800 | [diff] [blame] | 902 | if (FirstInst == nullptr) |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 903 | FirstInst = &Instr; |
| 904 | InstNumberT InstNumber = Instr.getNumber(); |
| 905 | if (Variable *Dest = Instr.getDest()) { |
Jim Stichnoth | 4775255 | 2014-10-13 17:15:08 -0700 | [diff] [blame] | 906 | if (!Dest->getIgnoreLiveness()) { |
| 907 | bool Invalid = false; |
Jim Stichnoth | 5bff61c | 2015-10-28 09:26:00 -0700 | [diff] [blame] | 908 | constexpr bool IsDest = true; |
Jim Stichnoth | 4775255 | 2014-10-13 17:15:08 -0700 | [diff] [blame] | 909 | if (!Dest->getLiveRange().containsValue(InstNumber, IsDest)) |
| 910 | Invalid = true; |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 911 | // Check that this instruction actually *begins* Dest's live range, |
| 912 | // by checking that Dest is not live in the previous instruction. As |
| 913 | // a special exception, we don't check this for the first instruction |
| 914 | // of the block, because a Phi temporary may be live at the end of |
| 915 | // the previous block, and if it is also assigned in the first |
| 916 | // instruction of this block, the adjacent live ranges get merged. |
Jim Stichnoth | 2d6c826 | 2016-02-07 09:50:27 -0800 | [diff] [blame] | 917 | if (&Instr != FirstInst && !Instr.isDestRedefined() && |
Jim Stichnoth | 4775255 | 2014-10-13 17:15:08 -0700 | [diff] [blame] | 918 | Dest->getLiveRange().containsValue(InstNumber - 1, IsDest)) |
| 919 | Invalid = true; |
| 920 | if (Invalid) { |
| 921 | Valid = false; |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 922 | Str << "Liveness error: inst " << Instr.getNumber() << " dest "; |
Jim Stichnoth | 4775255 | 2014-10-13 17:15:08 -0700 | [diff] [blame] | 923 | Dest->dump(this); |
| 924 | Str << " live range " << Dest->getLiveRange() << "\n"; |
| 925 | } |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 926 | } |
| 927 | } |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 928 | FOREACH_VAR_IN_INST(Var, Instr) { |
John Porto | ec3f565 | 2015-08-31 15:07:09 -0700 | [diff] [blame] | 929 | static constexpr bool IsDest = false; |
| 930 | if (!Var->getIgnoreLiveness() && |
| 931 | !Var->getLiveRange().containsValue(InstNumber, IsDest)) { |
| 932 | Valid = false; |
Jim Stichnoth | 8cfeb69 | 2016-02-05 09:50:02 -0800 | [diff] [blame] | 933 | Str << "Liveness error: inst " << Instr.getNumber() << " var "; |
John Porto | ec3f565 | 2015-08-31 15:07:09 -0700 | [diff] [blame] | 934 | Var->dump(this); |
| 935 | Str << " live range " << Var->getLiveRange() << "\n"; |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 936 | } |
| 937 | } |
| 938 | } |
| 939 | } |
| 940 | return Valid; |
| 941 | } |
| 942 | |
Jim Stichnoth | 336f6c4 | 2014-10-30 15:01:31 -0700 | [diff] [blame] | 943 | void Cfg::contractEmptyNodes() { |
Andrew Scull | aa6c109 | 2015-09-03 17:50:30 -0700 | [diff] [blame] | 944 | // If we're decorating the asm output with register liveness info, this |
| 945 | // information may become corrupted or incorrect after contracting nodes that |
| 946 | // contain only redundant assignments. As such, we disable this pass when |
| 947 | // DecorateAsm is specified. This may make the resulting code look more |
| 948 | // branchy, but it should have no effect on the register assignments. |
Karl Schimpf | df80eb8 | 2015-02-09 14:20:22 -0800 | [diff] [blame] | 949 | if (Ctx->getFlags().getDecorateAsm()) |
Jim Stichnoth | 3d44fe8 | 2014-11-01 10:10:18 -0700 | [diff] [blame] | 950 | return; |
Jim Stichnoth | 336f6c4 | 2014-10-30 15:01:31 -0700 | [diff] [blame] | 951 | for (CfgNode *Node : Nodes) { |
| 952 | Node->contractIfEmpty(); |
| 953 | } |
| 954 | } |
| 955 | |
Jim Stichnoth | ff9c706 | 2014-09-18 04:50:49 -0700 | [diff] [blame] | 956 | void Cfg::doBranchOpt() { |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 957 | TimerMarker T(TimerStack::TT_doBranchOpt, this); |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 958 | for (auto I = Nodes.begin(), E = Nodes.end(); I != E; ++I) { |
Andrew Scull | 713278a | 2015-07-22 17:17:02 -0700 | [diff] [blame] | 959 | auto NextNode = I + 1; |
Jim Stichnoth | ae95320 | 2014-12-20 06:17:49 -0800 | [diff] [blame] | 960 | (*I)->doBranchOpt(NextNode == E ? nullptr : *NextNode); |
Jim Stichnoth | ff9c706 | 2014-09-18 04:50:49 -0700 | [diff] [blame] | 961 | } |
| 962 | } |
| 963 | |
Andrew Scull | 86df4e9 | 2015-07-30 13:54:44 -0700 | [diff] [blame] | 964 | void Cfg::markNodesForSandboxing() { |
| 965 | for (const InstJumpTable *JT : JumpTables) |
| 966 | for (SizeT I = 0; I < JT->getNumTargets(); ++I) |
| 967 | JT->getTarget(I)->setNeedsAlignment(); |
| 968 | } |
| 969 | |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 970 | // ======================== Dump routines ======================== // |
| 971 | |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 972 | // emitTextHeader() is not target-specific (apart from what is abstracted by |
| 973 | // the Assembler), so it is defined here rather than in the target lowering |
| 974 | // class. |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 975 | void Cfg::emitTextHeader(const IceString &MangledName, GlobalContext *Ctx, |
| 976 | const Assembler *Asm) { |
Jim Stichnoth | 20b71f5 | 2015-06-24 15:52:24 -0700 | [diff] [blame] | 977 | if (!BuildDefs::dump()) |
Jim Stichnoth | 729dbd0 | 2015-02-25 14:48:43 -0800 | [diff] [blame] | 978 | return; |
Jan Voung | 0faec4c | 2014-11-05 17:29:56 -0800 | [diff] [blame] | 979 | Ostream &Str = Ctx->getStrEmit(); |
| 980 | Str << "\t.text\n"; |
Karl Schimpf | df80eb8 | 2015-02-09 14:20:22 -0800 | [diff] [blame] | 981 | if (Ctx->getFlags().getFunctionSections()) |
John Porto | afc92af | 2015-10-16 10:34:04 -0700 | [diff] [blame] | 982 | Str << "\t.section\t.text." << MangledName << ",\"ax\",%progbits\n"; |
Jim Stichnoth | bbca754 | 2015-02-11 16:08:31 -0800 | [diff] [blame] | 983 | if (!Asm->getInternal() || Ctx->getFlags().getDisableInternal()) { |
Jan Voung | 0faec4c | 2014-11-05 17:29:56 -0800 | [diff] [blame] | 984 | Str << "\t.globl\t" << MangledName << "\n"; |
Jan Voung | b2d5084 | 2015-05-12 09:53:50 -0700 | [diff] [blame] | 985 | Str << "\t.type\t" << MangledName << ",%function\n"; |
Jan Voung | 0faec4c | 2014-11-05 17:29:56 -0800 | [diff] [blame] | 986 | } |
Andrew Scull | 86df4e9 | 2015-07-30 13:54:44 -0700 | [diff] [blame] | 987 | Str << "\t" << Asm->getAlignDirective() << " " |
Jan Voung | b2d5084 | 2015-05-12 09:53:50 -0700 | [diff] [blame] | 988 | << Asm->getBundleAlignLog2Bytes() << ",0x"; |
Jan Voung | 08c3bcd | 2014-12-01 17:55:16 -0800 | [diff] [blame] | 989 | for (uint8_t I : Asm->getNonExecBundlePadding()) |
Jan Voung | 0faec4c | 2014-11-05 17:29:56 -0800 | [diff] [blame] | 990 | Str.write_hex(I); |
| 991 | Str << "\n"; |
| 992 | Str << MangledName << ":\n"; |
| 993 | } |
| 994 | |
Andrew Scull | 86df4e9 | 2015-07-30 13:54:44 -0700 | [diff] [blame] | 995 | void Cfg::deleteJumpTableInsts() { |
| 996 | for (InstJumpTable *JumpTable : JumpTables) |
| 997 | JumpTable->setDeleted(); |
| 998 | } |
| 999 | |
| 1000 | void Cfg::emitJumpTables() { |
| 1001 | switch (Ctx->getFlags().getOutFileType()) { |
| 1002 | case FT_Elf: |
| 1003 | case FT_Iasm: { |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 1004 | // The emission needs to be delayed until the after the text section so |
| 1005 | // save the offsets in the global context. |
Andrew Scull | 86df4e9 | 2015-07-30 13:54:44 -0700 | [diff] [blame] | 1006 | IceString MangledName = Ctx->mangleName(getFunctionName()); |
| 1007 | for (const InstJumpTable *JumpTable : JumpTables) { |
| 1008 | SizeT NumTargets = JumpTable->getNumTargets(); |
David Sehr | 0fe6b54 | 2015-11-19 21:47:15 -0800 | [diff] [blame] | 1009 | JumpTableData::TargetList TargetList; |
Andrew Scull | 86df4e9 | 2015-07-30 13:54:44 -0700 | [diff] [blame] | 1010 | for (SizeT I = 0; I < NumTargets; ++I) { |
| 1011 | SizeT Index = JumpTable->getTarget(I)->getIndex(); |
David Sehr | 0fe6b54 | 2015-11-19 21:47:15 -0800 | [diff] [blame] | 1012 | TargetList.emplace_back( |
| 1013 | getAssembler()->getCfgNodeLabel(Index)->getPosition()); |
Andrew Scull | 86df4e9 | 2015-07-30 13:54:44 -0700 | [diff] [blame] | 1014 | } |
David Sehr | 0fe6b54 | 2015-11-19 21:47:15 -0800 | [diff] [blame] | 1015 | Ctx->addJumpTable(MangledName, JumpTable->getId(), TargetList); |
Andrew Scull | 86df4e9 | 2015-07-30 13:54:44 -0700 | [diff] [blame] | 1016 | } |
| 1017 | } break; |
| 1018 | case FT_Asm: { |
| 1019 | // Emit the assembly directly so we don't need to hang on to all the names |
| 1020 | for (const InstJumpTable *JumpTable : JumpTables) |
| 1021 | getTarget()->emitJumpTable(this, JumpTable); |
| 1022 | } break; |
Andrew Scull | 86df4e9 | 2015-07-30 13:54:44 -0700 | [diff] [blame] | 1023 | } |
| 1024 | } |
| 1025 | |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 1026 | void Cfg::emit() { |
Jim Stichnoth | 20b71f5 | 2015-06-24 15:52:24 -0700 | [diff] [blame] | 1027 | if (!BuildDefs::dump()) |
Karl Schimpf | b6c96af | 2014-11-17 10:58:39 -0800 | [diff] [blame] | 1028 | return; |
Jim Stichnoth | 8363a06 | 2014-10-07 10:02:38 -0700 | [diff] [blame] | 1029 | TimerMarker T(TimerStack::TT_emit, this); |
Karl Schimpf | df80eb8 | 2015-02-09 14:20:22 -0800 | [diff] [blame] | 1030 | if (Ctx->getFlags().getDecorateAsm()) { |
Jim Stichnoth | 3d44fe8 | 2014-11-01 10:10:18 -0700 | [diff] [blame] | 1031 | renumberInstructions(); |
| 1032 | getVMetadata()->init(VMK_Uses); |
| 1033 | liveness(Liveness_Basic); |
| 1034 | dump("After recomputing liveness for -decorate-asm"); |
| 1035 | } |
Jim Stichnoth | e4a8f40 | 2015-01-20 12:52:51 -0800 | [diff] [blame] | 1036 | OstreamLocker L(Ctx); |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 1037 | Ostream &Str = Ctx->getStrEmit(); |
Andrew Scull | 86df4e9 | 2015-07-30 13:54:44 -0700 | [diff] [blame] | 1038 | IceString MangledName = Ctx->mangleName(getFunctionName()); |
| 1039 | const Assembler *Asm = getAssembler<>(); |
| 1040 | const bool NeedSandboxing = Ctx->getFlags().getUseSandboxing(); |
| 1041 | |
| 1042 | emitTextHeader(MangledName, Ctx, Asm); |
| 1043 | deleteJumpTableInsts(); |
Jim Stichnoth | 238b4c1 | 2015-10-01 07:46:38 -0700 | [diff] [blame] | 1044 | if (Ctx->getFlags().getDecorateAsm()) { |
| 1045 | for (Variable *Var : getVariables()) { |
Jim Stichnoth | 3607b6c | 2015-11-13 14:28:23 -0800 | [diff] [blame] | 1046 | if (Var->getStackOffset() && !Var->isRematerializable()) { |
Jim Stichnoth | 238b4c1 | 2015-10-01 07:46:38 -0700 | [diff] [blame] | 1047 | Str << "\t" << Var->getSymbolicStackOffset(this) << " = " |
| 1048 | << Var->getStackOffset() << "\n"; |
| 1049 | } |
| 1050 | } |
| 1051 | } |
Andrew Scull | 86df4e9 | 2015-07-30 13:54:44 -0700 | [diff] [blame] | 1052 | for (CfgNode *Node : Nodes) { |
| 1053 | if (NeedSandboxing && Node->needsAlignment()) { |
| 1054 | Str << "\t" << Asm->getAlignDirective() << " " |
| 1055 | << Asm->getBundleAlignLog2Bytes() << "\n"; |
| 1056 | } |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 1057 | Node->emit(this); |
Andrew Scull | 86df4e9 | 2015-07-30 13:54:44 -0700 | [diff] [blame] | 1058 | } |
| 1059 | emitJumpTables(); |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 1060 | Str << "\n"; |
Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 1061 | } |
| 1062 | |
Jan Voung | 0faec4c | 2014-11-05 17:29:56 -0800 | [diff] [blame] | 1063 | void Cfg::emitIAS() { |
| 1064 | TimerMarker T(TimerStack::TT_emit, this); |
Andrew Scull | 57e1268 | 2015-09-16 11:30:19 -0700 | [diff] [blame] | 1065 | // The emitIAS() routines emit into the internal assembler buffer, so there's |
| 1066 | // no need to lock the streams. |
Andrew Scull | 86df4e9 | 2015-07-30 13:54:44 -0700 | [diff] [blame] | 1067 | deleteJumpTableInsts(); |
| 1068 | const bool NeedSandboxing = Ctx->getFlags().getUseSandboxing(); |
| 1069 | for (CfgNode *Node : Nodes) { |
| 1070 | if (NeedSandboxing && Node->needsAlignment()) |
| 1071 | getAssembler()->alignCfgNode(); |
Jan Voung | 0faec4c | 2014-11-05 17:29:56 -0800 | [diff] [blame] | 1072 | Node->emitIAS(this); |
Andrew Scull | 86df4e9 | 2015-07-30 13:54:44 -0700 | [diff] [blame] | 1073 | } |
| 1074 | emitJumpTables(); |
Jan Voung | 0faec4c | 2014-11-05 17:29:56 -0800 | [diff] [blame] | 1075 | } |
| 1076 | |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 1077 | // Dumps the IR with an optional introductory message. |
| 1078 | void Cfg::dump(const IceString &Message) { |
Jim Stichnoth | 20b71f5 | 2015-06-24 15:52:24 -0700 | [diff] [blame] | 1079 | if (!BuildDefs::dump()) |
Karl Schimpf | b6c96af | 2014-11-17 10:58:39 -0800 | [diff] [blame] | 1080 | return; |
Jim Stichnoth | fa4efea | 2015-01-27 05:06:03 -0800 | [diff] [blame] | 1081 | if (!isVerbose()) |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 1082 | return; |
Jim Stichnoth | e4a8f40 | 2015-01-20 12:52:51 -0800 | [diff] [blame] | 1083 | OstreamLocker L(Ctx); |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 1084 | Ostream &Str = Ctx->getStrDump(); |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 1085 | if (!Message.empty()) |
| 1086 | Str << "================ " << Message << " ================\n"; |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 1087 | setCurrentNode(getEntryNode()); |
| 1088 | // Print function name+args |
Jim Stichnoth | fa4efea | 2015-01-27 05:06:03 -0800 | [diff] [blame] | 1089 | if (isVerbose(IceV_Instructions)) { |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 1090 | Str << "define "; |
Karl Schimpf | df80eb8 | 2015-02-09 14:20:22 -0800 | [diff] [blame] | 1091 | if (getInternal() && !Ctx->getFlags().getDisableInternal()) |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 1092 | Str << "internal "; |
Karl Schimpf | df6f9d1 | 2014-10-20 14:09:00 -0700 | [diff] [blame] | 1093 | Str << ReturnType << " @" << Ctx->mangleName(getFunctionName()) << "("; |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 1094 | for (SizeT i = 0; i < Args.size(); ++i) { |
| 1095 | if (i > 0) |
| 1096 | Str << ", "; |
| 1097 | Str << Args[i]->getType() << " "; |
| 1098 | Args[i]->dump(this); |
| 1099 | } |
Jim Stichnoth | b40595a | 2016-01-29 06:14:31 -0800 | [diff] [blame] | 1100 | // Append an extra copy of the function name here, in order to print its |
| 1101 | // size stats but not mess up lit tests. |
| 1102 | Str << ") { # " << getFunctionNameAndSize() << "\n"; |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 1103 | } |
Jim Stichnoth | 800dab2 | 2014-09-20 12:25:02 -0700 | [diff] [blame] | 1104 | resetCurrentNode(); |
Jim Stichnoth | fa4efea | 2015-01-27 05:06:03 -0800 | [diff] [blame] | 1105 | if (isVerbose(IceV_Liveness)) { |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 1106 | // Print summary info about variables |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 1107 | for (Variable *Var : Variables) { |
Jim Stichnoth | 144cdce | 2014-09-22 16:02:59 -0700 | [diff] [blame] | 1108 | Str << "// multiblock="; |
| 1109 | if (getVMetadata()->isTracked(Var)) |
| 1110 | Str << getVMetadata()->isMultiBlock(Var); |
| 1111 | else |
| 1112 | Str << "?"; |
Jim Stichnoth | 48e3ae5 | 2015-10-01 13:33:35 -0700 | [diff] [blame] | 1113 | Str << " defs="; |
| 1114 | bool FirstPrint = true; |
| 1115 | if (VMetadata->getKind() != VMK_Uses) { |
| 1116 | if (const Inst *FirstDef = VMetadata->getFirstDefinition(Var)) { |
| 1117 | Str << FirstDef->getNumber(); |
| 1118 | FirstPrint = false; |
| 1119 | } |
| 1120 | } |
| 1121 | if (VMetadata->getKind() == VMK_All) { |
| 1122 | for (const Inst *Instr : VMetadata->getLatterDefinitions(Var)) { |
| 1123 | if (!FirstPrint) |
| 1124 | Str << ","; |
| 1125 | Str << Instr->getNumber(); |
| 1126 | FirstPrint = false; |
| 1127 | } |
| 1128 | } |
Andrew Scull | 11c9a32 | 2015-08-28 14:24:14 -0700 | [diff] [blame] | 1129 | Str << " weight=" << Var->getWeight(this) << " "; |
Jim Stichnoth | d97c7df | 2014-06-04 11:57:08 -0700 | [diff] [blame] | 1130 | Var->dump(this); |
| 1131 | Str << " LIVE=" << Var->getLiveRange() << "\n"; |
| 1132 | } |
| 1133 | } |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 1134 | // Print each basic block |
Jim Stichnoth | f44f371 | 2014-10-01 14:05:51 -0700 | [diff] [blame] | 1135 | for (CfgNode *Node : Nodes) |
| 1136 | Node->dump(this); |
Jim Stichnoth | fa4efea | 2015-01-27 05:06:03 -0800 | [diff] [blame] | 1137 | if (isVerbose(IceV_Instructions)) |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 1138 | Str << "}\n"; |
Jim Stichnoth | f7c9a14 | 2014-04-29 10:52:43 -0700 | [diff] [blame] | 1139 | } |
| 1140 | |
| 1141 | } // end of namespace Ice |