LLVM 24.0.0git
WebAssemblyTargetMachine.cpp
Go to the documentation of this file.
1//===- WebAssemblyTargetMachine.cpp - Define TargetMachine for WebAssembly -==//
2//
3// 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
6//
7//===----------------------------------------------------------------------===//
8///
9/// \file
10/// This file defines the WebAssembly-specific subclass of TargetMachine.
11///
12//===----------------------------------------------------------------------===//
13
17#include "WebAssembly.h"
28#include "llvm/CodeGen/Passes.h"
31#include "llvm/IR/Function.h"
38#include <optional>
39using namespace llvm;
40
41#define DEBUG_TYPE "wasm"
42
43// A command-line option to keep implicit locals
44// for the purpose of testing with lit/llc ONLY.
45// This produces output which is not valid WebAssembly, and is not supported
46// by assemblers/disassemblers and other MC based tools.
48 "wasm-disable-explicit-locals", cl::Hidden,
49 cl::desc("WebAssembly: output implicit locals in"
50 " instruction output for test purposes only."),
51 cl::init(false));
52
53// Exception handling & setjmp-longjmp handling related options.
54
55// Emscripten's asm.js-style setjmp/longjmp handling
57 "enable-emscripten-sjlj",
58 cl::desc("WebAssembly Emscripten-style setjmp/longjmp handling"),
59 cl::init(false));
60// setjmp/longjmp handling using wasm EH instructions
62 "wasm-enable-sjlj", cl::desc("WebAssembly setjmp/longjmp handling"));
63// If true, use the legacy Wasm EH proposal:
64// https://github.com/WebAssembly/exception-handling/blob/main/proposals/exception-handling/legacy/Exceptions.md
65// And if false, use the standardized Wasm EH proposal:
66// https://github.com/WebAssembly/exception-handling/blob/main/proposals/exception-handling/Exceptions.md
67// Currently set to true by default because not all major web browsers turn on
68// the new standard proposal by default, but will later change to false.
70 "wasm-use-legacy-eh", cl::desc("WebAssembly exception handling (legacy)"),
71 cl::init(true));
72
75 // Register the target.
80
81 // Register backend passes
114}
115
116//===----------------------------------------------------------------------===//
117// WebAssembly Lowering public interface.
118//===----------------------------------------------------------------------===//
119
120static Reloc::Model getEffectiveRelocModel(std::optional<Reloc::Model> RM) {
121 // Default to static relocation model. This should always be more optimal
122 // than PIC since the static linker can determine all global addresses and
123 // assume direct function calls.
124 return RM.value_or(Reloc::Static);
125}
126
130
132
134
135 // You can't enable two modes of SjLj at the same time
138 "-enable-emscripten-sjlj not allowed with -wasm-enable-sjlj");
139 // You can't mix Emscripten EH with Wasm SjLj.
140 if (EnableEmEH && WasmEnableSjLj)
142 "-exception-model=emscripten not allowed with -wasm-enable-sjlj");
143
145 // FIXME: This flag should be removed in favor of directly using the
146 // generically configured ExceptionsType.
149 }
150
151 // Basic Correctness checking related to -exception-model
157 "-exception-model should be either 'none', 'wasm', or 'emscripten'");
160 "-wasm-enable-sjlj only allowed with -exception-model=wasm");
161
162 // Currently it is allowed to mix Wasm EH with Emscripten SjLj as an interim
163 // measure, but some code will error out at compile time in this combination.
164 // See WebAssemblyLowerEmscriptenEHSjLj pass for details.
165}
166
167/// Create an WebAssembly architecture model.
168///
170 const Target &T, const Triple &TT, StringRef CPU, StringRef FS,
171 const TargetOptions &Options, std::optional<Reloc::Model> RM,
172 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL, bool JIT)
173 : CodeGenTargetMachineImpl(T, TT, CPU, FS, Options,
175 getEffectiveCodeModel(CM, CodeModel::Large), OL),
176 TLOF(new WebAssemblyTargetObjectFile()),
177 UsesMultivalueABI(Options.MCOptions.getABIName() == "experimental-mv") {
178 // WebAssembly type-checks instructions, but a noreturn function with a return
179 // type that doesn't match the context will cause a check failure. So we lower
180 // LLVM 'unreachable' to ISD::TRAP and then lower that to WebAssembly's
181 // 'unreachable' instructions which is meant for that case. Formerly, we also
182 // needed to add checks to SP failure emission in the instruction selection
183 // backends, but this has since been tied to TrapUnreachable and is no longer
184 // necessary.
185 this->Options.TrapUnreachable = true;
186 this->Options.NoTrapAfterNoreturn = false;
187
188 // WebAssembly treats each function as an independent unit. Force
189 // -ffunction-sections, effectively, so that we can emit them independently.
190 this->Options.FunctionSections = true;
191 this->Options.DataSections = true;
192 this->Options.UniqueSectionNames = true;
193
195 initAsmInfo();
196
198
199 // Note that we don't use setRequiresStructuredCFG(true). It disables
200 // optimizations than we're ok with, and want, such as critical edge
201 // splitting and tail merging.
202}
203
205
208 auto &I = SubtargetMap[CPU.str() + FS.str()];
209 if (!I) {
210 I = std::make_unique<WebAssemblySubtarget>(TargetTriple, CPU, FS, *this);
211 }
212 return I.get();
213}
214
217 Attribute CPUAttr = F.getFnAttribute("target-cpu");
218 Attribute FSAttr = F.getFnAttribute("target-features");
219
220 StringRef CPU = CPUAttr.isValid() ? CPUAttr.getValueAsString() : TargetCPU;
221 StringRef FS = FSAttr.isValid() ? FSAttr.getValueAsString() : TargetFS;
222
223 return getSubtargetImpl(CPU, FS);
224}
225
226namespace {
227
228/// WebAssembly Code Generator Pass Configuration Options.
229class WebAssemblyPassConfig final : public TargetPassConfig {
230public:
231 WebAssemblyPassConfig(WebAssemblyTargetMachine &TM, PassManagerBase &PM)
232 : TargetPassConfig(TM, PM) {}
233
234 WebAssemblyTargetMachine &getWebAssemblyTargetMachine() const {
236 }
237
238 FunctionPass *createTargetRegisterAllocator(bool) override;
239
240 void addIRPasses() override;
241 void addISelPrepare() override;
242 bool addInstSelector() override;
243 void addOptimizedRegAlloc() override;
244 void addPostRegAlloc() override;
245 bool addGCPasses() override { return false; }
246 void addPreEmitPass() override;
247 bool addPreISel() override;
248
249 // No reg alloc
250 bool addRegAssignAndRewriteFast() override { return false; }
251
252 // No reg alloc
253 bool addRegAssignAndRewriteOptimized() override { return false; }
254
255 bool addIRTranslator() override;
256 void addPreLegalizeMachineIR() override;
257 bool addLegalizeMachineIR() override;
258 void addPreRegBankSelect() override;
259 bool addRegBankSelect() override;
260 bool addGlobalInstructionSelect() override;
261};
262} // end anonymous namespace
263
270
273 return TargetTransformInfo(std::make_unique<WebAssemblyTTIImpl>(this, F));
274}
275
278 return new WebAssemblyPassConfig(*this, PM);
279}
280
281FunctionPass *WebAssemblyPassConfig::createTargetRegisterAllocator(bool) {
282 return nullptr; // No reg alloc
283}
284
285//===----------------------------------------------------------------------===//
286// The following functions are called from lib/CodeGen/Passes.cpp to modify
287// the CodeGen pass sequence.
288//===----------------------------------------------------------------------===//
289
290void WebAssemblyPassConfig::addIRPasses() {
291 // Add signatures to prototype-less function declarations
293
294 // Lower .llvm.global_dtors into .llvm.global_ctors with __cxa_atexit calls.
296
297 // Fix function bitcasts, as WebAssembly requires caller and callee signatures
298 // to match.
300
301 // Optimize "returned" function attributes.
302 if (getOptLevel() != CodeGenOptLevel::None)
304
305 // If exception handling is not enabled and setjmp/longjmp handling is
306 // enabled, we lower invokes into calls and delete unreachable landingpad
307 // blocks. Lowering invokes when there is no EH support is done in
308 // TargetPassConfig::addPassesToHandleExceptions, but that runs after these IR
309 // passes and Emscripten SjLj handling expects all invokes to be lowered
310 // before.
311 bool EnableEmEH = TM->Options.ExceptionModel == ExceptionHandling::Emscripten;
312 bool EnableWasmEH = TM->Options.ExceptionModel == ExceptionHandling::Wasm;
313 if (!EnableEmEH && !EnableWasmEH) {
314 addPass(createLowerInvokePass());
315 // The lower invoke pass may create unreachable code. Remove it in order not
316 // to process dead blocks in setjmp/longjmp handling.
318 }
319
320 // Handle exceptions and setjmp/longjmp if enabled. Unlike Wasm EH preparation
321 // done in WasmEHPrepare pass, Wasm SjLj preparation shares libraries and
322 // transformation algorithms with Emscripten SjLj, so we run
323 // LowerEmscriptenEHSjLj pass also when Wasm SjLj is enabled.
324 if (EnableEmEH || WasmEnableEmSjLj || WasmEnableSjLj)
326
327 // Expand indirectbr instructions to switches.
329
330 // Try to expand `vecreduce_{and, or}` into `{any, all}_true`.
332 getWebAssemblyTargetMachine()));
333
335}
336
337void WebAssemblyPassConfig::addISelPrepare() {
338 // We need to move reference type allocas to WASM_ADDRESS_SPACE_VAR so that
339 // loads and stores are promoted to local.gets/local.sets.
341 // Lower atomics and TLS if necessary
343 getWebAssemblyTargetMachine()));
344
345 // This is a no-op if atomics are not used in the module
347
349}
350
351bool WebAssemblyPassConfig::addInstSelector() {
353 addPass(createWebAssemblyISelDagLegacyPass(getWebAssemblyTargetMachine(),
354 getOptLevel()));
355 // Run the argument-move pass immediately after the ScheduleDAG scheduler
356 // so that we can fix up the ARGUMENT instructions before anything else
357 // sees them in the wrong place.
359 // Set the p2align operands. This information is present during ISel, however
360 // it's inconvenient to collect. Collect it now, and update the immediate
361 // operands.
363
364 // Eliminate range checks and add default targets to br_table instructions.
366
367 // unreachable is terminator, non-terminator instruction after it is not
368 // allowed.
370
371 return false;
372}
373
374void WebAssemblyPassConfig::addOptimizedRegAlloc() {
375 // Currently RegisterCoalesce degrades wasm debug info quality by a
376 // significant margin. As a quick fix, disable this for -O1, which is often
377 // used for debugging large applications. Disabling this increases code size
378 // of Emscripten core benchmarks by ~5%, which is acceptable for -O1, which is
379 // usually not used for production builds.
380 // TODO Investigate why RegisterCoalesce degrades debug info quality and fix
381 // it properly
382 if (getOptLevel() == CodeGenOptLevel::Less)
383 disablePass(&RegisterCoalescerID);
385}
386
387void WebAssemblyPassConfig::addPostRegAlloc() {
388 // TODO: The following CodeGen passes don't currently support code containing
389 // virtual registers. Consider removing their restrictions and re-enabling
390 // them.
391
392 // These functions all require the NoVRegs property.
393 disablePass(&MachineLateInstrsCleanupID);
394 disablePass(&MachineCopyPropagationID);
395 disablePass(&PostRAMachineSinkingID);
396 disablePass(&PostRASchedulerID);
397 disablePass(&FuncletLayoutID);
398 disablePass(&StackMapLivenessID);
399 disablePass(&PatchableFunctionID);
400 disablePass(&ShrinkWrapID);
401 disablePass(&RemoveLoadsIntoFakeUsesID);
402
403 // This pass hurts code size for wasm because it can generate irreducible
404 // control flow.
405 disablePass(&MachineBlockPlacementID);
406
408}
409
410void WebAssemblyPassConfig::addPreEmitPass() {
412
413 // Nullify DBG_VALUE_LISTs that we cannot handle.
415
416 // Remove any unreachable blocks that may be left floating around.
417 // Rare, but possible. Needed for WebAssemblyFixIrreducibleControlFlow.
419
420 // Eliminate multiple-entry loops.
422
423 // Do various transformations for exception handling.
424 // Every CFG-changing optimizations should come before this.
425 if (TM->Options.ExceptionModel == ExceptionHandling::Wasm)
427
428 // Now that we have a prologue and epilogue and all frame indices are
429 // rewritten, eliminate SP and FP. This allows them to be stackified,
430 // colored, and numbered with the rest of the registers.
432
433 // Preparations and optimizations related to register stackification.
434 if (getOptLevel() != CodeGenOptLevel::None) {
435 // Depend on LiveIntervals and perform some optimizations on it.
437
438 // Prepare memory intrinsic calls for register stackifying.
440 }
441
442 // Mark registers as representing wasm's value stack. This is a key
443 // code-compression technique in WebAssembly. We run this pass (and
444 // MemIntrinsicResults above) very late, so that it sees as much code as
445 // possible, including code emitted by PEI and expanded by late tail
446 // duplication.
447 addPass(createWebAssemblyRegStackifyLegacyPass(getOptLevel()));
448
449 if (getOptLevel() != CodeGenOptLevel::None) {
450 // Run the register coloring pass to reduce the total number of registers.
451 // This runs after stackification so that it doesn't consider registers
452 // that become stackified.
454 }
455
456 // Sort the blocks of the CFG into topological order, a prerequisite for
457 // BLOCK and LOOP markers.
459
460 // Insert BLOCK and LOOP markers.
462
463 // Insert explicit local.get and local.set operators.
466
467 // Lower br_unless into br_if.
469
470 // Perform the very last peephole optimizations on the code.
471 if (getOptLevel() != CodeGenOptLevel::None)
473
474 // Create a mapping from LLVM CodeGen virtual registers to wasm registers.
476
477 // Fix debug_values whose defs have been stackified.
480
481 // Collect information to prepare for MC lowering / asm printing.
483}
484
485bool WebAssemblyPassConfig::addPreISel() {
487 return false;
488}
489
490bool WebAssemblyPassConfig::addIRTranslator() {
491 addPass(new IRTranslatorLegacy());
492 return false;
493}
494
495void WebAssemblyPassConfig::addPreLegalizeMachineIR() {
496 if (getOptLevel() != CodeGenOptLevel::None) {
498 }
499}
500bool WebAssemblyPassConfig::addLegalizeMachineIR() {
501 addPass(new LegalizerLegacy());
502 return false;
503}
504
505void WebAssemblyPassConfig::addPreRegBankSelect() {
506 if (getOptLevel() != CodeGenOptLevel::None) {
508 }
509}
510
511bool WebAssemblyPassConfig::addRegBankSelect() {
512 addPass(new RegBankSelectLegacy());
513 return false;
514}
515
516bool WebAssemblyPassConfig::addGlobalInstructionSelect() {
517 addPass(new InstructionSelectLegacy(getOptLevel()));
518
519 // We insert only if ISelDAG won't insert these at a later point.
520 if (isGlobalISelAbortEnabled()) {
525 }
526
527 return false;
528}
529
534
540
543 SMDiagnostic &Error, SMRange &SourceRange) const {
544 const auto &YamlMFI = static_cast<const yaml::WebAssemblyFunctionInfo &>(MFI);
545 MachineFunction &MF = PFS.MF;
546 MF.getInfo<WebAssemblyFunctionInfo>()->initializeBaseYamlFields(MF, YamlMFI);
547 return false;
548}
static Reloc::Model getEffectiveRelocModel()
#define X(NUM, ENUM, NAME)
Definition ELF.h:857
#define LLVM_ABI
Definition Compiler.h:215
#define LLVM_EXTERNAL_VISIBILITY
Definition Compiler.h:132
This file declares the IRTranslator pass.
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
#define T
This file describes the interface of the MachineFunctionPass responsible for assigning the generic vi...
const GCNTargetMachine & getTM(const GCNSubtarget *STI)
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
Target-Independent Code Generator Pass Configuration Options pass.
cl::opt< bool > WasmEnableSjLj
cl::opt< bool > WasmEnableEmSjLj
cl::opt< bool > WasmDisableExplicitLocals
This file defines the interfaces that WebAssembly uses to lower LLVM code into a selection DAG.
This file provides WebAssembly-specific target descriptions.
This file declares WebAssembly-specific per-machine-function information.
This file registers the WebAssembly target.
LLVM_ABI LLVM_EXTERNAL_VISIBILITY void LLVMInitializeWebAssemblyTarget()
static void basicCheckForEHAndSjLj(TargetMachine *TM)
This file declares the WebAssembly-specific subclass of TargetMachine.
This file declares the WebAssembly-specific subclass of TargetLoweringObjectFile.
This file a TargetTransformInfoImplBase conforming object specific to the WebAssembly target machine.
This file contains the declaration of the WebAssembly-specific utility functions.
This file contains the entry points for global functions defined in the LLVM WebAssembly back-end.
Functions, function parameters, and return types can have attributes to indicate how they should be t...
Definition Attributes.h:106
LLVM_ABI StringRef getValueAsString() const
Return the attribute's value as a string.
bool isValid() const
Return true if the attribute is any kind of attribute.
Definition Attributes.h:266
CodeGenTargetMachineImpl(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOptLevel OL)
Lightweight error class with error context and mandatory checking.
Definition Error.h:159
FunctionPass class - This class is used to implement most global optimizations.
Definition Pass.h:314
This pass is responsible for selecting generic machine instructions to target-specific instructions.
static void setUseExtended(bool Enable)
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
static LLVM_ABI PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
This pass implements the reg bank selector pass used in the GlobalISel pipeline.
Instances of this class encapsulate one diagnostic report, allowing printing to a raw_ostream as a ca...
Definition SourceMgr.h:305
Represents a range in source code.
Definition SMLoc.h:47
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
Primary interface to the complete machine description for the target machine.
Triple TargetTriple
Triple string, CPU name, and target feature strings the TargetMachine instance is created with.
std::unique_ptr< const MCSubtargetInfo > STI
TargetOptions Options
unsigned FunctionSections
Emit functions into separate sections.
unsigned NoTrapAfterNoreturn
Do not emit a trap instruction for 'unreachable' IR instructions behind noreturn calls,...
unsigned DataSections
Emit data into separate sections.
unsigned TrapUnreachable
Emit target-specific trap instruction for 'unreachable' IR instructions.
ExceptionHandling ExceptionModel
What exception model to use.
Target-Independent Code Generator Pass Configuration Options.
virtual void addPostRegAlloc()
This method may be implemented by targets that want to run passes after register allocation pass pipe...
virtual bool addInstSelector()
addInstSelector - This method should install an instruction selector pass, which converts from LLVM c...
virtual bool addPreISel()
Methods with trivial inline returns are convenient points in the common codegen pass pipeline where t...
virtual void addOptimizedRegAlloc()
addOptimizedRegAlloc - Add passes related to register allocation.
virtual void addPreEmitPass()
This pass may be implemented by targets that want to run passes immediately before machine code is em...
virtual void addIRPasses()
Add common target configurable passes that perform LLVM IR to IR transforms following machine indepen...
virtual void addISelPrepare()
Add common passes that perform LLVM IR to IR transforms in preparation for instruction selection.
TargetSubtargetInfo - Generic base class for all target subtargets.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
Target - Wrapper for Target specific information.
Triple - Helper class for working with autoconf configuration names.
Definition Triple.h:48
This class is derived from MachineFunctionInfo and contains private WebAssembly-specific information ...
yaml::MachineFunctionInfo * createDefaultFuncInfoYAML() const override
Allocate and return a default initialized instance of the YAML representation for the MachineFunction...
bool parseMachineFunctionInfo(const yaml::MachineFunctionInfo &, PerFunctionMIParsingState &PFS, SMDiagnostic &Error, SMRange &SourceRange) const override
Parse out the target's MachineFunctionInfo from the YAML reprsentation.
WebAssemblyTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, std::optional< Reloc::Model > RM, std::optional< CodeModel::Model > CM, CodeGenOptLevel OL, bool JIT)
Create an WebAssembly architecture model.
TargetPassConfig * createPassConfig(PassManagerBase &PM) override
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of ...
const WebAssemblySubtarget * getSubtargetImpl(StringRef CPU, StringRef FS) const
MachineFunctionInfo * createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F, const TargetSubtargetInfo *STI) const override
Create the target's instance of MachineFunctionInfo.
TargetTransformInfo getTargetTransformInfo(const Function &F) const override
Get a TargetTransformInfo implementation for the target.
yaml::MachineFunctionInfo * convertFuncInfoToYAML(const MachineFunction &MF) const override
Allocate and initialize an instance of the YAML representation of the MachineFunctionInfo.
PassManagerBase - An abstract interface to allow code to add passes to a pass manager without having ...
cl::opt< bool > WasmEnableSjLj
cl::opt< bool > WasmEnableEmSjLj
cl::opt< bool > WasmDisableExplicitLocals
cl::opt< bool > WasmUseLegacyEH
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI ModulePass * createLowerGlobalDtorsLegacyPass()
LLVM_ABI FunctionPass * createIndirectBrExpandPass()
FunctionPass * createWebAssemblyExplicitLocalsLegacyPass()
FunctionPass * createWebAssemblyCleanCodeAfterTrapLegacyPass()
ModulePass * createWebAssemblyMCLowerPreLegacyPass()
void initializeWebAssemblySetP2AlignOperandsLegacyPass(PassRegistry &)
void initializeWebAssemblyRegStackifyLegacyPass(PassRegistry &)
LLVM_ABI char & RegisterCoalescerID
RegisterCoalescer - This pass merges live ranges to eliminate copies.
void initializeWebAssemblyPeepholeLegacyPass(PassRegistry &)
LLVM_ABI char & PatchableFunctionID
This pass implements the "patchable-function" attribute.
LLVM_ABI char & PostRASchedulerID
PostRAScheduler - This pass performs post register allocation scheduling.
LLVM_ABI char & RemoveLoadsIntoFakeUsesID
RemoveLoadsIntoFakeUses pass.
void initializeWebAssemblyExceptionInfoWrapperPassPass(PassRegistry &)
FunctionPass * createWebAssemblyPreLegalizerCombinerLegacyPass()
FunctionPass * createWebAssemblyRegNumberingLegacyPass()
void initializeWebAssemblyDAGToDAGISelLegacyPass(PassRegistry &)
FunctionPass * createWebAssemblySetP2AlignOperandsLegacyPass()
void initializeWebAssemblyPreLegalizerCombinerLegacyPass(PassRegistry &)
void initializeWebAssemblyMemIntrinsicResultsLegacyPass(PassRegistry &)
void initializeWebAssemblyRegNumberingLegacyPass(PassRegistry &)
void initializeWebAssemblyLateEHPrepareLegacyPass(PassRegistry &)
static Reloc::Model getEffectiveRelocModel(std::optional< Reloc::Model > RM)
void initializeWebAssemblyNullifyDebugValueListsLegacyPass(PassRegistry &)
FunctionPass * createWebAssemblyArgumentMoveLegacyPass()
CodeModel::Model getEffectiveCodeModel(std::optional< CodeModel::Model > CM, CodeModel::Model Default)
Helper method for getting the code model, returning Default if CM does not have a value.
LLVM_ABI char & ShrinkWrapID
ShrinkWrap pass. Look for the best place to insert save and restore.
LLVM_ABI char & MachineLateInstrsCleanupID
MachineLateInstrsCleanup - This pass removes redundant identical instructions after register allocati...
void initializeWebAssemblyRefTypeMem2LocalLegacyPass(PassRegistry &)
LLVM_ABI char & UnreachableMachineBlockElimID
UnreachableMachineBlockElimination - This pass removes unreachable machine basic blocks.
LLVM_ABI FunctionPass * createLowerInvokePass()
void initializeWebAssemblyFixFunctionBitcastsLegacyPass(PassRegistry &)
ModulePass * createWebAssemblyLowerEmscriptenEHSjLjLegacyPass(bool EnableEmEH)
void initializeWebAssemblyLowerBrUnlessLegacyPass(PassRegistry &)
Target & getTheWebAssemblyTarget32()
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
Definition Error.cpp:163
LLVM_ABI char & StackMapLivenessID
StackMapLiveness - This pass analyses the register live-out set of stackmap/patchpoint intrinsics and...
LLVM_ABI void initializeLowerGlobalDtorsLegacyPassPass(PassRegistry &)
FunctionPass * createWebAssemblyReduceToAnyAllTrueLegacyPass(WebAssemblyTargetMachine &TM)
FunctionPass * createWebAssemblyRegColoringLegacyPass()
LLVM_ABI char & FuncletLayoutID
This pass lays out funclets contiguously.
FunctionPass * createWebAssemblyPostLegalizerCombinerLegacyPass()
FunctionPass * createWebAssemblyFixIrreducibleControlFlowLegacyPass()
LLVM_ABI char & PostRAMachineSinkingID
This pass perform post-ra machine sink for COPY instructions.
void initializeWebAssemblyPostLegalizerCombinerLegacyPass(PassRegistry &)
CodeGenOptLevel
Code generation optimization level.
Definition CodeGen.h:227
ModulePass * createWebAssemblyCoalesceFeaturesAndStripAtomicsLegacyPass(WebAssemblyTargetMachine &TM)
FunctionPass * createWebAssemblyRefTypeMem2LocalLegacyPass()
void initializeWebAssemblyArgumentMoveLegacyPass(PassRegistry &)
void initializeWebAssemblyOptimizeReturnedLegacyPass(PassRegistry &)
void initializeWebAssemblyExplicitLocalsLegacyPass(PassRegistry &)
ModulePass * createWebAssemblyFixFunctionBitcastsLegacyPass()
FunctionPass * createWebAssemblyPeepholeLegacyPass()
LLVM_ABI void initializeGlobalISel(PassRegistry &)
Initialize all passes linked into the GlobalISel library.
FunctionPass * createWebAssemblyMemIntrinsicResultsLegacyPass()
void initializeWebAssemblyLowerEmscriptenEHSjLjLegacyPass(PassRegistry &)
Target & getTheWebAssemblyTarget64()
FunctionPass * createWebAssemblyOptimizeReturnedLegacyPass()
void initializeWebAssemblyFixBrTableDefaultsLegacyPass(PassRegistry &)
void initializeWebAssemblyAddMissingPrototypesLegacyPass(PassRegistry &)
@ Emscripten
Emscripten JavaScript-based exception handling.
Definition CodeGen.h:62
@ None
No exception support.
Definition CodeGen.h:56
@ Default
Not specified; resolve to the target's default model.
Definition CodeGen.h:55
@ Wasm
WebAssembly Exception Handling.
Definition CodeGen.h:61
void initializeWebAssemblyCFGSortLegacyPass(PassRegistry &)
FunctionPass * createWebAssemblyDebugFixupLegacyPass()
FunctionPass * createWebAssemblyFixBrTableDefaultsLegacyPass()
FunctionPass * createWebAssemblyISelDagLegacyPass(WebAssemblyTargetMachine &TM, CodeGenOptLevel OptLevel)
FunctionPass * createWebAssemblyNullifyDebugValueListsLegacyPass()
FunctionPass * createWebAssemblyCFGStackifyLegacyPass()
void initializeWebAssemblyRegColoringLegacyPass(PassRegistry &)
FunctionPass * createWebAssemblyRegStackifyLegacyPass(CodeGenOptLevel OptLevel)
FunctionPass * createWebAssemblyOptimizeLiveIntervalsLegacyPass()
void initializeWebAssemblyFixIrreducibleControlFlowLegacyPass(PassRegistry &)
FunctionPass * createWebAssemblyLowerBrUnlessLegacyPass()
LLVM_ABI char & MachineBlockPlacementID
MachineBlockPlacement - This pass places basic blocks based on branch probabilities.
ModulePass * createWebAssemblyAddMissingPrototypesLegacyPass()
LLVM_ABI FunctionPass * createAtomicExpandLegacyPass()
AtomicExpandPass - At IR level this pass replace atomic instructions with __atomic_* library calls,...
BumpPtrAllocatorImpl<> BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
Definition Allocator.h:390
FunctionPass * createWebAssemblyReplacePhysRegsLegacyPass()
void initializeWebAssemblyCFGStackifyLegacyPass(PassRegistry &)
void initializeWebAssemblyOptimizeLiveIntervalsLegacyPass(PassRegistry &)
FunctionPass * createWebAssemblyCFGSortLegacyPass()
void initializeWebAssemblyMCLowerPreLegacyPass(PassRegistry &)
void initializeWebAssemblyAsmPrinterPass(PassRegistry &)
void initializeWebAssemblyReplacePhysRegsLegacyPass(PassRegistry &)
LLVM_ABI char & MachineCopyPropagationID
MachineCopyPropagation - This pass performs copy propagation on machine instructions.
FunctionPass * createWebAssemblyLateEHPrepareLegacyPass()
void initializeWebAssemblyDebugFixupLegacyPass(PassRegistry &)
LLVM_ABI FunctionPass * createUnreachableBlockEliminationPass()
createUnreachableBlockEliminationPass - The LLVM code generator does not work well with unreachable b...
MachineFunctionInfo - This class can be derived from and used by targets to hold private target-speci...
static FuncInfoTy * create(BumpPtrAllocator &Allocator, const Function &F, const SubtargetTy *STI)
Factory function: default behavior is to call new using the supplied allocator.
RegisterTargetMachine - Helper template for registering a target machine implementation,...
Targets should override this in a way that mirrors the implementation of llvm::MachineFunctionInfo.