xref: /freebsd/lib/clang/libllvm/Makefile (revision 2e47f35be5dc61945afdbd1a70e8fd505c032c94)
173ff7384SDimitry Andric.include <bsd.init.mk>
2986e05bcSDimitry Andric.include "../llvm.pre.mk"
3986e05bcSDimitry Andric
4*2e47f35bSDimitry Andric.if defined(TOOLS_PREFIX)
5*2e47f35bSDimitry Andric# Build static library during cross-tools stage
6986e05bcSDimitry AndricLIB=		llvm
7986e05bcSDimitry AndricINTERNALLIB=
8*2e47f35bSDimitry Andric.else
9*2e47f35bSDimitry AndricPACKAGE=	clang
10*2e47f35bSDimitry AndricSHLIB_CXX=	llvm
11*2e47f35bSDimitry AndricSHLIB_MAJOR=	19
12*2e47f35bSDimitry AndricPRIVATELIB=
13*2e47f35bSDimitry Andric.if ${MACHINE} == "powerpc"
14*2e47f35bSDimitry Andric# Work around "relocation R_PPC_GOT16 out of range" errors
15*2e47f35bSDimitry AndricPICFLAG=        -fPIC
16*2e47f35bSDimitry Andric.endif
17*2e47f35bSDimitry Andric.endif
18*2e47f35bSDimitry Andric
19*2e47f35bSDimitry AndricSHARED_CXXFLAGS+=	-UPIC # To avoid compile errors
20986e05bcSDimitry Andric
21986e05bcSDimitry AndricCFLAGS+=	-I${.OBJDIR}
22bdd1243dSDimitry AndricCFLAGS+=	-I${SRCTOP}/sys/contrib/zstd/lib
23cbafd263SDimitry Andric
24cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} == "no" && ${MK_LLVM_TARGET_ARM} == "no" && \
2589edb881SDimitry Andric    ${MK_LLVM_TARGET_BPF} == "no" && ${MK_LLVM_TARGET_MIPS} == "no" && \
26b2689b12SMitchell Horne    ${MK_LLVM_TARGET_POWERPC} == "no" && ${MK_LLVM_TARGET_RISCV} == "no" && \
273b7fd87cSWarner Losh    ${MK_LLVM_TARGET_X86} == "no"
28cbafd263SDimitry Andric.error Please enable at least one of: MK_LLVM_TARGET_AARCH64,\
2989edb881SDimitry Andric MK_LLVM_TARGET_ARM, MK_LLVM_TARGET_BPF, MK_LLVM_TARGET_MIPS, \
303b7fd87cSWarner Losh MK_LLVM_TARGET_POWERPC, MK_LLVM_TARGET_RISCV, or MK_LLVM_TARGET_X86
31cbafd263SDimitry Andric.endif
32cbafd263SDimitry Andric
333b7fd87cSWarner Losh.for arch in AArch64 ARM BPF Mips PowerPC RISCV X86
34cbafd263SDimitry Andric. if ${MK_LLVM_TARGET_${arch:tu}} != "no"
35986e05bcSDimitry AndricCFLAGS+=	-I${LLVM_SRCS}/lib/Target/${arch}
36cbafd263SDimitry Andric. endif
37986e05bcSDimitry Andric.endfor
38986e05bcSDimitry Andric
3981ad6265SDimitry AndricCFLAGS+=	-I${LLVM_SRCS}/lib/ObjCopy
4081ad6265SDimitry Andric
4161cfbce3SDimitry AndricTARGET_ARCH?=	${MACHINE_ARCH}
4261cfbce3SDimitry Andric
43fcaf7f86SDimitry Andric.if ${TARGET_ARCH} != "amd64"
44fcaf7f86SDimitry AndricCFLAGS+=	-DBLAKE3_NO_AVX512 -DBLAKE3_NO_AVX2 -DBLAKE3_NO_SSE41 \
45fcaf7f86SDimitry Andric		-DBLAKE3_NO_SSE2
46fcaf7f86SDimitry Andric.endif
47eb81dd84SJohn-Mark Gurney.if ${TARGET_ARCH} != "arm64"
48eb81dd84SJohn-Mark GurneyCFLAGS+=	-DBLAKE3_USE_NEON=0
49eb81dd84SJohn-Mark Gurney.endif
50fcaf7f86SDimitry Andric
510b57cec5SDimitry AndricSRCDIR=		llvm/lib
52986e05bcSDimitry Andric
53a1aaa66bSDimitry Andric# Explanation of different SRCS variants below:
54a1aaa66bSDimitry Andric# SRCS_MIN:	always required, even for bootstrap
55a1aaa66bSDimitry Andric# SRCS_MIW:	required for world stage (after cross-tools)
56a1aaa66bSDimitry Andric# SRCS_EXT:	required for MK_CLANG_EXTRAS
57a1aaa66bSDimitry Andric# SRCS_EXL:	required for MK_CLANG_EXTRAS and MK_LLD
58a1aaa66bSDimitry Andric# SRCS_FUL:	required for MK_CLANG_FULL
59a1aaa66bSDimitry Andric# SRCS_LLD:	required for MK_LLD
60a1aaa66bSDimitry Andric# SRCS_XDB:	required for MK_CLANG_EXTRAS and MK_LLDB
61a1aaa66bSDimitry Andric# SRCS_XDL:	required for MK_CLANG_EXTRAS, MK_LLD and MK_LLDB
62a1aaa66bSDimitry Andric# SRCS_XDW:	required for MK_CLANG_EXTRAS and MK_LLDB in world stage
6306c3fb27SDimitry Andric# SRCS_COV:	required for MK_LLVM_COV
64a1aaa66bSDimitry Andric
65986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AliasAnalysis.cpp
66986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AliasAnalysisEvaluator.cpp
67986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AliasSetTracker.cpp
68986e05bcSDimitry AndricSRCS_EXT+=	Analysis/Analysis.cpp
6948aaf27bSDimitry AndricSRCS_MIN+=	Analysis/AssumeBundleQueries.cpp
70986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AssumptionCache.cpp
71986e05bcSDimitry AndricSRCS_MIN+=	Analysis/BasicAliasAnalysis.cpp
72986e05bcSDimitry AndricSRCS_MIN+=	Analysis/BlockFrequencyInfo.cpp
73986e05bcSDimitry AndricSRCS_MIN+=	Analysis/BlockFrequencyInfoImpl.cpp
74986e05bcSDimitry AndricSRCS_MIN+=	Analysis/BranchProbabilityInfo.cpp
75986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CFG.cpp
76986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CFGPrinter.cpp
77bdd1243dSDimitry AndricSRCS_MIN+=	Analysis/CFGSCCPrinter.cpp
78986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CGSCCPassManager.cpp
79986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CallGraph.cpp
80986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CallGraphSCCPass.cpp
81986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CallPrinter.cpp
82986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CaptureTracking.cpp
8336cb3905SDimitry AndricSRCS_MIN+=	Analysis/CmpInstAnalysis.cpp
84986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CodeMetrics.cpp
85986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ConstantFolding.cpp
86e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/ConstraintSystem.cpp
87986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CostModel.cpp
8804eeddc0SDimitry AndricSRCS_MIN+=	Analysis/CycleAnalysis.cpp
899771cac2SDimitry AndricSRCS_MIN+=	Analysis/DDG.cpp
90e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/DDGPrinter.cpp
91986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Delinearization.cpp
92986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DemandedBits.cpp
93986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DependenceAnalysis.cpp
949771cac2SDimitry AndricSRCS_MIN+=	Analysis/DependenceGraphBuilder.cpp
955f757f3fSDimitry AndricSRCS_MIN+=	Analysis/DomConditionCache.cpp
96986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DomPrinter.cpp
974014a71fSDimitry AndricSRCS_MIN+=	Analysis/DomTreeUpdater.cpp
98986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DominanceFrontier.cpp
99e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/FunctionPropertiesAnalysis.cpp
100986e05bcSDimitry AndricSRCS_MIN+=	Analysis/GlobalsModRef.cpp
1015e86819cSDimitry AndricSRCS_MIN+=	Analysis/GuardUtils.cpp
10248aaf27bSDimitry AndricSRCS_MIN+=	Analysis/HeatUtils.cpp
103e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/IRSimilarityIdentifier.cpp
1045e86819cSDimitry AndricSRCS_MIN+=	Analysis/IVDescriptors.cpp
105986e05bcSDimitry AndricSRCS_MIN+=	Analysis/IVUsers.cpp
106e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/ImportedFunctionsInliningStatistics.cpp
107986e05bcSDimitry AndricSRCS_MIN+=	Analysis/IndirectCallPromotionAnalysis.cpp
10848aaf27bSDimitry AndricSRCS_MIN+=	Analysis/InlineAdvisor.cpp
109986e05bcSDimitry AndricSRCS_MIN+=	Analysis/InlineCost.cpp
110bdd1243dSDimitry AndricSRCS_MIN+=	Analysis/InlineOrder.cpp
11148aaf27bSDimitry AndricSRCS_MIN+=	Analysis/InlineSizeEstimatorAnalysis.cpp
112986e05bcSDimitry AndricSRCS_MIN+=	Analysis/InstCount.cpp
1135e86819cSDimitry AndricSRCS_MIN+=	Analysis/InstructionPrecedenceTracking.cpp
114986e05bcSDimitry AndricSRCS_MIN+=	Analysis/InstructionSimplify.cpp
11506c3fb27SDimitry AndricSRCS_MIN+=	Analysis/InteractiveModelRunner.cpp
116986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LazyBlockFrequencyInfo.cpp
11709bfd043SDimitry AndricSRCS_MIN+=	Analysis/LazyBranchProbabilityInfo.cpp
118986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LazyCallGraph.cpp
119986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LazyValueInfo.cpp
120986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Lint.cpp
121986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Loads.cpp
122bdd1243dSDimitry AndricSRCS_MIN+=	Analysis/Local.cpp
123986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopAccessAnalysis.cpp
124f1a29dd3SDimitry AndricSRCS_MIN+=	Analysis/LoopAnalysisManager.cpp
1259771cac2SDimitry AndricSRCS_MIN+=	Analysis/LoopCacheAnalysis.cpp
126986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopInfo.cpp
12748aaf27bSDimitry AndricSRCS_MIN+=	Analysis/LoopNestAnalysis.cpp
128986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopPass.cpp
129986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopUnrollAnalyzer.cpp
13006c3fb27SDimitry AndricSRCS_MIN+=	Analysis/MLInlineAdvisor.cpp
131986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemDerefPrinter.cpp
132986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemoryBuiltins.cpp
133986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemoryDependenceAnalysis.cpp
134986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemoryLocation.cpp
135bdd1243dSDimitry AndricSRCS_MIN+=	Analysis/MemoryProfileInfo.cpp
1365897d2f0SDimitry AndricSRCS_MIN+=	Analysis/MemorySSA.cpp
1375897d2f0SDimitry AndricSRCS_MIN+=	Analysis/MemorySSAUpdater.cpp
138986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ModuleDebugInfoPrinter.cpp
139986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ModuleSummaryAnalysis.cpp
1409f6e9a9fSDimitry AndricSRCS_MIN+=	Analysis/MustExecute.cpp
141986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ObjCARCAliasAnalysis.cpp
142986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ObjCARCAnalysisUtils.cpp
143986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ObjCARCInstKind.cpp
14436cb3905SDimitry AndricSRCS_MIN+=	Analysis/OptimizationRemarkEmitter.cpp
145fe6060f1SDimitry AndricSRCS_MIN+=	Analysis/OverflowInstAnalysis.cpp
146986e05bcSDimitry AndricSRCS_MIN+=	Analysis/PHITransAddr.cpp
1479f6e9a9fSDimitry AndricSRCS_MIN+=	Analysis/PhiValues.cpp
148986e05bcSDimitry AndricSRCS_MIN+=	Analysis/PostDominators.cpp
149986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ProfileSummaryInfo.cpp
150986e05bcSDimitry AndricSRCS_MIN+=	Analysis/PtrUseVisitor.cpp
151986e05bcSDimitry AndricSRCS_MIN+=	Analysis/RegionInfo.cpp
152986e05bcSDimitry AndricSRCS_MIN+=	Analysis/RegionPass.cpp
153986e05bcSDimitry AndricSRCS_MIN+=	Analysis/RegionPrinter.cpp
154e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/ReplayInlineAdvisor.cpp
155986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolution.cpp
156986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolutionAliasAnalysis.cpp
15748aaf27bSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolutionDivision.cpp
158986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolutionNormalization.cpp
159986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScopedNoAliasAA.cpp
16048aaf27bSDimitry AndricSRCS_MIN+=	Analysis/StackLifetime.cpp
1615e86819cSDimitry AndricSRCS_MIN+=	Analysis/StackSafetyAnalysis.cpp
1625f757f3fSDimitry AndricSRCS_MIN+=	Analysis/StructuralHash.cpp
1639f6e9a9fSDimitry AndricSRCS_MIN+=	Analysis/SyntheticCountsUtils.cpp
164986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TargetLibraryInfo.cpp
165986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TargetTransformInfo.cpp
16681ad6265SDimitry AndricSRCS_MIN+=	Analysis/TensorSpec.cpp
16706c3fb27SDimitry AndricSRCS_MIN+=	Analysis/TrainingLogger.cpp
168986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TypeBasedAliasAnalysis.cpp
169986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TypeMetadataUtils.cpp
170bdd1243dSDimitry AndricSRCS_MIN+=	Analysis/UniformityAnalysis.cpp
17136cb3905SDimitry AndricSRCS_MIN+=	Analysis/ValueLattice.cpp
17236cb3905SDimitry AndricSRCS_MIN+=	Analysis/ValueLatticeUtils.cpp
173986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ValueTracking.cpp
174986e05bcSDimitry AndricSRCS_MIN+=	Analysis/VectorUtils.cpp
175986e05bcSDimitry AndricSRCS_MIN+=	AsmParser/LLLexer.cpp
176986e05bcSDimitry AndricSRCS_MIN+=	AsmParser/LLParser.cpp
177986e05bcSDimitry AndricSRCS_MIN+=	AsmParser/Parser.cpp
1781b85b68dSCameron KatriSRCS_MIN+=	BinaryFormat/AMDGPUMetadataVerifier.cpp
179d781ede6SDimitry AndricSRCS_MIN+=	BinaryFormat/COFF.cpp
18044389c28SDimitry AndricSRCS_MIN+=	BinaryFormat/Dwarf.cpp
181647cbc5dSDimitry AndricSRCS_XDB+=	BinaryFormat/ELF.cpp
18248aaf27bSDimitry AndricSRCS_MIN+=	BinaryFormat/MachO.cpp
1835f757f3fSDimitry AndricSRCS_MIN+=	BinaryFormat/Magic.cpp
1841b85b68dSCameron KatriSRCS_MIN+=	BinaryFormat/MsgPackDocument.cpp
1851b85b68dSCameron KatriSRCS_MIN+=	BinaryFormat/MsgPackDocumentYAML.cpp
1861b85b68dSCameron KatriSRCS_MIN+=	BinaryFormat/MsgPackReader.cpp
18779239b5bSDimitry AndricSRCS_MIN+=	BinaryFormat/MsgPackWriter.cpp
1889f6e9a9fSDimitry AndricSRCS_MIN+=	BinaryFormat/Wasm.cpp
1899771cac2SDimitry AndricSRCS_MIN+=	BinaryFormat/XCOFF.cpp
19009bfd043SDimitry AndricSRCS_MIN+=	Bitcode/Reader/BitReader.cpp
19124b8043eSDimitry AndricSRCS_EXT+=	Bitcode/Reader/BitcodeAnalyzer.cpp
192986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Reader/BitcodeReader.cpp
19309bfd043SDimitry AndricSRCS_MIN+=	Bitcode/Reader/MetadataLoader.cpp
19409bfd043SDimitry AndricSRCS_MIN+=	Bitcode/Reader/ValueList.cpp
195986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Writer/BitcodeWriter.cpp
196986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Writer/BitcodeWriterPass.cpp
197986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Writer/ValueEnumerator.cpp
1984014a71fSDimitry AndricSRCS_MIN+=	Bitstream/Reader/BitstreamReader.cpp
199986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AggressiveAntiDepBreaker.cpp
200986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AllocationOrder.cpp
201986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/Analysis.cpp
202e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AIXException.cpp
203986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/ARMException.cpp
2049f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AccelTable.cpp
205986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AddressPool.cpp
206986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AsmPrinter.cpp
207986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
208986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
209986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/CodeViewDebug.cpp
210986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DIE.cpp
211986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DIEHash.cpp
2125e86819cSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp
213986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DebugHandlerBase.cpp
214986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DebugLocStream.cpp
215986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfCFIException.cpp
216986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfCompileUnit.cpp
217986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfDebug.cpp
218986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfExpression.cpp
219986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfFile.cpp
220986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfStringPool.cpp
221986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfUnit.cpp
222986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/EHStreamer.cpp
22324b8043eSDimitry AndricSRCS_EXT+=	CodeGen/AsmPrinter/ErlangGCPrinter.cpp
224986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/OcamlGCPrinter.cpp
225e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/PseudoProbePrinter.cpp
2265e86819cSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/WasmException.cpp
2279f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/WinCFGuard.cpp
228986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/WinException.cpp
229bdd1243dSDimitry AndricSRCS_MIN+=	CodeGen/AssignmentTrackingAnalysis.cpp
230986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AtomicExpandPass.cpp
2315f757f3fSDimitry AndricSRCS_MIN+=	CodeGen/BasicBlockPathCloning.cpp
232e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/BasicBlockSections.cpp
23381ad6265SDimitry AndricSRCS_MIN+=	CodeGen/BasicBlockSectionsProfileReader.cpp
234986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/BasicTargetTransformInfo.cpp
235986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/BranchFolding.cpp
23609bfd043SDimitry AndricSRCS_MIN+=	CodeGen/BranchRelaxation.cpp
2379f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/BreakFalseDeps.cpp
2389771cac2SDimitry AndricSRCS_MIN+=	CodeGen/CFGuardLongjmp.cpp
23981ad6265SDimitry AndricSRCS_MIN+=	CodeGen/CFIFixup.cpp
2409f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/CFIInstrInserter.cpp
241986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CalcSpillWeights.cpp
24206c3fb27SDimitry AndricSRCS_MIN+=	CodeGen/CallBrPrepare.cpp
243986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CallingConvLower.cpp
244986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CodeGen.cpp
2455e801ac6SDimitry AndricSRCS_MIN+=	CodeGen/CodeGenCommonISel.cpp
246986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CodeGenPrepare.cpp
24748aaf27bSDimitry AndricSRCS_EXL+=	CodeGen/CommandFlags.cpp
248bdd1243dSDimitry AndricSRCS_MIN+=	CodeGen/ComplexDeinterleavingPass.cpp
249986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CriticalAntiDepBreaker.cpp
250986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DFAPacketizer.cpp
251986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DeadMachineInstructionElim.cpp
252986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DetectDeadLanes.cpp
253986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DwarfEHPrepare.cpp
254fe6060f1SDimitry AndricSRCS_MIN+=	CodeGen/EHContGuardCatchret.cpp
255986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/EarlyIfConversion.cpp
256986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/EdgeBundles.cpp
2579f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/ExecutionDomainFix.cpp
258bdd1243dSDimitry AndricSRCS_MIN+=	CodeGen/ExpandLargeDivRem.cpp
259bdd1243dSDimitry AndricSRCS_MIN+=	CodeGen/ExpandLargeFpConvert.cpp
26036cb3905SDimitry AndricSRCS_MIN+=	CodeGen/ExpandMemCmp.cpp
261986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ExpandPostRAPseudos.cpp
2625517e702SDimitry AndricSRCS_MIN+=	CodeGen/ExpandReductions.cpp
263fe6060f1SDimitry AndricSRCS_MIN+=	CodeGen/ExpandVectorPredication.cpp
2645897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/FEntryInserter.cpp
265986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/FaultMaps.cpp
2664014a71fSDimitry AndricSRCS_MIN+=	CodeGen/FinalizeISel.cpp
26748aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/FixupStatepointCallerSaved.cpp
268986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/FuncletLayout.cpp
2695f757f3fSDimitry AndricSRCS_MIN+=	CodeGen/GCEmptyBasicBlocks.cpp
270986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GCMetadata.cpp
27109bfd043SDimitry AndricSRCS_MIN+=	CodeGen/GCMetadataPrinter.cpp
272986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GCRootLowering.cpp
2735e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CSEInfo.cpp
2745e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CSEMIRBuilder.cpp
2755f757f3fSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CallLowering.cpp
2765e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Combiner.cpp
2775e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CombinerHelper.cpp
2780fca6ea1SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CombinerHelperVectorOps.cpp
27906c3fb27SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/GIMatchTableExecutor.cpp
2805e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/GISelChangeObserver.cpp
2819771cac2SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/GISelKnownBits.cpp
282986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/GlobalISel.cpp
2833d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/IRTranslator.cpp
28448aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/InlineAsmLowering.cpp
2853d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/InstructionSelect.cpp
2863d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/InstructionSelector.cpp
287fe6060f1SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegacyLegalizerInfo.cpp
2889f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalityPredicates.cpp
2899f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalizeMutations.cpp
2903d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Legalizer.cpp
2913d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalizerHelper.cpp
2923d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalizerInfo.cpp
2935e801ac6SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LoadStoreOpt.cpp
294302affcbSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Localizer.cpp
29548aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LostDebugLocObserver.cpp
2963d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/MachineIRBuilder.cpp
2973d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/RegBankSelect.cpp
2983d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Utils.cpp
299986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GlobalMerge.cpp
3004014a71fSDimitry AndricSRCS_MIN+=	CodeGen/HardwareLoops.cpp
301986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/IfConversion.cpp
302986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ImplicitNullChecks.cpp
30307577dfeSDimitry AndricSRCS_MIN+=	CodeGen/IndirectBrExpandPass.cpp
3040fca6ea1SDimitry AndricSRCS_MIN+=	CodeGen/InitUndef.cpp
305986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/InlineSpiller.cpp
306986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/InterferenceCache.cpp
307986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/InterleavedAccessPass.cpp
3085e86819cSDimitry AndricSRCS_MIN+=	CodeGen/InterleavedLoadCombinePass.cpp
309986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/IntrinsicLowering.cpp
31081ad6265SDimitry AndricSRCS_MIN+=	CodeGen/JMCInstrumenter.cpp
31106c3fb27SDimitry AndricSRCS_MIN+=	CodeGen/KCFI.cpp
312986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LLVMTargetMachine.cpp
313986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LatencyPriorityQueue.cpp
3145897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/LazyMachineBlockFrequencyInfo.cpp
315986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LexicalScopes.cpp
316e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/LiveDebugValues/InstrRefBasedImpl.cpp
317e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/LiveDebugValues/LiveDebugValues.cpp
318e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/LiveDebugValues/VarLocBasedImpl.cpp
319986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveDebugVariables.cpp
320986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveInterval.cpp
32148aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/LiveIntervalCalc.cpp
322986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveIntervalUnion.cpp
32344389c28SDimitry AndricSRCS_MIN+=	CodeGen/LiveIntervals.cpp
324986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LivePhysRegs.cpp
325986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveRangeCalc.cpp
326986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveRangeEdit.cpp
327f9448bf3SDimitry AndricSRCS_MIN+=	CodeGen/LiveRangeShrink.cpp
328986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveRegMatrix.cpp
3295897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/LiveRegUnits.cpp
3302757ff7eSDimitry AndricSRCS_MIN+=	CodeGen/LiveStacks.cpp
331986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveVariables.cpp
332986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LocalStackSlotAllocation.cpp
3339f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/LoopTraversal.cpp
33406c3fb27SDimitry AndricSRCS_MIN+=	CodeGen/LowLevelTypeUtils.cpp
335986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LowerEmuTLS.cpp
33648aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/MBFIWrapper.cpp
33736cb3905SDimitry AndricSRCS_MIN+=	CodeGen/MIRCanonicalizerPass.cpp
338fe6060f1SDimitry AndricSRCS_MIN+=	CodeGen/MIRFSDiscriminator.cpp
3399771cac2SDimitry AndricSRCS_MIN+=	CodeGen/MIRNamerPass.cpp
340986e05bcSDimitry AndricSRCS_EXT+=	CodeGen/MIRParser/MILexer.cpp
341986e05bcSDimitry AndricSRCS_EXT+=	CodeGen/MIRParser/MIParser.cpp
342986e05bcSDimitry AndricSRCS_EXT+=	CodeGen/MIRParser/MIRParser.cpp
343986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MIRPrinter.cpp
344986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MIRPrintingPass.cpp
3455e801ac6SDimitry AndricSRCS_MIN+=	CodeGen/MIRSampleProfile.cpp
3469771cac2SDimitry AndricSRCS_MIN+=	CodeGen/MIRVRegNamerUtils.cpp
3475f757f3fSDimitry AndricSRCS_MIN+=	CodeGen/MLRegAllocEvictAdvisor.cpp
3485f757f3fSDimitry AndricSRCS_MIN+=	CodeGen/MLRegAllocPriorityAdvisor.cpp
349986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBasicBlock.cpp
350986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBlockFrequencyInfo.cpp
351986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBlockPlacement.cpp
352986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBranchProbabilityInfo.cpp
353bdd1243dSDimitry AndricSRCS_MIN+=	CodeGen/MachineCFGPrinter.cpp
354986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineCSE.cpp
355e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/MachineCheckDebugify.cpp
356986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineCombiner.cpp
3570fca6ea1SDimitry AndricSRCS_MIN+=	CodeGen/MachineConvergenceVerifier.cpp
358986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineCopyPropagation.cpp
35904eeddc0SDimitry AndricSRCS_MIN+=	CodeGen/MachineCycleAnalysis.cpp
36048aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/MachineDebugify.cpp
361986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineDominanceFrontier.cpp
362986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineDominators.cpp
363f37b6182SDimitry AndricSRCS_MIN+=	CodeGen/MachineFrameInfo.cpp
364986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineFunction.cpp
3650fca6ea1SDimitry AndricSRCS_MIN+=	CodeGen/MachineFunctionAnalysis.cpp
366986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineFunctionPass.cpp
367986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineFunctionPrinterPass.cpp
368e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/MachineFunctionSplitter.cpp
369986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineInstr.cpp
370986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineInstrBundle.cpp
371986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineLICM.cpp
372bdd1243dSDimitry AndricSRCS_MIN+=	CodeGen/MachineLateInstrsCleanup.cpp
373986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineLoopInfo.cpp
3749771cac2SDimitry AndricSRCS_MIN+=	CodeGen/MachineLoopUtils.cpp
375986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineModuleInfo.cpp
376986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineModuleInfoImpls.cpp
377fe6060f1SDimitry AndricSRCS_MIN+=	CodeGen/MachineModuleSlotTracker.cpp
37836cb3905SDimitry AndricSRCS_MIN+=	CodeGen/MachineOperand.cpp
3795897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/MachineOptimizationRemarkEmitter.cpp
3805897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/MachineOutliner.cpp
3817a6dacacSDimitry AndricSRCS_MIN+=	CodeGen/MachinePassManager.cpp
38209bfd043SDimitry AndricSRCS_MIN+=	CodeGen/MachinePipeliner.cpp
383986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachinePostDominators.cpp
384986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineRegionInfo.cpp
385986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineRegisterInfo.cpp
38604eeddc0SDimitry AndricSRCS_MIN+=	CodeGen/MachineSSAContext.cpp
387986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineSSAUpdater.cpp
388986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineScheduler.cpp
389986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineSink.cpp
3909771cac2SDimitry AndricSRCS_MIN+=	CodeGen/MachineSizeOpts.cpp
391e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/MachineStableHash.cpp
39248aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/MachineStripDebug.cpp
393986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineTraceMetrics.cpp
394bdd1243dSDimitry AndricSRCS_MIN+=	CodeGen/MachineUniformityAnalysis.cpp
395986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineVerifier.cpp
396edd7eaddSDimitry AndricSRCS_MIN+=	CodeGen/MacroFusion.cpp
3979771cac2SDimitry AndricSRCS_MIN+=	CodeGen/ModuloSchedule.cpp
398e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/MultiHazardRecognizer.cpp
399fcaf7f86SDimitry AndricSRCS_EXT+=	CodeGen/NonRelocatableStringpool.cpp
400986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/OptimizePHIs.cpp
401986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PHIElimination.cpp
402986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PHIEliminationUtils.cpp
403986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PatchableFunction.cpp
404986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PeepholeOptimizer.cpp
405986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PostRAHazardRecognizer.cpp
406986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PostRASchedulerList.cpp
407986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PreISelIntrinsicLowering.cpp
408986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ProcessImplicitDefs.cpp
409986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PrologEpilogInserter.cpp
410e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/PseudoProbeInserter.cpp
411986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PseudoSourceValue.cpp
4120946e70aSDimitry AndricSRCS_MIN+=	CodeGen/RDFGraph.cpp
4130946e70aSDimitry AndricSRCS_MIN+=	CodeGen/RDFLiveness.cpp
4140946e70aSDimitry AndricSRCS_MIN+=	CodeGen/RDFRegisters.cpp
4155f757f3fSDimitry AndricSRCS_MIN+=	CodeGen/ReachingDefAnalysis.cpp
416986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocBase.cpp
417986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocBasic.cpp
41804eeddc0SDimitry AndricSRCS_MIN+=	CodeGen/RegAllocEvictionAdvisor.cpp
419986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocFast.cpp
420986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocGreedy.cpp
421986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocPBQP.cpp
422bdd1243dSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocPriorityAdvisor.cpp
423986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegUsageInfoCollector.cpp
424986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegUsageInfoPropagate.cpp
42581ad6265SDimitry AndricSRCS_MIN+=	CodeGen/RegisterBank.cpp
42681ad6265SDimitry AndricSRCS_MIN+=	CodeGen/RegisterBankInfo.cpp
427986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterClassInfo.cpp
428986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterCoalescer.cpp
429986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterPressure.cpp
430986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterScavenging.cpp
431986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterUsageInfo.cpp
432fe6060f1SDimitry AndricSRCS_MIN+=	CodeGen/RemoveRedundantDebugValues.cpp
433986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RenameIndependentSubregs.cpp
4345f757f3fSDimitry AndricSRCS_MIN+=	CodeGen/ReplaceWithVeclib.cpp
43509bfd043SDimitry AndricSRCS_MIN+=	CodeGen/ResetMachineFunctionPass.cpp
436986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SafeStack.cpp
437986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SafeStackLayout.cpp
438bdd1243dSDimitry AndricSRCS_MIN+=	CodeGen/SanitizerBinaryMetadata.cpp
439986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScheduleDAG.cpp
440986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScheduleDAGInstrs.cpp
441986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScheduleDAGPrinter.cpp
442986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScoreboardHazardRecognizer.cpp
44381ad6265SDimitry AndricSRCS_MIN+=	CodeGen/SelectOptimize.cpp
444986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/DAGCombiner.cpp
445986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/FastISel.cpp
446986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
447986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/InstrEmitter.cpp
448986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeDAG.cpp
449986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
450986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
451986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeTypes.cpp
452986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
453986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeVectorOps.cpp
454986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
455986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ResourcePriorityQueue.cpp
456986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGFast.cpp
457986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
458986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
459986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
460986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAG.cpp
46144389c28SDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
462986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
463986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGDumper.cpp
464986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGISel.cpp
465986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
466986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp
467986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/StatepointLowering.cpp
468986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/TargetLowering.cpp
469986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ShadowStackGCLowering.cpp
470986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ShrinkWrap.cpp
471986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SjLjEHPrepare.cpp
472986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SlotIndexes.cpp
473986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SpillPlacement.cpp
474986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SplitKit.cpp
475986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackColoring.cpp
476bdd1243dSDimitry AndricSRCS_MIN+=	CodeGen/StackFrameLayoutAnalysisPass.cpp
477986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackMapLivenessAnalysis.cpp
478986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackMaps.cpp
479986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackProtector.cpp
480986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackSlotColoring.cpp
4814014a71fSDimitry AndricSRCS_MIN+=	CodeGen/SwiftErrorValueTracking.cpp
4824014a71fSDimitry AndricSRCS_MIN+=	CodeGen/SwitchLoweringUtils.cpp
483986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TailDuplication.cpp
484986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TailDuplicator.cpp
485986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetFrameLoweringImpl.cpp
486986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetInstrInfo.cpp
487986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetLoweringBase.cpp
488986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetLoweringObjectFileImpl.cpp
489986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetOptionsImpl.cpp
490986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetPassConfig.cpp
491986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetRegisterInfo.cpp
492986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetSchedule.cpp
49309bfd043SDimitry AndricSRCS_MIN+=	CodeGen/TargetSubtargetInfo.cpp
494986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TwoAddressInstructionPass.cpp
4959771cac2SDimitry AndricSRCS_MIN+=	CodeGen/TypePromotion.cpp
496986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/UnreachableBlockElim.cpp
4979f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/ValueTypes.cpp
498986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/VirtRegMap.cpp
4999f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/WasmEHPrepare.cpp
500986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/WinEHPrepare.cpp
5010fca6ea1SDimitry AndricSRCS_MIN+=	CodeGen/WindowScheduler.cpp
502986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/XRayInstrumentation.cpp
5030fca6ea1SDimitry AndricSRCS_MIN+=	CodeGenTypes/LowLevelType.cpp
504297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Classic/DWARFLinker.cpp
505297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Classic/DWARFLinkerCompileUnit.cpp
506297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Classic/DWARFLinkerDeclContext.cpp
507297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Classic/DWARFStreamer.cpp
5087a6dacacSDimitry AndricSRCS_EXT+=	DWARFLinker/DWARFLinkerBase.cpp
509297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/AcceleratorRecordsSaver.cpp
510297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/DIEAttributeCloner.cpp
511297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/DWARFEmitterImpl.cpp
512297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/DWARFLinker.cpp
513297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/DWARFLinkerCompileUnit.cpp
514297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/DWARFLinkerImpl.cpp
515297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/DWARFLinkerTypeUnit.cpp
516297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/DWARFLinkerUnit.cpp
517297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/DependencyTracker.cpp
518297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/OutputSections.cpp
519297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/SyntheticTypeNameBuilder.cpp
520297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Utils.cpp
521fe6060f1SDimitry AndricSRCS_EXT+=	DWP/DWP.cpp
522fe6060f1SDimitry AndricSRCS_EXT+=	DWP/DWPError.cpp
52306c3fb27SDimitry AndricSRCS_MIW+=	DebugInfo/BTF/BTFContext.cpp
52406c3fb27SDimitry AndricSRCS_MIW+=	DebugInfo/BTF/BTFParser.cpp
525*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/AppendingTypeTableBuilder.cpp
52609bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CVSymbolVisitor.cpp
527986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CVTypeVisitor.cpp
528986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CodeViewError.cpp
52909bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CodeViewRecordIO.cpp
53036cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/ContinuationRecordBuilder.cpp
5311b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/DebugChecksumsSubsection.cpp
532*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/DebugCrossExSubsection.cpp
533*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/DebugCrossImpSubsection.cpp
5341b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/DebugFrameDataSubsection.cpp
5351b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp
5361b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/DebugLinesSubsection.cpp
5371b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/DebugStringTableSubsection.cpp
538*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/DebugSubsection.cpp
539*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/DebugSubsectionRecord.cpp
540*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/DebugSubsectionVisitor.cpp
541*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/DebugSymbolRVASubsection.cpp
542*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/DebugSymbolsSubsection.cpp
5435e86819cSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/EnumTables.cpp
5445897d2f0SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/Formatters.cpp
54536cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/GlobalTypeTableBuilder.cpp
5461b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/LazyRandomTypeCollection.cpp
547986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/Line.cpp
5481b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/MergingTypeTableBuilder.cpp
54936cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/RecordName.cpp
550986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/RecordSerialization.cpp
55136cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SimpleTypeSerializer.cpp
55224d58133SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/StringsAndChecksums.cpp
553986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SymbolDumper.cpp
55461cfbce3SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SymbolRecordHelpers.cpp
55509bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SymbolRecordMapping.cpp
556*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SymbolSerializer.cpp
557f1a29dd3SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeDumpVisitor.cpp
55836cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeHashing.cpp
559d8866befSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeIndex.cpp
56006230659SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeIndexDiscovery.cpp
561efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/TypeRecordHelpers.cpp
56209bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeRecordMapping.cpp
563986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeStreamMerger.cpp
564d8866befSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeTableCollection.cpp
565*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
566*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFAcceleratorTable.cpp
567*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFAddressRange.cpp
568*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFCompileUnit.cpp
569*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFContext.cpp
570*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDataExtractor.cpp
571*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugAbbrev.cpp
572*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugAddr.cpp
573*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugArangeSet.cpp
574*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugAranges.cpp
575*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugFrame.cpp
576*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugInfoEntry.cpp
577*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugLine.cpp
578*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugLoc.cpp
579*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugMacro.cpp
580*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugPubTable.cpp
581*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugRangeList.cpp
582*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugRnglists.cpp
583*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDie.cpp
584e89f883aSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFExpression.cpp
585*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFFormValue.cpp
586*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFGdbIndex.cpp
587*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFListTable.cpp
588*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFTypePrinter.cpp
589*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFTypeUnit.cpp
590*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFUnit.cpp
591*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFUnitIndex.cpp
592*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFVerifier.cpp
59309bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/MSF/MSFBuilder.cpp
59409bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/MSF/MSFCommon.cpp
595*2e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/MSF/MSFError.cpp
59609bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/MSF/MappedBlockStream.cpp
597986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/GenericError.cpp
59809bfd043SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/IPDBSourceFile.cpp
599f37b6182SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiModuleDescriptor.cpp
600f37b6182SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp
6010f5676f4SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiModuleList.cpp
602050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiStream.cpp
603050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiStreamBuilder.cpp
604050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/EnumTables.cpp
60581ad6265SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/FormatUtil.cpp
6063cd201a1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/GSIStreamBuilder.cpp
607050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/GlobalsStream.cpp
608050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/Hash.cpp
609050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/HashTable.cpp
610050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/InfoStream.cpp
611050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/InfoStreamBuilder.cpp
61224b8043eSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/InjectedSourceStream.cpp
61381ad6265SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/InputFile.cpp
61481ad6265SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/LinePrinter.cpp
615f37b6182SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/ModuleDebugStream.cpp
616050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NamedStreamMap.cpp
617050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeCompilandSymbol.cpp
618efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumGlobals.cpp
61924b8043eSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumInjectedSources.cpp
62048aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumLineNumbers.cpp
621050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumModules.cpp
622e8d8bef9SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumSymbols.cpp
62344389c28SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumTypes.cpp
624050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeExeSymbol.cpp
62548aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeFunctionSymbol.cpp
626e8d8bef9SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeInlineSiteSymbol.cpp
62748aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeLineNumber.cpp
62848aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativePublicSymbol.cpp
629050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeRawSymbol.cpp
630050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeSession.cpp
63148aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeSourceFile.cpp
632efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeSymbolEnumerator.cpp
633efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeArray.cpp
634efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeBuiltin.cpp
635efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeEnum.cpp
636efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp
637efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypePointer.cpp
638efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeTypedef.cpp
639efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeUDT.cpp
640efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeVTShape.cpp
641050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBFile.cpp
642050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBFileBuilder.cpp
643b174acefSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBStringTable.cpp
644b174acefSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBStringTableBuilder.cpp
6453d54deb3SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PublicsStream.cpp
6463d54deb3SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/RawError.cpp
647efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/SymbolCache.cpp
648050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/SymbolStream.cpp
649050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/TpiHashing.cpp
650050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/TpiStream.cpp
651050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/TpiStreamBuilder.cpp
652986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDB.cpp
653986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBContext.cpp
654986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBExtras.cpp
655986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBInterfaceAnchors.cpp
656986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymDumper.cpp
657986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbol.cpp
658986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolAnnotation.cpp
659986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolBlock.cpp
660986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCompiland.cpp
661986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
662986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCompilandEnv.cpp
663986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCustom.cpp
664986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolData.cpp
665986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolExe.cpp
666986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolFunc.cpp
667986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
668986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
669986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolLabel.cpp
670986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
671986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolThunk.cpp
672986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeArray.cpp
673986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
674986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp
675986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeCustom.cpp
676986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeDimension.cpp
677986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeEnum.cpp
678986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeFriend.cpp
679986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
680986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
681986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeManaged.cpp
682986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypePointer.cpp
683986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
684986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeUDT.cpp
685986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeVTable.cpp
686986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp
687986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolUnknown.cpp
688986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolUsingNamespace.cpp
689050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/UDTLayout.cpp
6900db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/DIPrinter.cpp
69181ad6265SDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/Markup.cpp
69281ad6265SDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/MarkupFilter.cpp
69309bfd043SDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/SymbolizableObjectFile.cpp
69409bfd043SDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/Symbolize.cpp
695bdd1243dSDimitry AndricSRCS_MIW+=	Debuginfod/BuildIDFetcher.cpp
69604eeddc0SDimitry AndricSRCS_MIW+=	Debuginfod/Debuginfod.cpp
69704eeddc0SDimitry AndricSRCS_MIW+=	Debuginfod/HTTPClient.cpp
6985c38ea60SDimitry AndricSRCS_MIW+=	Debuginfod/HTTPServer.cpp
6995e801ac6SDimitry AndricSRCS_MIN+=	Demangle/DLangDemangle.cpp
7005e801ac6SDimitry AndricSRCS_MIN+=	Demangle/Demangle.cpp
70109bfd043SDimitry AndricSRCS_MIN+=	Demangle/ItaniumDemangle.cpp
7025e801ac6SDimitry AndricSRCS_MIN+=	Demangle/MicrosoftDemangle.cpp
7035e801ac6SDimitry AndricSRCS_MIN+=	Demangle/MicrosoftDemangleNodes.cpp
7045e801ac6SDimitry AndricSRCS_MIN+=	Demangle/RustDemangle.cpp
705986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/ExecutionEngine.cpp
706986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/ExecutionEngineBindings.cpp
707986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/GDBRegistrationListener.cpp
708986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/Interpreter/Execution.cpp
709986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/Interpreter/ExternalFunctions.cpp
710986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/Interpreter/Interpreter.cpp
711753f127fSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/COFF.cpp
712bdd1243dSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/COFFDirectiveParser.cpp
713753f127fSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/COFFLinkGraphBuilder.cpp
7145f757f3fSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/COFF_x86_64.cpp
71581ad6265SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/DWARFRecordSectionSplitter.cpp
716b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/EHFrameSupport.cpp
71748aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF.cpp
7185f757f3fSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELFLinkGraphBuilder.cpp
71906c3fb27SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF_aarch32.cpp
7205e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF_aarch64.cpp
721bdd1243dSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF_i386.cpp
722bdd1243dSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF_loongarch.cpp
72306c3fb27SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF_ppc64.cpp
724fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF_riscv.cpp
72548aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF_x86_64.cpp
726b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/JITLink.cpp
727b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/JITLinkGeneric.cpp
728b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/JITLinkMemoryManager.cpp
729b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/MachO.cpp
730b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp
731b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/MachO_arm64.cpp
732b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/MachO_x86_64.cpp
73306c3fb27SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/aarch32.cpp
7345e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/aarch64.cpp
735bdd1243dSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/i386.cpp
736bdd1243dSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/loongarch.cpp
73706c3fb27SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ppc64.cpp
738fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/riscv.cpp
739fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/x86_64.cpp
740986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/MCJIT/MCJIT.cpp
74106c3fb27SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/COFFPlatform.cpp
74206c3fb27SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/COFFVCRuntimeSupport.cpp
74367b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/CompileOnDemandLayer.cpp
74424b8043eSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/CompileUtils.cpp
74567b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Core.cpp
746fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/DebugObjectManagerPlugin.cpp
74748aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/DebugUtils.cpp
7485f757f3fSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Debugging/DebuggerSupport.cpp
7495f757f3fSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Debugging/DebuggerSupportPlugin.cpp
7505e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ELFNixPlatform.cpp
751fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/EPCDebugObjectRegistrar.cpp
75206c3fb27SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/EPCDynamicLibrarySearchGenerator.cpp
753fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/EPCEHFrameRegistrar.cpp
7545e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/EPCGenericDylibManager.cpp
7555e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/EPCGenericJITLinkMemoryManager.cpp
7565e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/EPCGenericRTDyldMemoryManager.cpp
757986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ExecutionUtils.cpp
758fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ExecutorProcessControl.cpp
75967b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/IRCompileLayer.cpp
76067b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/IRTransformLayer.cpp
761986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/IndirectionUtils.cpp
762efa75597SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/JITTargetMachineBuilder.cpp
76367b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/LLJIT.cpp
76467b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Layer.cpp
765efa75597SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/LazyReexports.cpp
76681ad6265SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/LookupAndRecordAddrs.cpp
76748aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/MachOPlatform.cpp
76848aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Mangling.cpp
76904eeddc0SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ObjectFileInterface.cpp
770b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ObjectLinkingLayer.cpp
771b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ObjectTransformLayer.cpp
772986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/OrcABISupport.cpp
77367b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
77404eeddc0SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Shared/AllocationActions.cpp
77506c3fb27SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Shared/ObjectFormats.cpp
776e8d8bef9SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Shared/OrcError.cpp
7775e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Shared/OrcRTBridge.cpp
7785e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Shared/SimpleRemoteEPCUtils.cpp
7795e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/SimpleRemoteEPC.cpp
780b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Speculation.cpp
781fe6060f1SDimitry AndricSRCS_XDB+=	ExecutionEngine/Orc/TargetProcess/JITLoaderGDB.cpp
782e8d8bef9SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/TargetProcess/RegisterEHFrames.cpp
783e8d8bef9SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/TargetProcess/TargetExecutionUtils.cpp
7845e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/TaskDispatch.cpp
785efa75597SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ThreadSafeModule.cpp
78609bfd043SDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/JITSymbol.cpp
787986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
788986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
789986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
790986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
791986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
792986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
79309bfd043SDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp
794986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/SectionMemoryManager.cpp
795986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/TargetSelect.cpp
7965f757f3fSDimitry AndricSRCS_MIN+=	Frontend/Driver/CodeGenOptions.cpp
797bdd1243dSDimitry AndricSRCS_MIN+=	Frontend/HLSL/HLSLResource.cpp
7987a6dacacSDimitry AndricSRCS_MIN+=	Frontend/Offloading/OffloadWrapper.cpp
7995f757f3fSDimitry AndricSRCS_MIN+=	Frontend/Offloading/Utility.cpp
800fe6060f1SDimitry AndricSRCS_MIN+=	Frontend/OpenMP/OMP.cpp
80148aaf27bSDimitry AndricSRCS_MIN+=	Frontend/OpenMP/OMPContext.cpp
8029771cac2SDimitry AndricSRCS_MIN+=	Frontend/OpenMP/OMPIRBuilder.cpp
8034014a71fSDimitry AndricSRCS_MIN+=	IR/AbstractCallSite.cpp
804986e05bcSDimitry AndricSRCS_MIN+=	IR/AsmWriter.cpp
805e8d8bef9SDimitry AndricSRCS_MIN+=	IR/Assumptions.cpp
806986e05bcSDimitry AndricSRCS_MIN+=	IR/Attributes.cpp
807986e05bcSDimitry AndricSRCS_MIN+=	IR/AutoUpgrade.cpp
808986e05bcSDimitry AndricSRCS_MIN+=	IR/BasicBlock.cpp
809bdd1243dSDimitry AndricSRCS_MIN+=	IR/BuiltinGCs.cpp
810986e05bcSDimitry AndricSRCS_MIN+=	IR/Comdat.cpp
811986e05bcSDimitry AndricSRCS_MIN+=	IR/ConstantFold.cpp
812986e05bcSDimitry AndricSRCS_MIN+=	IR/ConstantRange.cpp
8130fca6ea1SDimitry AndricSRCS_MIN+=	IR/ConstantRangeList.cpp
814986e05bcSDimitry AndricSRCS_MIN+=	IR/Constants.cpp
8155f757f3fSDimitry AndricSRCS_MIN+=	IR/ConvergenceVerifier.cpp
816986e05bcSDimitry AndricSRCS_MIN+=	IR/Core.cpp
81706c3fb27SDimitry AndricSRCS_MIN+=	IR/CycleInfo.cpp
818986e05bcSDimitry AndricSRCS_MIN+=	IR/DIBuilder.cpp
8190fca6ea1SDimitry AndricSRCS_MIN+=	IR/DIExpressionOptimizer.cpp
820986e05bcSDimitry AndricSRCS_MIN+=	IR/DataLayout.cpp
821986e05bcSDimitry AndricSRCS_MIN+=	IR/DebugInfo.cpp
822986e05bcSDimitry AndricSRCS_MIN+=	IR/DebugInfoMetadata.cpp
823986e05bcSDimitry AndricSRCS_MIN+=	IR/DebugLoc.cpp
8245f757f3fSDimitry AndricSRCS_MIN+=	IR/DebugProgramInstruction.cpp
82536cb3905SDimitry AndricSRCS_MIN+=	IR/DiagnosticHandler.cpp
826986e05bcSDimitry AndricSRCS_MIN+=	IR/DiagnosticInfo.cpp
827986e05bcSDimitry AndricSRCS_MIN+=	IR/DiagnosticPrinter.cpp
828986e05bcSDimitry AndricSRCS_MIN+=	IR/Dominators.cpp
82906c3fb27SDimitry AndricSRCS_MIN+=	IR/EHPersonalities.cpp
8309771cac2SDimitry AndricSRCS_MIN+=	IR/FPEnv.cpp
831986e05bcSDimitry AndricSRCS_MIN+=	IR/Function.cpp
832fe6060f1SDimitry AndricSRCS_MIN+=	IR/GCStrategy.cpp
833986e05bcSDimitry AndricSRCS_MIN+=	IR/GVMaterializer.cpp
834986e05bcSDimitry AndricSRCS_MIN+=	IR/Globals.cpp
835986e05bcSDimitry AndricSRCS_MIN+=	IR/IRBuilder.cpp
836986e05bcSDimitry AndricSRCS_MIN+=	IR/IRPrintingPasses.cpp
837986e05bcSDimitry AndricSRCS_MIN+=	IR/InlineAsm.cpp
838986e05bcSDimitry AndricSRCS_MIN+=	IR/Instruction.cpp
839986e05bcSDimitry AndricSRCS_MIN+=	IR/Instructions.cpp
840986e05bcSDimitry AndricSRCS_MIN+=	IR/IntrinsicInst.cpp
841986e05bcSDimitry AndricSRCS_MIN+=	IR/LLVMContext.cpp
842986e05bcSDimitry AndricSRCS_MIN+=	IR/LLVMContextImpl.cpp
84348aaf27bSDimitry AndricSRCS_MIN+=	IR/LLVMRemarkStreamer.cpp
844986e05bcSDimitry AndricSRCS_MIN+=	IR/LegacyPassManager.cpp
845986e05bcSDimitry AndricSRCS_MIN+=	IR/MDBuilder.cpp
846986e05bcSDimitry AndricSRCS_MIN+=	IR/Mangler.cpp
8470fca6ea1SDimitry AndricSRCS_MIN+=	IR/MemoryModelRelaxationAnnotations.cpp
848986e05bcSDimitry AndricSRCS_MIN+=	IR/Metadata.cpp
849986e05bcSDimitry AndricSRCS_MIN+=	IR/Module.cpp
850986e05bcSDimitry AndricSRCS_MIN+=	IR/ModuleSummaryIndex.cpp
851986e05bcSDimitry AndricSRCS_MIN+=	IR/Operator.cpp
852986e05bcSDimitry AndricSRCS_MIN+=	IR/OptBisect.cpp
853986e05bcSDimitry AndricSRCS_MIN+=	IR/Pass.cpp
8545e86819cSDimitry AndricSRCS_MIN+=	IR/PassInstrumentation.cpp
855986e05bcSDimitry AndricSRCS_MIN+=	IR/PassManager.cpp
856986e05bcSDimitry AndricSRCS_MIN+=	IR/PassRegistry.cpp
8575e86819cSDimitry AndricSRCS_MIN+=	IR/PassTimingInfo.cpp
858e8d8bef9SDimitry AndricSRCS_MIN+=	IR/PrintPasses.cpp
859bdd1243dSDimitry AndricSRCS_MIN+=	IR/ProfDataUtils.cpp
860986e05bcSDimitry AndricSRCS_MIN+=	IR/ProfileSummary.cpp
861e8d8bef9SDimitry AndricSRCS_MIN+=	IR/PseudoProbe.cpp
862e8d8bef9SDimitry AndricSRCS_MIN+=	IR/ReplaceConstant.cpp
8630fca6ea1SDimitry AndricSRCS_MIN+=	IR/RuntimeLibcalls.cpp
86404eeddc0SDimitry AndricSRCS_MIN+=	IR/SSAContext.cpp
865c4394386SDimitry AndricSRCS_MIN+=	IR/SafepointIRVerifier.cpp
866986e05bcSDimitry AndricSRCS_MIN+=	IR/Statepoint.cpp
86706c3fb27SDimitry AndricSRCS_MIN+=	IR/StructuralHash.cpp
868986e05bcSDimitry AndricSRCS_MIN+=	IR/Type.cpp
869986e05bcSDimitry AndricSRCS_MIN+=	IR/TypeFinder.cpp
870986e05bcSDimitry AndricSRCS_MIN+=	IR/Use.cpp
871986e05bcSDimitry AndricSRCS_MIN+=	IR/User.cpp
8727a6dacacSDimitry AndricSRCS_MIN+=	IR/VFABIDemangler.cpp
873986e05bcSDimitry AndricSRCS_MIN+=	IR/Value.cpp
874986e05bcSDimitry AndricSRCS_MIN+=	IR/ValueSymbolTable.cpp
8750fca6ea1SDimitry AndricSRCS_MIN+=	IR/VectorBuilder.cpp
876986e05bcSDimitry AndricSRCS_MIN+=	IR/Verifier.cpp
877bdd1243dSDimitry AndricSRCS_MIN+=	IRPrinter/IRPrintingPasses.cpp
8785f757f3fSDimitry AndricSRCS_MIN+=	IRReader/IRReader.cpp
8795897d2f0SDimitry AndricSRCS_MIN+=	LTO/LTO.cpp
88009bfd043SDimitry AndricSRCS_MIN+=	LTO/LTOBackend.cpp
88175bc38b9SEd MasteSRCS_EXL+=	LTO/LTOCodeGenerator.cpp
88275bc38b9SEd MasteSRCS_EXL+=	LTO/LTOModule.cpp
883*2e47f35bSDimitry AndricSRCS_MIN+=	LTO/SummaryBasedOptimizations.cpp
88475bc38b9SEd MasteSRCS_EXL+=	LTO/ThinLTOCodeGenerator.cpp
88509bfd043SDimitry AndricSRCS_MIN+=	LTO/UpdateCompilerUsed.cpp
8865f757f3fSDimitry AndricSRCS_MIN+=	Linker/IRMover.cpp
88731ba4ce8SAlex Richardson# Only needed for clangd/clang-query, uncomment once we build those.
88831ba4ce8SAlex Richardson# SRCS_XDW+=	LineEditor/LineEditor.cpp
889986e05bcSDimitry AndricSRCS_MIN+=	Linker/LinkModules.cpp
890986e05bcSDimitry AndricSRCS_MIN+=	MC/ConstantPools.cpp
891986e05bcSDimitry AndricSRCS_MIN+=	MC/ELFObjectWriter.cpp
8925f757f3fSDimitry AndricSRCS_MIN+=	MC/GOFFObjectWriter.cpp
893986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmBackend.cpp
894986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfo.cpp
895986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoCOFF.cpp
896986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoDarwin.cpp
897986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoELF.cpp
8984014a71fSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoXCOFF.cpp
8999f6e9a9fSDimitry AndricSRCS_MIN+=	MC/MCAsmMacro.cpp
900986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmStreamer.cpp
901986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAssembler.cpp
902986e05bcSDimitry AndricSRCS_MIN+=	MC/MCCodeEmitter.cpp
903986e05bcSDimitry AndricSRCS_MIN+=	MC/MCCodeView.cpp
904986e05bcSDimitry AndricSRCS_MIN+=	MC/MCContext.cpp
90581ad6265SDimitry AndricSRCS_MIN+=	MC/MCDXContainerStreamer.cpp
90681ad6265SDimitry AndricSRCS_MIN+=	MC/MCDXContainerWriter.cpp
90775bc38b9SEd MasteSRCS_XDL+=	MC/MCDisassembler/Disassembler.cpp
908*2e47f35bSDimitry AndricSRCS_MIN+=	MC/MCDisassembler/MCDisassembler.cpp
90930d4828eSDimitry AndricSRCS_XDW+=	MC/MCDisassembler/MCExternalSymbolizer.cpp
910986e05bcSDimitry AndricSRCS_MIN+=	MC/MCDisassembler/MCRelocationInfo.cpp
91130d4828eSDimitry AndricSRCS_XDW+=	MC/MCDisassembler/MCSymbolizer.cpp
912986e05bcSDimitry AndricSRCS_MIN+=	MC/MCDwarf.cpp
913986e05bcSDimitry AndricSRCS_MIN+=	MC/MCELFObjectTargetWriter.cpp
914986e05bcSDimitry AndricSRCS_MIN+=	MC/MCELFStreamer.cpp
915986e05bcSDimitry AndricSRCS_MIN+=	MC/MCExpr.cpp
916986e05bcSDimitry AndricSRCS_MIN+=	MC/MCFragment.cpp
9175f757f3fSDimitry AndricSRCS_MIN+=	MC/MCGOFFStreamer.cpp
918986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInst.cpp
919986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInstPrinter.cpp
920986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInstrAnalysis.cpp
921986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInstrDesc.cpp
92248aaf27bSDimitry AndricSRCS_MIN+=	MC/MCInstrInfo.cpp
923986e05bcSDimitry AndricSRCS_MIN+=	MC/MCLinkerOptimizationHint.cpp
924986e05bcSDimitry AndricSRCS_MIN+=	MC/MCMachOStreamer.cpp
925986e05bcSDimitry AndricSRCS_MIN+=	MC/MCMachObjectTargetWriter.cpp
926986e05bcSDimitry AndricSRCS_MIN+=	MC/MCNullStreamer.cpp
927986e05bcSDimitry AndricSRCS_MIN+=	MC/MCObjectFileInfo.cpp
928986e05bcSDimitry AndricSRCS_MIN+=	MC/MCObjectStreamer.cpp
929986e05bcSDimitry AndricSRCS_MIN+=	MC/MCObjectWriter.cpp
930986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/AsmLexer.cpp
931986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/AsmParser.cpp
932986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/COFFAsmParser.cpp
933986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/DarwinAsmParser.cpp
934986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/ELFAsmParser.cpp
9355e801ac6SDimitry AndricSRCS_MIN+=	MC/MCParser/GOFFAsmParser.cpp
936986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCAsmLexer.cpp
937986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCAsmParser.cpp
938986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCAsmParserExtension.cpp
939986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCTargetAsmParser.cpp
9405e86819cSDimitry AndricSRCS_MIN+=	MC/MCParser/WasmAsmParser.cpp
941fe6060f1SDimitry AndricSRCS_MIN+=	MC/MCParser/XCOFFAsmParser.cpp
942e8d8bef9SDimitry AndricSRCS_MIN+=	MC/MCPseudoProbe.cpp
943986e05bcSDimitry AndricSRCS_MIN+=	MC/MCRegisterInfo.cpp
94481ad6265SDimitry AndricSRCS_MIN+=	MC/MCSPIRVStreamer.cpp
945986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSchedule.cpp
946986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSection.cpp
947986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSectionCOFF.cpp
94881ad6265SDimitry AndricSRCS_MIN+=	MC/MCSectionDXContainer.cpp
949986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSectionELF.cpp
950986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSectionMachO.cpp
9515897d2f0SDimitry AndricSRCS_MIN+=	MC/MCSectionWasm.cpp
9524014a71fSDimitry AndricSRCS_MIN+=	MC/MCSectionXCOFF.cpp
953986e05bcSDimitry AndricSRCS_MIN+=	MC/MCStreamer.cpp
954986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSubtargetInfo.cpp
955986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSymbol.cpp
956986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSymbolELF.cpp
95748aaf27bSDimitry AndricSRCS_MIN+=	MC/MCSymbolXCOFF.cpp
958986e05bcSDimitry AndricSRCS_MIN+=	MC/MCTargetOptions.cpp
95948aaf27bSDimitry AndricSRCS_MIN+=	MC/MCTargetOptionsCommandFlags.cpp
960986e05bcSDimitry AndricSRCS_MIN+=	MC/MCValue.cpp
9615897d2f0SDimitry AndricSRCS_MIN+=	MC/MCWasmStreamer.cpp
962986e05bcSDimitry AndricSRCS_MIN+=	MC/MCWin64EH.cpp
963edd7eaddSDimitry AndricSRCS_MIN+=	MC/MCWinCOFFStreamer.cpp
964986e05bcSDimitry AndricSRCS_MIN+=	MC/MCWinEH.cpp
9654014a71fSDimitry AndricSRCS_MIN+=	MC/MCXCOFFObjectTargetWriter.cpp
9665f757f3fSDimitry AndricSRCS_MIN+=	MC/MCXCOFFStreamer.cpp
967986e05bcSDimitry AndricSRCS_MIN+=	MC/MachObjectWriter.cpp
96881ad6265SDimitry AndricSRCS_MIN+=	MC/SPIRVObjectWriter.cpp
969986e05bcSDimitry AndricSRCS_MIN+=	MC/StringTableBuilder.cpp
9705e801ac6SDimitry AndricSRCS_MIN+=	MC/TargetRegistry.cpp
9719f6e9a9fSDimitry AndricSRCS_MIN+=	MC/WasmObjectWriter.cpp
972986e05bcSDimitry AndricSRCS_MIN+=	MC/WinCOFFObjectWriter.cpp
9734014a71fSDimitry AndricSRCS_MIN+=	MC/XCOFFObjectWriter.cpp
974b1ae9102SDimitry AndricSRCS_EXT+=	MCA/CodeEmitter.cpp
975efa75597SDimitry AndricSRCS_EXT+=	MCA/Context.cpp
976fe6060f1SDimitry AndricSRCS_EXT+=	MCA/CustomBehaviour.cpp
977efa75597SDimitry AndricSRCS_EXT+=	MCA/HWEventListener.cpp
978efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/HardwareUnit.cpp
979efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/LSUnit.cpp
980efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/RegisterFile.cpp
981efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/ResourceManager.cpp
982efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/RetireControlUnit.cpp
983efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/Scheduler.cpp
984efa75597SDimitry AndricSRCS_EXT+=	MCA/InstrBuilder.cpp
985efa75597SDimitry AndricSRCS_EXT+=	MCA/Instruction.cpp
986efa75597SDimitry AndricSRCS_EXT+=	MCA/Pipeline.cpp
987efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/DispatchStage.cpp
988efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/EntryStage.cpp
989efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/ExecuteStage.cpp
990fe6060f1SDimitry AndricSRCS_EXT+=	MCA/Stages/InOrderIssueStage.cpp
991efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/InstructionTables.cpp
99224b8043eSDimitry AndricSRCS_EXT+=	MCA/Stages/MicroOpQueueStage.cpp
993efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/RetireStage.cpp
994efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/Stage.cpp
995efa75597SDimitry AndricSRCS_EXT+=	MCA/Support.cpp
9965e801ac6SDimitry AndricSRCS_EXT+=	MCA/View.cpp
99781ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/Archive.cpp
99881ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/COFF/COFFObjcopy.cpp
99981ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/COFF/COFFObject.cpp
100081ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/COFF/COFFReader.cpp
100181ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/COFF/COFFWriter.cpp
100281ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/CommonConfig.cpp
100381ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/ConfigManager.cpp
100481ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/ELF/ELFObjcopy.cpp
100581ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/ELF/ELFObject.cpp
100681ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/MachO/MachOLayoutBuilder.cpp
100781ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/MachO/MachOObjcopy.cpp
100881ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/MachO/MachOObject.cpp
100981ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/MachO/MachOReader.cpp
101081ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/MachO/MachOWriter.cpp
101181ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/ObjCopy.cpp
101281ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/XCOFF/XCOFFObjcopy.cpp
101381ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/XCOFF/XCOFFReader.cpp
101481ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/XCOFF/XCOFFWriter.cpp
101581ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/wasm/WasmObjcopy.cpp
101681ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/wasm/WasmObject.cpp
101781ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/wasm/WasmReader.cpp
101881ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/wasm/WasmWriter.cpp
1019986e05bcSDimitry AndricSRCS_MIN+=	Object/Archive.cpp
1020986e05bcSDimitry AndricSRCS_MIN+=	Object/ArchiveWriter.cpp
1021986e05bcSDimitry AndricSRCS_MIN+=	Object/Binary.cpp
1022*2e47f35bSDimitry AndricSRCS_MIN+=	Object/BuildID.cpp
10239c954a48SEd MasteSRCS_MIN+=	Object/COFFImportFile.cpp
1024*2e47f35bSDimitry AndricSRCS_MIN+=	Object/COFFModuleDefinition.cpp
1025986e05bcSDimitry AndricSRCS_MIN+=	Object/COFFObjectFile.cpp
1026f1a29dd3SDimitry AndricSRCS_MIN+=	Object/Decompressor.cpp
1027986e05bcSDimitry AndricSRCS_MIN+=	Object/ELF.cpp
1028986e05bcSDimitry AndricSRCS_MIN+=	Object/ELFObjectFile.cpp
1029986e05bcSDimitry AndricSRCS_MIN+=	Object/Error.cpp
1030fe6060f1SDimitry AndricSRCS_MIW+=	Object/FaultMapParser.cpp
1031986e05bcSDimitry AndricSRCS_MIN+=	Object/IRObjectFile.cpp
10325897d2f0SDimitry AndricSRCS_MIN+=	Object/IRSymtab.cpp
1033986e05bcSDimitry AndricSRCS_MIN+=	Object/MachOObjectFile.cpp
1034*2e47f35bSDimitry AndricSRCS_MIN+=	Object/MachOUniversal.cpp
1035021385abSAlex RichardsonSRCS_MIW+=	Object/MachOUniversalWriter.cpp
1036*2e47f35bSDimitry AndricSRCS_MIN+=	Object/Minidump.cpp
103709bfd043SDimitry AndricSRCS_MIN+=	Object/ModuleSymbolTable.cpp
1038986e05bcSDimitry AndricSRCS_EXT+=	Object/Object.cpp
1039986e05bcSDimitry AndricSRCS_MIN+=	Object/ObjectFile.cpp
1040*2e47f35bSDimitry AndricSRCS_MIN+=	Object/OffloadBinary.cpp
1041986e05bcSDimitry AndricSRCS_MIN+=	Object/RecordStreamer.cpp
1042*2e47f35bSDimitry AndricSRCS_MIN+=	Object/RelocationResolver.cpp
10430db9a49eSDimitry AndricSRCS_MIW+=	Object/SymbolSize.cpp
1044986e05bcSDimitry AndricSRCS_MIN+=	Object/SymbolicFile.cpp
1045*2e47f35bSDimitry AndricSRCS_MIN+=	Object/TapiFile.cpp
1046*2e47f35bSDimitry AndricSRCS_MIN+=	Object/TapiUniversal.cpp
104709bfd043SDimitry AndricSRCS_MIN+=	Object/WasmObjectFile.cpp
10480db9a49eSDimitry AndricSRCS_MIW+=	Object/WindowsMachineFlag.cpp
1049bbd32193SDimitry AndricSRCS_MIN+=	Object/WindowsResource.cpp
10504014a71fSDimitry AndricSRCS_MIN+=	Object/XCOFFObjectFile.cpp
1051986e05bcSDimitry AndricSRCS_MIN+=	ObjectYAML/COFFYAML.cpp
1052*2e47f35bSDimitry AndricSRCS_MIN+=	ObjectYAML/CodeViewYAMLDebugSections.cpp
1053*2e47f35bSDimitry AndricSRCS_MIN+=	ObjectYAML/CodeViewYAMLSymbols.cpp
1054*2e47f35bSDimitry AndricSRCS_MIN+=	ObjectYAML/CodeViewYAMLTypeHashing.cpp
1055*2e47f35bSDimitry AndricSRCS_MIN+=	ObjectYAML/CodeViewYAMLTypes.cpp
1056*2e47f35bSDimitry AndricSRCS_MIN+=	ObjectYAML/DWARFEmitter.cpp
105709bfd043SDimitry AndricSRCS_MIN+=	ObjectYAML/DWARFYAML.cpp
1058*2e47f35bSDimitry AndricSRCS_MIN+=	ObjectYAML/ELFEmitter.cpp
1059986e05bcSDimitry AndricSRCS_MIN+=	ObjectYAML/ELFYAML.cpp
1060986e05bcSDimitry AndricSRCS_MIN+=	ObjectYAML/MachOYAML.cpp
1061*2e47f35bSDimitry AndricSRCS_MIN+=	ObjectYAML/YAML.cpp
1062986e05bcSDimitry AndricSRCS_MIN+=	Option/Arg.cpp
1063986e05bcSDimitry AndricSRCS_MIN+=	Option/ArgList.cpp
1064986e05bcSDimitry AndricSRCS_MIN+=	Option/OptTable.cpp
1065986e05bcSDimitry AndricSRCS_MIN+=	Option/Option.cpp
10665e801ac6SDimitry AndricSRCS_MIN+=	Passes/OptimizationLevel.cpp
106709bfd043SDimitry AndricSRCS_MIN+=	Passes/PassBuilder.cpp
10685e801ac6SDimitry AndricSRCS_MIN+=	Passes/PassBuilderPipelines.cpp
10694014a71fSDimitry AndricSRCS_MIN+=	Passes/PassPlugin.cpp
10709771cac2SDimitry AndricSRCS_MIN+=	Passes/StandardInstrumentations.cpp
1071986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/Coverage/CoverageMapping.cpp
1072986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/Coverage/CoverageMappingReader.cpp
1073986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/Coverage/CoverageMappingWriter.cpp
10741b49115aSEd MasteSRCS_MIN+=	ProfileData/GCOV.cpp
1075986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/InstrProf.cpp
107604eeddc0SDimitry AndricSRCS_MIN+=	ProfileData/InstrProfCorrelator.cpp
1077986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/InstrProfReader.cpp
1078986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/InstrProfWriter.cpp
107906c3fb27SDimitry AndricSRCS_MIN+=	ProfileData/ItaniumManglingCanonicalizer.cpp
108081ad6265SDimitry AndricSRCS_MIN+=	ProfileData/MemProf.cpp
108136b606aeSDimitry AndricSRCS_COV+=	ProfileData/MemProfReader.cpp
1082986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/ProfileSummaryBuilder.cpp
1083986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/SampleProf.cpp
1084986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/SampleProfReader.cpp
1085961eb443SEd MasteSRCS_MIN+=	ProfileData/SampleProfWriter.cpp
108606c3fb27SDimitry AndricSRCS_MIN+=	ProfileData/SymbolRemappingReader.cpp
1087a2a9ef4bSDimitry AndricSRCS_MIN+=	Remarks/BitstreamRemarkParser.cpp
10889771cac2SDimitry AndricSRCS_MIN+=	Remarks/BitstreamRemarkSerializer.cpp
10894014a71fSDimitry AndricSRCS_MIN+=	Remarks/RemarkFormat.cpp
1090a2a9ef4bSDimitry AndricSRCS_MIN+=	Remarks/RemarkParser.cpp
10919771cac2SDimitry AndricSRCS_MIN+=	Remarks/RemarkSerializer.cpp
109248aaf27bSDimitry AndricSRCS_MIN+=	Remarks/RemarkStreamer.cpp
10934014a71fSDimitry AndricSRCS_MIN+=	Remarks/RemarkStringTable.cpp
1094a2a9ef4bSDimitry AndricSRCS_MIN+=	Remarks/YAMLRemarkParser.cpp
10954014a71fSDimitry AndricSRCS_MIN+=	Remarks/YAMLRemarkSerializer.cpp
1096054f9817SDimitry AndricSRCS_MIN+=	Support/ABIBreak.cpp
1097e8d8bef9SDimitry AndricSRCS_MIN+=	Support/APFixedPoint.cpp
1098986e05bcSDimitry AndricSRCS_MIN+=	Support/APFloat.cpp
1099986e05bcSDimitry AndricSRCS_MIN+=	Support/APInt.cpp
1100986e05bcSDimitry AndricSRCS_MIN+=	Support/APSInt.cpp
11015897d2f0SDimitry AndricSRCS_MIN+=	Support/ARMAttributeParser.cpp
1102986e05bcSDimitry AndricSRCS_MIN+=	Support/ARMBuildAttrs.cpp
11031b85b68dSCameron KatriSRCS_MIN+=	Support/ARMWinEH.cpp
1104986e05bcSDimitry AndricSRCS_MIN+=	Support/Allocator.cpp
1105bdd1243dSDimitry AndricSRCS_MIN+=	Support/BLAKE3/blake3.c
11065f757f3fSDimitry Andric.if ${TARGET_ARCH} == "amd64"
11075f757f3fSDimitry AndricSRCS_MIN+=	Support/BLAKE3/blake3_avx2_x86-64_unix.S
11085f757f3fSDimitry AndricSRCS_MIN+=	Support/BLAKE3/blake3_avx512_x86-64_unix.S
11095f757f3fSDimitry Andric.endif
1110bdd1243dSDimitry AndricSRCS_MIN+=	Support/BLAKE3/blake3_dispatch.c
1111fcaf7f86SDimitry Andric.if ${TARGET_ARCH} == "aarch64"
1112bdd1243dSDimitry AndricSRCS_MIN+=	Support/BLAKE3/blake3_neon.c
1113fcaf7f86SDimitry Andric.endif
1114bdd1243dSDimitry AndricSRCS_MIN+=	Support/BLAKE3/blake3_portable.c
1115fcaf7f86SDimitry Andric.if ${TARGET_ARCH} == "amd64"
1116bdd1243dSDimitry AndricSRCS_MIN+=	Support/BLAKE3/blake3_sse2_x86-64_unix.S
1117bdd1243dSDimitry AndricSRCS_MIN+=	Support/BLAKE3/blake3_sse41_x86-64_unix.S
1118fcaf7f86SDimitry Andric.endif
111906c3fb27SDimitry AndricSRCS_COV+=	Support/BalancedPartitioning.cpp
11205897d2f0SDimitry AndricSRCS_MIN+=	Support/BinaryStreamError.cpp
11215897d2f0SDimitry AndricSRCS_MIN+=	Support/BinaryStreamReader.cpp
1122d8866befSDimitry AndricSRCS_MIN+=	Support/BinaryStreamRef.cpp
11235897d2f0SDimitry AndricSRCS_MIN+=	Support/BinaryStreamWriter.cpp
1124986e05bcSDimitry AndricSRCS_MIN+=	Support/BlockFrequency.cpp
1125986e05bcSDimitry AndricSRCS_MIN+=	Support/BranchProbability.cpp
11265e86819cSDimitry AndricSRCS_MIN+=	Support/BuryPointer.cpp
11270db9a49eSDimitry AndricSRCS_MIW+=	Support/COM.cpp
11284d4aa256SDimitry AndricSRCS_MIN+=	Support/CRC.cpp
112981ad6265SDimitry AndricSRCS_MIN+=	Support/CachePruning.cpp
113081ad6265SDimitry AndricSRCS_MIW+=	Support/Caching.cpp
113109bfd043SDimitry AndricSRCS_MIN+=	Support/Chrono.cpp
113236cb3905SDimitry AndricSRCS_MIN+=	Support/CodeGenCoverage.cpp
1133986e05bcSDimitry AndricSRCS_MIN+=	Support/CommandLine.cpp
1134986e05bcSDimitry AndricSRCS_MIN+=	Support/Compression.cpp
113509bfd043SDimitry AndricSRCS_MIN+=	Support/ConvertUTF.cpp
1136986e05bcSDimitry AndricSRCS_MIN+=	Support/ConvertUTFWrapper.cpp
1137986e05bcSDimitry AndricSRCS_MIN+=	Support/CrashRecoveryContext.cpp
1138986e05bcSDimitry AndricSRCS_MIN+=	Support/DAGDeltaAlgorithm.cpp
11399f6e9a9fSDimitry AndricSRCS_MIN+=	Support/DJB.cpp
1140986e05bcSDimitry AndricSRCS_MIN+=	Support/DataExtractor.cpp
1141986e05bcSDimitry AndricSRCS_MIN+=	Support/Debug.cpp
11425897d2f0SDimitry AndricSRCS_MIN+=	Support/DebugCounter.cpp
1143986e05bcSDimitry AndricSRCS_MIN+=	Support/DeltaAlgorithm.cpp
11445e801ac6SDimitry AndricSRCS_MIN+=	Support/DivisionByConstantInfo.cpp
1145986e05bcSDimitry AndricSRCS_MIN+=	Support/DynamicLibrary.cpp
114648aaf27bSDimitry AndricSRCS_MIN+=	Support/ELFAttributeParser.cpp
114748aaf27bSDimitry AndricSRCS_MIN+=	Support/ELFAttributes.cpp
1148986e05bcSDimitry AndricSRCS_MIN+=	Support/Errno.cpp
1149986e05bcSDimitry AndricSRCS_MIN+=	Support/Error.cpp
1150986e05bcSDimitry AndricSRCS_MIN+=	Support/ErrorHandling.cpp
11510fca6ea1SDimitry AndricSRCS_MIN+=	Support/ExponentialBackoff.cpp
1152fe6060f1SDimitry AndricSRCS_MIN+=	Support/ExtensibleRTTI.cpp
1153e8d8bef9SDimitry AndricSRCS_MIN+=	Support/FileCollector.cpp
1154*2e47f35bSDimitry AndricSRCS_MIN+=	Support/FileOutputBuffer.cpp
11559771cac2SDimitry AndricSRCS_MIN+=	Support/FileUtilities.cpp
115606c3fb27SDimitry AndricSRCS_MIN+=	Support/FloatingPointMode.cpp
1157986e05bcSDimitry AndricSRCS_MIN+=	Support/FoldingSet.cpp
115809bfd043SDimitry AndricSRCS_MIN+=	Support/FormatVariadic.cpp
1159986e05bcSDimitry AndricSRCS_MIN+=	Support/FormattedStream.cpp
116009bfd043SDimitry AndricSRCS_MIN+=	Support/GlobPattern.cpp
1161986e05bcSDimitry AndricSRCS_MIN+=	Support/GraphWriter.cpp
11620fca6ea1SDimitry AndricSRCS_MIN+=	Support/HexagonAttributeParser.cpp
11630fca6ea1SDimitry AndricSRCS_MIN+=	Support/HexagonAttributes.cpp
11649f6e9a9fSDimitry AndricSRCS_MIN+=	Support/InitLLVM.cpp
1165e8d8bef9SDimitry AndricSRCS_MIN+=	Support/InstructionCost.cpp
1166986e05bcSDimitry AndricSRCS_MIN+=	Support/IntEqClasses.cpp
1167986e05bcSDimitry AndricSRCS_MIN+=	Support/IntervalMap.cpp
11682d31b1b8SDimitry AndricSRCS_MIN+=	Support/JSON.cpp
116936cb3905SDimitry AndricSRCS_MIN+=	Support/KnownBits.cpp
1170986e05bcSDimitry AndricSRCS_MIN+=	Support/LEB128.cpp
1171986e05bcSDimitry AndricSRCS_MIN+=	Support/LineIterator.cpp
1172986e05bcSDimitry AndricSRCS_MIN+=	Support/Locale.cpp
1173986e05bcSDimitry AndricSRCS_MIN+=	Support/LockFileManager.cpp
1174986e05bcSDimitry AndricSRCS_MIN+=	Support/MD5.cpp
11755e801ac6SDimitry AndricSRCS_MIW+=	Support/MSP430AttributeParser.cpp
11765e801ac6SDimitry AndricSRCS_MIW+=	Support/MSP430Attributes.cpp
1177986e05bcSDimitry AndricSRCS_MIN+=	Support/ManagedStatic.cpp
1178986e05bcSDimitry AndricSRCS_MIN+=	Support/MathExtras.cpp
117948aaf27bSDimitry AndricSRCS_MIN+=	Support/MemAlloc.cpp
1180*2e47f35bSDimitry AndricSRCS_MIN+=	Support/Memory.cpp
1181986e05bcSDimitry AndricSRCS_MIN+=	Support/MemoryBuffer.cpp
1182e8d8bef9SDimitry AndricSRCS_MIN+=	Support/MemoryBufferRef.cpp
118309bfd043SDimitry AndricSRCS_MIN+=	Support/NativeFormatting.cpp
118448aaf27bSDimitry AndricSRCS_MIN+=	Support/OptimizedStructLayout.cpp
11854014a71fSDimitry AndricSRCS_MIN+=	Support/Optional.cpp
118606c3fb27SDimitry AndricSRCS_MIN+=	Support/PGOOptions.cpp
1187e8d8bef9SDimitry AndricSRCS_EXL+=	Support/Parallel.cpp
1188986e05bcSDimitry AndricSRCS_MIN+=	Support/Path.cpp
1189986e05bcSDimitry AndricSRCS_MIN+=	Support/PluginLoader.cpp
1190986e05bcSDimitry AndricSRCS_MIN+=	Support/PrettyStackTrace.cpp
1191986e05bcSDimitry AndricSRCS_MIN+=	Support/Process.cpp
1192986e05bcSDimitry AndricSRCS_MIN+=	Support/Program.cpp
119348aaf27bSDimitry AndricSRCS_MIN+=	Support/RISCVAttributeParser.cpp
119448aaf27bSDimitry AndricSRCS_MIN+=	Support/RISCVAttributes.cpp
11950fca6ea1SDimitry AndricSRCS_MIN+=	Support/RISCVISAUtils.cpp
1196986e05bcSDimitry AndricSRCS_MIN+=	Support/RWMutex.cpp
1197986e05bcSDimitry AndricSRCS_MIN+=	Support/RandomNumberGenerator.cpp
1198986e05bcSDimitry AndricSRCS_MIN+=	Support/Regex.cpp
1199986e05bcSDimitry AndricSRCS_MIN+=	Support/SHA1.cpp
12005e801ac6SDimitry AndricSRCS_MIN+=	Support/SHA256.cpp
1201986e05bcSDimitry AndricSRCS_MIN+=	Support/ScaledNumber.cpp
1202986e05bcSDimitry AndricSRCS_MIN+=	Support/ScopedPrinter.cpp
1203986e05bcSDimitry AndricSRCS_MIN+=	Support/Signals.cpp
12044014a71fSDimitry AndricSRCS_MIN+=	Support/Signposts.cpp
12050fca6ea1SDimitry AndricSRCS_MIN+=	Support/SipHash.cpp
1206986e05bcSDimitry AndricSRCS_MIN+=	Support/SmallPtrSet.cpp
1207986e05bcSDimitry AndricSRCS_MIN+=	Support/SmallVector.cpp
1208986e05bcSDimitry AndricSRCS_MIN+=	Support/SourceMgr.cpp
1209986e05bcSDimitry AndricSRCS_MIN+=	Support/SpecialCaseList.cpp
1210986e05bcSDimitry AndricSRCS_MIN+=	Support/Statistic.cpp
1211986e05bcSDimitry AndricSRCS_MIN+=	Support/StringExtras.cpp
1212986e05bcSDimitry AndricSRCS_MIN+=	Support/StringMap.cpp
1213986e05bcSDimitry AndricSRCS_MIN+=	Support/StringRef.cpp
1214986e05bcSDimitry AndricSRCS_MIN+=	Support/StringSaver.cpp
121548aaf27bSDimitry AndricSRCS_MIN+=	Support/SuffixTree.cpp
121606c3fb27SDimitry AndricSRCS_MIN+=	Support/SuffixTreeNode.cpp
1217986e05bcSDimitry AndricSRCS_EXT+=	Support/SystemUtils.cpp
12181ae4f0f6SDimitry AndricSRCS_LLD+=	Support/TarWriter.cpp
1219*2e47f35bSDimitry AndricSRCS_MIN+=	Support/ThreadPool.cpp
1220986e05bcSDimitry AndricSRCS_MIN+=	Support/Threading.cpp
12214014a71fSDimitry AndricSRCS_MIN+=	Support/TimeProfiler.cpp
1222986e05bcSDimitry AndricSRCS_MIN+=	Support/Timer.cpp
1223986e05bcSDimitry AndricSRCS_MIN+=	Support/ToolOutputFile.cpp
1224986e05bcSDimitry AndricSRCS_MIN+=	Support/Twine.cpp
1225fe6060f1SDimitry AndricSRCS_MIN+=	Support/TypeSize.cpp
1226986e05bcSDimitry AndricSRCS_MIN+=	Support/Unicode.cpp
12279f6e9a9fSDimitry AndricSRCS_MIN+=	Support/UnicodeCaseFold.cpp
122881ad6265SDimitry AndricSRCS_MIN+=	Support/UnicodeNameToCodepoint.cpp
122981ad6265SDimitry AndricSRCS_MIN+=	Support/UnicodeNameToCodepointGenerated.cpp
1230986e05bcSDimitry AndricSRCS_MIN+=	Support/Valgrind.cpp
12319f6e9a9fSDimitry AndricSRCS_MIN+=	Support/VersionTuple.cpp
12325f757f3fSDimitry AndricSRCS_MIN+=	Support/VirtualFileSystem.cpp
12334014a71fSDimitry AndricSRCS_MIN+=	Support/Watchdog.cpp
123480a8c751SEd MasteSRCS_MIN+=	Support/WithColor.cpp
1235986e05bcSDimitry AndricSRCS_MIN+=	Support/YAMLParser.cpp
1236986e05bcSDimitry AndricSRCS_MIN+=	Support/YAMLTraits.cpp
123723559b6aSDimitry AndricSRCS_FUL+=	Support/Z3Solver.cpp
1238986e05bcSDimitry AndricSRCS_MIN+=	Support/circular_raw_ostream.cpp
1239986e05bcSDimitry AndricSRCS_MIN+=	Support/raw_os_ostream.cpp
1240986e05bcSDimitry AndricSRCS_MIN+=	Support/raw_ostream.cpp
1241cb14a3feSDimitry AndricSRCS_MIN+=	Support/raw_socket_stream.cpp
1242986e05bcSDimitry AndricSRCS_MIN+=	Support/regcomp.c
1243986e05bcSDimitry AndricSRCS_MIN+=	Support/regerror.c
1244986e05bcSDimitry AndricSRCS_MIN+=	Support/regexec.c
1245986e05bcSDimitry AndricSRCS_MIN+=	Support/regfree.c
1246986e05bcSDimitry AndricSRCS_MIN+=	Support/regstrlcpy.c
124780a8c751SEd MasteSRCS_MIN+=	Support/xxhash.cpp
1248d409305fSDimitry AndricSRCS_MIN+=	TableGen/DetailedRecordsBackend.cpp
1249986e05bcSDimitry AndricSRCS_MIN+=	TableGen/Error.cpp
1250d25b9f8fSDimitry AndricSRCS_MIN+=	TableGen/JSONBackend.cpp
1251986e05bcSDimitry AndricSRCS_MIN+=	TableGen/Main.cpp
1252986e05bcSDimitry AndricSRCS_MIN+=	TableGen/Record.cpp
1253986e05bcSDimitry AndricSRCS_MIN+=	TableGen/SetTheory.cpp
1254986e05bcSDimitry AndricSRCS_MIN+=	TableGen/StringMatcher.cpp
1255986e05bcSDimitry AndricSRCS_MIN+=	TableGen/TGLexer.cpp
1256986e05bcSDimitry AndricSRCS_MIN+=	TableGen/TGParser.cpp
1257986e05bcSDimitry AndricSRCS_MIN+=	TableGen/TableGenBackend.cpp
1258cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no"
1259986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64A53Fix835769.cpp
1260986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64A57FPLoadBalancing.cpp
1261986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64AdvSIMDScalarPass.cpp
12627a6dacacSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64Arm64ECCallLowering.cpp
1263986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64AsmPrinter.cpp
12645e86819cSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64BranchTargets.cpp
12654014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CallingConvention.cpp
1266986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp
1267986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CollectLOH.cpp
12685e86819cSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CompressJumpTables.cpp
1269edd7eaddSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CondBrTuning.cpp
1270986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ConditionOptimizer.cpp
1271986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ConditionalCompares.cpp
1272986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
12734014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ExpandImm.cpp
1274986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ExpandPseudoInsts.cpp
1275b40b48b8SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64FalkorHWPFFix.cpp
1276986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64FastISel.cpp
1277986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64FrameLowering.cpp
127806c3fb27SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64GlobalsTagging.cpp
1279986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ISelDAGToDAG.cpp
1280986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ISelLowering.cpp
1281986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64InstrInfo.cpp
1282986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64LoadStoreOptimizer.cpp
1283fe6060f1SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64LowerHomogeneousPrologEpilog.cpp
1284986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MCInstLower.cpp
12855e801ac6SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MIPeepholeOpt.cpp
128648aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MachineFunctionInfo.cpp
128781ad6265SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MachineScheduler.cpp
12885897d2f0SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MacroFusion.cpp
1289986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64PBQPRegAlloc.cpp
12905f757f3fSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64PointerAuth.cpp
12910fca6ea1SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64PostCoalescerPass.cpp
1292986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64PromoteConstant.cpp
1293986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64RedundantCopyElimination.cpp
1294986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64RegisterInfo.cpp
129536cb3905SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SIMDInstrOpt.cpp
129648aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SLSHardening.cpp
1297986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SelectionDAGInfo.cpp
12985e86819cSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SpeculationHardening.cpp
12994014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64StackTagging.cpp
13009771cac2SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64StackTaggingPreRA.cpp
1301986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64StorePairSuppress.cpp
1302986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64Subtarget.cpp
1303986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64TargetMachine.cpp
1304986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64TargetObjectFile.cpp
1305986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64TargetTransformInfo.cpp
1306986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AsmParser/AArch64AsmParser.cpp
130730d4828eSDimitry AndricSRCS_XDW+=	Target/AArch64/Disassembler/AArch64Disassembler.cpp
130830d4828eSDimitry AndricSRCS_XDW+=	Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp
130948aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64CallLowering.cpp
1310fe6060f1SDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64GlobalISelUtils.cpp
131148aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64InstructionSelector.cpp
131248aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64LegalizerInfo.cpp
1313fe6060f1SDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64O0PreLegalizerCombiner.cpp
131448aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64PostLegalizerCombiner.cpp
1315e8d8bef9SDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64PostLegalizerLowering.cpp
1316e8d8bef9SDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64PostSelectOptimize.cpp
13175f757f3fSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64PreLegalizerCombiner.cpp
131848aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64RegisterBankInfo.cpp
1319986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
1320986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
1321986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp
13224014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp
1323986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
1324986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
1325986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
1326986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
1327986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
1328986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp
1329a580b014SDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp
1330a580b014SDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp
1331bdd1243dSDimitry AndricSRCS_MIN+=	Target/AArch64/SMEABIPass.cpp
133248aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/SVEIntrinsicOpts.cpp
1333986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
1334986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/Utils/AArch64BaseInfo.cpp
1335bdd1243dSDimitry AndricSRCS_MIN+=	Target/AArch64/Utils/AArch64SMEAttributes.cpp
1336cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64
1337cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no"
1338986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/A15SDOptimizer.cpp
1339986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMAsmPrinter.cpp
1340986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMBaseInstrInfo.cpp
1341986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMBaseRegisterInfo.cpp
13424014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMBasicBlockInfo.cpp
1343e8d8bef9SDimitry AndricSRCS_MIN+=	Target/ARM/ARMBlockPlacement.cpp
13444824e7fdSDimitry AndricSRCS_MIN+=	Target/ARM/ARMBranchTargets.cpp
13453d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMCallLowering.cpp
13464014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMCallingConv.cpp
1347986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMConstantIslandPass.cpp
1348986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMConstantPoolValue.cpp
1349986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMExpandPseudoInsts.cpp
1350986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMFastISel.cpp
135181ad6265SDimitry AndricSRCS_MIN+=	Target/ARM/ARMFixCortexA57AES1742098Pass.cpp
1352986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMFrameLowering.cpp
1353986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMHazardRecognizer.cpp
1354986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMISelDAGToDAG.cpp
1355986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMISelLowering.cpp
1356986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMInstrInfo.cpp
13573d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMInstructionSelector.cpp
13583d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMLegalizerInfo.cpp
1359986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMLoadStoreOptimizer.cpp
13604014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMLowOverheadLoops.cpp
1361986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMMCInstLower.cpp
1362986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMMachineFunctionInfo.cpp
1363edd7eaddSDimitry AndricSRCS_MIN+=	Target/ARM/ARMMacroFusion.cpp
1364986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMOptimizeBarriersPass.cpp
13659f6e9a9fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMParallelDSP.cpp
13663d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMRegisterBankInfo.cpp
1367986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMRegisterInfo.cpp
1368e8d8bef9SDimitry AndricSRCS_MIN+=	Target/ARM/ARMSLSHardening.cpp
1369986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMSelectionDAGInfo.cpp
1370986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMSubtarget.cpp
1371986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMTargetMachine.cpp
1372986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMTargetObjectFile.cpp
1373986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMTargetTransformInfo.cpp
1374986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/AsmParser/ARMAsmParser.cpp
1375986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Disassembler/ARMDisassembler.cpp
1376986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
1377986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
1378986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
13794014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMInstPrinter.cpp
1380986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp
1381986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
1382986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCExpr.cpp
1383986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
1384986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp
1385986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
1386986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
1387986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp
1388986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp
1389986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp
1390986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MLxExpansionPass.cpp
13919771cac2SDimitry AndricSRCS_MIN+=	Target/ARM/MVEGatherScatterLowering.cpp
1392fe6060f1SDimitry AndricSRCS_MIN+=	Target/ARM/MVELaneInterleavingPass.cpp
1393fe6060f1SDimitry AndricSRCS_MIN+=	Target/ARM/MVETPAndVPTOptimisationsPass.cpp
13949771cac2SDimitry AndricSRCS_MIN+=	Target/ARM/MVETailPredication.cpp
13959771cac2SDimitry AndricSRCS_MIN+=	Target/ARM/MVEVPTBlockPass.cpp
1396986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/TargetInfo/ARMTargetInfo.cpp
1397986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb1FrameLowering.cpp
1398986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb1InstrInfo.cpp
1399986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb2ITBlockPass.cpp
1400986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb2InstrInfo.cpp
1401986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb2SizeReduction.cpp
1402986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ThumbRegisterInfo.cpp
140336cb3905SDimitry AndricSRCS_MIN+=	Target/ARM/Utils/ARMBaseInfo.cpp
1404cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM
140589edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no"
140689edb881SDimitry AndricSRCS_MIN+=	Target/BPF/AsmParser/BPFAsmParser.cpp
14070fca6ea1SDimitry AndricSRCS_MIN+=	Target/BPF/BPFASpaceCastSimplifyPass.cpp
1408a9365f4aSDimitry AndricSRCS_MIN+=	Target/BPF/BPFAbstractMemberAccess.cpp
1409d30dc78fSDimitry AndricSRCS_MIN+=	Target/BPF/BPFAdjustOpt.cpp
141089edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFAsmPrinter.cpp
1411d30dc78fSDimitry AndricSRCS_MIN+=	Target/BPF/BPFCheckAndAdjustIR.cpp
141289edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFFrameLowering.cpp
14135e801ac6SDimitry AndricSRCS_MIN+=	Target/BPF/BPFIRPeephole.cpp
141489edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFISelDAGToDAG.cpp
141589edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFISelLowering.cpp
141689edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFInstrInfo.cpp
141789edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFMCInstLower.cpp
14180a462115SDimitry AndricSRCS_MIN+=	Target/BPF/BPFMIChecking.cpp
1419f9c0a512SDimitry AndricSRCS_MIN+=	Target/BPF/BPFMIPeephole.cpp
1420a9365f4aSDimitry AndricSRCS_MIN+=	Target/BPF/BPFMISimplifyPatchable.cpp
14211c1ab429SDimitry AndricSRCS_MIN+=	Target/BPF/BPFPreserveDIType.cpp
1422442d351bSDimitry AndricSRCS_MIN+=	Target/BPF/BPFPreserveStaticOffset.cpp
142389edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFRegisterInfo.cpp
1424f9c0a512SDimitry AndricSRCS_MIN+=	Target/BPF/BPFSelectionDAGInfo.cpp
142589edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFSubtarget.cpp
142689edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFTargetMachine.cpp
14270a462115SDimitry AndricSRCS_MIN+=	Target/BPF/BTFDebug.cpp
142889edb881SDimitry AndricSRCS_MIN+=	Target/BPF/Disassembler/BPFDisassembler.cpp
1429442d351bSDimitry AndricSRCS_MIN+=	Target/BPF/GISel/BPFCallLowering.cpp
1430442d351bSDimitry AndricSRCS_MIN+=	Target/BPF/GISel/BPFInstructionSelector.cpp
1431442d351bSDimitry AndricSRCS_MIN+=	Target/BPF/GISel/BPFLegalizerInfo.cpp
1432442d351bSDimitry AndricSRCS_MIN+=	Target/BPF/GISel/BPFRegisterBankInfo.cpp
143389edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFAsmBackend.cpp
143489edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
14354014a71fSDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFInstPrinter.cpp
143689edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp
143789edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp
143889edb881SDimitry AndricSRCS_MIN+=	Target/BPF/TargetInfo/BPFTargetInfo.cpp
143989edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF
1440cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no"
1441986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/AsmParser/MipsAsmParser.cpp
144230d4828eSDimitry AndricSRCS_XDW+=	Target/Mips/Disassembler/MipsDisassembler.cpp
1443986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp
1444986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsABIInfo.cpp
1445986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
1446986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
1447986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsELFStreamer.cpp
14484014a71fSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsInstPrinter.cpp
1449986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
1450986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
1451986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCExpr.cpp
1452986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
1453986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
1454986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsOptionRecord.cpp
1455986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
1456f37b6182SDimitry AndricSRCS_MIN+=	Target/Mips/MicroMipsSizeReduction.cpp
1457986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16FrameLowering.cpp
1458986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16HardFloat.cpp
1459986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16HardFloatInfo.cpp
1460986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16ISelDAGToDAG.cpp
1461986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16ISelLowering.cpp
1462986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16InstrInfo.cpp
1463986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16RegisterInfo.cpp
1464986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsAnalyzeImmediate.cpp
1465986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsAsmPrinter.cpp
14669f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsBranchExpansion.cpp
1467986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsCCState.cpp
14689f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsCallLowering.cpp
1469986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsConstantIslandPass.cpp
1470986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsDelaySlotFiller.cpp
14719f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsExpandPseudo.cpp
1472986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsFastISel.cpp
1473986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsFrameLowering.cpp
1474986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsISelDAGToDAG.cpp
1475986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsISelLowering.cpp
1476986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsInstrInfo.cpp
14779f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsInstructionSelector.cpp
14789f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsLegalizerInfo.cpp
1479986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsMCInstLower.cpp
1480986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsMachineFunction.cpp
1481986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsModuleISelDAGToDAG.cpp
14824b1174e2SDimitry AndricSRCS_MIN+=	Target/Mips/MipsMulMulBugPass.cpp
1483986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsOptimizePICCall.cpp
1484986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsOs16.cpp
148581ad6265SDimitry AndricSRCS_MIN+=	Target/Mips/MipsPostLegalizerCombiner.cpp
14865f757f3fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsPreLegalizerCombiner.cpp
14879f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsRegisterBankInfo.cpp
1488986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsRegisterInfo.cpp
1489986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEFrameLowering.cpp
1490986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEISelDAGToDAG.cpp
1491986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEISelLowering.cpp
1492986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEInstrInfo.cpp
1493986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSERegisterInfo.cpp
1494986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSubtarget.cpp
1495986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsTargetMachine.cpp
1496986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsTargetObjectFile.cpp
149781ad6265SDimitry AndricSRCS_MIN+=	Target/Mips/MipsTargetTransformInfo.cpp
1498986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/TargetInfo/MipsTargetInfo.cpp
1499cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS
1500cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no"
1501986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/AsmParser/PPCAsmParser.cpp
1502986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/Disassembler/PPCDisassembler.cpp
1503e8d8bef9SDimitry AndricSRCS_MIN+=	Target/PowerPC/GISel/PPCCallLowering.cpp
1504e8d8bef9SDimitry AndricSRCS_MIN+=	Target/PowerPC/GISel/PPCInstructionSelector.cpp
1505e8d8bef9SDimitry AndricSRCS_MIN+=	Target/PowerPC/GISel/PPCLegalizerInfo.cpp
1506e8d8bef9SDimitry AndricSRCS_MIN+=	Target/PowerPC/GISel/PPCRegisterBankInfo.cpp
1507986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp
1508986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
150948aaf27bSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCELFStreamer.cpp
15104014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCInstPrinter.cpp
1511986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
1512986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
1513986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
1514986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
1515986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCPredicates.cpp
15164014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCXCOFFObjectWriter.cpp
1517fe6060f1SDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCXCOFFStreamer.cpp
1518986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCAsmPrinter.cpp
1519986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCBoolRetToInt.cpp
152036cb3905SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCBranchCoalescing.cpp
1521986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCBranchSelector.cpp
1522986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCCCState.cpp
1523986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCCTRLoops.cpp
152481ad6265SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCCTRLoopsVerify.cpp
15254014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCCallingConv.cpp
1526986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCEarlyReturn.cpp
1527fe6060f1SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCExpandAtomicPseudoInsts.cpp
15285897d2f0SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCExpandISEL.cpp
1529986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCFastISel.cpp
1530986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCFrameLowering.cpp
153181ad6265SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCGenScalarMASSEntries.cpp
1532986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCHazardRecognizers.cpp
1533986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCISelDAGToDAG.cpp
1534986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCISelLowering.cpp
1535986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCInstrInfo.cpp
15369771cac2SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCLoopInstrFormPrep.cpp
15379771cac2SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCLowerMASSVEntries.cpp
1538986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMCInstLower.cpp
1539986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMIPeephole.cpp
1540986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMachineFunctionInfo.cpp
15414014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMachineScheduler.cpp
15425f757f3fSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMacroFusion.cpp
15435f757f3fSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMergeStringPool.cpp
154436cb3905SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCPreEmitPeephole.cpp
154536cb3905SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCReduceCRLogicals.cpp
1546986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCRegisterInfo.cpp
1547986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCSubtarget.cpp
1548986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTLSDynamicCall.cpp
1549986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTOCRegDeps.cpp
1550986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTargetMachine.cpp
1551986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTargetObjectFile.cpp
1552986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTargetTransformInfo.cpp
1553986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCVSXCopy.cpp
1554986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCVSXFMAMutate.cpp
1555986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCVSXSwapRemoval.cpp
1556986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
1557cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC
1558b2689b12SMitchell Horne.if ${MK_LLVM_TARGET_RISCV} != "no"
1559b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/AsmParser/RISCVAsmParser.cpp
1560b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/Disassembler/RISCVDisassembler.cpp
1561bdd1243dSDimitry AndricSRCS_MIN+=	Target/RISCV/GISel/RISCVCallLowering.cpp
1562bdd1243dSDimitry AndricSRCS_MIN+=	Target/RISCV/GISel/RISCVInstructionSelector.cpp
1563bdd1243dSDimitry AndricSRCS_MIN+=	Target/RISCV/GISel/RISCVLegalizerInfo.cpp
15645f757f3fSDimitry AndricSRCS_MIN+=	Target/RISCV/GISel/RISCVO0PreLegalizerCombiner.cpp
15655f757f3fSDimitry AndricSRCS_MIN+=	Target/RISCV/GISel/RISCVPostLegalizerCombiner.cpp
15665f757f3fSDimitry AndricSRCS_MIN+=	Target/RISCV/GISel/RISCVPreLegalizerCombiner.cpp
1567bdd1243dSDimitry AndricSRCS_MIN+=	Target/RISCV/GISel/RISCVRegisterBankInfo.cpp
1568bdd1243dSDimitry AndricSRCS_EXT+=	Target/RISCV/MCA/RISCVCustomBehaviour.cpp
1569b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
1570e8d8bef9SDimitry AndricSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVBaseInfo.cpp
1571b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp
1572b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVELFStreamer.cpp
15734014a71fSDimitry AndricSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVInstPrinter.cpp
1574b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.cpp
1575b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp
1576b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp
15775e801ac6SDimitry AndricSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCObjectFileInfo.cpp
1578b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp
15795f757f3fSDimitry AndricSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMatInt.cpp
1580b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVTargetStreamer.cpp
1581b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVAsmPrinter.cpp
1582fcaf7f86SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVCodeGenPrepare.cpp
15835f757f3fSDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVDeadRegisterDefinitions.cpp
158448aaf27bSDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVExpandAtomicPseudoInsts.cpp
1585b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVExpandPseudoInsts.cpp
1586b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVFrameLowering.cpp
15875e801ac6SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVGatherScatterLowering.cpp
1588b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVISelDAGToDAG.cpp
1589b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVISelLowering.cpp
15905f757f3fSDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVInsertReadWriteCSR.cpp
15915f757f3fSDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVInsertVSETVLI.cpp
15925f757f3fSDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVInsertWriteVXRM.cpp
15935f757f3fSDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVInstrInfo.cpp
15943a9a9c0cSDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVMachineFunctionInfo.cpp
159581ad6265SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVMakeCompressible.cpp
1596b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVMergeBaseOffset.cpp
159706c3fb27SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVMoveMerger.cpp
159806c3fb27SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVOptWInstrs.cpp
15995f757f3fSDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVPostRAExpandPseudoInsts.cpp
160006c3fb27SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVPushPopOptimizer.cpp
160181ad6265SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVRedundantCopyElimination.cpp
1602b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVRegisterInfo.cpp
1603b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVSubtarget.cpp
1604b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVTargetMachine.cpp
1605b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVTargetObjectFile.cpp
1606869fe6d5SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVTargetTransformInfo.cpp
16070fca6ea1SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVVectorPeephole.cpp
1608b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/TargetInfo/RISCVTargetInfo.cpp
1609b2689b12SMitchell Horne.endif # MK_LLVM_TARGET_RISCV
1610986e05bcSDimitry AndricSRCS_MIN+=	Target/Target.cpp
1611986e05bcSDimitry AndricSRCS_MIN+=	Target/TargetLoweringObjectFile.cpp
1612986e05bcSDimitry AndricSRCS_MIN+=	Target/TargetMachine.cpp
1613986e05bcSDimitry AndricSRCS_MIN+=	Target/TargetMachineC.cpp
1614cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no"
1615986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/AsmParser/X86AsmParser.cpp
161630d4828eSDimitry AndricSRCS_XDW+=	Target/X86/Disassembler/X86Disassembler.cpp
16175f757f3fSDimitry AndricSRCS_MIN+=	Target/X86/GISel/X86CallLowering.cpp
16185f757f3fSDimitry AndricSRCS_MIN+=	Target/X86/GISel/X86InstructionSelector.cpp
16195f757f3fSDimitry AndricSRCS_MIN+=	Target/X86/GISel/X86LegalizerInfo.cpp
16205f757f3fSDimitry AndricSRCS_MIN+=	Target/X86/GISel/X86RegisterBankInfo.cpp
16213a9a9c0cSDimitry AndricSRCS_EXT+=	Target/X86/MCA/X86CustomBehaviour.cpp
16224014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86ATTInstPrinter.cpp
1623986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86AsmBackend.cpp
1624986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp
162506c3fb27SDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86EncodingOptimization.cpp
16264014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86InstComments.cpp
16274014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86InstPrinterCommon.cpp
16284014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86IntelInstPrinter.cpp
1629986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
1630986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
1631986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
1632986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
163381ad6265SDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MnemonicTables.cpp
163448aaf27bSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86ShuffleDecode.cpp
1635986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
1636986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
163736cb3905SDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp
1638986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/TargetInfo/X86TargetInfo.cpp
163906c3fb27SDimitry AndricSRCS_MIN+=	Target/X86/X86ArgumentStackSlotRebase.cpp
1640986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86AsmPrinter.cpp
16419f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86AvoidStoreForwardingBlocks.cpp
16429771cac2SDimitry AndricSRCS_MIN+=	Target/X86/X86AvoidTrailingCall.cpp
1643986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86CallFrameOptimization.cpp
164409bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86CallingConv.cpp
1645b40b48b8SDimitry AndricSRCS_MIN+=	Target/X86/X86CmovConversion.cpp
16467a6dacacSDimitry AndricSRCS_MIN+=	Target/X86/X86CodeGenPassBuilder.cpp
16471db9f3b2SDimitry AndricSRCS_MIN+=	Target/X86/X86CompressEVEX.cpp
16485e86819cSDimitry AndricSRCS_MIN+=	Target/X86/X86DiscriminateMemOps.cpp
164936cb3905SDimitry AndricSRCS_MIN+=	Target/X86/X86DomainReassignment.cpp
16505e801ac6SDimitry AndricSRCS_MIN+=	Target/X86/X86DynAllocaExpander.cpp
1651986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ExpandPseudo.cpp
1652986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FastISel.cpp
165381ad6265SDimitry AndricSRCS_MIN+=	Target/X86/X86FastPreTileConfig.cpp
1654fe6060f1SDimitry AndricSRCS_MIN+=	Target/X86/X86FastTileConfig.cpp
1655986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FixupBWInsts.cpp
165606c3fb27SDimitry AndricSRCS_MIN+=	Target/X86/X86FixupInstTuning.cpp
1657986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FixupLEAs.cpp
1658986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FixupSetCC.cpp
165906c3fb27SDimitry AndricSRCS_MIN+=	Target/X86/X86FixupVectorConstants.cpp
16600556cfadSDimitry AndricSRCS_MIN+=	Target/X86/X86FlagsCopyLowering.cpp
1661986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FloatingPoint.cpp
1662986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FrameLowering.cpp
1663986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ISelDAGToDAG.cpp
1664986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ISelLowering.cpp
16655f757f3fSDimitry AndricSRCS_MIN+=	Target/X86/X86ISelLoweringCall.cpp
16669f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86IndirectBranchTracking.cpp
16670946e70aSDimitry AndricSRCS_MIN+=	Target/X86/X86IndirectThunks.cpp
16685e86819cSDimitry AndricSRCS_MIN+=	Target/X86/X86InsertPrefetch.cpp
166948aaf27bSDimitry AndricSRCS_MIN+=	Target/X86/X86InsertWait.cpp
1670e8d8bef9SDimitry AndricSRCS_MIN+=	Target/X86/X86InstCombineIntrinsic.cpp
167109bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86InstrFMA3Info.cpp
16729f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86InstrFoldTables.cpp
1673986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86InstrInfo.cpp
167409bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86InterleavedAccess.cpp
16750946e70aSDimitry AndricSRCS_MIN+=	Target/X86/X86LoadValueInjectionLoadHardening.cpp
16760946e70aSDimitry AndricSRCS_MIN+=	Target/X86/X86LoadValueInjectionRetHardening.cpp
1677fe6060f1SDimitry AndricSRCS_MIN+=	Target/X86/X86LowerAMXIntrinsics.cpp
1678e8d8bef9SDimitry AndricSRCS_MIN+=	Target/X86/X86LowerAMXType.cpp
1679fe6060f1SDimitry AndricSRCS_MIN+=	Target/X86/X86LowerTileCopy.cpp
1680986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86MCInstLower.cpp
1681986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86MachineFunctionInfo.cpp
16825897d2f0SDimitry AndricSRCS_MIN+=	Target/X86/X86MacroFusion.cpp
1683986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86OptimizeLEAs.cpp
1684986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86PadShortFunction.cpp
168548aaf27bSDimitry AndricSRCS_MIN+=	Target/X86/X86PartialReduction.cpp
1686e8d8bef9SDimitry AndricSRCS_MIN+=	Target/X86/X86PreTileConfig.cpp
1687986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86RegisterInfo.cpp
1688753f127fSDimitry AndricSRCS_MIN+=	Target/X86/X86ReturnThunks.cpp
1689986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86SelectionDAGInfo.cpp
1690986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ShuffleDecodeConstantPool.cpp
169148aaf27bSDimitry AndricSRCS_MIN+=	Target/X86/X86SpeculativeExecutionSideEffectSuppression.cpp
16929f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86SpeculativeLoadHardening.cpp
1693986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86Subtarget.cpp
1694986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86TargetMachine.cpp
1695986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86TargetObjectFile.cpp
1696986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86TargetTransformInfo.cpp
1697e8d8bef9SDimitry AndricSRCS_MIN+=	Target/X86/X86TileConfig.cpp
1698986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86VZeroUpper.cpp
1699986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86WinEHState.cpp
17000fca6ea1SDimitry AndricSRCS_MIN+=	Target/X86/X86WinFixupBufferSecurityCheck.cpp
1701cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86
1702bdd1243dSDimitry AndricSRCS_MIN+=	TargetParser/AArch64TargetParser.cpp
1703bdd1243dSDimitry AndricSRCS_MIN+=	TargetParser/ARMTargetParser.cpp
1704bdd1243dSDimitry AndricSRCS_MIN+=	TargetParser/ARMTargetParserCommon.cpp
1705bdd1243dSDimitry AndricSRCS_MIN+=	TargetParser/CSKYTargetParser.cpp
1706bdd1243dSDimitry AndricSRCS_MIN+=	TargetParser/Host.cpp
1707bdd1243dSDimitry AndricSRCS_MIN+=	TargetParser/LoongArchTargetParser.cpp
17080fca6ea1SDimitry AndricSRCS_MIN+=	TargetParser/RISCVISAInfo.cpp
1709bdd1243dSDimitry AndricSRCS_MIN+=	TargetParser/RISCVTargetParser.cpp
171006c3fb27SDimitry AndricSRCS_MIN+=	TargetParser/SubtargetFeature.cpp
1711bdd1243dSDimitry AndricSRCS_MIN+=	TargetParser/TargetParser.cpp
1712bdd1243dSDimitry AndricSRCS_MIN+=	TargetParser/Triple.cpp
1713bdd1243dSDimitry AndricSRCS_MIN+=	TargetParser/X86TargetParser.cpp
1714*2e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/Architecture.cpp
1715*2e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/ArchitectureSet.cpp
1716cb14a3feSDimitry AndricSRCS_MIW+=	TextAPI/BinaryReader/DylibReader.cpp
1717*2e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/InterfaceFile.cpp
1718*2e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/PackedVersion.cpp
1719*2e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/Platform.cpp
1720cb14a3feSDimitry AndricSRCS_MIW+=	TextAPI/RecordVisitor.cpp
1721*2e47f35bSDimitry AndricSRCS_MIW+=	TextAPI/RecordsSlice.cpp
1722*2e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/Symbol.cpp
1723*2e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/SymbolSet.cpp
1724*2e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/Target.cpp
1725*2e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/TextAPIError.cpp
1726*2e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/TextStub.cpp
1727*2e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/TextStubCommon.cpp
1728*2e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/TextStubV5.cpp
1729*2e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/Utils.cpp
17309c954a48SEd MasteSRCS_MIN+=	ToolDrivers/llvm-dlltool/DlltoolDriver.cpp
17310db9a49eSDimitry AndricSRCS_MIW+=	ToolDrivers/llvm-lib/LibDriver.cpp
17329f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
17339f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/AggressiveInstCombine/TruncInstCombine.cpp
17349771cac2SDimitry AndricSRCS_MIN+=	Transforms/CFGuard/CFGuard.cpp
173509bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroCleanup.cpp
173681ad6265SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroConditionalWrapper.cpp
173709bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroEarly.cpp
173809bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroElide.cpp
173909bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroFrame.cpp
174009bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroSplit.cpp
174109bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/Coroutines.cpp
17425f757f3fSDimitry AndricSRCS_MIN+=	Transforms/HipStdPar/HipStdPar.cpp
174309bfd043SDimitry AndricSRCS_MIN+=	Transforms/IPO/AlwaysInliner.cpp
1744e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/IPO/Annotation2Metadata.cpp
1745986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ArgumentPromotion.cpp
17464014a71fSDimitry AndricSRCS_MIN+=	Transforms/IPO/Attributor.cpp
174748aaf27bSDimitry AndricSRCS_MIN+=	Transforms/IPO/AttributorAttributes.cpp
1748986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/BarrierNoopPass.cpp
1749e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/IPO/BlockExtractor.cpp
175036cb3905SDimitry AndricSRCS_MIN+=	Transforms/IPO/CalledValuePropagation.cpp
1751986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ConstantMerge.cpp
1752986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/CrossDSOCFI.cpp
1753986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/DeadArgumentElimination.cpp
1754986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ElimAvailExtern.cpp
175506c3fb27SDimitry AndricSRCS_MIN+=	Transforms/IPO/EmbedBitcodePass.cpp
17560fca6ea1SDimitry AndricSRCS_MIN+=	Transforms/IPO/ExpandVariadics.cpp
1757986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ExtractGV.cpp
1758986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ForceFunctionAttrs.cpp
1759986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/FunctionAttrs.cpp
1760986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/FunctionImport.cpp
1761fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/IPO/FunctionSpecialization.cpp
1762986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/GlobalDCE.cpp
1763986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/GlobalOpt.cpp
176409bfd043SDimitry AndricSRCS_MIN+=	Transforms/IPO/GlobalSplit.cpp
17655e86819cSDimitry AndricSRCS_MIN+=	Transforms/IPO/HotColdSplitting.cpp
1766986e05bcSDimitry AndricSRCS_EXT+=	Transforms/IPO/IPO.cpp
1767e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/IPO/IROutliner.cpp
1768986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/InferFunctionAttrs.cpp
1769986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/Inliner.cpp
1770986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/Internalize.cpp
1771986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/LoopExtractor.cpp
1772986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/LowerTypeTests.cpp
177306c3fb27SDimitry AndricSRCS_MIN+=	Transforms/IPO/MemProfContextDisambiguation.cpp
1774986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/MergeFunctions.cpp
17755e801ac6SDimitry AndricSRCS_MIN+=	Transforms/IPO/ModuleInliner.cpp
177648aaf27bSDimitry AndricSRCS_MIN+=	Transforms/IPO/OpenMPOpt.cpp
1777986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/PartialInlining.cpp
17789f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/IPO/SCCP.cpp
1779e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/IPO/SampleContextTracker.cpp
1780986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/SampleProfile.cpp
17810fca6ea1SDimitry AndricSRCS_MIN+=	Transforms/IPO/SampleProfileMatcher.cpp
1782e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/IPO/SampleProfileProbe.cpp
1783986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/StripDeadPrototypes.cpp
1784986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/StripSymbols.cpp
17859f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/IPO/SyntheticCountsPropagation.cpp
178609bfd043SDimitry AndricSRCS_MIN+=	Transforms/IPO/ThinLTOBitcodeWriter.cpp
1787986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/WholeProgramDevirt.cpp
1788986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineAddSub.cpp
1789986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineAndOrXor.cpp
17904014a71fSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineAtomicRMW.cpp
1791986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineCalls.cpp
1792986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineCasts.cpp
1793986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineCompares.cpp
1794986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
1795986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineMulDivRem.cpp
179648aaf27bSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineNegator.cpp
1797986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombinePHI.cpp
1798986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineSelect.cpp
1799986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineShifts.cpp
1800986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
1801986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineVectorOps.cpp
1802986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstructionCombining.cpp
1803986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/AddressSanitizer.cpp
180406c3fb27SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/BlockCoverageInference.cpp
1805986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/BoundsChecking.cpp
18069f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/CGProfile.cpp
18075e86819cSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/ControlHeightReduction.cpp
1808986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/DataFlowSanitizer.cpp
1809986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/GCOVProfiling.cpp
181036cb3905SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/HWAddressSanitizer.cpp
1811986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/IndirectCallPromotion.cpp
18124014a71fSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/InstrOrderFile.cpp
1813986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/InstrProfiling.cpp
1814986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/Instrumentation.cpp
1815bdd1243dSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/KCFI.cpp
18160fca6ea1SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/LowerAllowCheckPass.cpp
1817e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/MemProfiler.cpp
1818986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/MemorySanitizer.cpp
18190fca6ea1SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/NumericalStabilitySanitizer.cpp
18200fca6ea1SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PGOCtxProfLowering.cpp
18210fca6ea1SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PGOForceFunctionAttrs.cpp
1822986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PGOInstrumentation.cpp
182324d58133SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PGOMemOPSizeOpt.cpp
18244014a71fSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PoisonChecking.cpp
1825bdd1243dSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/SanitizerBinaryMetadata.cpp
18265f757f3fSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/SanitizerCoverage.cpp
1827986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/ThreadSanitizer.cpp
18289771cac2SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/ValueProfileCollector.cpp
1829986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/DependencyAnalysis.cpp
1830fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARC.cpp
1831986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCAPElim.cpp
1832986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCContract.cpp
1833986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCExpand.cpp
1834986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCOpts.cpp
1835986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ProvenanceAnalysis.cpp
1836986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp
1837986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/PtrState.cpp
1838986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/ADCE.cpp
1839986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/AlignmentFromAssumptions.cpp
1840e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Scalar/AnnotationRemarks.cpp
1841986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/BDCE.cpp
184236cb3905SDimitry AndricSRCS_MIN+=	Transforms/Scalar/CallSiteSplitting.cpp
1843986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/ConstantHoisting.cpp
1844e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Scalar/ConstraintElimination.cpp
1845986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/CorrelatedValuePropagation.cpp
1846986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/DCE.cpp
1847fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Scalar/DFAJumpThreading.cpp
1848986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/DeadStoreElimination.cpp
184936cb3905SDimitry AndricSRCS_MIN+=	Transforms/Scalar/DivRemPairs.cpp
1850986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/EarlyCSE.cpp
1851986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/FlattenCFGPass.cpp
1852986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Float2Int.cpp
1853986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GVN.cpp
1854986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GVNHoist.cpp
1855302affcbSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GVNSink.cpp
1856986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GuardWidening.cpp
1857f1a29dd3SDimitry AndricSRCS_MIN+=	Transforms/Scalar/IVUsersPrinter.cpp
1858986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/IndVarSimplify.cpp
1859986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/InductiveRangeCheckElimination.cpp
1860e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Scalar/InferAddressSpaces.cpp
18615f757f3fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/InferAlignment.cpp
18629f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/InstSimplifyPass.cpp
18630fca6ea1SDimitry AndricSRCS_MIN+=	Transforms/Scalar/JumpTableToSwitch.cpp
1864986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/JumpThreading.cpp
1865986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LICM.cpp
1866f1a29dd3SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopAccessAnalysisPrinter.cpp
1867fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopBoundSplit.cpp
1868986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopDataPrefetch.cpp
1869986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopDeletion.cpp
1870986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopDistribute.cpp
1871e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopFlatten.cpp
18724014a71fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopFuse.cpp
1873986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopIdiomRecognize.cpp
187409bfd043SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopInstSimplify.cpp
1875986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopInterchange.cpp
1876986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopLoadElimination.cpp
1877f1a29dd3SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopPassManager.cpp
18785897d2f0SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopPredication.cpp
1879986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopRotation.cpp
1880986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopSimplifyCFG.cpp
188109bfd043SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopSink.cpp
1882986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopStrengthReduce.cpp
18839f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopUnrollAndJamPass.cpp
18845f757f3fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopUnrollPass.cpp
1885986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopVersioningLICM.cpp
188681ad6265SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerAtomicPass.cpp
18879771cac2SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerConstantIntrinsics.cpp
1888986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerExpectIntrinsic.cpp
1889986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerGuardIntrinsic.cpp
18909771cac2SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerMatrixIntrinsics.cpp
18914014a71fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerWidenableCondition.cpp
18925e86819cSDimitry AndricSRCS_MIN+=	Transforms/Scalar/MakeGuardsExplicit.cpp
1893986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/MemCpyOptimizer.cpp
189436cb3905SDimitry AndricSRCS_MIN+=	Transforms/Scalar/MergeICmps.cpp
1895986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/MergedLoadStoreMotion.cpp
1896986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/NaryReassociate.cpp
189709bfd043SDimitry AndricSRCS_MIN+=	Transforms/Scalar/NewGVN.cpp
1898986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/PartiallyInlineLibCalls.cpp
1899986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/PlaceSafepoints.cpp
1900986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Reassociate.cpp
1901986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Reg2Mem.cpp
1902986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/RewriteStatepointsForGC.cpp
1903986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SCCP.cpp
1904986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SROA.cpp
1905986e05bcSDimitry AndricSRCS_EXT+=	Transforms/Scalar/Scalar.cpp
1906e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Scalar/ScalarizeMaskedMemIntrin.cpp
1907986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Scalarizer.cpp
1908986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
1909f37b6182SDimitry AndricSRCS_MIN+=	Transforms/Scalar/SimpleLoopUnswitch.cpp
1910986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SimplifyCFGPass.cpp
1911986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Sink.cpp
1912986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SpeculativeExecution.cpp
1913986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/StraightLineStrengthReduce.cpp
1914986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/StructurizeCFG.cpp
191581ad6265SDimitry AndricSRCS_MIN+=	Transforms/Scalar/TLSVariableHoist.cpp
1916986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/TailRecursionElimination.cpp
19175e86819cSDimitry AndricSRCS_MIN+=	Transforms/Scalar/WarnMissedTransforms.cpp
191848aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/AMDGPUEmitPrintf.cpp
1919986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/ASanStackFrameLayout.cpp
1920986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/AddDiscriminators.cpp
192148aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/AssumeBundleBuilder.cpp
1922986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BasicBlockUtils.cpp
1923986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BreakCriticalEdges.cpp
1924986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BuildLibCalls.cpp
1925986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BypassSlowDivision.cpp
192648aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/CallGraphUpdater.cpp
192736cb3905SDimitry AndricSRCS_MIN+=	Transforms/Utils/CallPromotionUtils.cpp
19285e86819cSDimitry AndricSRCS_MIN+=	Transforms/Utils/CanonicalizeAliases.cpp
192948aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/CanonicalizeFreezeInLoops.cpp
1930986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CloneFunction.cpp
1931986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CloneModule.cpp
1932986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CodeExtractor.cpp
193304eeddc0SDimitry AndricSRCS_MIN+=	Transforms/Utils/CodeLayout.cpp
19349771cac2SDimitry AndricSRCS_MIN+=	Transforms/Utils/CodeMoverUtils.cpp
193506c3fb27SDimitry AndricSRCS_MIN+=	Transforms/Utils/CountVisits.cpp
1936986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CtorUtils.cpp
19375f757f3fSDimitry AndricSRCS_MIN+=	Transforms/Utils/DXILUpgrade.cpp
193848aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/Debugify.cpp
1939986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/DemoteRegToStack.cpp
194036cb3905SDimitry AndricSRCS_MIN+=	Transforms/Utils/EntryExitInstrumenter.cpp
194109bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/EscapeEnumerator.cpp
1942986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/Evaluator.cpp
194348aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/FixIrreducible.cpp
1944986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/FlattenCFG.cpp
194509bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/FunctionComparator.cpp
1946986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/FunctionImportUtils.cpp
1947986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/GlobalStatus.cpp
19485e86819cSDimitry AndricSRCS_MIN+=	Transforms/Utils/GuardUtils.cpp
1949fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Utils/HelloWorld.cpp
19509771cac2SDimitry AndricSRCS_MIN+=	Transforms/Utils/InjectTLIMappings.cpp
1951986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/InlineFunction.cpp
1952986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/InstructionNamer.cpp
1953986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/IntegerDivision.cpp
1954986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LCSSA.cpp
195509bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/LibCallsShrinkWrap.cpp
1956986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/Local.cpp
19575f757f3fSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopConstrainer.cpp
1958e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopPeel.cpp
19599f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopRotationUtils.cpp
19605f757f3fSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopSimplify.cpp
1961986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUnroll.cpp
19629f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUnrollAndJam.cpp
1963986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUnrollRuntime.cpp
1964986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUtils.cpp
1965986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopVersioning.cpp
196681ad6265SDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerAtomic.cpp
196781ad6265SDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerGlobalDtors.cpp
1968bdd1243dSDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerIFunc.cpp
1969986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerInvoke.cpp
197006c3fb27SDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerMemIntrinsics.cpp
1971986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerSwitch.cpp
1972e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Utils/MatrixUtils.cpp
1973986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/Mem2Reg.cpp
1974fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Utils/MemoryOpRemark.cpp
197581ad6265SDimitry AndricSRCS_MIN+=	Transforms/Utils/MemoryTaggingSupport.cpp
19765f757f3fSDimitry AndricSRCS_MIN+=	Transforms/Utils/MetaRenamer.cpp
197781ad6265SDimitry AndricSRCS_MIN+=	Transforms/Utils/MisExpect.cpp
1978986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/ModuleUtils.cpp
197906c3fb27SDimitry AndricSRCS_MIN+=	Transforms/Utils/MoveAutoInit.cpp
198009bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/NameAnonGlobals.cpp
19815897d2f0SDimitry AndricSRCS_MIN+=	Transforms/Utils/PredicateInfo.cpp
1982986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/PromoteMemoryToRegister.cpp
1983fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Utils/RelLookupTableConverter.cpp
1984fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Utils/SCCPSolver.cpp
1985986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SSAUpdater.cpp
1986fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Utils/SSAUpdaterBulk.cpp
19874824e7fdSDimitry AndricSRCS_MIN+=	Transforms/Utils/SampleProfileInference.cpp
1988fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Utils/SampleProfileLoaderBaseUtil.cpp
19895f757f3fSDimitry AndricSRCS_MIN+=	Transforms/Utils/SanitizerStats.cpp
19905f757f3fSDimitry AndricSRCS_MIN+=	Transforms/Utils/ScalarEvolutionExpander.cpp
1991986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SimplifyCFG.cpp
1992986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SimplifyIndVar.cpp
1993986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SimplifyLibCalls.cpp
19944014a71fSDimitry AndricSRCS_MIN+=	Transforms/Utils/SizeOpts.cpp
1995986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SplitModule.cpp
199609bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/StripGCRelocates.cpp
199709bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/StripNonLineTableDebugInfo.cpp
1998986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SymbolRewriter.cpp
1999986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/UnifyFunctionExitNodes.cpp
200048aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/UnifyLoopExits.cpp
2001986e05bcSDimitry AndricSRCS_EXT+=	Transforms/Utils/Utils.cpp
20025897d2f0SDimitry AndricSRCS_MIN+=	Transforms/Utils/VNCoercion.cpp
2003986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/ValueMapper.cpp
2004986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/LoadStoreVectorizer.cpp
20050fca6ea1SDimitry AndricSRCS_MIN+=	Transforms/Vectorize/LoopIdiomVectorize.cpp
20069f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/LoopVectorizationLegality.cpp
2007986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/LoopVectorize.cpp
2008986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/SLPVectorizer.cpp
200936cb3905SDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlan.cpp
20105f757f3fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanAnalysis.cpp
20119f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanHCFGBuilder.cpp
201281ad6265SDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanRecipes.cpp
20139771cac2SDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanTransforms.cpp
20149f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanVerifier.cpp
201548aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VectorCombine.cpp
2016986e05bcSDimitry AndricSRCS_EXT+=	Transforms/Vectorize/Vectorize.cpp
201781ad6265SDimitry AndricSRCS_MIN+=	WindowsDriver/MSVCPaths.cpp
2018efa75597SDimitry AndricSRCS_EXT+=	XRay/BlockIndexer.cpp
2019efa75597SDimitry AndricSRCS_EXT+=	XRay/BlockVerifier.cpp
2020efa75597SDimitry AndricSRCS_EXT+=	XRay/FDRRecordProducer.cpp
2021efa75597SDimitry AndricSRCS_EXT+=	XRay/FDRRecords.cpp
2022efa75597SDimitry AndricSRCS_EXT+=	XRay/FDRTraceExpander.cpp
2023efa75597SDimitry AndricSRCS_EXT+=	XRay/FileHeaderReader.cpp
2024050e2df1SDimitry AndricSRCS_EXT+=	XRay/InstrumentationMap.cpp
2025efa75597SDimitry AndricSRCS_EXT+=	XRay/LogBuilderConsumer.cpp
2026efa75597SDimitry AndricSRCS_EXT+=	XRay/RecordInitializer.cpp
202767b158f6SDimitry AndricSRCS_EXT+=	XRay/Trace.cpp
2028986e05bcSDimitry Andric
2029986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_MIN}
2030caf90252SBryan Drewery.if !defined(TOOLS_PREFIX) || ${MK_LLD_BOOTSTRAP} != "no"
203130d4828eSDimitry AndricSRCS_ALL+=	${SRCS_MIW}
203230d4828eSDimitry Andric.endif
2033986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no"
2034986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_EXT}
2035986e05bcSDimitry Andric.endif
2036986e05bcSDimitry Andric.if ${MK_CLANG_FULL} != "no"
2037986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_FUL}
2038986e05bcSDimitry Andric.endif
203978187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLD} != "no" || \
204078187278SBryan Drewery    (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no")
204175bc38b9SEd MasteSRCS_ALL+=	${SRCS_EXL}
204275bc38b9SEd Maste.endif
204378187278SBryan Drewery.if ${MK_LLD} != "no" || \
204478187278SBryan Drewery    (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no")
20450fc5d238SDimitry AndricSRCS_ALL+=	${SRCS_LLD}
20460fc5d238SDimitry Andric.endif
2047986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no"
2048986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_XDB}
2049986e05bcSDimitry Andric.endif
205078187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || ${MK_LLD} != "no" || \
205178187278SBryan Drewery    (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no")
205275bc38b9SEd MasteSRCS_ALL+=	${SRCS_XDL}
205375bc38b9SEd Maste.endif
205430d4828eSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || !defined(TOOLS_PREFIX)
205530d4828eSDimitry AndricSRCS_ALL+=	${SRCS_XDW}
205630d4828eSDimitry Andric.endif
205706c3fb27SDimitry Andric.if ${MK_LLVM_COV} != "no"
205806c3fb27SDimitry AndricSRCS_ALL+=	${SRCS_COV}
205906c3fb27SDimitry Andric.endif
206048aaf27bSDimitry AndricSRCS+=		${GENSRCS}
2061986e05bcSDimitry AndricSRCS+=		${SRCS_ALL:O}
2062986e05bcSDimitry Andric
206306c3fb27SDimitry Andricllvm/CodeGen/GenVT.inc: ${LLVM_SRCS}/include/llvm/CodeGen/ValueTypes.td
206406c3fb27SDimitry Andric	${LLVM_MIN_TBLGEN} -gen-vt \
206506c3fb27SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
206606c3fb27SDimitry Andric	    ${LLVM_SRCS}/include/llvm/CodeGen/ValueTypes.td
206706c3fb27SDimitry AndricTGHDRS+=	llvm/CodeGen/GenVT.inc
206806c3fb27SDimitry Andric
2069d8ed7fa3SDimitry Andricllvm/Frontend/OpenMP/OMP.h.inc: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
2070d8ed7fa3SDimitry Andric	${LLVM_TBLGEN} --gen-directive-decl \
2071d8ed7fa3SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
207248aaf27bSDimitry Andric	    ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
207348aaf27bSDimitry AndricTGHDRS+=	llvm/Frontend/OpenMP/OMP.h.inc
207448aaf27bSDimitry Andric
2075e8d8bef9SDimitry Andricllvm/Frontend/OpenMP/OMP.inc: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
2076d8ed7fa3SDimitry Andric	${LLVM_TBLGEN} --gen-directive-impl \
2077d8ed7fa3SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
2078d8ed7fa3SDimitry Andric	    ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
2079e8d8bef9SDimitry AndricTGHDRS+=	llvm/Frontend/OpenMP/OMP.inc
208048aaf27bSDimitry Andric
20819f6e9a9fSDimitry Andricllvm/IR/Attributes.inc: ${LLVM_SRCS}/include/llvm/IR/Attributes.td
2082d8ed7fa3SDimitry Andric	${LLVM_TBLGEN} -gen-attrs \
2083d8ed7fa3SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
2084d8ed7fa3SDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Attributes.td
20859f6e9a9fSDimitry AndricTGHDRS+=	llvm/IR/Attributes.inc
2086986e05bcSDimitry Andric
20879f6e9a9fSDimitry Andricllvm/IR/IntrinsicEnums.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
2088d8ed7fa3SDimitry Andric	${LLVM_TBLGEN} -gen-intrinsic-enums \
2089d8ed7fa3SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
2090d8ed7fa3SDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
20919f6e9a9fSDimitry AndricTGHDRS+=	llvm/IR/IntrinsicEnums.inc
20929f6e9a9fSDimitry Andric
20939f6e9a9fSDimitry Andricllvm/IR/IntrinsicImpl.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
2094d8ed7fa3SDimitry Andric	${LLVM_TBLGEN} -gen-intrinsic-impl \
2095d8ed7fa3SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
2096d8ed7fa3SDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
20979f6e9a9fSDimitry AndricTGHDRS+=	llvm/IR/IntrinsicImpl.inc
2098986e05bcSDimitry Andric
20999771cac2SDimitry Andric.for arch in \
2100753f127fSDimitry Andric	AArch64/aarch64 AMDGPU/amdgcn ARM/arm BPF/bpf DirectX/dx \
2101bdd1243dSDimitry Andric	Hexagon/hexagon LoongArch/loongarch Mips/mips NVPTX/nvvm PowerPC/ppc \
21020fca6ea1SDimitry Andric	R600/r600 RISCV/riscv S390/s390 SPIRV/spv VE/ve WebAssembly/wasm \
21030fca6ea1SDimitry Andric	X86/x86 XCore/xcore
21049771cac2SDimitry Andricllvm/IR/Intrinsics${arch:H}.h: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
2105d8ed7fa3SDimitry Andric	${LLVM_TBLGEN} -gen-intrinsic-enums -intrinsic-prefix=${arch:T} \
2106d8ed7fa3SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
2107d8ed7fa3SDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
21089771cac2SDimitry AndricTGHDRS+=	llvm/IR/Intrinsics${arch:H}.h
21099771cac2SDimitry Andric.endfor
21109771cac2SDimitry Andric
21110fca6ea1SDimitry Andric.for arch in AArch64/arm ARM/arm RISCV/riscv
21120fca6ea1SDimitry Andricllvm/TargetParser/${arch:H}TargetParserDef.inc: ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:H}.td
21130fca6ea1SDimitry Andric	${LLVM_TBLGEN} -gen-${arch:T}-target-def \
21140fca6ea1SDimitry Andric	    -I ${LLVM_SRCS}/include -I ${LLVM_SRCS}/lib/Target/${arch:H} \
21150fca6ea1SDimitry Andric	    -d ${.TARGET}.d -o ${.TARGET} ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:H}.td
21160fca6ea1SDimitry AndricTGHDRS+=	llvm/TargetParser/${arch:H}TargetParserDef.inc
21170fca6ea1SDimitry Andric.endfor
2118bdd1243dSDimitry Andric
2119b40b48b8SDimitry Andricllvm-lib/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td
2120d8ed7fa3SDimitry Andric	${LLVM_TBLGEN} -gen-opt-parser-defs \
2121d8ed7fa3SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
2122d8ed7fa3SDimitry Andric	    ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td
2123b40b48b8SDimitry AndricTGHDRS+=	llvm-lib/Options.inc
2124b40b48b8SDimitry AndricCFLAGS.LibDriver.cpp+=	-I${.OBJDIR}/llvm-lib
2125b40b48b8SDimitry Andric
2126b40b48b8SDimitry Andricllvm-dlltool/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td
2127d8ed7fa3SDimitry Andric	${LLVM_TBLGEN} -gen-opt-parser-defs \
2128d8ed7fa3SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
2129d8ed7fa3SDimitry Andric	    ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td
2130b40b48b8SDimitry AndricTGHDRS+=	llvm-dlltool/Options.inc
2131b40b48b8SDimitry AndricCFLAGS.DlltoolDriver.cpp+=	-I${.OBJDIR}/llvm-dlltool
2132986e05bcSDimitry Andric
2133bdd1243dSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no"
2134bdd1243dSDimitry AndricCOFFOptions.inc: ${LLVM_SRCS}/lib/ExecutionEngine/JITLink/COFFOptions.td
2135bdd1243dSDimitry Andric	${LLVM_TBLGEN} -gen-opt-parser-defs \
2136bdd1243dSDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
2137bdd1243dSDimitry Andric	    ${LLVM_SRCS}/lib/ExecutionEngine/JITLink/COFFOptions.td
2138bdd1243dSDimitry AndricTGHDRS+=	COFFOptions.inc
2139bdd1243dSDimitry Andric.endif
2140bdd1243dSDimitry Andric
2141cd283100SBryan Drewerybeforebuild:
2142cd283100SBryan Drewery# 20170724 remove stale Options.inc file, of which there are two different
214337cd60a3SDimitry Andric# versions after upstream r308421, one for llvm-lib, one for llvm-dlltool
2144cd283100SBryan Drewery.for f in Options.inc
2145cd283100SBryan Drewery.if exists(${f}) || exists(${f}.d)
2146cd283100SBryan Drewery	@echo Removing stale generated ${f} files
2147cd283100SBryan Drewery	@rm -f ${f} ${f}.d
2148cd283100SBryan Drewery.endif
2149cd283100SBryan Drewery.endfor
2150cd283100SBryan Drewery
2151986e05bcSDimitry Andric# Note: some rules are superfluous, not every combination is valid.
2152986e05bcSDimitry Andric.for arch in \
21533b7fd87cSWarner Losh	AArch64/AArch64 ARM/ARM BPF/BPF Mips/Mips PowerPC/PPC RISCV/RISCV \
21543b7fd87cSWarner Losh	X86/X86
2155986e05bcSDimitry Andric. for hdr in \
2156986e05bcSDimitry Andric	AsmMatcher/-gen-asm-matcher \
2157986e05bcSDimitry Andric	AsmWriter/-gen-asm-writer \
215848aaf27bSDimitry Andric	AsmWriter1/-gen-asm-writer,-asmwriternum=1 \
2159986e05bcSDimitry Andric	CallingConv/-gen-callingconv \
2160986e05bcSDimitry Andric	CodeEmitter/-gen-emitter \
2161b2689b12SMitchell Horne	CompressInstEmitter/-gen-compress-inst-emitter \
2162986e05bcSDimitry Andric	DAGISel/-gen-dag-isel \
2163986e05bcSDimitry Andric	DisassemblerTables/-gen-disassembler \
2164986e05bcSDimitry Andric	FastISel/-gen-fast-isel \
216506c3fb27SDimitry Andric	FoldTables/-gen-x86-fold-tables,-asmwriternum=1 \
21663d54deb3SDimitry Andric	GlobalISel/-gen-global-isel \
216781ad6265SDimitry Andric	InstrInfo/-gen-instr-info${arch:MX86/X86:C/X86\/X86/,-instr-info-expand-mi-operand-info=0/} \
21680fca6ea1SDimitry Andric	InstrMapping/-gen-x86-instr-mapping \
2169986e05bcSDimitry Andric	MCCodeEmitter/-gen-emitter \
2170986e05bcSDimitry Andric	MCPseudoLowering/-gen-pseudo-lowering \
2171b3edf446SDimitry Andric	MacroFusion/-gen-macro-fusion-pred \
217281ad6265SDimitry Andric	MnemonicTables/-gen-x86-mnemonic-tables,-asmwriternum=1 \
21735f757f3fSDimitry Andric	O0PreLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}O0PreLegalizerCombiner \
21745f757f3fSDimitry Andric	PostLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}PostLegalizerCombiner \
21755f757f3fSDimitry Andric	PostLegalizeGILowering/-gen-global-isel-combiner,-combiners=${arch:H}PostLegalizerLowering \
21765f757f3fSDimitry Andric	PreLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}PreLegalizerCombiner \
21775897d2f0SDimitry Andric	RegisterBank/-gen-register-bank \
2178986e05bcSDimitry Andric	RegisterInfo/-gen-register-info \
2179e8d8bef9SDimitry Andric	SearchableTables/-gen-searchable-tables \
2180986e05bcSDimitry Andric	SubtargetInfo/-gen-subtarget \
218136cb3905SDimitry Andric	SystemOperands/-gen-searchable-tables \
218236cb3905SDimitry Andric	SystemRegister/-gen-searchable-tables
21835f757f3fSDimitry Andric.  if "${arch:T}" == "RISCV" && "${hdr:T:C/(-gen-global-isel).*/\1/}" == "-gen-global-isel"
21845f757f3fSDimitry Andrictdfile_${arch:T}_${hdr:H}=	${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}GISel.td
21855f757f3fSDimitry Andric.  else
21865f757f3fSDimitry Andrictdfile_${arch:T}_${hdr:H}=	${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td
21875f757f3fSDimitry Andric.endif
21885f757f3fSDimitry Andric${arch:T}Gen${hdr:H}.inc: ${tdfile_${arch:T}_${hdr:H}}
2189d8ed7fa3SDimitry Andric	${LLVM_TBLGEN} ${hdr:T:C/,/ /g} \
2190986e05bcSDimitry Andric	    -I ${LLVM_SRCS}/include -I ${LLVM_SRCS}/lib/Target/${arch:H} \
2191d8ed7fa3SDimitry Andric	    -d ${.TARGET}.d -o ${.TARGET} \
21925f757f3fSDimitry Andric	    ${tdfile_${arch:T}_${hdr:H}}
2193986e05bcSDimitry Andric. endfor
2194986e05bcSDimitry Andric.endfor
2195cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no"
2196986e05bcSDimitry AndricTGHDRS+=	AArch64GenAsmMatcher.inc
2197986e05bcSDimitry AndricTGHDRS+=	AArch64GenAsmWriter.inc
2198986e05bcSDimitry AndricTGHDRS+=	AArch64GenAsmWriter1.inc
2199986e05bcSDimitry AndricTGHDRS+=	AArch64GenCallingConv.inc
2200986e05bcSDimitry AndricTGHDRS+=	AArch64GenDAGISel.inc
2201986e05bcSDimitry AndricTGHDRS+=	AArch64GenDisassemblerTables.inc
2202986e05bcSDimitry AndricTGHDRS+=	AArch64GenFastISel.inc
22033d54deb3SDimitry AndricTGHDRS+=	AArch64GenGlobalISel.inc
2204986e05bcSDimitry AndricTGHDRS+=	AArch64GenInstrInfo.inc
2205986e05bcSDimitry AndricTGHDRS+=	AArch64GenMCCodeEmitter.inc
2206986e05bcSDimitry AndricTGHDRS+=	AArch64GenMCPseudoLowering.inc
2207fe6060f1SDimitry AndricTGHDRS+=	AArch64GenO0PreLegalizeGICombiner.inc
220848aaf27bSDimitry AndricTGHDRS+=	AArch64GenPostLegalizeGICombiner.inc
2209e8d8bef9SDimitry AndricTGHDRS+=	AArch64GenPostLegalizeGILowering.inc
221048aaf27bSDimitry AndricTGHDRS+=	AArch64GenPreLegalizeGICombiner.inc
22115897d2f0SDimitry AndricTGHDRS+=	AArch64GenRegisterBank.inc
2212986e05bcSDimitry AndricTGHDRS+=	AArch64GenRegisterInfo.inc
2213986e05bcSDimitry AndricTGHDRS+=	AArch64GenSubtargetInfo.inc
2214986e05bcSDimitry AndricTGHDRS+=	AArch64GenSystemOperands.inc
2215cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64
2216cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no"
2217986e05bcSDimitry AndricTGHDRS+=	ARMGenAsmMatcher.inc
2218986e05bcSDimitry AndricTGHDRS+=	ARMGenAsmWriter.inc
2219986e05bcSDimitry AndricTGHDRS+=	ARMGenCallingConv.inc
2220986e05bcSDimitry AndricTGHDRS+=	ARMGenDAGISel.inc
2221986e05bcSDimitry AndricTGHDRS+=	ARMGenDisassemblerTables.inc
2222986e05bcSDimitry AndricTGHDRS+=	ARMGenFastISel.inc
22233d54deb3SDimitry AndricTGHDRS+=	ARMGenGlobalISel.inc
2224986e05bcSDimitry AndricTGHDRS+=	ARMGenInstrInfo.inc
2225986e05bcSDimitry AndricTGHDRS+=	ARMGenMCCodeEmitter.inc
2226986e05bcSDimitry AndricTGHDRS+=	ARMGenMCPseudoLowering.inc
22275897d2f0SDimitry AndricTGHDRS+=	ARMGenRegisterBank.inc
2228986e05bcSDimitry AndricTGHDRS+=	ARMGenRegisterInfo.inc
2229986e05bcSDimitry AndricTGHDRS+=	ARMGenSubtargetInfo.inc
223036cb3905SDimitry AndricTGHDRS+=	ARMGenSystemRegister.inc
2231cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM
223289edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no"
223389edb881SDimitry AndricTGHDRS+=	BPFGenAsmMatcher.inc
223489edb881SDimitry AndricTGHDRS+=	BPFGenAsmWriter.inc
223589edb881SDimitry AndricTGHDRS+=	BPFGenCallingConv.inc
223689edb881SDimitry AndricTGHDRS+=	BPFGenDAGISel.inc
223789edb881SDimitry AndricTGHDRS+=	BPFGenDisassemblerTables.inc
2238442d351bSDimitry AndricTGHDRS+=	BPFGenGlobalISel.inc
223989edb881SDimitry AndricTGHDRS+=	BPFGenInstrInfo.inc
224089edb881SDimitry AndricTGHDRS+=	BPFGenMCCodeEmitter.inc
2241442d351bSDimitry AndricTGHDRS+=	BPFGenRegisterBank.inc
224289edb881SDimitry AndricTGHDRS+=	BPFGenRegisterInfo.inc
224389edb881SDimitry AndricTGHDRS+=	BPFGenSubtargetInfo.inc
224489edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF
2245cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no"
2246986e05bcSDimitry AndricTGHDRS+=	MipsGenAsmMatcher.inc
2247986e05bcSDimitry AndricTGHDRS+=	MipsGenAsmWriter.inc
2248986e05bcSDimitry AndricTGHDRS+=	MipsGenCallingConv.inc
2249986e05bcSDimitry AndricTGHDRS+=	MipsGenDAGISel.inc
2250986e05bcSDimitry AndricTGHDRS+=	MipsGenDisassemblerTables.inc
2251986e05bcSDimitry AndricTGHDRS+=	MipsGenFastISel.inc
22529f6e9a9fSDimitry AndricTGHDRS+=	MipsGenGlobalISel.inc
2253986e05bcSDimitry AndricTGHDRS+=	MipsGenInstrInfo.inc
2254986e05bcSDimitry AndricTGHDRS+=	MipsGenMCCodeEmitter.inc
2255986e05bcSDimitry AndricTGHDRS+=	MipsGenMCPseudoLowering.inc
225681ad6265SDimitry AndricTGHDRS+=	MipsGenPostLegalizeGICombiner.inc
22579f6e9a9fSDimitry AndricTGHDRS+=	MipsGenRegisterBank.inc
2258986e05bcSDimitry AndricTGHDRS+=	MipsGenRegisterInfo.inc
2259986e05bcSDimitry AndricTGHDRS+=	MipsGenSubtargetInfo.inc
2260cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS
2261cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no"
2262986e05bcSDimitry AndricTGHDRS+=	PPCGenAsmMatcher.inc
2263986e05bcSDimitry AndricTGHDRS+=	PPCGenAsmWriter.inc
2264986e05bcSDimitry AndricTGHDRS+=	PPCGenCallingConv.inc
2265986e05bcSDimitry AndricTGHDRS+=	PPCGenDAGISel.inc
2266986e05bcSDimitry AndricTGHDRS+=	PPCGenDisassemblerTables.inc
2267986e05bcSDimitry AndricTGHDRS+=	PPCGenFastISel.inc
2268e8d8bef9SDimitry AndricTGHDRS+=	PPCGenGlobalISel.inc
2269986e05bcSDimitry AndricTGHDRS+=	PPCGenInstrInfo.inc
2270986e05bcSDimitry AndricTGHDRS+=	PPCGenMCCodeEmitter.inc
2271e8d8bef9SDimitry AndricTGHDRS+=	PPCGenRegisterBank.inc
2272986e05bcSDimitry AndricTGHDRS+=	PPCGenRegisterInfo.inc
2273986e05bcSDimitry AndricTGHDRS+=	PPCGenSubtargetInfo.inc
2274cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC
2275b2689b12SMitchell Horne.if ${MK_LLVM_TARGET_RISCV} != "no"
2276b2689b12SMitchell HorneTGHDRS+=	RISCVGenAsmMatcher.inc
2277b2689b12SMitchell HorneTGHDRS+=	RISCVGenAsmWriter.inc
2278b2689b12SMitchell HorneTGHDRS+=	RISCVGenCallingConv.inc
2279b2689b12SMitchell HorneTGHDRS+=	RISCVGenCompressInstEmitter.inc
2280b2689b12SMitchell HorneTGHDRS+=	RISCVGenDAGISel.inc
2281b2689b12SMitchell HorneTGHDRS+=	RISCVGenDAGISel.inc
22825f757f3fSDimitry AndricTGHDRS+=	RISCVGenDisassemblerTables.inc
22839771cac2SDimitry AndricTGHDRS+=	RISCVGenGlobalISel.inc
2284b2689b12SMitchell HorneTGHDRS+=	RISCVGenInstrInfo.inc
2285b2689b12SMitchell HorneTGHDRS+=	RISCVGenMCCodeEmitter.inc
2286b2689b12SMitchell HorneTGHDRS+=	RISCVGenMCPseudoLowering.inc
2287b3edf446SDimitry AndricTGHDRS+=	RISCVGenMacroFusion.inc
22885f757f3fSDimitry AndricTGHDRS+=	RISCVGenO0PreLegalizeGICombiner.inc
22895f757f3fSDimitry AndricTGHDRS+=	RISCVGenPostLegalizeGICombiner.inc
22905f757f3fSDimitry AndricTGHDRS+=	RISCVGenPreLegalizeGICombiner.inc
22919771cac2SDimitry AndricTGHDRS+=	RISCVGenRegisterBank.inc
2292b2689b12SMitchell HorneTGHDRS+=	RISCVGenRegisterInfo.inc
2293e8d8bef9SDimitry AndricTGHDRS+=	RISCVGenSearchableTables.inc
2294b2689b12SMitchell HorneTGHDRS+=	RISCVGenSubtargetInfo.inc
2295b2689b12SMitchell HorneTGHDRS+=	RISCVGenSystemOperands.inc
2296b2689b12SMitchell Horne.endif # MK_LLVM_TARGET_RISCV
2297cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no"
2298986e05bcSDimitry AndricTGHDRS+=	X86GenAsmMatcher.inc
2299986e05bcSDimitry AndricTGHDRS+=	X86GenAsmWriter.inc
2300986e05bcSDimitry AndricTGHDRS+=	X86GenAsmWriter1.inc
2301986e05bcSDimitry AndricTGHDRS+=	X86GenCallingConv.inc
2302986e05bcSDimitry AndricTGHDRS+=	X86GenDAGISel.inc
2303986e05bcSDimitry AndricTGHDRS+=	X86GenDisassemblerTables.inc
2304986e05bcSDimitry AndricTGHDRS+=	X86GenFastISel.inc
230506c3fb27SDimitry AndricTGHDRS+=	X86GenFoldTables.inc
23063d54deb3SDimitry AndricTGHDRS+=	X86GenGlobalISel.inc
2307986e05bcSDimitry AndricTGHDRS+=	X86GenInstrInfo.inc
23080fca6ea1SDimitry AndricTGHDRS+=	X86GenInstrMapping.inc
230981ad6265SDimitry AndricTGHDRS+=	X86GenMnemonicTables.inc
23105897d2f0SDimitry AndricTGHDRS+=	X86GenRegisterBank.inc
2311986e05bcSDimitry AndricTGHDRS+=	X86GenRegisterInfo.inc
2312986e05bcSDimitry AndricTGHDRS+=	X86GenSubtargetInfo.inc
2313cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86
2314986e05bcSDimitry Andric
2315ddf95e2aSBryan DreweryDEPENDFILES+=	${TGHDRS:C/$/.d/}
2316986e05bcSDimitry AndricDPSRCS+=	${TGHDRS}
2317986e05bcSDimitry AndricCLEANFILES+=	${TGHDRS} ${TGHDRS:C/$/.d/}
231848aaf27bSDimitry AndricCLEANFILES+=	${GENSRCS} ${GENSRCS:C/$/.d/}
2319986e05bcSDimitry Andric
2320986e05bcSDimitry Andric.include "../llvm.build.mk"
2321986e05bcSDimitry Andric.include <bsd.lib.mk>
2322