2015-06-30 07:51:55 +08:00
|
|
|
//==- WebAssemblyMCTargetDesc.h - WebAssembly Target Descriptions -*- C++ -*-=//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// \file
|
|
|
|
/// \brief This file provides WebAssembly-specific target descriptions.
|
|
|
|
///
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_LIB_TARGET_WEBASSEMBLY_MCTARGETDESC_WEBASSEMBLYMCTARGETDESC_H
|
|
|
|
#define LLVM_LIB_TARGET_WEBASSEMBLY_MCTARGETDESC_WEBASSEMBLYMCTARGETDESC_H
|
|
|
|
|
2016-01-12 11:09:16 +08:00
|
|
|
#include "llvm/MC/MCInstrDesc.h"
|
2015-06-30 07:51:55 +08:00
|
|
|
#include "llvm/Support/DataTypes.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class MCAsmBackend;
|
|
|
|
class MCCodeEmitter;
|
|
|
|
class MCContext;
|
|
|
|
class MCInstrInfo;
|
|
|
|
class MCObjectWriter;
|
|
|
|
class MCSubtargetInfo;
|
|
|
|
class Target;
|
|
|
|
class Triple;
|
2015-11-24 00:50:18 +08:00
|
|
|
class raw_pwrite_stream;
|
2015-06-30 07:51:55 +08:00
|
|
|
|
2015-07-02 05:42:34 +08:00
|
|
|
extern Target TheWebAssemblyTarget32;
|
|
|
|
extern Target TheWebAssemblyTarget64;
|
2015-06-30 07:51:55 +08:00
|
|
|
|
2015-11-24 00:50:18 +08:00
|
|
|
MCCodeEmitter *createWebAssemblyMCCodeEmitter(const MCInstrInfo &MCII,
|
|
|
|
MCContext &Ctx);
|
|
|
|
|
2016-01-08 08:43:54 +08:00
|
|
|
MCAsmBackend *createWebAssemblyAsmBackend(const Triple &TT);
|
2015-06-30 07:51:55 +08:00
|
|
|
|
2015-12-17 09:39:00 +08:00
|
|
|
MCObjectWriter *createWebAssemblyELFObjectWriter(raw_pwrite_stream &OS,
|
|
|
|
bool Is64Bit, uint8_t OSABI);
|
|
|
|
|
2016-01-12 11:09:16 +08:00
|
|
|
namespace WebAssembly {
|
|
|
|
enum OperandType {
|
|
|
|
/// Basic block label in a branch construct.
|
|
|
|
OPERAND_BASIC_BLOCK = MCOI::OPERAND_FIRST_TARGET,
|
|
|
|
/// Floating-point immediate.
|
|
|
|
OPERAND_FPIMM
|
|
|
|
};
|
|
|
|
} // end namespace WebAssembly
|
|
|
|
|
|
|
|
namespace WebAssemblyII {
|
|
|
|
enum {
|
|
|
|
// For variadic instructions, this flag indicates whether an operand
|
|
|
|
// in the variable_ops range is an immediate value.
|
|
|
|
VariableOpIsImmediate = (1 << 0),
|
|
|
|
// For immediate values in the variable_ops range, this flag indicates
|
|
|
|
// whether the value represents a type.
|
|
|
|
VariableOpImmediateIsType = (1 << 1),
|
|
|
|
};
|
|
|
|
} // end namespace WebAssemblyII
|
|
|
|
|
2015-06-30 07:51:55 +08:00
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
// Defines symbolic names for WebAssembly registers. This defines a mapping from
|
|
|
|
// register name to register number.
|
|
|
|
//
|
2015-07-11 02:23:10 +08:00
|
|
|
#define GET_REGINFO_ENUM
|
|
|
|
#include "WebAssemblyGenRegisterInfo.inc"
|
|
|
|
|
2015-07-23 05:28:15 +08:00
|
|
|
// Defines symbolic names for the WebAssembly instructions.
|
|
|
|
//
|
|
|
|
#define GET_INSTRINFO_ENUM
|
|
|
|
#include "WebAssemblyGenInstrInfo.inc"
|
|
|
|
|
2015-06-30 07:51:55 +08:00
|
|
|
#define GET_SUBTARGETINFO_ENUM
|
|
|
|
#include "WebAssemblyGenSubtargetInfo.inc"
|
|
|
|
|
|
|
|
#endif
|