mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
d4d44b30bf
header to its own header, allowing users of fragments to have a narrower header file, and avoid circular header dependencies when getting the definition of MCSection prior to inspecting traits on MCSection pointers. This is part of a series of patches to allow LLVM to check for complete pointee types when computing its pointer traits. This is absolutely necessary to get correct (or reproducible) results for things like how many low bits are guaranteed to be zero. Note that this doesn't in any way change the design of MC, it is just moving code around to allow the *header files* to be more fine grained. Without this, it is impossible to get a complete type for MCSection where it is needed. If anyone would prefer a different slicing of the header files, I'm happy to oblige of course. =] llvm-svn: 256548
59 lines
1.1 KiB
CMake
59 lines
1.1 KiB
CMake
add_llvm_library(LLVMMC
|
|
ConstantPools.cpp
|
|
ELFObjectWriter.cpp
|
|
MCAsmBackend.cpp
|
|
MCAsmInfo.cpp
|
|
MCAsmInfoCOFF.cpp
|
|
MCAsmInfoDarwin.cpp
|
|
MCAsmInfoELF.cpp
|
|
MCAsmStreamer.cpp
|
|
MCAssembler.cpp
|
|
MCCodeEmitter.cpp
|
|
MCCodeGenInfo.cpp
|
|
MCContext.cpp
|
|
MCDwarf.cpp
|
|
MCELFObjectTargetWriter.cpp
|
|
MCELFStreamer.cpp
|
|
MCExpr.cpp
|
|
MCFragment.cpp
|
|
MCInst.cpp
|
|
MCInstPrinter.cpp
|
|
MCInstrAnalysis.cpp
|
|
MCInstrDesc.cpp
|
|
MCLabel.cpp
|
|
MCLinkerOptimizationHint.cpp
|
|
MCMachOStreamer.cpp
|
|
MCMachObjectTargetWriter.cpp
|
|
MCNullStreamer.cpp
|
|
MCObjectFileInfo.cpp
|
|
MCObjectStreamer.cpp
|
|
MCObjectWriter.cpp
|
|
MCRegisterInfo.cpp
|
|
MCSchedule.cpp
|
|
MCSection.cpp
|
|
MCSectionCOFF.cpp
|
|
MCSectionELF.cpp
|
|
MCSectionMachO.cpp
|
|
MCStreamer.cpp
|
|
MCSubtargetInfo.cpp
|
|
MCSymbol.cpp
|
|
MCSymbolELF.cpp
|
|
MCSymbolizer.cpp
|
|
MCTargetOptions.cpp
|
|
MCValue.cpp
|
|
MCWin64EH.cpp
|
|
MCWinEH.cpp
|
|
MachObjectWriter.cpp
|
|
StringTableBuilder.cpp
|
|
SubtargetFeature.cpp
|
|
WinCOFFObjectWriter.cpp
|
|
WinCOFFStreamer.cpp
|
|
YAML.cpp
|
|
|
|
ADDITIONAL_HEADER_DIRS
|
|
${LLVM_MAIN_INCLUDE_DIR}/llvm/MC
|
|
)
|
|
|
|
add_subdirectory(MCParser)
|
|
add_subdirectory(MCDisassembler)
|