blob: 795658ca96b4c0dd2ac53e866ea117a985157fdf [file] [log] [blame]
Dan Gohman10e730a2015-06-29 23:51:55 +00001//==- WebAssemblyMCTargetDesc.h - WebAssembly Target Descriptions -*- C++ -*-=//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9///
10/// \file
11/// \brief This file provides WebAssembly-specific target descriptions.
12///
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_LIB_TARGET_WEBASSEMBLY_MCTARGETDESC_WEBASSEMBLYMCTARGETDESC_H
16#define LLVM_LIB_TARGET_WEBASSEMBLY_MCTARGETDESC_WEBASSEMBLYMCTARGETDESC_H
17
Dan Gohmana11fb232016-01-12 03:09:16 +000018#include "llvm/MC/MCInstrDesc.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000019#include "llvm/Support/DataTypes.h"
Derek Schuffe2688c42017-03-14 20:23:22 +000020#include "llvm/Support/Wasm.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000021
22namespace llvm {
23
Dan Gohman10e730a2015-06-29 23:51:55 +000024class MCAsmBackend;
25class MCCodeEmitter;
26class MCContext;
27class MCInstrInfo;
Dan Gohman10e730a2015-06-29 23:51:55 +000028class MCObjectWriter;
Dan Gohman10e730a2015-06-29 23:51:55 +000029class MCSubtargetInfo;
Dan Gohman3acb1872016-10-24 23:27:49 +000030class MVT;
Dan Gohman10e730a2015-06-29 23:51:55 +000031class Target;
32class Triple;
Dan Gohman53828fd2015-11-23 16:50:18 +000033class raw_pwrite_stream;
Dan Gohman10e730a2015-06-29 23:51:55 +000034
Mehdi Aminif42454b2016-10-09 23:00:34 +000035Target &getTheWebAssemblyTarget32();
36Target &getTheWebAssemblyTarget64();
Dan Gohman10e730a2015-06-29 23:51:55 +000037
Dan Gohmandf4f4d42017-02-10 00:14:42 +000038MCCodeEmitter *createWebAssemblyMCCodeEmitter(const MCInstrInfo &MCII,
39 MCContext &Ctx);
Dan Gohman53828fd2015-11-23 16:50:18 +000040
Dan Gohmancceedf72016-01-08 00:43:54 +000041MCAsmBackend *createWebAssemblyAsmBackend(const Triple &TT);
Dan Gohman10e730a2015-06-29 23:51:55 +000042
Dan Gohman05ac43f2015-12-17 01:39:00 +000043MCObjectWriter *createWebAssemblyELFObjectWriter(raw_pwrite_stream &OS,
44 bool Is64Bit, uint8_t OSABI);
45
Dan Gohman18eafb62017-02-22 01:23:18 +000046MCObjectWriter *createWebAssemblyWasmObjectWriter(raw_pwrite_stream &OS,
47 bool Is64Bit);
48
Dan Gohmana11fb232016-01-12 03:09:16 +000049namespace WebAssembly {
50enum OperandType {
51 /// Basic block label in a branch construct.
52 OPERAND_BASIC_BLOCK = MCOI::OPERAND_FIRST_TARGET,
Dan Gohman4fc4e422016-10-24 19:49:43 +000053 /// Local index.
54 OPERAND_LOCAL,
Dan Gohmanb89f2d32017-02-02 19:29:44 +000055 /// Global index.
56 OPERAND_GLOBAL,
Dan Gohman5a68ec72016-10-05 21:24:08 +000057 /// 32-bit integer immediates.
58 OPERAND_I32IMM,
59 /// 64-bit integer immediates.
60 OPERAND_I64IMM,
Dan Gohmanaa742912016-02-16 15:14:23 +000061 /// 32-bit floating-point immediates.
Dan Gohman4b8e8be2016-10-03 21:31:31 +000062 OPERAND_F32IMM,
Dan Gohmanaa742912016-02-16 15:14:23 +000063 /// 64-bit floating-point immediates.
Dan Gohman4b8e8be2016-10-03 21:31:31 +000064 OPERAND_F64IMM,
Dan Gohman00d734d2016-12-23 03:23:52 +000065 /// 32-bit unsigned function indices.
66 OPERAND_FUNCTION32,
67 /// 32-bit unsigned memory offsets.
68 OPERAND_OFFSET32,
Dan Gohmanbb372242016-01-26 03:39:31 +000069 /// p2align immediate for load and store address alignment.
Dan Gohman2726b882016-10-06 22:29:32 +000070 OPERAND_P2ALIGN,
71 /// signature immediate for block/loop.
Dan Gohmand934cb82017-02-24 23:18:00 +000072 OPERAND_SIGNATURE,
73 /// type signature immediate for call_indirect.
74 OPERAND_TYPEINDEX,
Dan Gohmana11fb232016-01-12 03:09:16 +000075};
76} // end namespace WebAssembly
77
78namespace WebAssemblyII {
79enum {
80 // For variadic instructions, this flag indicates whether an operand
81 // in the variable_ops range is an immediate value.
Dan Gohman3469ee12016-01-12 20:30:51 +000082 VariableOpIsImmediate = (1 << 0),
Dan Gohman1d68e80f2016-01-12 19:14:46 +000083 // For immediate values in the variable_ops range, this flag indicates
84 // whether the value represents a control-flow label.
Dan Gohman3acb1872016-10-24 23:27:49 +000085 VariableOpImmediateIsLabel = (1 << 1)
Dan Gohmana11fb232016-01-12 03:09:16 +000086};
87} // end namespace WebAssemblyII
88
Dan Gohman10e730a2015-06-29 23:51:55 +000089} // end namespace llvm
90
91// Defines symbolic names for WebAssembly registers. This defines a mapping from
92// register name to register number.
93//
JF Bastien5ca0bac2015-07-10 18:23:10 +000094#define GET_REGINFO_ENUM
95#include "WebAssemblyGenRegisterInfo.inc"
96
JF Bastienb9073fb2015-07-22 21:28:15 +000097// Defines symbolic names for the WebAssembly instructions.
98//
99#define GET_INSTRINFO_ENUM
100#include "WebAssemblyGenInstrInfo.inc"
101
Dan Gohman10e730a2015-06-29 23:51:55 +0000102#define GET_SUBTARGETINFO_ENUM
103#include "WebAssemblyGenSubtargetInfo.inc"
104
Dan Gohmanbb372242016-01-26 03:39:31 +0000105namespace llvm {
106namespace WebAssembly {
107
108/// Return the default p2align value for a load or store with the given opcode.
109inline unsigned GetDefaultP2Align(unsigned Opcode) {
110 switch (Opcode) {
111 case WebAssembly::LOAD8_S_I32:
112 case WebAssembly::LOAD8_U_I32:
113 case WebAssembly::LOAD8_S_I64:
114 case WebAssembly::LOAD8_U_I64:
115 case WebAssembly::STORE8_I32:
116 case WebAssembly::STORE8_I64:
117 return 0;
118 case WebAssembly::LOAD16_S_I32:
119 case WebAssembly::LOAD16_U_I32:
120 case WebAssembly::LOAD16_S_I64:
121 case WebAssembly::LOAD16_U_I64:
122 case WebAssembly::STORE16_I32:
123 case WebAssembly::STORE16_I64:
124 return 1;
125 case WebAssembly::LOAD_I32:
126 case WebAssembly::LOAD_F32:
127 case WebAssembly::STORE_I32:
128 case WebAssembly::STORE_F32:
129 case WebAssembly::LOAD32_S_I64:
130 case WebAssembly::LOAD32_U_I64:
131 case WebAssembly::STORE32_I64:
132 return 2;
133 case WebAssembly::LOAD_I64:
134 case WebAssembly::LOAD_F64:
135 case WebAssembly::STORE_I64:
136 case WebAssembly::STORE_F64:
137 return 3;
Derek Schuffc64d7652016-08-01 22:25:02 +0000138 default:
139 llvm_unreachable("Only loads and stores have p2align values");
Dan Gohmanbb372242016-01-26 03:39:31 +0000140 }
141}
142
Derek Schuffc97ba932016-01-30 21:43:08 +0000143/// The operand number of the load or store address in load/store instructions.
Dan Gohman48abaa92016-10-25 00:17:11 +0000144static const unsigned LoadAddressOperandNo = 3;
145static const unsigned StoreAddressOperandNo = 2;
Dan Gohman7f1bdb22016-10-06 22:08:28 +0000146
147/// The operand number of the load or store p2align in load/store instructions.
Dan Gohman48abaa92016-10-25 00:17:11 +0000148static const unsigned LoadP2AlignOperandNo = 1;
149static const unsigned StoreP2AlignOperandNo = 0;
Dan Gohmanbb372242016-01-26 03:39:31 +0000150
Dan Gohman2726b882016-10-06 22:29:32 +0000151/// This is used to indicate block signatures.
Dan Gohman4fc4e422016-10-24 19:49:43 +0000152enum class ExprType {
Derek Schuffe2688c42017-03-14 20:23:22 +0000153 Void = -0x40,
154 I32 = -0x01,
155 I64 = -0x02,
156 F32 = -0x03,
157 F64 = -0x04,
158 I8x16 = -0x05,
159 I16x8 = -0x06,
160 I32x4 = -0x07,
161 F32x4 = -0x08,
162 B8x16 = -0x09,
163 B16x8 = -0x0a,
164 B32x4 = -0x0b
Dan Gohman4fc4e422016-10-24 19:49:43 +0000165};
166
Dan Gohman3acb1872016-10-24 23:27:49 +0000167/// Instruction opcodes emitted via means other than CodeGen.
168static const unsigned Nop = 0x01;
169static const unsigned End = 0x0b;
170
Derek Schuffe2688c42017-03-14 20:23:22 +0000171wasm::ValType toValType(const MVT &Ty);
Dan Gohman3acb1872016-10-24 23:27:49 +0000172
Dan Gohmanbb372242016-01-26 03:39:31 +0000173} // end namespace WebAssembly
174} // end namespace llvm
175
Dan Gohman10e730a2015-06-29 23:51:55 +0000176#endif