mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
5d88a6a71d
Summary: Renames `ExprType` to the more apt `BlockType` and adds a variant for multivalue blocks. Currently non-void blocks are only generated at the end of functions where the block return type needs to agree with the function return type, and that remains true for multivalue blocks. That invariant means that the actual signature does not need to be stored in the block signature `MachineOperand` because it can be inferred by `WebAssemblyMCInstLower` from the return type of the parent function. `WebAssemblyMCInstLower` continues to lower block signature operands to immediates when possible but lowers multivalue signatures to function type symbols. The AsmParser and Disassembler are updated to handle multivalue block types as well. Reviewers: aheejin, dschuff, aardappel Subscribers: sbc100, jgravelle-google, hiraditya, sunfish, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D68889 llvm-svn: 374933
48 lines
1.6 KiB
C++
48 lines
1.6 KiB
C++
//===-- WebAssemblyMCInstLower.h - Lower MachineInstr to MCInst -*- C++ -*-===//
|
|
//
|
|
// 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 file declares the class to lower WebAssembly MachineInstrs to
|
|
/// their corresponding MCInst records.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIB_TARGET_WEBASSEMBLY_WEBASSEMBLYMCINSTLOWER_H
|
|
#define LLVM_LIB_TARGET_WEBASSEMBLY_WEBASSEMBLYMCINSTLOWER_H
|
|
|
|
#include "llvm/BinaryFormat/Wasm.h"
|
|
#include "llvm/MC/MCInst.h"
|
|
#include "llvm/Support/Compiler.h"
|
|
|
|
namespace llvm {
|
|
class WebAssemblyAsmPrinter;
|
|
class MCContext;
|
|
class MCSymbol;
|
|
class MachineInstr;
|
|
class MachineOperand;
|
|
|
|
/// This class is used to lower an MachineInstr into an MCInst.
|
|
class LLVM_LIBRARY_VISIBILITY WebAssemblyMCInstLower {
|
|
MCContext &Ctx;
|
|
WebAssemblyAsmPrinter &Printer;
|
|
|
|
MCSymbol *GetGlobalAddressSymbol(const MachineOperand &MO) const;
|
|
MCSymbol *GetExternalSymbolSymbol(const MachineOperand &MO) const;
|
|
MCOperand lowerSymbolOperand(const MachineOperand &MO, MCSymbol *Sym) const;
|
|
MCOperand lowerTypeIndexOperand(SmallVector<wasm::ValType, 1> &&,
|
|
SmallVector<wasm::ValType, 4> &&) const;
|
|
|
|
public:
|
|
WebAssemblyMCInstLower(MCContext &ctx, WebAssemblyAsmPrinter &printer)
|
|
: Ctx(ctx), Printer(printer) {}
|
|
void lower(const MachineInstr *MI, MCInst &OutMI) const;
|
|
};
|
|
} // end namespace llvm
|
|
|
|
#endif
|