Files
clang-p2996/llvm/lib/Target/AVR/MCTargetDesc/AVRELFStreamer.cpp
serge-sans-paille ef736a1c39 Cleanup LLVMMC headers
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
2022-02-09 11:09:17 +01:00

69 lines
2.1 KiB
C++

#include "AVRELFStreamer.h"
#include "llvm/BinaryFormat/ELF.h"
#include "llvm/MC/MCAssembler.h"
#include "llvm/MC/MCSubtargetInfo.h"
#include "llvm/MC/SubtargetFeature.h"
#include "llvm/Support/FormattedStream.h"
#include "AVRMCTargetDesc.h"
namespace llvm {
static unsigned getEFlagsForFeatureSet(const FeatureBitset &Features) {
unsigned EFlags = 0;
// Set architecture
if (Features[AVR::ELFArchAVR1])
EFlags |= ELF::EF_AVR_ARCH_AVR1;
else if (Features[AVR::ELFArchAVR2])
EFlags |= ELF::EF_AVR_ARCH_AVR2;
else if (Features[AVR::ELFArchAVR25])
EFlags |= ELF::EF_AVR_ARCH_AVR25;
else if (Features[AVR::ELFArchAVR3])
EFlags |= ELF::EF_AVR_ARCH_AVR3;
else if (Features[AVR::ELFArchAVR31])
EFlags |= ELF::EF_AVR_ARCH_AVR31;
else if (Features[AVR::ELFArchAVR35])
EFlags |= ELF::EF_AVR_ARCH_AVR35;
else if (Features[AVR::ELFArchAVR4])
EFlags |= ELF::EF_AVR_ARCH_AVR4;
else if (Features[AVR::ELFArchAVR5])
EFlags |= ELF::EF_AVR_ARCH_AVR5;
else if (Features[AVR::ELFArchAVR51])
EFlags |= ELF::EF_AVR_ARCH_AVR51;
else if (Features[AVR::ELFArchAVR6])
EFlags |= ELF::EF_AVR_ARCH_AVR6;
else if (Features[AVR::ELFArchTiny])
EFlags |= ELF::EF_AVR_ARCH_AVRTINY;
else if (Features[AVR::ELFArchXMEGA1])
EFlags |= ELF::EF_AVR_ARCH_XMEGA1;
else if (Features[AVR::ELFArchXMEGA2])
EFlags |= ELF::EF_AVR_ARCH_XMEGA2;
else if (Features[AVR::ELFArchXMEGA3])
EFlags |= ELF::EF_AVR_ARCH_XMEGA3;
else if (Features[AVR::ELFArchXMEGA4])
EFlags |= ELF::EF_AVR_ARCH_XMEGA4;
else if (Features[AVR::ELFArchXMEGA5])
EFlags |= ELF::EF_AVR_ARCH_XMEGA5;
else if (Features[AVR::ELFArchXMEGA6])
EFlags |= ELF::EF_AVR_ARCH_XMEGA6;
else if (Features[AVR::ELFArchXMEGA7])
EFlags |= ELF::EF_AVR_ARCH_XMEGA7;
return EFlags;
}
AVRELFStreamer::AVRELFStreamer(MCStreamer &S, const MCSubtargetInfo &STI)
: AVRTargetStreamer(S) {
MCAssembler &MCA = getStreamer().getAssembler();
unsigned EFlags = MCA.getELFHeaderEFlags();
EFlags |= getEFlagsForFeatureSet(STI.getFeatureBits());
MCA.setELFHeaderEFlags(EFlags);
}
} // end namespace llvm