blob: 651c077fab402ca873fd4cc5b9d9806267caeb71 [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"
Dan Gohman10e730a2015-06-29 23:51:55 +000020
21namespace llvm {
22
Dan Gohman10e730a2015-06-29 23:51:55 +000023class MCAsmBackend;
24class MCCodeEmitter;
25class MCContext;
26class MCInstrInfo;
Dan Gohman10e730a2015-06-29 23:51:55 +000027class MCObjectWriter;
Dan Gohman10e730a2015-06-29 23:51:55 +000028class MCSubtargetInfo;
Dan Gohman10e730a2015-06-29 23:51:55 +000029class Target;
30class Triple;
Dan Gohman53828fd2015-11-23 16:50:18 +000031class raw_pwrite_stream;
Dan Gohman10e730a2015-06-29 23:51:55 +000032
Dan Gohmand82494b2015-07-01 21:42:34 +000033extern Target TheWebAssemblyTarget32;
34extern Target TheWebAssemblyTarget64;
Dan Gohman10e730a2015-06-29 23:51:55 +000035
Dan Gohmancff79832016-01-19 21:31:41 +000036MCCodeEmitter *createWebAssemblyMCCodeEmitter(const MCInstrInfo &MCII);
Dan Gohman53828fd2015-11-23 16:50:18 +000037
Dan Gohmancceedf72016-01-08 00:43:54 +000038MCAsmBackend *createWebAssemblyAsmBackend(const Triple &TT);
Dan Gohman10e730a2015-06-29 23:51:55 +000039
Dan Gohman05ac43f2015-12-17 01:39:00 +000040MCObjectWriter *createWebAssemblyELFObjectWriter(raw_pwrite_stream &OS,
41 bool Is64Bit, uint8_t OSABI);
42
Dan Gohmana11fb232016-01-12 03:09:16 +000043namespace WebAssembly {
44enum OperandType {
45 /// Basic block label in a branch construct.
46 OPERAND_BASIC_BLOCK = MCOI::OPERAND_FIRST_TARGET,
Dan Gohman5a68ec72016-10-05 21:24:08 +000047 /// 32-bit integer immediates.
48 OPERAND_I32IMM,
49 /// 64-bit integer immediates.
50 OPERAND_I64IMM,
Dan Gohmanaa742912016-02-16 15:14:23 +000051 /// 32-bit floating-point immediates.
Dan Gohman4b8e8be2016-10-03 21:31:31 +000052 OPERAND_F32IMM,
Dan Gohmanaa742912016-02-16 15:14:23 +000053 /// 64-bit floating-point immediates.
Dan Gohman4b8e8be2016-10-03 21:31:31 +000054 OPERAND_F64IMM,
Dan Gohmanbb372242016-01-26 03:39:31 +000055 /// p2align immediate for load and store address alignment.
Dan Gohman2726b882016-10-06 22:29:32 +000056 OPERAND_P2ALIGN,
57 /// signature immediate for block/loop.
58 OPERAND_SIGNATURE
Dan Gohmana11fb232016-01-12 03:09:16 +000059};
Dan Gohman3469ee12016-01-12 20:30:51 +000060
61/// WebAssembly-specific directive identifiers.
62enum Directive {
63 // FIXME: This is not the real binary encoding.
64 DotParam = UINT64_MAX - 0, ///< .param
65 DotResult = UINT64_MAX - 1, ///< .result
66 DotLocal = UINT64_MAX - 2, ///< .local
67 DotEndFunc = UINT64_MAX - 3, ///< .endfunc
Dan Gohman2726b882016-10-06 22:29:32 +000068 DotIndIdx = UINT64_MAX - 4, ///< .indidx
Dan Gohman3469ee12016-01-12 20:30:51 +000069};
70
Dan Gohmana11fb232016-01-12 03:09:16 +000071} // end namespace WebAssembly
72
73namespace WebAssemblyII {
74enum {
75 // For variadic instructions, this flag indicates whether an operand
76 // in the variable_ops range is an immediate value.
Dan Gohman3469ee12016-01-12 20:30:51 +000077 VariableOpIsImmediate = (1 << 0),
Dan Gohman1d68e80f2016-01-12 19:14:46 +000078 // For immediate values in the variable_ops range, this flag indicates
79 // whether the value represents a control-flow label.
Dan Gohman3469ee12016-01-12 20:30:51 +000080 VariableOpImmediateIsLabel = (1 << 1),
Dan Gohmana11fb232016-01-12 03:09:16 +000081};
82} // end namespace WebAssemblyII
83
Dan Gohman10e730a2015-06-29 23:51:55 +000084} // end namespace llvm
85
86// Defines symbolic names for WebAssembly registers. This defines a mapping from
87// register name to register number.
88//
JF Bastien5ca0bac2015-07-10 18:23:10 +000089#define GET_REGINFO_ENUM
90#include "WebAssemblyGenRegisterInfo.inc"
91
JF Bastienb9073fb2015-07-22 21:28:15 +000092// Defines symbolic names for the WebAssembly instructions.
93//
94#define GET_INSTRINFO_ENUM
95#include "WebAssemblyGenInstrInfo.inc"
96
Dan Gohman10e730a2015-06-29 23:51:55 +000097#define GET_SUBTARGETINFO_ENUM
98#include "WebAssemblyGenSubtargetInfo.inc"
99
Dan Gohmanbb372242016-01-26 03:39:31 +0000100namespace llvm {
101namespace WebAssembly {
102
103/// Return the default p2align value for a load or store with the given opcode.
104inline unsigned GetDefaultP2Align(unsigned Opcode) {
105 switch (Opcode) {
106 case WebAssembly::LOAD8_S_I32:
107 case WebAssembly::LOAD8_U_I32:
108 case WebAssembly::LOAD8_S_I64:
109 case WebAssembly::LOAD8_U_I64:
110 case WebAssembly::STORE8_I32:
111 case WebAssembly::STORE8_I64:
112 return 0;
113 case WebAssembly::LOAD16_S_I32:
114 case WebAssembly::LOAD16_U_I32:
115 case WebAssembly::LOAD16_S_I64:
116 case WebAssembly::LOAD16_U_I64:
117 case WebAssembly::STORE16_I32:
118 case WebAssembly::STORE16_I64:
119 return 1;
120 case WebAssembly::LOAD_I32:
121 case WebAssembly::LOAD_F32:
122 case WebAssembly::STORE_I32:
123 case WebAssembly::STORE_F32:
124 case WebAssembly::LOAD32_S_I64:
125 case WebAssembly::LOAD32_U_I64:
126 case WebAssembly::STORE32_I64:
127 return 2;
128 case WebAssembly::LOAD_I64:
129 case WebAssembly::LOAD_F64:
130 case WebAssembly::STORE_I64:
131 case WebAssembly::STORE_F64:
132 return 3;
Derek Schuffc64d7652016-08-01 22:25:02 +0000133 default:
134 llvm_unreachable("Only loads and stores have p2align values");
Dan Gohmanbb372242016-01-26 03:39:31 +0000135 }
136}
137
Derek Schuffc97ba932016-01-30 21:43:08 +0000138/// The operand number of the load or store address in load/store instructions.
Dan Gohman7f1bdb22016-10-06 22:08:28 +0000139static const unsigned LoadAddressOperandNo = 2;
140static const unsigned StoreAddressOperandNo = 1;
141
142/// The operand number of the load or store p2align in load/store instructions.
143static const unsigned LoadP2AlignOperandNo = 3;
144static const unsigned StoreP2AlignOperandNo = 2;
Dan Gohmanbb372242016-01-26 03:39:31 +0000145
Dan Gohman2726b882016-10-06 22:29:32 +0000146/// This is used to indicate block signatures.
147enum ExprType {
148 Void = 0,
149 I32 = 1,
150 I64 = 2,
151 F32 = 3,
152 F64 = 4,
153 I8x16 = 5,
154 I16x8 = 6,
155 I32x4 = 7,
156 I64x2 = 8,
157 F32x4 = 9,
158 F64x2 = 10
159};
160
Dan Gohmanbb372242016-01-26 03:39:31 +0000161} // end namespace WebAssembly
162} // end namespace llvm
163
Dan Gohman10e730a2015-06-29 23:51:55 +0000164#endif