blob: 0622d20814d31d18b76effe9305bbdc553d0be51 [file] [log] [blame]
Alexei Starovoitove4c8c802015-01-24 17:51:26 +00001//===-- BPFMCInstLower.h - Lower MachineInstr to MCInst ---------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Alexei Starovoitove4c8c802015-01-24 17:51:26 +00006//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_LIB_TARGET_BPF_BPFMCINSTLOWER_H
10#define LLVM_LIB_TARGET_BPF_BPFMCINSTLOWER_H
11
12#include "llvm/Support/Compiler.h"
13
14namespace llvm {
15class AsmPrinter;
16class MCContext;
17class MCInst;
18class MCOperand;
19class MCSymbol;
20class MachineInstr;
21class MachineModuleInfoMachO;
22class MachineOperand;
23class Mangler;
24
25// BPFMCInstLower - This class is used to lower an MachineInstr into an MCInst.
26class LLVM_LIBRARY_VISIBILITY BPFMCInstLower {
27 MCContext &Ctx;
28
29 AsmPrinter &Printer;
30
31public:
32 BPFMCInstLower(MCContext &ctx, AsmPrinter &printer)
33 : Ctx(ctx), Printer(printer) {}
34 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
35
36 MCOperand LowerSymbolOperand(const MachineOperand &MO, MCSymbol *Sym) const;
37
38 MCSymbol *GetGlobalAddressSymbol(const MachineOperand &MO) const;
Alexei Starovoitove4975482017-01-17 07:26:17 +000039 MCSymbol *GetExternalSymbolSymbol(const MachineOperand &MO) const;
Alexei Starovoitove4c8c802015-01-24 17:51:26 +000040};
Alexander Kornienkof00654e2015-06-23 09:49:53 +000041}
Alexei Starovoitove4c8c802015-01-24 17:51:26 +000042
43#endif