mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
1924b30c0e
- TargetMachine implementation for M68k - ISel, ISched for M68k - Other lowering (e.g. FrameLowering) - AsmPrinter Authors: myhsu, m4yers, glaubitz Differential Revision: https://reviews.llvm.org/D88391
55 lines
1.7 KiB
C++
55 lines
1.7 KiB
C++
//===-- M68kMCInstLower.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 contains code to lower M68k MachineInstrs to their
|
|
/// corresponding MCInst records.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIB_TARGET_M68K_M68KMCINSTLOWER_H
|
|
#define LLVM_LIB_TARGET_M68K_M68KMCINSTLOWER_H
|
|
|
|
#include "llvm/CodeGen/MachineOperand.h"
|
|
#include "llvm/MC/MCAsmInfo.h"
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
namespace llvm {
|
|
class MCContext;
|
|
class MCInst;
|
|
class MCOperand;
|
|
class MachineInstr;
|
|
class MachineFunction;
|
|
class M68kAsmPrinter;
|
|
|
|
/// This class is used to lower an MachineInstr into an MCInst.
|
|
class M68kMCInstLower {
|
|
typedef MachineOperand::MachineOperandType MachineOperandType;
|
|
MCContext &Ctx;
|
|
MachineFunction &MF;
|
|
const TargetMachine &TM;
|
|
const MCAsmInfo &MAI;
|
|
M68kAsmPrinter &AsmPrinter;
|
|
|
|
public:
|
|
M68kMCInstLower(MachineFunction &MF, M68kAsmPrinter &AP);
|
|
|
|
/// Lower an MO_GlobalAddress or MO_ExternalSymbol operand to an MCSymbol.
|
|
MCSymbol *GetSymbolFromOperand(const MachineOperand &MO) const;
|
|
|
|
MCOperand LowerSymbolOperand(const MachineOperand &MO, MCSymbol *Sym) const;
|
|
|
|
Optional<MCOperand> LowerOperand(const MachineInstr *MI,
|
|
const MachineOperand &MO) const;
|
|
|
|
void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
|
};
|
|
} // namespace llvm
|
|
|
|
#endif
|