
There's a few relevant forward declarations in there that may require downstream adding explicit includes: llvm/MC/MCContext.h no longer includes llvm/BinaryFormat/ELF.h, llvm/MC/MCSubtargetInfo.h, llvm/MC/MCTargetOptions.h llvm/MC/MCObjectStreamer.h no longer include llvm/MC/MCAssembler.h llvm/MC/MCAssembler.h no longer includes llvm/MC/MCFixup.h, llvm/MC/MCFragment.h Counting preprocessed lines required to rebuild llvm-project on my setup: before: 1052436830 after: 1049293745 Which is significant and backs up the change in addition to the usual benefits of decreasing coupling between headers and compilation units. Discourse thread: https://discourse.llvm.org/t/include-what-you-use-include-cleanup Differential Revision: https://reviews.llvm.org/D119244
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
//===- PPCTargetStreamer.h - PPC Target Streamer ----------------*- 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIB_TARGET_POWERPC_PPCTARGETSTREAMER_H
|
|
#define LLVM_LIB_TARGET_POWERPC_PPCTARGETSTREAMER_H
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include "llvm/MC/MCExpr.h"
|
|
#include "llvm/MC/MCStreamer.h"
|
|
|
|
namespace llvm {
|
|
|
|
class MCExpr;
|
|
class MCSymbol;
|
|
class MCSymbolELF;
|
|
|
|
class PPCTargetStreamer : public MCTargetStreamer {
|
|
public:
|
|
PPCTargetStreamer(MCStreamer &S);
|
|
~PPCTargetStreamer() override;
|
|
|
|
virtual void emitTCEntry(const MCSymbol &S,
|
|
MCSymbolRefExpr::VariantKind Kind) = 0;
|
|
virtual void emitMachine(StringRef CPU) = 0;
|
|
virtual void emitAbiVersion(int AbiVersion) = 0;
|
|
virtual void emitLocalEntry(MCSymbolELF *S, const MCExpr *LocalOffset) = 0;
|
|
};
|
|
|
|
} // end namespace llvm
|
|
|
|
#endif // LLVM_LIB_TARGET_POWERPC_PPCTARGETSTREAMER_H
|