git: 297eecfb02bb - main - Merge llvm-project main llvmorg-18-init-16864-g3b3ee1f53424
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 06 Apr 2024 20:18:07 UTC
The branch main has been updated by dim:
URL: https://cgit.FreeBSD.org/src/commit/?id=297eecfb02bb25902531dbb5c3b9a88caf8adf29
commit 297eecfb02bb25902531dbb5c3b9a88caf8adf29
Merge: 1db9f3b21e39 950076cd18f3
Author: Dimitry Andric <dim@FreeBSD.org>
AuthorDate: 2024-01-11 18:29:01 +0000
Commit: Dimitry Andric <dim@FreeBSD.org>
CommitDate: 2024-04-06 20:13:39 +0000
Merge llvm-project main llvmorg-18-init-16864-g3b3ee1f53424
This updates llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and
openmp to llvm-project main llvmorg-18-init-16864-g3b3ee1f53424.
PR: 276104
MFC after: 1 month
.../clang/include/clang/AST/DeclBase.h | 10 +
.../llvm-project/clang/include/clang/AST/DeclCXX.h | 3 +
.../llvm-project/clang/include/clang/AST/Stmt.h | 6 +-
.../llvm-project/clang/include/clang/AST/Type.h | 3 +
.../llvm-project/clang/include/clang/Basic/Attr.td | 18 +
.../clang/include/clang/Basic/AttrDocs.td | 78 +++
.../include/clang/Basic/DiagnosticFrontendKinds.td | 2 +-
.../include/clang/Basic/DiagnosticSemaKinds.td | 15 +
.../clang/include/clang/Basic/LangOptions.def | 1 +
.../clang/include/clang/Basic/TargetInfo.h | 1 +
.../clang/include/clang/Basic/arm_sve.td | 22 +-
.../clang/include/clang/Driver/Options.td | 18 +-
.../clang/include/clang/Format/Format.h | 20 +-
.../clang/include/clang/Parse/Parser.h | 24 +-
.../llvm-project/clang/include/clang/Sema/Sema.h | 3 +
.../clang/include/clang/Sema/TypoCorrection.h | 12 +-
contrib/llvm-project/clang/lib/AST/ASTContext.cpp | 7 +
contrib/llvm-project/clang/lib/AST/ASTImporter.cpp | 37 +-
contrib/llvm-project/clang/lib/AST/DeclBase.cpp | 74 ++-
contrib/llvm-project/clang/lib/AST/DeclCXX.cpp | 13 +
contrib/llvm-project/clang/lib/AST/Expr.cpp | 83 +---
.../clang/lib/AST/Interp/ByteCodeExprGen.cpp | 7 +
.../clang/lib/AST/Interp/Descriptor.cpp | 6 +-
.../llvm-project/clang/lib/AST/Interp/Descriptor.h | 7 +-
.../llvm-project/clang/lib/AST/Interp/Interp.cpp | 12 +
.../clang/lib/AST/Interp/InterpBuiltin.cpp | 33 +-
.../llvm-project/clang/lib/AST/Interp/Program.cpp | 16 +-
contrib/llvm-project/clang/lib/AST/Type.cpp | 34 +-
.../clang/lib/Analysis/ExprMutationAnalyzer.cpp | 355 +++++++-------
.../clang/lib/Basic/Targets/AArch64.cpp | 7 +
.../llvm-project/clang/lib/Basic/Targets/RISCV.cpp | 5 +-
.../llvm-project/clang/lib/CodeGen/CGBuiltin.cpp | 244 +++++++++-
contrib/llvm-project/clang/lib/CodeGen/CGCall.cpp | 2 +
.../llvm-project/clang/lib/CodeGen/CGException.cpp | 7 +-
contrib/llvm-project/clang/lib/CodeGen/CGExpr.cpp | 340 +++++++++++++-
.../llvm-project/clang/lib/CodeGen/CGObjCGNU.cpp | 35 +-
.../clang/lib/CodeGen/CodeGenFunction.h | 22 +
.../clang/lib/CodeGen/CodeGenModule.cpp | 2 +
.../clang/lib/CodeGen/CoverageMappingGen.cpp | 13 +-
.../clang/lib/CodeGen/Targets/AArch64.cpp | 2 +
.../clang/lib/Driver/ToolChains/Clang.cpp | 6 +-
.../clang/lib/Driver/ToolChains/Flang.cpp | 57 ++-
.../clang/lib/Driver/ToolChains/Flang.h | 7 +
.../clang/lib/Driver/ToolChains/Gnu.cpp | 8 +-
.../clang/lib/Driver/ToolChains/Linux.cpp | 8 +-
contrib/llvm-project/clang/lib/Format/Format.cpp | 30 +-
.../llvm-project/clang/lib/Format/FormatToken.cpp | 4 +-
.../llvm-project/clang/lib/Format/FormatToken.h | 25 +-
.../clang/lib/Format/TokenAnnotator.cpp | 14 +-
.../clang/lib/Format/UnwrappedLineFormatter.cpp | 10 +-
.../clang/lib/Format/UnwrappedLineParser.cpp | 4 +-
.../clang/lib/Format/WhitespaceManager.cpp | 9 +-
.../clang/lib/Format/WhitespaceManager.h | 1 +
.../lib/Frontend/VerifyDiagnosticConsumer.cpp | 15 +-
.../llvm-project/clang/lib/Headers/ia32intrin.h | 376 +++++++--------
.../clang/lib/Interpreter/Interpreter.cpp | 1 +
contrib/llvm-project/clang/lib/Parse/ParseDecl.cpp | 8 +-
contrib/llvm-project/clang/lib/Parse/ParseExpr.cpp | 26 +-
.../llvm-project/clang/lib/Parse/ParseOpenACC.cpp | 65 +--
contrib/llvm-project/clang/lib/Sema/SemaDecl.cpp | 6 +
.../llvm-project/clang/lib/Sema/SemaDeclAttr.cpp | 133 ++++++
contrib/llvm-project/clang/lib/Sema/SemaExpr.cpp | 16 +-
.../llvm-project/clang/lib/Sema/SemaExprMember.cpp | 3 +-
.../llvm-project/clang/lib/Sema/SemaOverload.cpp | 10 +
contrib/llvm-project/clang/lib/Sema/SemaStmt.cpp | 2 +-
.../llvm-project/clang/lib/Sema/TreeTransform.h | 20 +-
.../Checkers/StdLibraryFunctionsChecker.cpp | 21 +-
.../lib/StaticAnalyzer/Checkers/StreamChecker.cpp | 59 ++-
.../clang/tools/clang-format/ClangFormat.cpp | 65 ++-
.../compiler-rt/include/profile/InstrProfData.inc | 2 +
.../lib/profile/InstrProfilingPlatformLinux.c | 9 -
.../lib/sanitizer_common/sanitizer_flags.inc | 3 +
.../sanitizer_symbolizer_report.cpp | 36 +-
.../sanitizer_thread_arg_retval.cpp | 23 +-
.../sanitizer_common/sanitizer_thread_arg_retval.h | 1 +
.../lib/scudo/standalone/condition_variable.h | 2 +-
contrib/llvm-project/libcxx/include/__config | 5 -
.../libcxx/include/__memory/shared_ptr.h | 4 +-
contrib/llvm-project/libcxx/include/cstdio | 2 +-
contrib/llvm-project/libcxx/include/regex | 3 +
contrib/llvm-project/libcxx/include/tuple | 2 +-
contrib/llvm-project/lld/ELF/Arch/AArch64.cpp | 3 +
contrib/llvm-project/lld/ELF/Arch/LoongArch.cpp | 110 ++---
contrib/llvm-project/lld/ELF/Arch/RISCV.cpp | 7 +-
contrib/llvm-project/lld/ELF/InputSection.cpp | 10 +-
contrib/llvm-project/lld/ELF/Target.h | 2 +-
.../llvm-project/lldb/include/lldb/Core/Module.h | 6 +
.../llvm-project/lldb/include/lldb/Symbol/Type.h | 4 +
.../lldb/include/lldb/Utility/StreamString.h | 2 +-
contrib/llvm-project/lldb/source/Core/Module.cpp | 17 +
.../ExpressionParser/Clang/ClangASTImporter.cpp | 51 +-
.../Language/CPlusPlus/CPlusPlusLanguage.cpp | 35 ++
.../source/Plugins/Language/CPlusPlus/LibCxx.cpp | 57 +++
.../source/Plugins/Language/CPlusPlus/LibCxx.h | 8 +
.../source/Plugins/SymbolFile/DWARF/DWARFDIE.cpp | 44 +-
.../Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp | 11 +-
.../intel-pt/CommandObjectTraceStartIntelPT.cpp | 4 +-
.../Plugins/Trace/intel-pt/DecodedThread.cpp | 32 +-
.../source/Plugins/Trace/intel-pt/DecodedThread.h | 26 +-
.../Plugins/Trace/intel-pt/LibiptDecoder.cpp | 4 +-
.../Plugins/Trace/intel-pt/TraceCursorIntelPT.cpp | 4 +-
.../Trace/intel-pt/TraceIntelPTBundleLoader.cpp | 13 +-
contrib/llvm-project/lldb/source/Symbol/Type.cpp | 4 +
.../lldb/source/Target/ProcessTrace.cpp | 2 +
.../lldb/source/Utility/StreamString.cpp | 2 +-
.../llvm-project/llvm/include/llvm/ADT/STLExtras.h | 29 +-
.../llvm-project/llvm/include/llvm/ADT/StringRef.h | 4 +-
.../llvm/include/llvm/Analysis/VecFuncs.def | 190 ++++----
.../llvm/BinaryFormat/ELFRelocs/AArch64.def | 1 +
.../include/llvm/BinaryFormat/ELFRelocs/RISCV.def | 3 +-
.../llvm/CodeGen/AssignmentTrackingAnalysis.h | 29 +-
.../llvm/include/llvm/CodeGen/CodeGenPassBuilder.h | 1 +
.../llvm/CodeGen/GlobalISel/CombinerHelper.h | 3 +
.../llvm/CodeGen/GlobalISel/GenericMachineInstrs.h | 18 +
.../include/llvm/CodeGen/GlobalISel/Localizer.h | 7 +-
.../llvm/include/llvm/CodeGen/SelectionDAGISel.h | 16 +
.../llvm/include/llvm/CodeGen/SelectionDAGNodes.h | 7 +
.../Parallel => include/llvm/DWARFLinker}/Utils.h | 36 +-
.../llvm/include/llvm/Frontend/OpenACC/ACC.td | 66 +--
.../llvm/include/llvm/IR/IntrinsicsAArch64.td | 6 +-
.../llvm/include/llvm/IR/IntrinsicsNVVM.td | 10 +
.../llvm/include/llvm/IR/ModuleSummaryIndex.h | 6 +
.../llvm/include/llvm/IR/PatternMatch.h | 36 ++
.../llvm/include/llvm/ProfileData/InstrProf.h | 3 +-
.../include/llvm/ProfileData/InstrProfData.inc | 2 +
.../llvm/include/llvm/Support/RISCVISAInfo.h | 22 +-
.../llvm/include/llvm/Support/TargetOpcodes.def | 3 +
.../llvm/include/llvm/Target/GenericOpcodes.td | 21 +
.../llvm/Target/GlobalISel/SelectionDAGCompat.td | 3 +
.../llvm/include/llvm/Target/TargetPfmCounters.td | 21 +
.../llvm/TargetParser/ARMTargetParserCommon.h | 1 +
.../llvm/lib/Analysis/LazyValueInfo.cpp | 8 +-
.../llvm/lib/Bitcode/Writer/BitcodeWriter.cpp | 17 +-
.../lib/CodeGen/AssignmentTrackingAnalysis.cpp | 34 ++
.../llvm/lib/CodeGen/BranchFolding.cpp | 17 +
.../llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp | 84 ++++
.../llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp | 12 +
.../lib/CodeGen/GlobalISel/LegalizerHelper.cpp | 10 +
.../llvm/lib/CodeGen/GlobalISel/Localizer.cpp | 55 ++-
.../CodeGen/LiveDebugValues/InstrRefBasedImpl.cpp | 9 +-
.../llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 74 +--
.../CodeGen/SelectionDAG/LegalizeVectorTypes.cpp | 2 +-
.../llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 12 +-
.../lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 48 +-
.../lib/CodeGen/SelectionDAG/TargetLowering.cpp | 5 +-
.../lib/CodeGen/TargetLoweringObjectFileImpl.cpp | 11 +-
.../llvm/lib/DWARFLinker/Classic/DWARFLinker.cpp | 15 +-
.../Parallel/AcceleratorRecordsSaver.cpp | 2 +-
.../Parallel/DWARFLinkerCompileUnit.cpp | 23 +-
.../lib/DWARFLinker/Parallel/DWARFLinkerImpl.cpp | 2 +-
.../DWARFLinker/Parallel/DebugLineSectionEmitter.h | 38 +-
.../llvm-project/llvm/lib/DWARFLinker/Utils.cpp | 2 +
contrib/llvm-project/llvm/lib/IR/Verifier.cpp | 11 +
.../llvm/lib/MC/MCParser/ELFAsmParser.cpp | 6 +-
contrib/llvm-project/llvm/lib/MC/MCSectionELF.cpp | 18 +-
.../llvm-project/llvm/lib/Passes/PassBuilder.cpp | 1 +
.../llvm-project/llvm/lib/Passes/PassRegistry.def | 4 +-
.../llvm-project/llvm/lib/Support/RISCVISAInfo.cpp | 331 +++++++------
contrib/llvm-project/llvm/lib/TableGen/Record.cpp | 15 +-
.../llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp | 5 +
.../lib/Target/AArch64/AArch64ISelDAGToDAG.cpp | 4 +-
.../lib/Target/AArch64/AArch64ISelLowering.cpp | 3 +-
.../llvm/lib/Target/AArch64/AArch64InstrInfo.cpp | 3 +
.../Target/AArch64/AArch64LoadStoreOptimizer.cpp | 64 ++-
.../Target/AArch64/AArch64LoopIdiomTransform.cpp | 2 +-
.../llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td | 18 +-
.../Target/AArch64/AArch64TargetTransformInfo.cpp | 98 ++--
.../Target/AArch64/GISel/AArch64LegalizerInfo.cpp | 3 +-
.../MCTargetDesc/AArch64ELFObjectWriter.cpp | 8 +-
.../llvm/lib/Target/AArch64/SMEInstrFormats.td | 2 +-
.../llvm/lib/Target/AMDGPU/AMDGPUCombine.td | 2 +-
.../llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp | 12 +-
.../lib/Target/AMDGPU/AMDGPULowerModuleLDSPass.cpp | 52 ++
.../Target/AMDGPU/AMDGPUPostLegalizerCombiner.cpp | 46 +-
.../Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp | 43 +-
.../llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp | 17 +-
.../llvm/lib/Target/AMDGPU/GCNSubtarget.h | 2 +
.../Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.cpp | 1 -
.../llvm/lib/Target/AMDGPU/SIISelLowering.cpp | 8 +-
.../llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp | 5 +-
.../llvm/lib/Target/AMDGPU/SIInstrInfo.cpp | 33 +-
.../llvm/lib/Target/AMDGPU/SIInstrInfo.td | 33 +-
.../llvm/lib/Target/AMDGPU/VOP1Instructions.td | 55 ++-
.../llvm/lib/Target/AMDGPU/VOP2Instructions.td | 14 +-
.../llvm/lib/Target/AMDGPU/VOPInstructions.td | 13 +-
.../llvm/lib/Target/ARM/ARMISelLowering.cpp | 9 +-
.../llvm/lib/Target/MSP430/MSP430ISelLowering.cpp | 13 +-
.../llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp | 6 +-
.../llvm/lib/Target/NVPTX/NVPTXInstrInfo.td | 3 +
.../llvm/lib/Target/NVPTX/NVPTXIntrinsics.td | 13 +
.../llvm/lib/Target/PowerPC/PPCISelLowering.cpp | 2 +-
.../llvm/lib/Target/PowerPC/PPCInstrInfo.td | 2 +-
.../lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp | 77 ++-
.../RISCV/Disassembler/RISCVDisassembler.cpp | 6 +-
.../lib/Target/RISCV/GISel/RISCVLegalizerInfo.cpp | 40 ++
.../RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp | 2 +
.../Target/RISCV/MCTargetDesc/RISCVELFStreamer.cpp | 7 +
.../lib/Target/RISCV/RISCVExpandPseudoInsts.cpp | 12 +-
.../llvm/lib/Target/RISCV/RISCVFeatures.td | 1 +
.../llvm/lib/Target/RISCV/RISCVISelLowering.cpp | 46 +-
.../llvm/lib/Target/RISCV/RISCVISelLowering.h | 6 +-
.../llvm/lib/Target/RISCV/RISCVInsertVSETVLI.cpp | 37 +-
.../llvm/lib/Target/RISCV/RISCVInstrInfo.cpp | 17 +-
.../llvm/lib/Target/RISCV/RISCVInstrInfoA.td | 140 +++---
.../llvm/lib/Target/RISCV/RISCVInstrInfoD.td | 16 +-
.../lib/Target/RISCV/RISCVInstrInfoVSDPatterns.td | 33 +-
.../lib/Target/RISCV/RISCVInstrInfoVVLPatterns.td | 38 +-
.../llvm/lib/Target/RISCV/RISCVInstrInfoZa.td | 98 +++-
.../llvm/lib/Target/RISCV/RISCVRegisterInfo.td | 45 +-
.../lib/Target/SystemZ/SystemZISelDAGToDAG.cpp | 2 +-
.../lib/Target/SystemZ/SystemZISelLowering.cpp | 7 +
.../lib/Target/WebAssembly/WebAssemblyFastISel.cpp | 4 +-
.../llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h | 16 +
.../llvm/lib/Target/X86/X86FlagsCopyLowering.cpp | 1 +
.../llvm/lib/Target/X86/X86ISelLowering.cpp | 53 ++-
.../llvm/lib/Target/X86/X86InstrArithmetic.td | 110 +++--
.../llvm/lib/Target/X86/X86InstrCompiler.td | 380 ++++++++-------
.../llvm/lib/Target/X86/X86InstrMisc.td | 12 +-
.../llvm/lib/Target/X86/X86PfmCounters.td | 18 +
.../lib/TargetParser/ARMTargetParserCommon.cpp | 7 +-
.../llvm/lib/TextAPI/InterfaceFile.cpp | 8 +
.../IPO/MemProfContextDisambiguation.cpp | 521 ++++++++++++++++++---
.../Transforms/InstCombine/InstCombineAddSub.cpp | 24 +
.../Transforms/InstCombine/InstCombineAndOrXor.cpp | 114 +++--
.../Transforms/InstCombine/InstCombineCalls.cpp | 4 +
.../Transforms/InstCombine/InstCombineSelect.cpp | 4 +-
.../Instrumentation/AddressSanitizer.cpp | 2 +-
.../Instrumentation/PGOInstrumentation.cpp | 12 +-
.../llvm/lib/Transforms/Scalar/LoopFlatten.cpp | 79 ++--
.../Transforms/Scalar/RewriteStatepointsForGC.cpp | 23 +-
.../Scalar/SeparateConstOffsetFromGEP.cpp | 58 +--
.../Scalar/StraightLineStrengthReduce.cpp | 55 +--
.../llvm/lib/Transforms/Utils/Local.cpp | 3 +-
.../llvm/lib/Transforms/Utils/SimplifyCFG.cpp | 13 +-
.../lib/Transforms/Vectorize/LoopVectorize.cpp | 6 +-
.../lib/Transforms/Vectorize/SLPVectorizer.cpp | 69 ++-
.../llvm/utils/TableGen/CodeGenDAGPatterns.cpp | 2 +-
.../llvm/utils/TableGen/DAGISelMatcherEmitter.cpp | 81 +++-
.../llvm/utils/TableGen/ExegesisEmitter.cpp | 52 +-
.../utils/TableGen/GlobalISelCombinerEmitter.cpp | 2 +-
.../openmp/runtime/src/z_Linux_util.cpp | 2 +-
lib/clang/include/VCSVersion.inc | 6 +-
lib/clang/include/lld/Common/Version.inc | 2 +-
lib/clang/include/llvm/Support/VCSRevision.h | 2 +-
lib/clang/libllvm/Makefile | 32 +-
lib/libc++/Makefile | 40 +-
lib/libc++/module.modulemap | 4 +-
247 files changed, 5252 insertions(+), 2361 deletions(-)
diff --cc contrib/llvm-project/clang/include/clang/Format/Format.h
index 8604dea689f9,59b645ecab71..59b645ecab71
mode 100755,100644..100755
--- a/contrib/llvm-project/clang/include/clang/Format/Format.h
+++ b/contrib/llvm-project/clang/include/clang/Format/Format.h
diff --cc lib/clang/include/VCSVersion.inc
index 57d5876fcc41,000000000000..10f324e8b9b9
mode 100644,000000..100644
--- a/lib/clang/include/VCSVersion.inc
+++ b/lib/clang/include/VCSVersion.inc
@@@ -1,8 -1,0 +1,8 @@@
- #define LLVM_REVISION "llvmorg-18-init-16595-g7c00a5be5cde"
++#define LLVM_REVISION "llvmorg-18-init-16864-g3b3ee1f53424"
+#define LLVM_REPOSITORY "https://github.com/llvm/llvm-project.git"
+
- #define CLANG_REVISION "llvmorg-18-init-16595-g7c00a5be5cde"
++#define CLANG_REVISION "llvmorg-18-init-16864-g3b3ee1f53424"
+#define CLANG_REPOSITORY "https://github.com/llvm/llvm-project.git"
+
- #define LLDB_REVISION "llvmorg-18-init-16595-g7c00a5be5cde"
++#define LLDB_REVISION "llvmorg-18-init-16864-g3b3ee1f53424"
+#define LLDB_REPOSITORY "https://github.com/llvm/llvm-project.git"
diff --cc lib/clang/include/lld/Common/Version.inc
index 27669c9a009a,000000000000..91388fc25c4b
mode 100644,000000..100644
--- a/lib/clang/include/lld/Common/Version.inc
+++ b/lib/clang/include/lld/Common/Version.inc
@@@ -1,4 -1,0 +1,4 @@@
+// Local identifier in __FreeBSD_version style
+#define LLD_FREEBSD_VERSION 1500000
+
- #define LLD_VERSION_STRING "18.0.0 (FreeBSD llvmorg-18-init-16595-g7c00a5be5cde-" __XSTRING(LLD_FREEBSD_VERSION) ")"
++#define LLD_VERSION_STRING "18.0.0 (FreeBSD llvmorg-18-init-16864-g3b3ee1f53424-" __XSTRING(LLD_FREEBSD_VERSION) ")"
diff --cc lib/clang/include/llvm/Support/VCSRevision.h
index e826e1ffc7ea,000000000000..46ffcc524ca0
mode 100644,000000..100644
--- a/lib/clang/include/llvm/Support/VCSRevision.h
+++ b/lib/clang/include/llvm/Support/VCSRevision.h
@@@ -1,2 -1,0 +1,2 @@@
- #define LLVM_REVISION "llvmorg-18-init-16595-g7c00a5be5cde"
++#define LLVM_REVISION "llvmorg-18-init-16864-g3b3ee1f53424"
+#define LLVM_REPOSITORY "https://github.com/llvm/llvm-project.git"
diff --cc lib/clang/libllvm/Makefile
index 8446f8fb1f86,000000000000..1f33632e684d
mode 100644,000000..100644
--- a/lib/clang/libllvm/Makefile
+++ b/lib/clang/libllvm/Makefile
@@@ -1,2277 -1,0 +1,2277 @@@
+
+.include <bsd.init.mk>
+.include "../llvm.pre.mk"
+
+LIB= llvm
+INTERNALLIB=
+
+CFLAGS+= -I${.OBJDIR}
+CFLAGS+= -I${SRCTOP}/sys/contrib/zstd/lib
+
+.if ${MK_LLVM_TARGET_AARCH64} == "no" && ${MK_LLVM_TARGET_ARM} == "no" && \
+ ${MK_LLVM_TARGET_BPF} == "no" && ${MK_LLVM_TARGET_MIPS} == "no" && \
+ ${MK_LLVM_TARGET_POWERPC} == "no" && ${MK_LLVM_TARGET_RISCV} == "no" && \
+ ${MK_LLVM_TARGET_X86} == "no"
+.error Please enable at least one of: MK_LLVM_TARGET_AARCH64,\
+ MK_LLVM_TARGET_ARM, MK_LLVM_TARGET_BPF, MK_LLVM_TARGET_MIPS, \
+ MK_LLVM_TARGET_POWERPC, MK_LLVM_TARGET_RISCV, or MK_LLVM_TARGET_X86
+.endif
+
+.for arch in AArch64 ARM BPF Mips PowerPC RISCV X86
+. if ${MK_LLVM_TARGET_${arch:tu}} != "no"
+CFLAGS+= -I${LLVM_SRCS}/lib/Target/${arch}
+. endif
+.endfor
+
+CFLAGS+= -I${LLVM_SRCS}/lib/ObjCopy
+
+TARGET_ARCH?= ${MACHINE_ARCH}
+
+.if ${TARGET_ARCH} != "amd64"
+CFLAGS+= -DBLAKE3_NO_AVX512 -DBLAKE3_NO_AVX2 -DBLAKE3_NO_SSE41 \
+ -DBLAKE3_NO_SSE2
+.endif
+.if ${TARGET_ARCH} != "arm64"
+CFLAGS+= -DBLAKE3_USE_NEON=0
+.endif
+
+SRCDIR= llvm/lib
+
+# Explanation of different SRCS variants below:
+# SRCS_MIN: always required, even for bootstrap
+# SRCS_MIW: required for world stage (after cross-tools)
+# SRCS_EXT: required for MK_CLANG_EXTRAS
+# SRCS_EXL: required for MK_CLANG_EXTRAS and MK_LLD
+# SRCS_FUL: required for MK_CLANG_FULL
+# SRCS_LLD: required for MK_LLD
+# SRCS_XDB: required for MK_CLANG_EXTRAS and MK_LLDB
+# SRCS_XDL: required for MK_CLANG_EXTRAS, MK_LLD and MK_LLDB
+# SRCS_XDW: required for MK_CLANG_EXTRAS and MK_LLDB in world stage
+# SRCS_COV: required for MK_LLVM_COV
+
+SRCS_MIN+= Analysis/AliasAnalysis.cpp
+SRCS_MIN+= Analysis/AliasAnalysisEvaluator.cpp
+SRCS_MIN+= Analysis/AliasSetTracker.cpp
+SRCS_EXT+= Analysis/Analysis.cpp
+SRCS_MIN+= Analysis/AssumeBundleQueries.cpp
+SRCS_MIN+= Analysis/AssumptionCache.cpp
+SRCS_MIN+= Analysis/BasicAliasAnalysis.cpp
+SRCS_MIN+= Analysis/BlockFrequencyInfo.cpp
+SRCS_MIN+= Analysis/BlockFrequencyInfoImpl.cpp
+SRCS_MIN+= Analysis/BranchProbabilityInfo.cpp
+SRCS_MIN+= Analysis/CFG.cpp
+SRCS_MIN+= Analysis/CFGPrinter.cpp
+SRCS_MIN+= Analysis/CFGSCCPrinter.cpp
+SRCS_MIN+= Analysis/CGSCCPassManager.cpp
+SRCS_MIN+= Analysis/CallGraph.cpp
+SRCS_MIN+= Analysis/CallGraphSCCPass.cpp
+SRCS_MIN+= Analysis/CallPrinter.cpp
+SRCS_MIN+= Analysis/CaptureTracking.cpp
+SRCS_MIN+= Analysis/CmpInstAnalysis.cpp
+SRCS_MIN+= Analysis/CodeMetrics.cpp
+SRCS_MIN+= Analysis/ConstantFolding.cpp
+SRCS_MIN+= Analysis/ConstraintSystem.cpp
+SRCS_MIN+= Analysis/CostModel.cpp
+SRCS_MIN+= Analysis/CycleAnalysis.cpp
+SRCS_MIN+= Analysis/DDG.cpp
+SRCS_MIN+= Analysis/DDGPrinter.cpp
+SRCS_MIN+= Analysis/Delinearization.cpp
+SRCS_MIN+= Analysis/DemandedBits.cpp
+SRCS_MIN+= Analysis/DependenceAnalysis.cpp
+SRCS_MIN+= Analysis/DependenceGraphBuilder.cpp
+SRCS_MIN+= Analysis/DomConditionCache.cpp
+SRCS_MIN+= Analysis/DomPrinter.cpp
+SRCS_MIN+= Analysis/DomTreeUpdater.cpp
+SRCS_MIN+= Analysis/DominanceFrontier.cpp
+SRCS_MIN+= Analysis/FunctionPropertiesAnalysis.cpp
+SRCS_MIN+= Analysis/GlobalsModRef.cpp
+SRCS_MIN+= Analysis/GuardUtils.cpp
+SRCS_MIN+= Analysis/HeatUtils.cpp
+SRCS_MIN+= Analysis/IRSimilarityIdentifier.cpp
+SRCS_MIN+= Analysis/IVDescriptors.cpp
+SRCS_MIN+= Analysis/IVUsers.cpp
+SRCS_MIN+= Analysis/ImportedFunctionsInliningStatistics.cpp
+SRCS_MIN+= Analysis/IndirectCallPromotionAnalysis.cpp
+SRCS_MIN+= Analysis/InlineAdvisor.cpp
+SRCS_MIN+= Analysis/InlineCost.cpp
+SRCS_MIN+= Analysis/InlineOrder.cpp
+SRCS_MIN+= Analysis/InlineSizeEstimatorAnalysis.cpp
+SRCS_MIN+= Analysis/InstCount.cpp
+SRCS_MIN+= Analysis/InstructionPrecedenceTracking.cpp
+SRCS_MIN+= Analysis/InstructionSimplify.cpp
+SRCS_MIN+= Analysis/InteractiveModelRunner.cpp
+SRCS_MIN+= Analysis/Interval.cpp
+SRCS_MIN+= Analysis/IntervalPartition.cpp
+SRCS_MIN+= Analysis/LazyBlockFrequencyInfo.cpp
+SRCS_MIN+= Analysis/LazyBranchProbabilityInfo.cpp
+SRCS_MIN+= Analysis/LazyCallGraph.cpp
+SRCS_MIN+= Analysis/LazyValueInfo.cpp
+SRCS_MIN+= Analysis/Lint.cpp
+SRCS_MIN+= Analysis/Loads.cpp
+SRCS_MIN+= Analysis/Local.cpp
+SRCS_MIN+= Analysis/LoopAccessAnalysis.cpp
+SRCS_MIN+= Analysis/LoopAnalysisManager.cpp
+SRCS_MIN+= Analysis/LoopCacheAnalysis.cpp
+SRCS_MIN+= Analysis/LoopInfo.cpp
+SRCS_MIN+= Analysis/LoopNestAnalysis.cpp
+SRCS_MIN+= Analysis/LoopPass.cpp
+SRCS_MIN+= Analysis/LoopUnrollAnalyzer.cpp
+SRCS_MIN+= Analysis/MLInlineAdvisor.cpp
+SRCS_MIN+= Analysis/MemDerefPrinter.cpp
+SRCS_MIN+= Analysis/MemoryBuiltins.cpp
+SRCS_MIN+= Analysis/MemoryDependenceAnalysis.cpp
+SRCS_MIN+= Analysis/MemoryLocation.cpp
+SRCS_MIN+= Analysis/MemoryProfileInfo.cpp
+SRCS_MIN+= Analysis/MemorySSA.cpp
+SRCS_MIN+= Analysis/MemorySSAUpdater.cpp
+SRCS_MIN+= Analysis/ModuleDebugInfoPrinter.cpp
+SRCS_MIN+= Analysis/ModuleSummaryAnalysis.cpp
+SRCS_MIN+= Analysis/MustExecute.cpp
+SRCS_MIN+= Analysis/ObjCARCAliasAnalysis.cpp
+SRCS_MIN+= Analysis/ObjCARCAnalysisUtils.cpp
+SRCS_MIN+= Analysis/ObjCARCInstKind.cpp
+SRCS_MIN+= Analysis/OptimizationRemarkEmitter.cpp
+SRCS_MIN+= Analysis/OverflowInstAnalysis.cpp
+SRCS_MIN+= Analysis/PHITransAddr.cpp
+SRCS_MIN+= Analysis/PhiValues.cpp
+SRCS_MIN+= Analysis/PostDominators.cpp
+SRCS_MIN+= Analysis/ProfileSummaryInfo.cpp
+SRCS_MIN+= Analysis/PtrUseVisitor.cpp
+SRCS_MIN+= Analysis/RegionInfo.cpp
+SRCS_MIN+= Analysis/RegionPass.cpp
+SRCS_MIN+= Analysis/RegionPrinter.cpp
+SRCS_MIN+= Analysis/ReplayInlineAdvisor.cpp
+SRCS_MIN+= Analysis/ScalarEvolution.cpp
+SRCS_MIN+= Analysis/ScalarEvolution.cpp
+SRCS_MIN+= Analysis/ScalarEvolutionAliasAnalysis.cpp
+SRCS_MIN+= Analysis/ScalarEvolutionDivision.cpp
+SRCS_MIN+= Analysis/ScalarEvolutionNormalization.cpp
+SRCS_MIN+= Analysis/ScopedNoAliasAA.cpp
+SRCS_MIN+= Analysis/StackLifetime.cpp
+SRCS_MIN+= Analysis/StackSafetyAnalysis.cpp
+SRCS_MIN+= Analysis/StructuralHash.cpp
+SRCS_MIN+= Analysis/SyntheticCountsUtils.cpp
+SRCS_MIN+= Analysis/TargetLibraryInfo.cpp
+SRCS_MIN+= Analysis/TargetTransformInfo.cpp
+SRCS_MIN+= Analysis/TensorSpec.cpp
+SRCS_MIN+= Analysis/TrainingLogger.cpp
+SRCS_MIN+= Analysis/TypeBasedAliasAnalysis.cpp
+SRCS_MIN+= Analysis/TypeMetadataUtils.cpp
+SRCS_MIN+= Analysis/UniformityAnalysis.cpp
+SRCS_MIN+= Analysis/VFABIDemangling.cpp
+SRCS_MIN+= Analysis/ValueLattice.cpp
+SRCS_MIN+= Analysis/ValueLatticeUtils.cpp
+SRCS_MIN+= Analysis/ValueTracking.cpp
+SRCS_MIN+= Analysis/VectorUtils.cpp
+SRCS_MIN+= AsmParser/LLLexer.cpp
+SRCS_MIN+= AsmParser/LLParser.cpp
+SRCS_MIN+= AsmParser/Parser.cpp
+SRCS_MIN+= BinaryFormat/AMDGPUMetadataVerifier.cpp
+SRCS_MIN+= BinaryFormat/COFF.cpp
+SRCS_MIN+= BinaryFormat/Dwarf.cpp
+SRCS_XDB+= BinaryFormat/ELF.cpp
+SRCS_MIN+= BinaryFormat/MachO.cpp
+SRCS_MIN+= BinaryFormat/Magic.cpp
+SRCS_MIN+= BinaryFormat/MsgPackDocument.cpp
+SRCS_MIN+= BinaryFormat/MsgPackDocumentYAML.cpp
+SRCS_MIN+= BinaryFormat/MsgPackReader.cpp
+SRCS_MIN+= BinaryFormat/MsgPackWriter.cpp
+SRCS_MIN+= BinaryFormat/Wasm.cpp
+SRCS_MIN+= BinaryFormat/XCOFF.cpp
+SRCS_MIN+= Bitcode/Reader/BitReader.cpp
+SRCS_EXT+= Bitcode/Reader/BitcodeAnalyzer.cpp
+SRCS_MIN+= Bitcode/Reader/BitcodeReader.cpp
+SRCS_MIN+= Bitcode/Reader/MetadataLoader.cpp
+SRCS_MIN+= Bitcode/Reader/ValueList.cpp
+SRCS_MIN+= Bitcode/Writer/BitcodeWriter.cpp
+SRCS_MIN+= Bitcode/Writer/BitcodeWriterPass.cpp
+SRCS_MIN+= Bitcode/Writer/ValueEnumerator.cpp
+SRCS_MIN+= Bitstream/Reader/BitstreamReader.cpp
+SRCS_MIN+= CodeGen/AggressiveAntiDepBreaker.cpp
+SRCS_MIN+= CodeGen/AllocationOrder.cpp
+SRCS_MIN+= CodeGen/Analysis.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/AIXException.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/ARMException.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/AccelTable.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/AddressPool.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/AsmPrinter.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/CodeViewDebug.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/DIE.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/DIEHash.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/DebugHandlerBase.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/DebugLocStream.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/DwarfCFIException.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/DwarfCompileUnit.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/DwarfDebug.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/DwarfExpression.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/DwarfFile.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/DwarfStringPool.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/DwarfUnit.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/EHStreamer.cpp
+SRCS_EXT+= CodeGen/AsmPrinter/ErlangGCPrinter.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/OcamlGCPrinter.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/PseudoProbePrinter.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/WasmException.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/WinCFGuard.cpp
+SRCS_MIN+= CodeGen/AsmPrinter/WinException.cpp
+SRCS_MIN+= CodeGen/AssignmentTrackingAnalysis.cpp
+SRCS_MIN+= CodeGen/AtomicExpandPass.cpp
+SRCS_MIN+= CodeGen/BasicBlockPathCloning.cpp
+SRCS_MIN+= CodeGen/BasicBlockSections.cpp
+SRCS_MIN+= CodeGen/BasicBlockSectionsProfileReader.cpp
+SRCS_MIN+= CodeGen/BasicTargetTransformInfo.cpp
+SRCS_MIN+= CodeGen/BranchFolding.cpp
+SRCS_MIN+= CodeGen/BranchRelaxation.cpp
+SRCS_MIN+= CodeGen/BreakFalseDeps.cpp
+SRCS_MIN+= CodeGen/CFGuardLongjmp.cpp
+SRCS_MIN+= CodeGen/CFIFixup.cpp
+SRCS_MIN+= CodeGen/CFIInstrInserter.cpp
+SRCS_MIN+= CodeGen/CalcSpillWeights.cpp
+SRCS_MIN+= CodeGen/CallBrPrepare.cpp
+SRCS_MIN+= CodeGen/CallingConvLower.cpp
+SRCS_MIN+= CodeGen/CodeGen.cpp
+SRCS_MIN+= CodeGen/CodeGenCommonISel.cpp
+SRCS_MIN+= CodeGen/CodeGenPrepare.cpp
+SRCS_EXL+= CodeGen/CommandFlags.cpp
+SRCS_MIN+= CodeGen/ComplexDeinterleavingPass.cpp
+SRCS_MIN+= CodeGen/CriticalAntiDepBreaker.cpp
+SRCS_MIN+= CodeGen/DFAPacketizer.cpp
+SRCS_MIN+= CodeGen/DeadMachineInstructionElim.cpp
+SRCS_MIN+= CodeGen/DetectDeadLanes.cpp
+SRCS_MIN+= CodeGen/DwarfEHPrepare.cpp
+SRCS_MIN+= CodeGen/EHContGuardCatchret.cpp
+SRCS_MIN+= CodeGen/EarlyIfConversion.cpp
+SRCS_MIN+= CodeGen/EdgeBundles.cpp
+SRCS_MIN+= CodeGen/ExecutionDomainFix.cpp
+SRCS_MIN+= CodeGen/ExpandLargeDivRem.cpp
+SRCS_MIN+= CodeGen/ExpandLargeFpConvert.cpp
+SRCS_MIN+= CodeGen/ExpandMemCmp.cpp
+SRCS_MIN+= CodeGen/ExpandPostRAPseudos.cpp
+SRCS_MIN+= CodeGen/ExpandReductions.cpp
+SRCS_MIN+= CodeGen/ExpandVectorPredication.cpp
+SRCS_MIN+= CodeGen/FEntryInserter.cpp
+SRCS_MIN+= CodeGen/FaultMaps.cpp
+SRCS_MIN+= CodeGen/FinalizeISel.cpp
+SRCS_MIN+= CodeGen/FixupStatepointCallerSaved.cpp
+SRCS_MIN+= CodeGen/FuncletLayout.cpp
+SRCS_MIN+= CodeGen/GCEmptyBasicBlocks.cpp
+SRCS_MIN+= CodeGen/GCMetadata.cpp
+SRCS_MIN+= CodeGen/GCMetadataPrinter.cpp
+SRCS_MIN+= CodeGen/GCRootLowering.cpp
+SRCS_MIN+= CodeGen/GlobalISel/CSEInfo.cpp
+SRCS_MIN+= CodeGen/GlobalISel/CSEMIRBuilder.cpp
+SRCS_MIN+= CodeGen/GlobalISel/CallLowering.cpp
+SRCS_MIN+= CodeGen/GlobalISel/Combiner.cpp
+SRCS_MIN+= CodeGen/GlobalISel/CombinerHelper.cpp
+SRCS_MIN+= CodeGen/GlobalISel/GIMatchTableExecutor.cpp
+SRCS_MIN+= CodeGen/GlobalISel/GISelChangeObserver.cpp
+SRCS_MIN+= CodeGen/GlobalISel/GISelKnownBits.cpp
+SRCS_MIN+= CodeGen/GlobalISel/GlobalISel.cpp
+SRCS_MIN+= CodeGen/GlobalISel/IRTranslator.cpp
+SRCS_MIN+= CodeGen/GlobalISel/InlineAsmLowering.cpp
+SRCS_MIN+= CodeGen/GlobalISel/InstructionSelect.cpp
+SRCS_MIN+= CodeGen/GlobalISel/InstructionSelector.cpp
+SRCS_MIN+= CodeGen/GlobalISel/LegacyLegalizerInfo.cpp
+SRCS_MIN+= CodeGen/GlobalISel/LegalityPredicates.cpp
+SRCS_MIN+= CodeGen/GlobalISel/LegalizeMutations.cpp
+SRCS_MIN+= CodeGen/GlobalISel/Legalizer.cpp
+SRCS_MIN+= CodeGen/GlobalISel/LegalizerHelper.cpp
+SRCS_MIN+= CodeGen/GlobalISel/LegalizerInfo.cpp
+SRCS_MIN+= CodeGen/GlobalISel/LoadStoreOpt.cpp
+SRCS_MIN+= CodeGen/GlobalISel/Localizer.cpp
+SRCS_MIN+= CodeGen/GlobalISel/LostDebugLocObserver.cpp
+SRCS_MIN+= CodeGen/GlobalISel/MachineIRBuilder.cpp
+SRCS_MIN+= CodeGen/GlobalISel/RegBankSelect.cpp
+SRCS_MIN+= CodeGen/GlobalISel/Utils.cpp
+SRCS_MIN+= CodeGen/GlobalMerge.cpp
+SRCS_MIN+= CodeGen/HardwareLoops.cpp
+SRCS_MIN+= CodeGen/IfConversion.cpp
+SRCS_MIN+= CodeGen/ImplicitNullChecks.cpp
+SRCS_MIN+= CodeGen/IndirectBrExpandPass.cpp
+SRCS_MIN+= CodeGen/InlineSpiller.cpp
+SRCS_MIN+= CodeGen/InterferenceCache.cpp
+SRCS_MIN+= CodeGen/InterleavedAccessPass.cpp
+SRCS_MIN+= CodeGen/InterleavedLoadCombinePass.cpp
+SRCS_MIN+= CodeGen/IntrinsicLowering.cpp
+SRCS_MIN+= CodeGen/JMCInstrumenter.cpp
+SRCS_MIN+= CodeGen/KCFI.cpp
+SRCS_MIN+= CodeGen/LLVMTargetMachine.cpp
+SRCS_MIN+= CodeGen/LatencyPriorityQueue.cpp
+SRCS_MIN+= CodeGen/LazyMachineBlockFrequencyInfo.cpp
+SRCS_MIN+= CodeGen/LexicalScopes.cpp
+SRCS_MIN+= CodeGen/LiveDebugValues/InstrRefBasedImpl.cpp
+SRCS_MIN+= CodeGen/LiveDebugValues/LiveDebugValues.cpp
+SRCS_MIN+= CodeGen/LiveDebugValues/VarLocBasedImpl.cpp
+SRCS_MIN+= CodeGen/LiveDebugVariables.cpp
+SRCS_MIN+= CodeGen/LiveInterval.cpp
+SRCS_MIN+= CodeGen/LiveIntervalCalc.cpp
+SRCS_MIN+= CodeGen/LiveIntervalUnion.cpp
+SRCS_MIN+= CodeGen/LiveIntervals.cpp
+SRCS_MIN+= CodeGen/LivePhysRegs.cpp
+SRCS_MIN+= CodeGen/LiveRangeCalc.cpp
+SRCS_MIN+= CodeGen/LiveRangeEdit.cpp
+SRCS_MIN+= CodeGen/LiveRangeShrink.cpp
+SRCS_MIN+= CodeGen/LiveRegMatrix.cpp
+SRCS_MIN+= CodeGen/LiveRegUnits.cpp
+SRCS_MIN+= CodeGen/LiveStacks.cpp
+SRCS_MIN+= CodeGen/LiveVariables.cpp
+SRCS_MIN+= CodeGen/LocalStackSlotAllocation.cpp
+SRCS_MIN+= CodeGen/LoopTraversal.cpp
+SRCS_MIN+= CodeGen/LowLevelType.cpp
+SRCS_MIN+= CodeGen/LowLevelTypeUtils.cpp
+SRCS_MIN+= CodeGen/LowerEmuTLS.cpp
+SRCS_MIN+= CodeGen/MBFIWrapper.cpp
+SRCS_MIN+= CodeGen/MIRCanonicalizerPass.cpp
+SRCS_MIN+= CodeGen/MIRFSDiscriminator.cpp
+SRCS_MIN+= CodeGen/MIRNamerPass.cpp
+SRCS_EXT+= CodeGen/MIRParser/MILexer.cpp
+SRCS_EXT+= CodeGen/MIRParser/MIParser.cpp
+SRCS_EXT+= CodeGen/MIRParser/MIRParser.cpp
+SRCS_MIN+= CodeGen/MIRPrinter.cpp
+SRCS_MIN+= CodeGen/MIRPrintingPass.cpp
+SRCS_MIN+= CodeGen/MIRSampleProfile.cpp
+SRCS_MIN+= CodeGen/MIRVRegNamerUtils.cpp
+SRCS_MIN+= CodeGen/MLRegAllocEvictAdvisor.cpp
+SRCS_MIN+= CodeGen/MLRegAllocPriorityAdvisor.cpp
+SRCS_MIN+= CodeGen/MachineBasicBlock.cpp
+SRCS_MIN+= CodeGen/MachineBlockFrequencyInfo.cpp
+SRCS_MIN+= CodeGen/MachineBlockPlacement.cpp
+SRCS_MIN+= CodeGen/MachineBranchProbabilityInfo.cpp
+SRCS_MIN+= CodeGen/MachineCFGPrinter.cpp
+SRCS_MIN+= CodeGen/MachineCSE.cpp
+SRCS_MIN+= CodeGen/MachineCheckDebugify.cpp
+SRCS_MIN+= CodeGen/MachineCombiner.cpp
+SRCS_MIN+= CodeGen/MachineCopyPropagation.cpp
+SRCS_MIN+= CodeGen/MachineCycleAnalysis.cpp
+SRCS_MIN+= CodeGen/MachineDebugify.cpp
+SRCS_MIN+= CodeGen/MachineDominanceFrontier.cpp
+SRCS_MIN+= CodeGen/MachineDominators.cpp
+SRCS_MIN+= CodeGen/MachineFrameInfo.cpp
+SRCS_MIN+= CodeGen/MachineFunction.cpp
+SRCS_MIN+= CodeGen/MachineFunctionPass.cpp
+SRCS_MIN+= CodeGen/MachineFunctionPrinterPass.cpp
+SRCS_MIN+= CodeGen/MachineFunctionSplitter.cpp
+SRCS_MIN+= CodeGen/MachineInstr.cpp
+SRCS_MIN+= CodeGen/MachineInstrBundle.cpp
+SRCS_MIN+= CodeGen/MachineLICM.cpp
+SRCS_MIN+= CodeGen/MachineLateInstrsCleanup.cpp
+SRCS_MIN+= CodeGen/MachineLoopInfo.cpp
+SRCS_MIN+= CodeGen/MachineLoopUtils.cpp
+SRCS_MIN+= CodeGen/MachineModuleInfo.cpp
+SRCS_MIN+= CodeGen/MachineModuleInfoImpls.cpp
+SRCS_MIN+= CodeGen/MachineModuleSlotTracker.cpp
+SRCS_MIN+= CodeGen/MachineOperand.cpp
+SRCS_MIN+= CodeGen/MachineOptimizationRemarkEmitter.cpp
+SRCS_MIN+= CodeGen/MachineOutliner.cpp
+SRCS_MIN+= CodeGen/MachinePipeliner.cpp
+SRCS_MIN+= CodeGen/MachinePostDominators.cpp
+SRCS_MIN+= CodeGen/MachineRegionInfo.cpp
+SRCS_MIN+= CodeGen/MachineRegisterInfo.cpp
+SRCS_MIN+= CodeGen/MachineSSAContext.cpp
+SRCS_MIN+= CodeGen/MachineSSAUpdater.cpp
+SRCS_MIN+= CodeGen/MachineScheduler.cpp
+SRCS_MIN+= CodeGen/MachineSink.cpp
+SRCS_MIN+= CodeGen/MachineSizeOpts.cpp
+SRCS_MIN+= CodeGen/MachineStableHash.cpp
+SRCS_MIN+= CodeGen/MachineStripDebug.cpp
+SRCS_MIN+= CodeGen/MachineTraceMetrics.cpp
+SRCS_MIN+= CodeGen/MachineUniformityAnalysis.cpp
+SRCS_MIN+= CodeGen/MachineVerifier.cpp
+SRCS_MIN+= CodeGen/MacroFusion.cpp
+SRCS_MIN+= CodeGen/ModuloSchedule.cpp
+SRCS_MIN+= CodeGen/MultiHazardRecognizer.cpp
+SRCS_EXT+= CodeGen/NonRelocatableStringpool.cpp
+SRCS_MIN+= CodeGen/OptimizePHIs.cpp
+SRCS_MIN+= CodeGen/PHIElimination.cpp
+SRCS_MIN+= CodeGen/PHIEliminationUtils.cpp
+SRCS_MIN+= CodeGen/ParallelCG.cpp
+SRCS_MIN+= CodeGen/PatchableFunction.cpp
+SRCS_MIN+= CodeGen/PeepholeOptimizer.cpp
+SRCS_MIN+= CodeGen/PostRAHazardRecognizer.cpp
+SRCS_MIN+= CodeGen/PostRASchedulerList.cpp
+SRCS_MIN+= CodeGen/PreISelIntrinsicLowering.cpp
+SRCS_MIN+= CodeGen/ProcessImplicitDefs.cpp
+SRCS_MIN+= CodeGen/PrologEpilogInserter.cpp
+SRCS_MIN+= CodeGen/PseudoProbeInserter.cpp
+SRCS_MIN+= CodeGen/PseudoSourceValue.cpp
+SRCS_MIN+= CodeGen/RDFGraph.cpp
+SRCS_MIN+= CodeGen/RDFLiveness.cpp
+SRCS_MIN+= CodeGen/RDFRegisters.cpp
+SRCS_MIN+= CodeGen/ReachingDefAnalysis.cpp
+SRCS_MIN+= CodeGen/RegAllocBase.cpp
+SRCS_MIN+= CodeGen/RegAllocBasic.cpp
+SRCS_MIN+= CodeGen/RegAllocEvictionAdvisor.cpp
+SRCS_MIN+= CodeGen/RegAllocFast.cpp
+SRCS_MIN+= CodeGen/RegAllocGreedy.cpp
+SRCS_MIN+= CodeGen/RegAllocPBQP.cpp
+SRCS_MIN+= CodeGen/RegAllocPriorityAdvisor.cpp
+SRCS_MIN+= CodeGen/RegUsageInfoCollector.cpp
+SRCS_MIN+= CodeGen/RegUsageInfoPropagate.cpp
+SRCS_MIN+= CodeGen/RegisterBank.cpp
+SRCS_MIN+= CodeGen/RegisterBankInfo.cpp
+SRCS_MIN+= CodeGen/RegisterClassInfo.cpp
+SRCS_MIN+= CodeGen/RegisterCoalescer.cpp
+SRCS_MIN+= CodeGen/RegisterPressure.cpp
+SRCS_MIN+= CodeGen/RegisterScavenging.cpp
+SRCS_MIN+= CodeGen/RegisterUsageInfo.cpp
+SRCS_MIN+= CodeGen/RemoveRedundantDebugValues.cpp
+SRCS_MIN+= CodeGen/RenameIndependentSubregs.cpp
+SRCS_MIN+= CodeGen/ReplaceWithVeclib.cpp
+SRCS_MIN+= CodeGen/ResetMachineFunctionPass.cpp
+SRCS_MIN+= CodeGen/SafeStack.cpp
+SRCS_MIN+= CodeGen/SafeStackLayout.cpp
+SRCS_MIN+= CodeGen/SanitizerBinaryMetadata.cpp
+SRCS_MIN+= CodeGen/ScheduleDAG.cpp
+SRCS_MIN+= CodeGen/ScheduleDAGInstrs.cpp
+SRCS_MIN+= CodeGen/ScheduleDAGPrinter.cpp
+SRCS_MIN+= CodeGen/ScoreboardHazardRecognizer.cpp
+SRCS_MIN+= CodeGen/SelectOptimize.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/DAGCombiner.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/FastISel.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/InstrEmitter.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/LegalizeDAG.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/LegalizeTypes.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/LegalizeVectorOps.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/ResourcePriorityQueue.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGFast.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/SelectionDAG.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGDumper.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGISel.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/StatepointLowering.cpp
+SRCS_MIN+= CodeGen/SelectionDAG/TargetLowering.cpp
+SRCS_MIN+= CodeGen/ShadowStackGCLowering.cpp
+SRCS_MIN+= CodeGen/ShrinkWrap.cpp
+SRCS_MIN+= CodeGen/SjLjEHPrepare.cpp
+SRCS_MIN+= CodeGen/SlotIndexes.cpp
+SRCS_MIN+= CodeGen/SpillPlacement.cpp
+SRCS_MIN+= CodeGen/SplitKit.cpp
+SRCS_MIN+= CodeGen/StackColoring.cpp
+SRCS_MIN+= CodeGen/StackFrameLayoutAnalysisPass.cpp
+SRCS_MIN+= CodeGen/StackMapLivenessAnalysis.cpp
+SRCS_MIN+= CodeGen/StackMaps.cpp
+SRCS_MIN+= CodeGen/StackProtector.cpp
+SRCS_MIN+= CodeGen/StackSlotColoring.cpp
+SRCS_MIN+= CodeGen/SwiftErrorValueTracking.cpp
+SRCS_MIN+= CodeGen/SwitchLoweringUtils.cpp
+SRCS_MIN+= CodeGen/TailDuplication.cpp
+SRCS_MIN+= CodeGen/TailDuplicator.cpp
+SRCS_MIN+= CodeGen/TargetFrameLoweringImpl.cpp
+SRCS_MIN+= CodeGen/TargetInstrInfo.cpp
+SRCS_MIN+= CodeGen/TargetLoweringBase.cpp
+SRCS_MIN+= CodeGen/TargetLoweringObjectFileImpl.cpp
+SRCS_MIN+= CodeGen/TargetOptionsImpl.cpp
+SRCS_MIN+= CodeGen/TargetPassConfig.cpp
+SRCS_MIN+= CodeGen/TargetRegisterInfo.cpp
+SRCS_MIN+= CodeGen/TargetSchedule.cpp
+SRCS_MIN+= CodeGen/TargetSubtargetInfo.cpp
+SRCS_MIN+= CodeGen/TwoAddressInstructionPass.cpp
+SRCS_MIN+= CodeGen/TypePromotion.cpp
+SRCS_MIN+= CodeGen/UnreachableBlockElim.cpp
+SRCS_MIN+= CodeGen/ValueTypes.cpp
+SRCS_MIN+= CodeGen/VirtRegMap.cpp
+SRCS_MIN+= CodeGen/WasmEHPrepare.cpp
+SRCS_MIN+= CodeGen/WinEHPrepare.cpp
+SRCS_MIN+= CodeGen/XRayInstrumentation.cpp
- SRCS_EXT+= DWARFLinker/DWARFLinker.cpp
- SRCS_EXT+= DWARFLinker/DWARFLinkerCompileUnit.cpp
- SRCS_EXT+= DWARFLinker/DWARFLinkerDeclContext.cpp
- SRCS_EXT+= DWARFLinker/DWARFStreamer.cpp
- SRCS_EXT+= DWARFLinkerParallel/AcceleratorRecordsSaver.cpp
- SRCS_EXT+= DWARFLinkerParallel/DIEAttributeCloner.cpp
- SRCS_EXT+= DWARFLinkerParallel/DWARFEmitterImpl.cpp
- SRCS_EXT+= DWARFLinkerParallel/DWARFFile.cpp
- SRCS_EXT+= DWARFLinkerParallel/DWARFLinker.cpp
- SRCS_EXT+= DWARFLinkerParallel/DWARFLinkerCompileUnit.cpp
- SRCS_EXT+= DWARFLinkerParallel/DWARFLinkerImpl.cpp
- SRCS_EXT+= DWARFLinkerParallel/DWARFLinkerTypeUnit.cpp
- SRCS_EXT+= DWARFLinkerParallel/DWARFLinkerUnit.cpp
- SRCS_EXT+= DWARFLinkerParallel/DependencyTracker.cpp
- SRCS_EXT+= DWARFLinkerParallel/OutputSections.cpp
- SRCS_EXT+= DWARFLinkerParallel/SyntheticTypeNameBuilder.cpp
++SRCS_EXT+= DWARFLinker/Classic/DWARFLinker.cpp
++SRCS_EXT+= DWARFLinker/Classic/DWARFLinkerCompileUnit.cpp
++SRCS_EXT+= DWARFLinker/Classic/DWARFLinkerDeclContext.cpp
++SRCS_EXT+= DWARFLinker/Classic/DWARFStreamer.cpp
++SRCS_EXT+= DWARFLinker/Parallel/AcceleratorRecordsSaver.cpp
++SRCS_EXT+= DWARFLinker/Parallel/DIEAttributeCloner.cpp
++SRCS_EXT+= DWARFLinker/Parallel/DWARFEmitterImpl.cpp
++SRCS_EXT+= DWARFLinker/Parallel/DWARFLinker.cpp
++SRCS_EXT+= DWARFLinker/Parallel/DWARFLinkerCompileUnit.cpp
++SRCS_EXT+= DWARFLinker/Parallel/DWARFLinkerImpl.cpp
++SRCS_EXT+= DWARFLinker/Parallel/DWARFLinkerTypeUnit.cpp
++SRCS_EXT+= DWARFLinker/Parallel/DWARFLinkerUnit.cpp
++SRCS_EXT+= DWARFLinker/Parallel/DependencyTracker.cpp
++SRCS_EXT+= DWARFLinker/Parallel/OutputSections.cpp
++SRCS_EXT+= DWARFLinker/Parallel/SyntheticTypeNameBuilder.cpp
++SRCS_EXT+= DWARFLinker/Utils.cpp
+SRCS_EXT+= DWP/DWP.cpp
+SRCS_EXT+= DWP/DWPError.cpp
+SRCS_MIW+= DebugInfo/BTF/BTFContext.cpp
+SRCS_MIW+= DebugInfo/BTF/BTFParser.cpp
+SRCS_EXT+= DebugInfo/CodeView/AppendingTypeTableBuilder.cpp
+SRCS_MIN+= DebugInfo/CodeView/CVSymbolVisitor.cpp
+SRCS_MIN+= DebugInfo/CodeView/CVTypeVisitor.cpp
+SRCS_MIN+= DebugInfo/CodeView/CodeViewError.cpp
+SRCS_MIN+= DebugInfo/CodeView/CodeViewRecordIO.cpp
+SRCS_MIN+= DebugInfo/CodeView/ContinuationRecordBuilder.cpp
+SRCS_MIN+= DebugInfo/CodeView/DebugChecksumsSubsection.cpp
+SRCS_EXT+= DebugInfo/CodeView/DebugCrossExSubsection.cpp
+SRCS_EXT+= DebugInfo/CodeView/DebugCrossImpSubsection.cpp
+SRCS_MIN+= DebugInfo/CodeView/DebugFrameDataSubsection.cpp
+SRCS_MIN+= DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp
+SRCS_MIN+= DebugInfo/CodeView/DebugLinesSubsection.cpp
+SRCS_MIN+= DebugInfo/CodeView/DebugStringTableSubsection.cpp
+SRCS_MIW+= DebugInfo/CodeView/DebugSubsection.cpp
+SRCS_EXT+= DebugInfo/CodeView/DebugSubsectionRecord.cpp
+SRCS_EXT+= DebugInfo/CodeView/DebugSubsectionVisitor.cpp
+SRCS_EXT+= DebugInfo/CodeView/DebugSymbolRVASubsection.cpp
+SRCS_EXT+= DebugInfo/CodeView/DebugSymbolsSubsection.cpp
+SRCS_MIN+= DebugInfo/CodeView/EnumTables.cpp
+SRCS_MIN+= DebugInfo/CodeView/Formatters.cpp
+SRCS_MIN+= DebugInfo/CodeView/GlobalTypeTableBuilder.cpp
+SRCS_MIN+= DebugInfo/CodeView/LazyRandomTypeCollection.cpp
+SRCS_MIN+= DebugInfo/CodeView/Line.cpp
+SRCS_MIN+= DebugInfo/CodeView/MergingTypeTableBuilder.cpp
+SRCS_MIN+= DebugInfo/CodeView/RecordName.cpp
+SRCS_MIN+= DebugInfo/CodeView/RecordSerialization.cpp
+SRCS_MIN+= DebugInfo/CodeView/SimpleTypeSerializer.cpp
+SRCS_EXT+= DebugInfo/CodeView/StringsAndChecksums.cpp
+SRCS_MIN+= DebugInfo/CodeView/SymbolDumper.cpp
+SRCS_MIN+= DebugInfo/CodeView/SymbolRecordHelpers.cpp
+SRCS_MIN+= DebugInfo/CodeView/SymbolRecordMapping.cpp
+SRCS_EXT+= DebugInfo/CodeView/SymbolSerializer.cpp
+SRCS_MIN+= DebugInfo/CodeView/TypeDumpVisitor.cpp
+SRCS_MIN+= DebugInfo/CodeView/TypeHashing.cpp
+SRCS_MIN+= DebugInfo/CodeView/TypeIndex.cpp
+SRCS_MIN+= DebugInfo/CodeView/TypeIndexDiscovery.cpp
+SRCS_EXT+= DebugInfo/CodeView/TypeRecordHelpers.cpp
+SRCS_MIN+= DebugInfo/CodeView/TypeRecordMapping.cpp
+SRCS_MIN+= DebugInfo/CodeView/TypeStreamMerger.cpp
+SRCS_MIN+= DebugInfo/CodeView/TypeTableCollection.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFAcceleratorTable.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFAddressRange.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFCompileUnit.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFContext.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFDataExtractor.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFDebugAbbrev.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFDebugAddr.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFDebugArangeSet.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFDebugAranges.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFDebugFrame.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFDebugInfoEntry.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFDebugLine.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFDebugLoc.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFDebugMacro.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFDebugPubTable.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFDebugRangeList.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFDebugRnglists.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFDie.cpp
+SRCS_MIN+= DebugInfo/DWARF/DWARFExpression.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFFormValue.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFGdbIndex.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFListTable.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFTypePrinter.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFTypeUnit.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFUnit.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFUnitIndex.cpp
+SRCS_MIW+= DebugInfo/DWARF/DWARFVerifier.cpp
+SRCS_MIN+= DebugInfo/MSF/MSFBuilder.cpp
+SRCS_MIN+= DebugInfo/MSF/MSFCommon.cpp
+SRCS_EXT+= DebugInfo/MSF/MSFError.cpp
+SRCS_MIN+= DebugInfo/MSF/MappedBlockStream.cpp
+SRCS_EXT+= DebugInfo/PDB/GenericError.cpp
+SRCS_EXT+= DebugInfo/PDB/IPDBSourceFile.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/DbiModuleDescriptor.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/DbiModuleList.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/DbiStream.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/DbiStreamBuilder.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/EnumTables.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/FormatUtil.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/GSIStreamBuilder.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/GlobalsStream.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/Hash.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/HashTable.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/InfoStream.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/InfoStreamBuilder.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/InjectedSourceStream.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/InputFile.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/LinePrinter.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/ModuleDebugStream.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NamedStreamMap.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeCompilandSymbol.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeEnumGlobals.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeEnumInjectedSources.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeEnumLineNumbers.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeEnumModules.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeEnumSymbols.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeEnumTypes.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeExeSymbol.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeFunctionSymbol.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeInlineSiteSymbol.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeLineNumber.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativePublicSymbol.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeRawSymbol.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeSession.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeSourceFile.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeSymbolEnumerator.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeTypeArray.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeTypeBuiltin.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeTypeEnum.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeTypePointer.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeTypeTypedef.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeTypeUDT.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/NativeTypeVTShape.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/PDBFile.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/PDBFileBuilder.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/PDBStringTable.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/PDBStringTableBuilder.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/PublicsStream.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/RawError.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/SymbolCache.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/SymbolStream.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/TpiHashing.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/TpiStream.cpp
+SRCS_EXT+= DebugInfo/PDB/Native/TpiStreamBuilder.cpp
+SRCS_EXT+= DebugInfo/PDB/PDB.cpp
+SRCS_EXT+= DebugInfo/PDB/PDBContext.cpp
+SRCS_EXT+= DebugInfo/PDB/PDBExtras.cpp
+SRCS_EXT+= DebugInfo/PDB/PDBInterfaceAnchors.cpp
+SRCS_EXT+= DebugInfo/PDB/PDBSymDumper.cpp
+SRCS_EXT+= DebugInfo/PDB/PDBSymbol.cpp
+SRCS_EXT+= DebugInfo/PDB/PDBSymbolAnnotation.cpp
+SRCS_EXT+= DebugInfo/PDB/PDBSymbolBlock.cpp
+SRCS_EXT+= DebugInfo/PDB/PDBSymbolCompiland.cpp
+SRCS_EXT+= DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
+SRCS_EXT+= DebugInfo/PDB/PDBSymbolCompilandEnv.cpp
+SRCS_EXT+= DebugInfo/PDB/PDBSymbolCustom.cpp
+SRCS_EXT+= DebugInfo/PDB/PDBSymbolData.cpp
+SRCS_EXT+= DebugInfo/PDB/PDBSymbolExe.cpp
+SRCS_EXT+= DebugInfo/PDB/PDBSymbolFunc.cpp
+SRCS_EXT+= DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
+SRCS_EXT+= DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
+SRCS_EXT+= DebugInfo/PDB/PDBSymbolLabel.cpp
*** 5094 LINES SKIPPED ***