123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- //- WebAssembly.td - Describe the WebAssembly Target Machine --*- tablegen -*-//
- //
- // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
- // See https://llvm.org/LICENSE.txt for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- //===----------------------------------------------------------------------===//
- ///
- /// \file
- /// This is a target description file for the WebAssembly architecture,
- /// which is also known as "wasm".
- ///
- //===----------------------------------------------------------------------===//
- //===----------------------------------------------------------------------===//
- // Target-independent interfaces which we are implementing
- //===----------------------------------------------------------------------===//
- include "llvm/Target/Target.td"
- //===----------------------------------------------------------------------===//
- // WebAssembly Subtarget features.
- //===----------------------------------------------------------------------===//
- def FeatureSIMD128 : SubtargetFeature<"simd128", "SIMDLevel", "SIMD128",
- "Enable 128-bit SIMD">;
- def FeatureRelaxedSIMD : SubtargetFeature<"relaxed-simd", "SIMDLevel", "RelaxedSIMD",
- "Enable relaxed-simd instructions">;
- def FeatureAtomics : SubtargetFeature<"atomics", "HasAtomics", "true",
- "Enable Atomics">;
- def FeatureNontrappingFPToInt :
- SubtargetFeature<"nontrapping-fptoint",
- "HasNontrappingFPToInt", "true",
- "Enable non-trapping float-to-int conversion operators">;
- def FeatureSignExt :
- SubtargetFeature<"sign-ext",
- "HasSignExt", "true",
- "Enable sign extension operators">;
- def FeatureTailCall :
- SubtargetFeature<"tail-call",
- "HasTailCall", "true",
- "Enable tail call instructions">;
- def FeatureExceptionHandling :
- SubtargetFeature<"exception-handling", "HasExceptionHandling", "true",
- "Enable Wasm exception handling">;
- def FeatureBulkMemory :
- SubtargetFeature<"bulk-memory", "HasBulkMemory", "true",
- "Enable bulk memory operations">;
- def FeatureMultivalue :
- SubtargetFeature<"multivalue",
- "HasMultivalue", "true",
- "Enable multivalue blocks, instructions, and functions">;
- def FeatureMutableGlobals :
- SubtargetFeature<"mutable-globals", "HasMutableGlobals", "true",
- "Enable mutable globals">;
- def FeatureReferenceTypes :
- SubtargetFeature<"reference-types", "HasReferenceTypes", "true",
- "Enable reference types">;
- def FeatureExtendedConst :
- SubtargetFeature<"extended-const", "HasExtendedConst", "true",
- "Enable extended const expressions">;
- //===----------------------------------------------------------------------===//
- // Architectures.
- //===----------------------------------------------------------------------===//
- //===----------------------------------------------------------------------===//
- // Register File Description
- //===----------------------------------------------------------------------===//
- include "WebAssemblyRegisterInfo.td"
- //===----------------------------------------------------------------------===//
- // Instruction Descriptions
- //===----------------------------------------------------------------------===//
- include "WebAssemblyInstrInfo.td"
- def WebAssemblyInstrInfo : InstrInfo;
- //===----------------------------------------------------------------------===//
- // WebAssembly Processors supported.
- //===----------------------------------------------------------------------===//
- // Minimal Viable Product.
- def : ProcessorModel<"mvp", NoSchedModel, []>;
- // Generic processor: latest stable version.
- //
- // This includes features that have achieved phase 4 of the standards process,
- // and that are expected to work for most users in the current time, with
- // consideration given to available support in relevant engines and tools, and
- // the importance of the features.
- def : ProcessorModel<"generic", NoSchedModel,
- [FeatureSignExt, FeatureMutableGlobals]>;
- // Latest and greatest experimental version of WebAssembly. Bugs included!
- def : ProcessorModel<"bleeding-edge", NoSchedModel,
- [FeatureSIMD128, FeatureAtomics,
- FeatureNontrappingFPToInt, FeatureSignExt,
- FeatureMutableGlobals, FeatureBulkMemory,
- FeatureTailCall]>;
- //===----------------------------------------------------------------------===//
- // Target Declaration
- //===----------------------------------------------------------------------===//
- def WebAssemblyAsmParser : AsmParser {
- // The physical register names are not in the binary format or asm text
- let ShouldEmitMatchRegisterName = 0;
- }
- def WebAssemblyAsmWriter : AsmWriter {
- string AsmWriterClassName = "InstPrinter";
- int PassSubtarget = 0;
- int Variant = 0;
- bit isMCAsmWriter = 1;
- }
- def WebAssembly : Target {
- let InstructionSet = WebAssemblyInstrInfo;
- let AssemblyParsers = [WebAssemblyAsmParser];
- let AssemblyWriters = [WebAssemblyAsmWriter];
- }
|