xref: /freebsd/contrib/llvm-project/llvm/lib/Target/BPF/BPFMCInstLower.h (revision e25152834cdf3b353892835a4f3b157e066a8ed4)
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 MachineOperand;
22*0b57cec5SDimitry Andric 
23*0b57cec5SDimitry Andric // BPFMCInstLower - This class is used to lower an MachineInstr into an MCInst.
24*0b57cec5SDimitry Andric class LLVM_LIBRARY_VISIBILITY BPFMCInstLower {
25*0b57cec5SDimitry Andric   MCContext &Ctx;
26*0b57cec5SDimitry Andric 
27*0b57cec5SDimitry Andric   AsmPrinter &Printer;
28*0b57cec5SDimitry Andric 
29*0b57cec5SDimitry Andric public:
BPFMCInstLower(MCContext & ctx,AsmPrinter & printer)30*0b57cec5SDimitry Andric   BPFMCInstLower(MCContext &ctx, AsmPrinter &printer)
31*0b57cec5SDimitry Andric       : Ctx(ctx), Printer(printer) {}
32*0b57cec5SDimitry Andric   void Lower(const MachineInstr *MI, MCInst &OutMI) const;
33*0b57cec5SDimitry Andric 
34*0b57cec5SDimitry Andric   MCOperand LowerSymbolOperand(const MachineOperand &MO, MCSymbol *Sym) const;
35*0b57cec5SDimitry Andric 
36*0b57cec5SDimitry Andric   MCSymbol *GetGlobalAddressSymbol(const MachineOperand &MO) const;
37*0b57cec5SDimitry Andric   MCSymbol *GetExternalSymbolSymbol(const MachineOperand &MO) const;
38*0b57cec5SDimitry Andric };
39*0b57cec5SDimitry Andric }
40*0b57cec5SDimitry Andric 
41*0b57cec5SDimitry Andric #endif
42