blob: 9b10c8d905db142fe3a2a4ad96ae704fe5f987ea [file] [log] [blame]
Dan Gohman10e730a2015-06-29 23:51:55 +00001//===- WebAssemblyTargetMachine.cpp - Define TargetMachine for WebAssembly -==//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Dan Gohman10e730a2015-06-29 23:51:55 +00006//
7//===----------------------------------------------------------------------===//
8///
9/// \file
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000010/// This file defines the WebAssembly-specific subclass of TargetMachine.
Dan Gohman10e730a2015-06-29 23:51:55 +000011///
12//===----------------------------------------------------------------------===//
13
Dan Gohman10e730a2015-06-29 23:51:55 +000014#include "WebAssemblyTargetMachine.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000015#include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
16#include "WebAssembly.h"
Dan Gohman5bf22fc2015-12-17 04:55:44 +000017#include "WebAssemblyTargetObjectFile.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000018#include "WebAssemblyTargetTransformInfo.h"
19#include "llvm/CodeGen/MachineFunctionPass.h"
20#include "llvm/CodeGen/Passes.h"
21#include "llvm/CodeGen/RegAllocRegistry.h"
Matthias Braun31d19d42016-05-10 03:21:59 +000022#include "llvm/CodeGen/TargetPassConfig.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000023#include "llvm/IR/Function.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000024#include "llvm/Support/TargetRegistry.h"
25#include "llvm/Target/TargetOptions.h"
JF Bastien03855df2015-07-01 23:41:25 +000026#include "llvm/Transforms/Scalar.h"
David Blaikiea373d182018-03-28 17:44:36 +000027#include "llvm/Transforms/Utils.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000028using namespace llvm;
29
30#define DEBUG_TYPE "wasm"
31
Derek Schufff41f67d2016-08-01 21:34:04 +000032// Emscripten's asm.js-style exception handling
Derek Schuffccdceda2016-08-18 15:27:25 +000033static cl::opt<bool> EnableEmException(
Derek Schuff53b9af02016-08-09 00:29:55 +000034 "enable-emscripten-cxx-exceptions",
Derek Schufff41f67d2016-08-01 21:34:04 +000035 cl::desc("WebAssembly Emscripten-style exception handling"),
36 cl::init(false));
37
Derek Schuffccdceda2016-08-18 15:27:25 +000038// Emscripten's asm.js-style setjmp/longjmp handling
39static cl::opt<bool> EnableEmSjLj(
40 "enable-emscripten-sjlj",
41 cl::desc("WebAssembly Emscripten-style setjmp/longjmp handling"),
42 cl::init(false));
43
Dan Gohman10e730a2015-06-29 23:51:55 +000044extern "C" void LLVMInitializeWebAssemblyTarget() {
45 // Register the target.
Mehdi Aminif42454b2016-10-09 23:00:34 +000046 RegisterTargetMachine<WebAssemblyTargetMachine> X(
47 getTheWebAssemblyTarget32());
48 RegisterTargetMachine<WebAssemblyTargetMachine> Y(
49 getTheWebAssemblyTarget64());
Derek Schufff41f67d2016-08-01 21:34:04 +000050
Jacob Gravelle40926452018-03-30 20:36:58 +000051 // Register backend passes
52 auto &PR = *PassRegistry::getPassRegistry();
Sam Clegg92617552018-07-11 04:29:36 +000053 initializeWebAssemblyAddMissingPrototypesPass(PR);
Jacob Gravelle40926452018-03-30 20:36:58 +000054 initializeWebAssemblyLowerEmscriptenEHSjLjPass(PR);
55 initializeLowerGlobalDtorsPass(PR);
56 initializeFixFunctionBitcastsPass(PR);
57 initializeOptimizeReturnedPass(PR);
58 initializeWebAssemblyArgumentMovePass(PR);
59 initializeWebAssemblySetP2AlignOperandsPass(PR);
60 initializeWebAssemblyReplacePhysRegsPass(PR);
61 initializeWebAssemblyPrepareForLiveIntervalsPass(PR);
62 initializeWebAssemblyOptimizeLiveIntervalsPass(PR);
Heejin Ahn321d5222019-01-08 22:35:18 +000063 initializeWebAssemblyMemIntrinsicResultsPass(PR);
Jacob Gravelle40926452018-03-30 20:36:58 +000064 initializeWebAssemblyRegStackifyPass(PR);
65 initializeWebAssemblyRegColoringPass(PR);
66 initializeWebAssemblyExplicitLocalsPass(PR);
67 initializeWebAssemblyFixIrreducibleControlFlowPass(PR);
Heejin Ahn4934f762018-06-25 01:07:11 +000068 initializeWebAssemblyLateEHPreparePass(PR);
Heejin Ahn04c48942018-06-25 01:20:21 +000069 initializeWebAssemblyExceptionInfoPass(PR);
Jacob Gravelle40926452018-03-30 20:36:58 +000070 initializeWebAssemblyCFGSortPass(PR);
71 initializeWebAssemblyCFGStackifyPass(PR);
72 initializeWebAssemblyLowerBrUnlessPass(PR);
73 initializeWebAssemblyRegNumberingPass(PR);
74 initializeWebAssemblyPeepholePass(PR);
75 initializeWebAssemblyCallIndirectFixupPass(PR);
Dan Gohman10e730a2015-06-29 23:51:55 +000076}
77
78//===----------------------------------------------------------------------===//
79// WebAssembly Lowering public interface.
80//===----------------------------------------------------------------------===//
81
Dan Gohman41133a32016-05-19 03:00:05 +000082static Reloc::Model getEffectiveRelocModel(Optional<Reloc::Model> RM) {
Sam Clegg74f5fd42018-11-16 18:59:51 +000083 if (!RM.hasValue()) {
84 // Default to static relocation model. This should always be more optimial
85 // than PIC since the static linker can determine all global addresses and
86 // assume direct function calls.
87 return Reloc::Static;
88 }
Dan Gohman41133a32016-05-19 03:00:05 +000089 return *RM;
90}
91
Dan Gohman10e730a2015-06-29 23:51:55 +000092/// Create an WebAssembly architecture model.
93///
94WebAssemblyTargetMachine::WebAssemblyTargetMachine(
95 const Target &T, const Triple &TT, StringRef CPU, StringRef FS,
Dan Gohman41133a32016-05-19 03:00:05 +000096 const TargetOptions &Options, Optional<Reloc::Model> RM,
Daniel Jasper314ed202017-08-03 05:15:53 +000097 Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT)
Matthias Braunbb8507e2017-10-12 22:57:28 +000098 : LLVMTargetMachine(T,
99 TT.isArch64Bit() ? "e-m:e-p:64:64-i64:64-n32:64-S128"
100 : "e-m:e-p:32:32-i64:64-n32:64-S128",
101 TT, CPU, FS, Options, getEffectiveRelocModel(RM),
David Greenca29c272018-12-07 12:10:23 +0000102 getEffectiveCodeModel(CM, CodeModel::Large), OL),
Sam Cleggcf2a9e22018-07-16 23:09:29 +0000103 TLOF(new WebAssemblyTargetObjectFile()) {
Dan Gohmane0405332016-10-03 22:43:53 +0000104 // WebAssembly type-checks instructions, but a noreturn function with a return
Derek Schuffffa143c2015-11-10 00:30:57 +0000105 // type that doesn't match the context will cause a check failure. So we lower
106 // LLVM 'unreachable' to ISD::TRAP and then lower that to WebAssembly's
Dan Gohmane0405332016-10-03 22:43:53 +0000107 // 'unreachable' instructions which is meant for that case.
Derek Schuffffa143c2015-11-10 00:30:57 +0000108 this->Options.TrapUnreachable = true;
109
Dan Gohmand934cb82017-02-24 23:18:00 +0000110 // WebAssembly treats each function as an independent unit. Force
111 // -ffunction-sections, effectively, so that we can emit them independently.
Sam Cleggcf2a9e22018-07-16 23:09:29 +0000112 this->Options.FunctionSections = true;
113 this->Options.DataSections = true;
114 this->Options.UniqueSectionNames = true;
Dan Gohmand934cb82017-02-24 23:18:00 +0000115
Dan Gohman10e730a2015-06-29 23:51:55 +0000116 initAsmInfo();
117
Thomas Livelyf3b4f992019-02-28 18:39:08 +0000118 // Create a subtarget using the unmodified target machine features to
119 // initialize the used feature set with explicitly enabled features.
120 getSubtargetImpl(getTargetCPU(), getTargetFeatureString());
121
Dan Gohmand85ab7f2016-02-18 06:32:53 +0000122 // Note that we don't use setRequiresStructuredCFG(true). It disables
123 // optimizations than we're ok with, and want, such as critical edge
124 // splitting and tail merging.
Dan Gohman10e730a2015-06-29 23:51:55 +0000125}
126
Heejin Ahn18c56a02019-02-04 19:13:39 +0000127WebAssemblyTargetMachine::~WebAssemblyTargetMachine() = default; // anchor.
Dan Gohman10e730a2015-06-29 23:51:55 +0000128
129const WebAssemblySubtarget *
Thomas Livelyf3b4f992019-02-28 18:39:08 +0000130WebAssemblyTargetMachine::getSubtargetImpl(std::string CPU,
131 std::string FS) const {
132 auto &I = SubtargetMap[CPU + FS];
133 if (!I) {
134 I = llvm::make_unique<WebAssemblySubtarget>(TargetTriple, CPU, FS, *this);
135 UsedFeatures |= I->getFeatureBits();
136 }
137 return I.get();
138}
139
140const WebAssemblySubtarget *
Dan Gohman10e730a2015-06-29 23:51:55 +0000141WebAssemblyTargetMachine::getSubtargetImpl(const Function &F) const {
142 Attribute CPUAttr = F.getFnAttribute("target-cpu");
143 Attribute FSAttr = F.getFnAttribute("target-features");
144
145 std::string CPU = !CPUAttr.hasAttribute(Attribute::None)
146 ? CPUAttr.getValueAsString().str()
147 : TargetCPU;
148 std::string FS = !FSAttr.hasAttribute(Attribute::None)
149 ? FSAttr.getValueAsString().str()
150 : TargetFS;
151
Thomas Livelyf3b4f992019-02-28 18:39:08 +0000152 // This needs to be done before we create a new subtarget since any
153 // creation will depend on the TM and the code generation flags on the
154 // function that reside in TargetOptions.
155 resetTargetOptions(F);
156
157 return getSubtargetImpl(CPU, FS);
Dan Gohman10e730a2015-06-29 23:51:55 +0000158}
159
160namespace {
Derek Schuff39b53672018-03-20 22:01:32 +0000161class StripThreadLocal final : public ModulePass {
162 // The default thread model for wasm is single, where thread-local variables
163 // are identical to regular globals and should be treated the same. So this
164 // pass just converts all GlobalVariables to NotThreadLocal
165 static char ID;
166
Heejin Ahnf208f632018-09-05 01:27:38 +0000167public:
Derek Schuff39b53672018-03-20 22:01:32 +0000168 StripThreadLocal() : ModulePass(ID) {}
169 bool runOnModule(Module &M) override {
170 for (auto &GV : M.globals())
171 GV.setThreadLocalMode(GlobalValue::ThreadLocalMode::NotThreadLocal);
172 return true;
173 }
174};
175char StripThreadLocal::ID = 0;
176
Dan Gohman10e730a2015-06-29 23:51:55 +0000177/// WebAssembly Code Generator Pass Configuration Options.
178class WebAssemblyPassConfig final : public TargetPassConfig {
179public:
Matthias Braun5e394c32017-05-30 21:36:41 +0000180 WebAssemblyPassConfig(WebAssemblyTargetMachine &TM, PassManagerBase &PM)
Dan Gohman10e730a2015-06-29 23:51:55 +0000181 : TargetPassConfig(TM, PM) {}
182
183 WebAssemblyTargetMachine &getWebAssemblyTargetMachine() const {
184 return getTM<WebAssemblyTargetMachine>();
185 }
186
187 FunctionPass *createTargetRegisterAllocator(bool) override;
Dan Gohman10e730a2015-06-29 23:51:55 +0000188
189 void addIRPasses() override;
Dan Gohman10e730a2015-06-29 23:51:55 +0000190 bool addInstSelector() override;
Dan Gohman10e730a2015-06-29 23:51:55 +0000191 void addPostRegAlloc() override;
Derek Schuffad154c82016-03-28 17:05:30 +0000192 bool addGCPasses() override { return false; }
Dan Gohman10e730a2015-06-29 23:51:55 +0000193 void addPreEmitPass() override;
194};
195} // end anonymous namespace
196
Sanjoy Das26d11ca2017-12-22 18:21:59 +0000197TargetTransformInfo
198WebAssemblyTargetMachine::getTargetTransformInfo(const Function &F) {
199 return TargetTransformInfo(WebAssemblyTTIImpl(this, F));
Dan Gohman10e730a2015-06-29 23:51:55 +0000200}
201
202TargetPassConfig *
203WebAssemblyTargetMachine::createPassConfig(PassManagerBase &PM) {
Matthias Braun5e394c32017-05-30 21:36:41 +0000204 return new WebAssemblyPassConfig(*this, PM);
Dan Gohman10e730a2015-06-29 23:51:55 +0000205}
206
207FunctionPass *WebAssemblyPassConfig::createTargetRegisterAllocator(bool) {
208 return nullptr; // No reg alloc
209}
210
Dan Gohman10e730a2015-06-29 23:51:55 +0000211//===----------------------------------------------------------------------===//
212// The following functions are called from lib/CodeGen/Passes.cpp to modify
213// the CodeGen pass sequence.
214//===----------------------------------------------------------------------===//
215
216void WebAssemblyPassConfig::addIRPasses() {
Thomas Livelyf3b4f992019-02-28 18:39:08 +0000217 if (static_cast<WebAssemblyTargetMachine *>(TM)
218 ->getUsedFeatures()[WebAssembly::FeatureAtomics]) {
JF Bastien03855df2015-07-01 23:41:25 +0000219 // Expand some atomic operations. WebAssemblyTargetLowering has hooks which
220 // control specifically what gets lowered.
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +0000221 addPass(createAtomicExpandPass());
Thomas Livelyf3b4f992019-02-28 18:39:08 +0000222 } else {
223 // If atomics are not enabled, they get lowered to non-atomics.
224 addPass(createLowerAtomicPass());
225 addPass(new StripThreadLocal());
Derek Schuff39b53672018-03-20 22:01:32 +0000226 }
Dan Gohman10e730a2015-06-29 23:51:55 +0000227
Sam Clegg92617552018-07-11 04:29:36 +0000228 // Add signatures to prototype-less function declarations
229 addPass(createWebAssemblyAddMissingPrototypes());
230
Sam Cleggbafe6902017-12-15 00:17:10 +0000231 // Lower .llvm.global_dtors into .llvm_global_ctors with __cxa_atexit calls.
232 addPass(createWebAssemblyLowerGlobalDtors());
233
Dan Gohman1b637452017-01-07 00:34:54 +0000234 // Fix function bitcasts, as WebAssembly requires caller and callee signatures
235 // to match.
236 addPass(createWebAssemblyFixFunctionBitcasts());
237
Dan Gohman81719f82015-11-25 16:55:01 +0000238 // Optimize "returned" function attributes.
Dan Gohmanb13c91f2016-01-19 14:55:02 +0000239 if (getOptLevel() != CodeGenOpt::None)
240 addPass(createWebAssemblyOptimizeReturned());
Dan Gohman81719f82015-11-25 16:55:01 +0000241
Heejin Ahnc0f18172016-09-01 21:05:15 +0000242 // If exception handling is not enabled and setjmp/longjmp handling is
243 // enabled, we lower invokes into calls and delete unreachable landingpad
244 // blocks. Lowering invokes when there is no EH support is done in
245 // TargetPassConfig::addPassesToHandleExceptions, but this runs after this
246 // function and SjLj handling expects all invokes to be lowered before.
Heejin Ahn9386bde2018-02-24 00:40:50 +0000247 if (!EnableEmException &&
248 TM->Options.ExceptionModel == ExceptionHandling::None) {
Heejin Ahnc0f18172016-09-01 21:05:15 +0000249 addPass(createLowerInvokePass());
250 // The lower invoke pass may create unreachable code. Remove it in order not
251 // to process dead blocks in setjmp/longjmp handling.
252 addPass(createUnreachableBlockEliminationPass());
253 }
254
255 // Handle exceptions and setjmp/longjmp if enabled.
Derek Schuffccdceda2016-08-18 15:27:25 +0000256 if (EnableEmException || EnableEmSjLj)
257 addPass(createWebAssemblyLowerEmscriptenEHSjLj(EnableEmException,
258 EnableEmSjLj));
Derek Schufff41f67d2016-08-01 21:34:04 +0000259
Dan Gohman10e730a2015-06-29 23:51:55 +0000260 TargetPassConfig::addIRPasses();
261}
262
Dan Gohman10e730a2015-06-29 23:51:55 +0000263bool WebAssemblyPassConfig::addInstSelector() {
Dan Gohmanb0921ca2015-12-05 19:24:17 +0000264 (void)TargetPassConfig::addInstSelector();
Dan Gohman10e730a2015-06-29 23:51:55 +0000265 addPass(
266 createWebAssemblyISelDag(getWebAssemblyTargetMachine(), getOptLevel()));
Dan Gohman1cf96c02015-12-09 16:23:59 +0000267 // Run the argument-move pass immediately after the ScheduleDAG scheduler
268 // so that we can fix up the ARGUMENT instructions before anything else
269 // sees them in the wrong place.
270 addPass(createWebAssemblyArgumentMove());
Dan Gohmanbb372242016-01-26 03:39:31 +0000271 // Set the p2align operands. This information is present during ISel, however
272 // it's inconvenient to collect. Collect it now, and update the immediate
273 // operands.
274 addPass(createWebAssemblySetP2AlignOperands());
Dan Gohman10e730a2015-06-29 23:51:55 +0000275 return false;
276}
277
JF Bastien600aee92015-07-31 17:53:38 +0000278void WebAssemblyPassConfig::addPostRegAlloc() {
Dan Gohman9c54d3b2015-11-25 18:13:18 +0000279 // TODO: The following CodeGen passes don't currently support code containing
280 // virtual registers. Consider removing their restrictions and re-enabling
281 // them.
Derek Schuffad154c82016-03-28 17:05:30 +0000282
Matthias Braun1eb47362016-08-25 01:27:13 +0000283 // These functions all require the NoVRegs property.
JF Bastien600aee92015-07-31 17:53:38 +0000284 disablePass(&MachineCopyPropagationID);
Jun Bum Lim7ab1b322018-04-03 18:17:34 +0000285 disablePass(&PostRAMachineSinkingID);
Derek Schuffecabac62016-03-28 22:52:20 +0000286 disablePass(&PostRASchedulerID);
287 disablePass(&FuncletLayoutID);
288 disablePass(&StackMapLivenessID);
289 disablePass(&LiveDebugValuesID);
Sanjoy Dasfe71ec72016-04-19 06:24:58 +0000290 disablePass(&PatchableFunctionID);
Jun Bum Lim7ab1b322018-04-03 18:17:34 +0000291 disablePass(&ShrinkWrapID);
Dan Gohman950a13c2015-09-16 16:51:30 +0000292
Heejin Ahnef9d6ae2019-03-05 20:35:34 +0000293 // This pass hurts code size for wasm because it can generate irreducible
294 // control flow.
295 disablePass(&MachineBlockPlacementID);
296
Dan Gohmanb0921ca2015-12-05 19:24:17 +0000297 TargetPassConfig::addPostRegAlloc();
JF Bastien600aee92015-07-31 17:53:38 +0000298}
Dan Gohman10e730a2015-06-29 23:51:55 +0000299
Dan Gohman950a13c2015-09-16 16:51:30 +0000300void WebAssemblyPassConfig::addPreEmitPass() {
Dan Gohmanb0921ca2015-12-05 19:24:17 +0000301 TargetPassConfig::addPreEmitPass();
Dan Gohman05ac43f2015-12-17 01:39:00 +0000302
Derek Schuff6f697832016-10-21 16:38:07 +0000303 // Rewrite pseudo call_indirect instructions as real instructions.
304 // This needs to run before register stackification, because we change the
305 // order of the arguments.
306 addPass(createWebAssemblyCallIndirectFixup());
307
Heejin Ahne95056d2019-01-08 01:25:12 +0000308 // Eliminate multiple-entry loops.
309 addPass(createWebAssemblyFixIrreducibleControlFlow());
310
311 // Do various transformations for exception handling.
Heejin Ahnd6f48782019-01-30 03:21:57 +0000312 // Every CFG-changing optimizations should come before this.
Heejin Ahne95056d2019-01-08 01:25:12 +0000313 addPass(createWebAssemblyLateEHPrepare());
314
Heejin Ahn0bb98652019-01-30 22:44:45 +0000315 // Now that we have a prologue and epilogue and all frame indices are
316 // rewritten, eliminate SP and FP. This allows them to be stackified,
317 // colored, and numbered with the rest of the registers.
318 addPass(createWebAssemblyReplacePhysRegs());
319
Heejin Ahnd6f48782019-01-30 03:21:57 +0000320 // Preparations and optimizations related to register stackification.
Dan Gohman0cfb5f82016-05-10 04:24:02 +0000321 if (getOptLevel() != CodeGenOpt::None) {
322 // LiveIntervals isn't commonly run this late. Re-establish preconditions.
323 addPass(createWebAssemblyPrepareForLiveIntervals());
324
325 // Depend on LiveIntervals and perform some optimizations on it.
326 addPass(createWebAssemblyOptimizeLiveIntervals());
327
Heejin Ahn321d5222019-01-08 22:35:18 +0000328 // Prepare memory intrinsic calls for register stackifying.
329 addPass(createWebAssemblyMemIntrinsicResults());
Dan Gohman0cfb5f82016-05-10 04:24:02 +0000330
Dan Gohmane0405332016-10-03 22:43:53 +0000331 // Mark registers as representing wasm's value stack. This is a key
Dan Gohman0cfb5f82016-05-10 04:24:02 +0000332 // code-compression technique in WebAssembly. We run this pass (and
Heejin Ahn321d5222019-01-08 22:35:18 +0000333 // MemIntrinsicResults above) very late, so that it sees as much code as
334 // possible, including code emitted by PEI and expanded by late tail
335 // duplication.
Dan Gohman0cfb5f82016-05-10 04:24:02 +0000336 addPass(createWebAssemblyRegStackify());
337
338 // Run the register coloring pass to reduce the total number of registers.
339 // This runs after stackification so that it doesn't consider registers
340 // that become stackified.
341 addPass(createWebAssemblyRegColoring());
342 }
343
Thomas Lively6a87dda2019-01-08 06:25:55 +0000344 // Insert explicit local.get and local.set operators.
Wouter van Oortmerssena7be3752018-08-13 23:12:49 +0000345 addPass(createWebAssemblyExplicitLocals());
346
Dan Gohmanf52ee172017-02-27 22:38:58 +0000347 // Sort the blocks of the CFG into topological order, a prerequisite for
348 // BLOCK and LOOP markers.
349 addPass(createWebAssemblyCFGSort());
350
351 // Insert BLOCK and LOOP markers.
Dan Gohman950a13c2015-09-16 16:51:30 +0000352 addPass(createWebAssemblyCFGStackify());
Dan Gohman5941bde2015-11-25 21:32:06 +0000353
Dan Gohmanf0b165a2015-12-05 03:03:35 +0000354 // Lower br_unless into br_if.
355 addPass(createWebAssemblyLowerBrUnless());
356
Dan Gohman5941bde2015-11-25 21:32:06 +0000357 // Perform the very last peephole optimizations on the code.
Dan Gohmanb13c91f2016-01-19 14:55:02 +0000358 if (getOptLevel() != CodeGenOpt::None)
359 addPass(createWebAssemblyPeephole());
Dan Gohmanb7c24002016-05-21 00:21:56 +0000360
361 // Create a mapping from LLVM CodeGen virtual registers to wasm registers.
362 addPass(createWebAssemblyRegNumbering());
Dan Gohman950a13c2015-09-16 16:51:30 +0000363}