xref: /freebsd/contrib/llvm-project/llvm/lib/Target/BPF/BPFMCInstLower.h (revision 0b57cec536236d46e3dba9bd041533462f33dbb7)
1*0b57cec5SDimitry Andric //===-- BPFMCInstLower.h - Lower MachineInstr to MCInst ---------*- C++ -*-===//
2*0b57cec5SDimitry Andric //
3*0b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*0b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
5*0b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*0b57cec5SDimitry Andric //
7*0b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
8*0b57cec5SDimitry Andric 
9*0b57cec5SDimitry Andric #ifndef LLVM_LIB_TARGET_BPF_BPFMCINSTLOWER_H
10*0b57cec5SDimitry Andric #define LLVM_LIB_TARGET_BPF_BPFMCINSTLOWER_H
11*0b57cec5SDimitry Andric 
12*0b57cec5SDimitry Andric #include "llvm/Support/Compiler.h"
13*0b57cec5SDimitry Andric 
14*0b57cec5SDimitry Andric namespace llvm {
15*0b57cec5SDimitry Andric class AsmPrinter;
16*0b57cec5SDimitry Andric class MCContext;
17*0b57cec5SDimitry Andric class MCInst;
18*0b57cec5SDimitry Andric class MCOperand;
19*0b57cec5SDimitry Andric class MCSymbol;
20*0b57cec5SDimitry Andric class MachineInstr;
21*0b57cec5SDimitry Andric class MachineModuleInfoMachO;
22*0b57cec5SDimitry Andric class MachineOperand;
23*0b57cec5SDimitry Andric class Mangler;
24*0b57cec5SDimitry Andric 
25*0b57cec5SDimitry Andric // BPFMCInstLower - This class is used to lower an MachineInstr into an MCInst.
26*0b57cec5SDimitry Andric class LLVM_LIBRARY_VISIBILITY BPFMCInstLower {
27*0b57cec5SDimitry Andric   MCContext &Ctx;
28*0b57cec5SDimitry Andric 
29*0b57cec5SDimitry Andric   AsmPrinter &Printer;
30*0b57cec5SDimitry Andric 
31*0b57cec5SDimitry Andric public:
32*0b57cec5SDimitry Andric   BPFMCInstLower(MCContext &ctx, AsmPrinter &printer)
33*0b57cec5SDimitry Andric       : Ctx(ctx), Printer(printer) {}
34*0b57cec5SDimitry Andric   void Lower(const MachineInstr *MI, MCInst &OutMI) const;
35*0b57cec5SDimitry Andric 
36*0b57cec5SDimitry Andric   MCOperand LowerSymbolOperand(const MachineOperand &MO, MCSymbol *Sym) const;
37*0b57cec5SDimitry Andric 
38*0b57cec5SDimitry Andric   MCSymbol *GetGlobalAddressSymbol(const MachineOperand &MO) const;
39*0b57cec5SDimitry Andric   MCSymbol *GetExternalSymbolSymbol(const MachineOperand &MO) const;
40*0b57cec5SDimitry Andric };
41*0b57cec5SDimitry Andric }
42*0b57cec5SDimitry Andric 
43*0b57cec5SDimitry Andric #endif
44