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 exception handling
57 "enable-emscripten-cxx-exceptions",
58 cl::desc("WebAssembly Emscripten-style exception handling"),
59 cl::init(false));
60// Emscripten's asm.js-style setjmp/longjmp handling
62 "enable-emscripten-sjlj",
63 cl::desc("WebAssembly Emscripten-style setjmp/longjmp handling"),
64 cl::init(false));
65// Exception handling using wasm EH instructions
67 WebAssembly::WasmEnableEH("wasm-enable-eh",
68 cl::desc("WebAssembly exception handling"));
69// setjmp/longjmp handling using wasm EH instructions
71 "wasm-enable-sjlj", cl::desc("WebAssembly setjmp/longjmp handling"));
72// If true, use the legacy Wasm EH proposal:
73// https://github.com/WebAssembly/exception-handling/blob/main/proposals/exception-handling/legacy/Exceptions.md
74// And if false, use the standardized Wasm EH proposal:
75// https://github.com/WebAssembly/exception-handling/blob/main/proposals/exception-handling/Exceptions.md
76// Currently set to true by default because not all major web browsers turn on
77// the new standard proposal by default, but will later change to false.
79 "wasm-use-legacy-eh", cl::desc("WebAssembly exception handling (legacy)"),
80 cl::init(true));
81
84 // Register the target.
89
90 // Register backend passes
123}
124
125//===----------------------------------------------------------------------===//
126// WebAssembly Lowering public interface.
127//===----------------------------------------------------------------------===//
128
129static Reloc::Model getEffectiveRelocModel(std::optional<Reloc::Model> RM) {
130 // Default to static relocation model. This should always be more optimal
131 // than PIC since the static linker can determine all global addresses and
132 // assume direct function calls.
133 return RM.value_or(Reloc::Static);
134}
135
141
143
144 // You can't enable two modes of EH at the same time
147 "-enable-emscripten-cxx-exceptions not allowed with -wasm-enable-eh");
148 // You can't enable two modes of SjLj at the same time
151 "-enable-emscripten-sjlj not allowed with -wasm-enable-sjlj");
152 // You can't mix Emscripten EH with Wasm SjLj.
155 "-enable-emscripten-cxx-exceptions not allowed with -wasm-enable-sjlj");
156
158 // FIXME: These flags should be removed in favor of directly using the
159 // generically configured ExceptionsType
162 }
163
164 // Basic Correctness checking related to -exception-model
167 report_fatal_error("-exception-model should be either 'none' or 'wasm'");
169 report_fatal_error("-exception-model=wasm not allowed with "
170 "-enable-emscripten-cxx-exceptions");
173 "-wasm-enable-eh only allowed with -exception-model=wasm");
176 "-wasm-enable-sjlj only allowed with -exception-model=wasm");
177 if ((!WasmEnableEH && !WasmEnableSjLj) &&
180 "-exception-model=wasm only allowed with at least one of "
181 "-wasm-enable-eh or -wasm-enable-sjlj");
182
183 // Currently it is allowed to mix Wasm EH with Emscripten SjLj as an interim
184 // measure, but some code will error out at compile time in this combination.
185 // See WebAssemblyLowerEmscriptenEHSjLj pass for details.
186}
187
188/// Create an WebAssembly architecture model.
189///
191 const Target &T, const Triple &TT, StringRef CPU, StringRef FS,
192 const TargetOptions &Options, std::optional<Reloc::Model> RM,
193 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL, bool JIT)
194 : CodeGenTargetMachineImpl(T, TT.computeDataLayout(), TT, CPU, FS, Options,
196 getEffectiveCodeModel(CM, CodeModel::Large), OL),
197 TLOF(new WebAssemblyTargetObjectFile()),
198 UsesMultivalueABI(Options.MCOptions.getABIName() == "experimental-mv") {
199 // WebAssembly type-checks instructions, but a noreturn function with a return
200 // type that doesn't match the context will cause a check failure. So we lower
201 // LLVM 'unreachable' to ISD::TRAP and then lower that to WebAssembly's
202 // 'unreachable' instructions which is meant for that case. Formerly, we also
203 // needed to add checks to SP failure emission in the instruction selection
204 // backends, but this has since been tied to TrapUnreachable and is no longer
205 // necessary.
206 this->Options.TrapUnreachable = true;
207 this->Options.NoTrapAfterNoreturn = false;
208
209 // WebAssembly treats each function as an independent unit. Force
210 // -ffunction-sections, effectively, so that we can emit them independently.
211 this->Options.FunctionSections = true;
212 this->Options.DataSections = true;
213 this->Options.UniqueSectionNames = true;
214
216 initAsmInfo();
217
219
220 // Note that we don't use setRequiresStructuredCFG(true). It disables
221 // optimizations than we're ok with, and want, such as critical edge
222 // splitting and tail merging.
223}
224
226
231
234 std::string FS) const {
235 auto &I = SubtargetMap[CPU + FS];
236 if (!I) {
237 I = std::make_unique<WebAssemblySubtarget>(TargetTriple, CPU, FS, *this);
238 }
239 return I.get();
240}
241
244 Attribute CPUAttr = F.getFnAttribute("target-cpu");
245 Attribute FSAttr = F.getFnAttribute("target-features");
246
247 std::string CPU =
248 CPUAttr.isValid() ? CPUAttr.getValueAsString().str() : TargetCPU;
249 std::string FS =
250 FSAttr.isValid() ? FSAttr.getValueAsString().str() : TargetFS;
251
252 return getSubtargetImpl(CPU, FS);
253}
254
255namespace {
256
257/// WebAssembly Code Generator Pass Configuration Options.
258class WebAssemblyPassConfig final : public TargetPassConfig {
259public:
260 WebAssemblyPassConfig(WebAssemblyTargetMachine &TM, PassManagerBase &PM)
261 : TargetPassConfig(TM, PM) {}
262
263 WebAssemblyTargetMachine &getWebAssemblyTargetMachine() const {
265 }
266
267 FunctionPass *createTargetRegisterAllocator(bool) override;
268
269 void addIRPasses() override;
270 void addISelPrepare() override;
271 bool addInstSelector() override;
272 void addOptimizedRegAlloc() override;
273 void addPostRegAlloc() override;
274 bool addGCPasses() override { return false; }
275 void addPreEmitPass() override;
276 bool addPreISel() override;
277
278 // No reg alloc
279 bool addRegAssignAndRewriteFast() override { return false; }
280
281 // No reg alloc
282 bool addRegAssignAndRewriteOptimized() override { return false; }
283
284 bool addIRTranslator() override;
285 void addPreLegalizeMachineIR() override;
286 bool addLegalizeMachineIR() override;
287 void addPreRegBankSelect() override;
288 bool addRegBankSelect() override;
289 bool addGlobalInstructionSelect() override;
290};
291} // end anonymous namespace
292
299
302 return TargetTransformInfo(std::make_unique<WebAssemblyTTIImpl>(this, F));
303}
304
307 return new WebAssemblyPassConfig(*this, PM);
308}
309
310FunctionPass *WebAssemblyPassConfig::createTargetRegisterAllocator(bool) {
311 return nullptr; // No reg alloc
312}
313
314//===----------------------------------------------------------------------===//
315// The following functions are called from lib/CodeGen/Passes.cpp to modify
316// the CodeGen pass sequence.
317//===----------------------------------------------------------------------===//
318
319void WebAssemblyPassConfig::addIRPasses() {
320 // Add signatures to prototype-less function declarations
322
323 // Lower .llvm.global_dtors into .llvm.global_ctors with __cxa_atexit calls.
325
326 // Fix function bitcasts, as WebAssembly requires caller and callee signatures
327 // to match.
329
330 // Optimize "returned" function attributes.
331 if (getOptLevel() != CodeGenOptLevel::None)
333
334 // If exception handling is not enabled and setjmp/longjmp handling is
335 // enabled, we lower invokes into calls and delete unreachable landingpad
336 // blocks. Lowering invokes when there is no EH support is done in
337 // TargetPassConfig::addPassesToHandleExceptions, but that runs after these IR
338 // passes and Emscripten SjLj handling expects all invokes to be lowered
339 // before.
340 if (!WasmEnableEmEH && !WasmEnableEH) {
341 addPass(createLowerInvokePass());
342 // The lower invoke pass may create unreachable code. Remove it in order not
343 // to process dead blocks in setjmp/longjmp handling.
345 }
346
347 // Handle exceptions and setjmp/longjmp if enabled. Unlike Wasm EH preparation
348 // done in WasmEHPrepare pass, Wasm SjLj preparation shares libraries and
349 // transformation algorithms with Emscripten SjLj, so we run
350 // LowerEmscriptenEHSjLj pass also when Wasm SjLj is enabled.
353
354 // Expand indirectbr instructions to switches.
356
357 // Try to expand `vecreduce_{and, or}` into `{any, all}_true`.
359 getWebAssemblyTargetMachine()));
360
362}
363
364void WebAssemblyPassConfig::addISelPrepare() {
365 // We need to move reference type allocas to WASM_ADDRESS_SPACE_VAR so that
366 // loads and stores are promoted to local.gets/local.sets.
368 // Lower atomics and TLS if necessary
370 getWebAssemblyTargetMachine()));
371
372 // This is a no-op if atomics are not used in the module
374
376}
377
378bool WebAssemblyPassConfig::addInstSelector() {
380 addPass(createWebAssemblyISelDagLegacyPass(getWebAssemblyTargetMachine(),
381 getOptLevel()));
382 // Run the argument-move pass immediately after the ScheduleDAG scheduler
383 // so that we can fix up the ARGUMENT instructions before anything else
384 // sees them in the wrong place.
386 // Set the p2align operands. This information is present during ISel, however
387 // it's inconvenient to collect. Collect it now, and update the immediate
388 // operands.
390
391 // Eliminate range checks and add default targets to br_table instructions.
393
394 // unreachable is terminator, non-terminator instruction after it is not
395 // allowed.
397
398 return false;
399}
400
401void WebAssemblyPassConfig::addOptimizedRegAlloc() {
402 // Currently RegisterCoalesce degrades wasm debug info quality by a
403 // significant margin. As a quick fix, disable this for -O1, which is often
404 // used for debugging large applications. Disabling this increases code size
405 // of Emscripten core benchmarks by ~5%, which is acceptable for -O1, which is
406 // usually not used for production builds.
407 // TODO Investigate why RegisterCoalesce degrades debug info quality and fix
408 // it properly
409 if (getOptLevel() == CodeGenOptLevel::Less)
410 disablePass(&RegisterCoalescerID);
412}
413
414void WebAssemblyPassConfig::addPostRegAlloc() {
415 // TODO: The following CodeGen passes don't currently support code containing
416 // virtual registers. Consider removing their restrictions and re-enabling
417 // them.
418
419 // These functions all require the NoVRegs property.
420 disablePass(&MachineLateInstrsCleanupID);
421 disablePass(&MachineCopyPropagationID);
422 disablePass(&PostRAMachineSinkingID);
423 disablePass(&PostRASchedulerID);
424 disablePass(&FuncletLayoutID);
425 disablePass(&StackMapLivenessID);
426 disablePass(&PatchableFunctionID);
427 disablePass(&ShrinkWrapID);
428 disablePass(&RemoveLoadsIntoFakeUsesID);
429
430 // This pass hurts code size for wasm because it can generate irreducible
431 // control flow.
432 disablePass(&MachineBlockPlacementID);
433
435}
436
437void WebAssemblyPassConfig::addPreEmitPass() {
439
440 // Nullify DBG_VALUE_LISTs that we cannot handle.
442
443 // Remove any unreachable blocks that may be left floating around.
444 // Rare, but possible. Needed for WebAssemblyFixIrreducibleControlFlow.
446
447 // Eliminate multiple-entry loops.
449
450 // Do various transformations for exception handling.
451 // Every CFG-changing optimizations should come before this.
452 if (TM->Options.ExceptionModel == ExceptionHandling::Wasm)
454
455 // Now that we have a prologue and epilogue and all frame indices are
456 // rewritten, eliminate SP and FP. This allows them to be stackified,
457 // colored, and numbered with the rest of the registers.
459
460 // Preparations and optimizations related to register stackification.
461 if (getOptLevel() != CodeGenOptLevel::None) {
462 // Depend on LiveIntervals and perform some optimizations on it.
464
465 // Prepare memory intrinsic calls for register stackifying.
467 }
468
469 // Mark registers as representing wasm's value stack. This is a key
470 // code-compression technique in WebAssembly. We run this pass (and
471 // MemIntrinsicResults above) very late, so that it sees as much code as
472 // possible, including code emitted by PEI and expanded by late tail
473 // duplication.
474 addPass(createWebAssemblyRegStackifyLegacyPass(getOptLevel()));
475
476 if (getOptLevel() != CodeGenOptLevel::None) {
477 // Run the register coloring pass to reduce the total number of registers.
478 // This runs after stackification so that it doesn't consider registers
479 // that become stackified.
481 }
482
483 // Sort the blocks of the CFG into topological order, a prerequisite for
484 // BLOCK and LOOP markers.
486
487 // Insert BLOCK and LOOP markers.
489
490 // Insert explicit local.get and local.set operators.
493
494 // Lower br_unless into br_if.
496
497 // Perform the very last peephole optimizations on the code.
498 if (getOptLevel() != CodeGenOptLevel::None)
500
501 // Create a mapping from LLVM CodeGen virtual registers to wasm registers.
503
504 // Fix debug_values whose defs have been stackified.
507
508 // Collect information to prepare for MC lowering / asm printing.
510}
511
512bool WebAssemblyPassConfig::addPreISel() {
514 return false;
515}
516
517bool WebAssemblyPassConfig::addIRTranslator() {
518 addPass(new IRTranslatorLegacy());
519 return false;
520}
521
522void WebAssemblyPassConfig::addPreLegalizeMachineIR() {
523 if (getOptLevel() != CodeGenOptLevel::None) {
525 }
526}
527bool WebAssemblyPassConfig::addLegalizeMachineIR() {
528 addPass(new LegalizerLegacy());
529 return false;
530}
531
532void WebAssemblyPassConfig::addPreRegBankSelect() {
533 if (getOptLevel() != CodeGenOptLevel::None) {
535 }
536}
537
538bool WebAssemblyPassConfig::addRegBankSelect() {
539 addPass(new RegBankSelectLegacy());
540 return false;
541}
542
543bool WebAssemblyPassConfig::addGlobalInstructionSelect() {
544 addPass(new InstructionSelectLegacy(getOptLevel()));
545
546 // We insert only if ISelDAG won't insert these at a later point.
547 if (isGlobalISelAbortEnabled()) {
552 }
553
554 return false;
555}
556
561
567
570 SMDiagnostic &Error, SMRange &SourceRange) const {
571 const auto &YamlMFI = static_cast<const yaml::WebAssemblyFunctionInfo &>(MFI);
572 MachineFunction &MF = PFS.MF;
573 MF.getInfo<WebAssemblyFunctionInfo>()->initializeBaseYamlFields(MF, YamlMFI);
574 return false;
575}
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 > WasmEnableEH
cl::opt< bool > WasmEnableSjLj
cl::opt< bool > WasmEnableEmEH
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:105
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:261
CodeGenTargetMachineImpl(const Target &T, StringRef DataLayoutString, 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:308
Represents a range in source code.
Definition SMLoc.h:47
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
std::string str() const
Get the contents as an std::string.
Definition StringRef.h:222
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.
StringRef getTargetFeatureString() const
StringRef getTargetCPU() const
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() 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 > WasmEnableEmEH
cl::opt< bool > WasmEnableEH
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 &)
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:149
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()
ModulePass * createWebAssemblyLowerEmscriptenEHSjLjLegacyPass()
void initializeWebAssemblyFixBrTableDefaultsLegacyPass(PassRegistry &)
void initializeWebAssemblyAddMissingPrototypesLegacyPass(PassRegistry &)
@ None
No exception support.
Definition CodeGen.h:55
@ Wasm
WebAssembly Exception Handling.
Definition CodeGen.h:60
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.