Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/llvm-project/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.h
35295 views
1
//===- LanaiDisassembler.cpp - Disassembler for Lanai -----------*- C++ -*-===//
2
//
3
// 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
6
//
7
//===----------------------------------------------------------------------===//
8
//
9
// This file is part of the Lanai Disassembler.
10
//
11
//===----------------------------------------------------------------------===//
12
13
#ifndef LLVM_LIB_TARGET_LANAI_DISASSEMBLER_LANAIDISASSEMBLER_H
14
#define LLVM_LIB_TARGET_LANAI_DISASSEMBLER_LANAIDISASSEMBLER_H
15
16
#include "llvm/MC/MCDisassembler/MCDisassembler.h"
17
18
#define DEBUG_TYPE "lanai-disassembler"
19
20
namespace llvm {
21
22
class LanaiDisassembler : public MCDisassembler {
23
public:
24
LanaiDisassembler(const MCSubtargetInfo &STI, MCContext &Ctx);
25
26
~LanaiDisassembler() override = default;
27
28
// getInstruction - See MCDisassembler.
29
MCDisassembler::DecodeStatus
30
getInstruction(MCInst &Instr, uint64_t &Size, ArrayRef<uint8_t> Bytes,
31
uint64_t Address, raw_ostream &CStream) const override;
32
};
33
34
} // end namespace llvm
35
36
#endif // LLVM_LIB_TARGET_LANAI_DISASSEMBLER_LANAIDISASSEMBLER_H
37
38