xref: /freebsd/lib/clang/libllvm/Makefile (revision cf1eaaf41cefe7e3aef45f6dab862191a3939ed8)
173ff7384SDimitry Andric.include <bsd.init.mk>
2986e05bcSDimitry Andric.include "../llvm.pre.mk"
3986e05bcSDimitry Andric
42e47f35bSDimitry Andric.if defined(TOOLS_PREFIX)
52e47f35bSDimitry Andric# Build static library during cross-tools stage
6986e05bcSDimitry AndricLIB=		llvm
7986e05bcSDimitry AndricINTERNALLIB=
82e47f35bSDimitry Andric.else
92e47f35bSDimitry AndricPACKAGE=	clang
102e47f35bSDimitry AndricSHLIB_CXX=	llvm
112e47f35bSDimitry AndricSHLIB_MAJOR=	19
122e47f35bSDimitry AndricPRIVATELIB=
132e47f35bSDimitry Andric.if ${MACHINE} == "powerpc"
142e47f35bSDimitry Andric# Work around "relocation R_PPC_GOT16 out of range" errors
152e47f35bSDimitry AndricPICFLAG=        -fPIC
162e47f35bSDimitry Andric.endif
172e47f35bSDimitry Andric.endif
182e47f35bSDimitry Andric
192e47f35bSDimitry 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
51*cf1eaaf4SDimitry AndricCFLAGS+=	-DLLVM_BUILD_LLVM_DYLIB
52*cf1eaaf4SDimitry Andric
530b57cec5SDimitry AndricSRCDIR=		llvm/lib
54986e05bcSDimitry Andric
55a1aaa66bSDimitry Andric# Explanation of different SRCS variants below:
56a1aaa66bSDimitry Andric# SRCS_MIN:	always required, even for bootstrap
57a1aaa66bSDimitry Andric# SRCS_MIW:	required for world stage (after cross-tools)
58a1aaa66bSDimitry Andric# SRCS_EXT:	required for MK_CLANG_EXTRAS
59a1aaa66bSDimitry Andric# SRCS_EXL:	required for MK_CLANG_EXTRAS and MK_LLD
60a1aaa66bSDimitry Andric# SRCS_FUL:	required for MK_CLANG_FULL
61a1aaa66bSDimitry Andric# SRCS_LLD:	required for MK_LLD
62a1aaa66bSDimitry Andric# SRCS_XDB:	required for MK_CLANG_EXTRAS and MK_LLDB
63a1aaa66bSDimitry Andric# SRCS_XDL:	required for MK_CLANG_EXTRAS, MK_LLD and MK_LLDB
64a1aaa66bSDimitry Andric# SRCS_XDW:	required for MK_CLANG_EXTRAS and MK_LLDB in world stage
6506c3fb27SDimitry Andric# SRCS_COV:	required for MK_LLVM_COV
66a1aaa66bSDimitry Andric
67986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AliasAnalysis.cpp
68986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AliasAnalysisEvaluator.cpp
69986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AliasSetTracker.cpp
70986e05bcSDimitry AndricSRCS_EXT+=	Analysis/Analysis.cpp
7148aaf27bSDimitry AndricSRCS_MIN+=	Analysis/AssumeBundleQueries.cpp
72986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AssumptionCache.cpp
73986e05bcSDimitry AndricSRCS_MIN+=	Analysis/BasicAliasAnalysis.cpp
74986e05bcSDimitry AndricSRCS_MIN+=	Analysis/BlockFrequencyInfo.cpp
75986e05bcSDimitry AndricSRCS_MIN+=	Analysis/BlockFrequencyInfoImpl.cpp
76986e05bcSDimitry AndricSRCS_MIN+=	Analysis/BranchProbabilityInfo.cpp
77986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CFG.cpp
78986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CFGPrinter.cpp
79bdd1243dSDimitry AndricSRCS_MIN+=	Analysis/CFGSCCPrinter.cpp
80986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CGSCCPassManager.cpp
81986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CallGraph.cpp
82986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CallGraphSCCPass.cpp
83986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CallPrinter.cpp
84986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CaptureTracking.cpp
8536cb3905SDimitry AndricSRCS_MIN+=	Analysis/CmpInstAnalysis.cpp
86986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CodeMetrics.cpp
87986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ConstantFolding.cpp
88e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/ConstraintSystem.cpp
89986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CostModel.cpp
9004eeddc0SDimitry AndricSRCS_MIN+=	Analysis/CycleAnalysis.cpp
919771cac2SDimitry AndricSRCS_MIN+=	Analysis/DDG.cpp
92e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/DDGPrinter.cpp
93986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Delinearization.cpp
94986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DemandedBits.cpp
95986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DependenceAnalysis.cpp
969771cac2SDimitry AndricSRCS_MIN+=	Analysis/DependenceGraphBuilder.cpp
975f757f3fSDimitry AndricSRCS_MIN+=	Analysis/DomConditionCache.cpp
98986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DomPrinter.cpp
994014a71fSDimitry AndricSRCS_MIN+=	Analysis/DomTreeUpdater.cpp
100986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DominanceFrontier.cpp
101e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/FunctionPropertiesAnalysis.cpp
102986e05bcSDimitry AndricSRCS_MIN+=	Analysis/GlobalsModRef.cpp
1035e86819cSDimitry AndricSRCS_MIN+=	Analysis/GuardUtils.cpp
10448aaf27bSDimitry AndricSRCS_MIN+=	Analysis/HeatUtils.cpp
105e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/IRSimilarityIdentifier.cpp
1065e86819cSDimitry AndricSRCS_MIN+=	Analysis/IVDescriptors.cpp
107986e05bcSDimitry AndricSRCS_MIN+=	Analysis/IVUsers.cpp
108e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/ImportedFunctionsInliningStatistics.cpp
109986e05bcSDimitry AndricSRCS_MIN+=	Analysis/IndirectCallPromotionAnalysis.cpp
11048aaf27bSDimitry AndricSRCS_MIN+=	Analysis/InlineAdvisor.cpp
111986e05bcSDimitry AndricSRCS_MIN+=	Analysis/InlineCost.cpp
112bdd1243dSDimitry AndricSRCS_MIN+=	Analysis/InlineOrder.cpp
11348aaf27bSDimitry AndricSRCS_MIN+=	Analysis/InlineSizeEstimatorAnalysis.cpp
114986e05bcSDimitry AndricSRCS_MIN+=	Analysis/InstCount.cpp
1155e86819cSDimitry AndricSRCS_MIN+=	Analysis/InstructionPrecedenceTracking.cpp
116986e05bcSDimitry AndricSRCS_MIN+=	Analysis/InstructionSimplify.cpp
11706c3fb27SDimitry AndricSRCS_MIN+=	Analysis/InteractiveModelRunner.cpp
118986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LazyBlockFrequencyInfo.cpp
11909bfd043SDimitry AndricSRCS_MIN+=	Analysis/LazyBranchProbabilityInfo.cpp
120986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LazyCallGraph.cpp
121986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LazyValueInfo.cpp
122986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Lint.cpp
123986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Loads.cpp
124bdd1243dSDimitry AndricSRCS_MIN+=	Analysis/Local.cpp
125986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopAccessAnalysis.cpp
126f1a29dd3SDimitry AndricSRCS_MIN+=	Analysis/LoopAnalysisManager.cpp
1279771cac2SDimitry AndricSRCS_MIN+=	Analysis/LoopCacheAnalysis.cpp
128986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopInfo.cpp
12948aaf27bSDimitry AndricSRCS_MIN+=	Analysis/LoopNestAnalysis.cpp
130986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopPass.cpp
131986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopUnrollAnalyzer.cpp
13206c3fb27SDimitry AndricSRCS_MIN+=	Analysis/MLInlineAdvisor.cpp
133986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemDerefPrinter.cpp
134986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemoryBuiltins.cpp
135986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemoryDependenceAnalysis.cpp
136986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemoryLocation.cpp
137bdd1243dSDimitry AndricSRCS_MIN+=	Analysis/MemoryProfileInfo.cpp
1385897d2f0SDimitry AndricSRCS_MIN+=	Analysis/MemorySSA.cpp
1395897d2f0SDimitry AndricSRCS_MIN+=	Analysis/MemorySSAUpdater.cpp
140986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ModuleDebugInfoPrinter.cpp
141986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ModuleSummaryAnalysis.cpp
1429f6e9a9fSDimitry AndricSRCS_MIN+=	Analysis/MustExecute.cpp
143986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ObjCARCAliasAnalysis.cpp
144986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ObjCARCAnalysisUtils.cpp
145986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ObjCARCInstKind.cpp
14636cb3905SDimitry AndricSRCS_MIN+=	Analysis/OptimizationRemarkEmitter.cpp
147fe6060f1SDimitry AndricSRCS_MIN+=	Analysis/OverflowInstAnalysis.cpp
148986e05bcSDimitry AndricSRCS_MIN+=	Analysis/PHITransAddr.cpp
1499f6e9a9fSDimitry AndricSRCS_MIN+=	Analysis/PhiValues.cpp
150986e05bcSDimitry AndricSRCS_MIN+=	Analysis/PostDominators.cpp
151986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ProfileSummaryInfo.cpp
152986e05bcSDimitry AndricSRCS_MIN+=	Analysis/PtrUseVisitor.cpp
153986e05bcSDimitry AndricSRCS_MIN+=	Analysis/RegionInfo.cpp
154986e05bcSDimitry AndricSRCS_MIN+=	Analysis/RegionPass.cpp
155986e05bcSDimitry AndricSRCS_MIN+=	Analysis/RegionPrinter.cpp
156e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/ReplayInlineAdvisor.cpp
157986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolution.cpp
158986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolutionAliasAnalysis.cpp
15948aaf27bSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolutionDivision.cpp
160986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolutionNormalization.cpp
161986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScopedNoAliasAA.cpp
16248aaf27bSDimitry AndricSRCS_MIN+=	Analysis/StackLifetime.cpp
1635e86819cSDimitry AndricSRCS_MIN+=	Analysis/StackSafetyAnalysis.cpp
1645f757f3fSDimitry AndricSRCS_MIN+=	Analysis/StructuralHash.cpp
1659f6e9a9fSDimitry AndricSRCS_MIN+=	Analysis/SyntheticCountsUtils.cpp
166986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TargetLibraryInfo.cpp
167986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TargetTransformInfo.cpp
16881ad6265SDimitry AndricSRCS_MIN+=	Analysis/TensorSpec.cpp
16906c3fb27SDimitry AndricSRCS_MIN+=	Analysis/TrainingLogger.cpp
170986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TypeBasedAliasAnalysis.cpp
171986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TypeMetadataUtils.cpp
172bdd1243dSDimitry AndricSRCS_MIN+=	Analysis/UniformityAnalysis.cpp
17336cb3905SDimitry AndricSRCS_MIN+=	Analysis/ValueLattice.cpp
17436cb3905SDimitry AndricSRCS_MIN+=	Analysis/ValueLatticeUtils.cpp
175986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ValueTracking.cpp
176986e05bcSDimitry AndricSRCS_MIN+=	Analysis/VectorUtils.cpp
177986e05bcSDimitry AndricSRCS_MIN+=	AsmParser/LLLexer.cpp
178986e05bcSDimitry AndricSRCS_MIN+=	AsmParser/LLParser.cpp
179986e05bcSDimitry AndricSRCS_MIN+=	AsmParser/Parser.cpp
1801b85b68dSCameron KatriSRCS_MIN+=	BinaryFormat/AMDGPUMetadataVerifier.cpp
181d781ede6SDimitry AndricSRCS_MIN+=	BinaryFormat/COFF.cpp
18244389c28SDimitry AndricSRCS_MIN+=	BinaryFormat/Dwarf.cpp
183647cbc5dSDimitry AndricSRCS_XDB+=	BinaryFormat/ELF.cpp
18448aaf27bSDimitry AndricSRCS_MIN+=	BinaryFormat/MachO.cpp
1855f757f3fSDimitry AndricSRCS_MIN+=	BinaryFormat/Magic.cpp
1861b85b68dSCameron KatriSRCS_MIN+=	BinaryFormat/MsgPackDocument.cpp
1871b85b68dSCameron KatriSRCS_MIN+=	BinaryFormat/MsgPackDocumentYAML.cpp
1881b85b68dSCameron KatriSRCS_MIN+=	BinaryFormat/MsgPackReader.cpp
18979239b5bSDimitry AndricSRCS_MIN+=	BinaryFormat/MsgPackWriter.cpp
1909f6e9a9fSDimitry AndricSRCS_MIN+=	BinaryFormat/Wasm.cpp
1919771cac2SDimitry AndricSRCS_MIN+=	BinaryFormat/XCOFF.cpp
19209bfd043SDimitry AndricSRCS_MIN+=	Bitcode/Reader/BitReader.cpp
19324b8043eSDimitry AndricSRCS_EXT+=	Bitcode/Reader/BitcodeAnalyzer.cpp
194986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Reader/BitcodeReader.cpp
19509bfd043SDimitry AndricSRCS_MIN+=	Bitcode/Reader/MetadataLoader.cpp
19609bfd043SDimitry AndricSRCS_MIN+=	Bitcode/Reader/ValueList.cpp
197986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Writer/BitcodeWriter.cpp
198986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Writer/BitcodeWriterPass.cpp
199986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Writer/ValueEnumerator.cpp
2004014a71fSDimitry AndricSRCS_MIN+=	Bitstream/Reader/BitstreamReader.cpp
201986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AggressiveAntiDepBreaker.cpp
202986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AllocationOrder.cpp
203986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/Analysis.cpp
204e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AIXException.cpp
205986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/ARMException.cpp
2069f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AccelTable.cpp
207986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AddressPool.cpp
208986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AsmPrinter.cpp
209986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
210986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
211986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/CodeViewDebug.cpp
212986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DIE.cpp
213986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DIEHash.cpp
2145e86819cSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp
215986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DebugHandlerBase.cpp
216986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DebugLocStream.cpp
217986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfCFIException.cpp
218986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfCompileUnit.cpp
219986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfDebug.cpp
220986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfExpression.cpp
221986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfFile.cpp
222986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfStringPool.cpp
223986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfUnit.cpp
224986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/EHStreamer.cpp
22524b8043eSDimitry AndricSRCS_EXT+=	CodeGen/AsmPrinter/ErlangGCPrinter.cpp
226986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/OcamlGCPrinter.cpp
227e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/PseudoProbePrinter.cpp
2285e86819cSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/WasmException.cpp
2299f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/WinCFGuard.cpp
230986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/WinException.cpp
231bdd1243dSDimitry AndricSRCS_MIN+=	CodeGen/AssignmentTrackingAnalysis.cpp
232986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AtomicExpandPass.cpp
2335f757f3fSDimitry AndricSRCS_MIN+=	CodeGen/BasicBlockPathCloning.cpp
234e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/BasicBlockSections.cpp
23581ad6265SDimitry AndricSRCS_MIN+=	CodeGen/BasicBlockSectionsProfileReader.cpp
236986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/BasicTargetTransformInfo.cpp
237986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/BranchFolding.cpp
23809bfd043SDimitry AndricSRCS_MIN+=	CodeGen/BranchRelaxation.cpp
2399f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/BreakFalseDeps.cpp
2409771cac2SDimitry AndricSRCS_MIN+=	CodeGen/CFGuardLongjmp.cpp
24181ad6265SDimitry AndricSRCS_MIN+=	CodeGen/CFIFixup.cpp
2429f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/CFIInstrInserter.cpp
243986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CalcSpillWeights.cpp
24406c3fb27SDimitry AndricSRCS_MIN+=	CodeGen/CallBrPrepare.cpp
245986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CallingConvLower.cpp
246986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CodeGen.cpp
2475e801ac6SDimitry AndricSRCS_MIN+=	CodeGen/CodeGenCommonISel.cpp
248986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CodeGenPrepare.cpp
24948aaf27bSDimitry AndricSRCS_EXL+=	CodeGen/CommandFlags.cpp
250bdd1243dSDimitry AndricSRCS_MIN+=	CodeGen/ComplexDeinterleavingPass.cpp
251986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CriticalAntiDepBreaker.cpp
252986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DFAPacketizer.cpp
253986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DeadMachineInstructionElim.cpp
254986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DetectDeadLanes.cpp
255986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DwarfEHPrepare.cpp
256fe6060f1SDimitry AndricSRCS_MIN+=	CodeGen/EHContGuardCatchret.cpp
257986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/EarlyIfConversion.cpp
258986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/EdgeBundles.cpp
2599f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/ExecutionDomainFix.cpp
260bdd1243dSDimitry AndricSRCS_MIN+=	CodeGen/ExpandLargeDivRem.cpp
261bdd1243dSDimitry AndricSRCS_MIN+=	CodeGen/ExpandLargeFpConvert.cpp
26236cb3905SDimitry AndricSRCS_MIN+=	CodeGen/ExpandMemCmp.cpp
263986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ExpandPostRAPseudos.cpp
2645517e702SDimitry AndricSRCS_MIN+=	CodeGen/ExpandReductions.cpp
265fe6060f1SDimitry AndricSRCS_MIN+=	CodeGen/ExpandVectorPredication.cpp
2665897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/FEntryInserter.cpp
267986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/FaultMaps.cpp
2684014a71fSDimitry AndricSRCS_MIN+=	CodeGen/FinalizeISel.cpp
26948aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/FixupStatepointCallerSaved.cpp
270986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/FuncletLayout.cpp
2715f757f3fSDimitry AndricSRCS_MIN+=	CodeGen/GCEmptyBasicBlocks.cpp
272986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GCMetadata.cpp
27309bfd043SDimitry AndricSRCS_MIN+=	CodeGen/GCMetadataPrinter.cpp
274986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GCRootLowering.cpp
2755e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CSEInfo.cpp
2765e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CSEMIRBuilder.cpp
2775f757f3fSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CallLowering.cpp
2785e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Combiner.cpp
2795e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CombinerHelper.cpp
2800fca6ea1SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CombinerHelperVectorOps.cpp
28106c3fb27SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/GIMatchTableExecutor.cpp
2825e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/GISelChangeObserver.cpp
2839771cac2SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/GISelKnownBits.cpp
284986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/GlobalISel.cpp
2853d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/IRTranslator.cpp
28648aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/InlineAsmLowering.cpp
2873d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/InstructionSelect.cpp
2883d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/InstructionSelector.cpp
289fe6060f1SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegacyLegalizerInfo.cpp
2909f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalityPredicates.cpp
2919f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalizeMutations.cpp
2923d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Legalizer.cpp
2933d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalizerHelper.cpp
2943d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalizerInfo.cpp
2955e801ac6SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LoadStoreOpt.cpp
296302affcbSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Localizer.cpp
29748aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LostDebugLocObserver.cpp
2983d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/MachineIRBuilder.cpp
2993d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/RegBankSelect.cpp
3003d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Utils.cpp
301986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GlobalMerge.cpp
3024014a71fSDimitry AndricSRCS_MIN+=	CodeGen/HardwareLoops.cpp
303986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/IfConversion.cpp
304986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ImplicitNullChecks.cpp
30507577dfeSDimitry AndricSRCS_MIN+=	CodeGen/IndirectBrExpandPass.cpp
3060fca6ea1SDimitry AndricSRCS_MIN+=	CodeGen/InitUndef.cpp
307986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/InlineSpiller.cpp
308986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/InterferenceCache.cpp
309986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/InterleavedAccessPass.cpp
3105e86819cSDimitry AndricSRCS_MIN+=	CodeGen/InterleavedLoadCombinePass.cpp
311986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/IntrinsicLowering.cpp
31281ad6265SDimitry AndricSRCS_MIN+=	CodeGen/JMCInstrumenter.cpp
31306c3fb27SDimitry AndricSRCS_MIN+=	CodeGen/KCFI.cpp
314986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LLVMTargetMachine.cpp
315986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LatencyPriorityQueue.cpp
3165897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/LazyMachineBlockFrequencyInfo.cpp
317986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LexicalScopes.cpp
318e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/LiveDebugValues/InstrRefBasedImpl.cpp
319e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/LiveDebugValues/LiveDebugValues.cpp
320e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/LiveDebugValues/VarLocBasedImpl.cpp
321986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveDebugVariables.cpp
322986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveInterval.cpp
32348aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/LiveIntervalCalc.cpp
324986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveIntervalUnion.cpp
32544389c28SDimitry AndricSRCS_MIN+=	CodeGen/LiveIntervals.cpp
326986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LivePhysRegs.cpp
327986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveRangeCalc.cpp
328986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveRangeEdit.cpp
329f9448bf3SDimitry AndricSRCS_MIN+=	CodeGen/LiveRangeShrink.cpp
330986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveRegMatrix.cpp
3315897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/LiveRegUnits.cpp
3322757ff7eSDimitry AndricSRCS_MIN+=	CodeGen/LiveStacks.cpp
333986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveVariables.cpp
334986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LocalStackSlotAllocation.cpp
3359f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/LoopTraversal.cpp
33606c3fb27SDimitry AndricSRCS_MIN+=	CodeGen/LowLevelTypeUtils.cpp
337986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LowerEmuTLS.cpp
33848aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/MBFIWrapper.cpp
33936cb3905SDimitry AndricSRCS_MIN+=	CodeGen/MIRCanonicalizerPass.cpp
340fe6060f1SDimitry AndricSRCS_MIN+=	CodeGen/MIRFSDiscriminator.cpp
3419771cac2SDimitry AndricSRCS_MIN+=	CodeGen/MIRNamerPass.cpp
342986e05bcSDimitry AndricSRCS_EXT+=	CodeGen/MIRParser/MILexer.cpp
343986e05bcSDimitry AndricSRCS_EXT+=	CodeGen/MIRParser/MIParser.cpp
344986e05bcSDimitry AndricSRCS_EXT+=	CodeGen/MIRParser/MIRParser.cpp
345986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MIRPrinter.cpp
346986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MIRPrintingPass.cpp
3475e801ac6SDimitry AndricSRCS_MIN+=	CodeGen/MIRSampleProfile.cpp
3489771cac2SDimitry AndricSRCS_MIN+=	CodeGen/MIRVRegNamerUtils.cpp
3495f757f3fSDimitry AndricSRCS_MIN+=	CodeGen/MLRegAllocEvictAdvisor.cpp
3505f757f3fSDimitry AndricSRCS_MIN+=	CodeGen/MLRegAllocPriorityAdvisor.cpp
351986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBasicBlock.cpp
352986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBlockFrequencyInfo.cpp
353986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBlockPlacement.cpp
354986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBranchProbabilityInfo.cpp
355bdd1243dSDimitry AndricSRCS_MIN+=	CodeGen/MachineCFGPrinter.cpp
356986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineCSE.cpp
357e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/MachineCheckDebugify.cpp
358986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineCombiner.cpp
3590fca6ea1SDimitry AndricSRCS_MIN+=	CodeGen/MachineConvergenceVerifier.cpp
360986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineCopyPropagation.cpp
36104eeddc0SDimitry AndricSRCS_MIN+=	CodeGen/MachineCycleAnalysis.cpp
36248aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/MachineDebugify.cpp
363986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineDominanceFrontier.cpp
364986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineDominators.cpp
365f37b6182SDimitry AndricSRCS_MIN+=	CodeGen/MachineFrameInfo.cpp
366986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineFunction.cpp
3670fca6ea1SDimitry AndricSRCS_MIN+=	CodeGen/MachineFunctionAnalysis.cpp
368986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineFunctionPass.cpp
369986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineFunctionPrinterPass.cpp
370e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/MachineFunctionSplitter.cpp
371986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineInstr.cpp
372986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineInstrBundle.cpp
373986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineLICM.cpp
374bdd1243dSDimitry AndricSRCS_MIN+=	CodeGen/MachineLateInstrsCleanup.cpp
375986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineLoopInfo.cpp
3769771cac2SDimitry AndricSRCS_MIN+=	CodeGen/MachineLoopUtils.cpp
377986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineModuleInfo.cpp
378986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineModuleInfoImpls.cpp
379fe6060f1SDimitry AndricSRCS_MIN+=	CodeGen/MachineModuleSlotTracker.cpp
38036cb3905SDimitry AndricSRCS_MIN+=	CodeGen/MachineOperand.cpp
3815897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/MachineOptimizationRemarkEmitter.cpp
3825897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/MachineOutliner.cpp
3837a6dacacSDimitry AndricSRCS_MIN+=	CodeGen/MachinePassManager.cpp
38409bfd043SDimitry AndricSRCS_MIN+=	CodeGen/MachinePipeliner.cpp
385986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachinePostDominators.cpp
386986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineRegionInfo.cpp
387986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineRegisterInfo.cpp
38804eeddc0SDimitry AndricSRCS_MIN+=	CodeGen/MachineSSAContext.cpp
389986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineSSAUpdater.cpp
390986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineScheduler.cpp
391986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineSink.cpp
3929771cac2SDimitry AndricSRCS_MIN+=	CodeGen/MachineSizeOpts.cpp
393e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/MachineStableHash.cpp
39448aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/MachineStripDebug.cpp
395986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineTraceMetrics.cpp
396bdd1243dSDimitry AndricSRCS_MIN+=	CodeGen/MachineUniformityAnalysis.cpp
397986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineVerifier.cpp
398edd7eaddSDimitry AndricSRCS_MIN+=	CodeGen/MacroFusion.cpp
3999771cac2SDimitry AndricSRCS_MIN+=	CodeGen/ModuloSchedule.cpp
400e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/MultiHazardRecognizer.cpp
401fcaf7f86SDimitry AndricSRCS_EXT+=	CodeGen/NonRelocatableStringpool.cpp
402986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/OptimizePHIs.cpp
403986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PHIElimination.cpp
404986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PHIEliminationUtils.cpp
405986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PatchableFunction.cpp
406986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PeepholeOptimizer.cpp
407986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PostRAHazardRecognizer.cpp
408986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PostRASchedulerList.cpp
409986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PreISelIntrinsicLowering.cpp
410986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ProcessImplicitDefs.cpp
411986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PrologEpilogInserter.cpp
412e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/PseudoProbeInserter.cpp
413986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PseudoSourceValue.cpp
4140946e70aSDimitry AndricSRCS_MIN+=	CodeGen/RDFGraph.cpp
4150946e70aSDimitry AndricSRCS_MIN+=	CodeGen/RDFLiveness.cpp
4160946e70aSDimitry AndricSRCS_MIN+=	CodeGen/RDFRegisters.cpp
4175f757f3fSDimitry AndricSRCS_MIN+=	CodeGen/ReachingDefAnalysis.cpp
418986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocBase.cpp
419986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocBasic.cpp
42004eeddc0SDimitry AndricSRCS_MIN+=	CodeGen/RegAllocEvictionAdvisor.cpp
421986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocFast.cpp
422986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocGreedy.cpp
423986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocPBQP.cpp
424bdd1243dSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocPriorityAdvisor.cpp
425986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegUsageInfoCollector.cpp
426986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegUsageInfoPropagate.cpp
42781ad6265SDimitry AndricSRCS_MIN+=	CodeGen/RegisterBank.cpp
42881ad6265SDimitry AndricSRCS_MIN+=	CodeGen/RegisterBankInfo.cpp
429986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterClassInfo.cpp
430986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterCoalescer.cpp
431986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterPressure.cpp
432986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterScavenging.cpp
433986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterUsageInfo.cpp
434fe6060f1SDimitry AndricSRCS_MIN+=	CodeGen/RemoveRedundantDebugValues.cpp
435986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RenameIndependentSubregs.cpp
4365f757f3fSDimitry AndricSRCS_MIN+=	CodeGen/ReplaceWithVeclib.cpp
43709bfd043SDimitry AndricSRCS_MIN+=	CodeGen/ResetMachineFunctionPass.cpp
438986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SafeStack.cpp
439986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SafeStackLayout.cpp
440bdd1243dSDimitry AndricSRCS_MIN+=	CodeGen/SanitizerBinaryMetadata.cpp
441986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScheduleDAG.cpp
442986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScheduleDAGInstrs.cpp
443986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScheduleDAGPrinter.cpp
444986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScoreboardHazardRecognizer.cpp
44581ad6265SDimitry AndricSRCS_MIN+=	CodeGen/SelectOptimize.cpp
446986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/DAGCombiner.cpp
447986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/FastISel.cpp
448986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
449986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/InstrEmitter.cpp
450986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeDAG.cpp
451986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
452986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
453986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeTypes.cpp
454986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
455986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeVectorOps.cpp
456986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
457986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ResourcePriorityQueue.cpp
458986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGFast.cpp
459986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
460986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
461986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
462986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAG.cpp
46344389c28SDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
464986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
465986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGDumper.cpp
466986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGISel.cpp
467986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
468986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp
469986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/StatepointLowering.cpp
470986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/TargetLowering.cpp
471986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ShadowStackGCLowering.cpp
472986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ShrinkWrap.cpp
473986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SjLjEHPrepare.cpp
474986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SlotIndexes.cpp
475986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SpillPlacement.cpp
476986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SplitKit.cpp
477986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackColoring.cpp
478bdd1243dSDimitry AndricSRCS_MIN+=	CodeGen/StackFrameLayoutAnalysisPass.cpp
479986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackMapLivenessAnalysis.cpp
480986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackMaps.cpp
481986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackProtector.cpp
482986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackSlotColoring.cpp
4834014a71fSDimitry AndricSRCS_MIN+=	CodeGen/SwiftErrorValueTracking.cpp
4844014a71fSDimitry AndricSRCS_MIN+=	CodeGen/SwitchLoweringUtils.cpp
485986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TailDuplication.cpp
486986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TailDuplicator.cpp
487986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetFrameLoweringImpl.cpp
488986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetInstrInfo.cpp
489986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetLoweringBase.cpp
490986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetLoweringObjectFileImpl.cpp
491986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetOptionsImpl.cpp
492986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetPassConfig.cpp
493986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetRegisterInfo.cpp
494986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetSchedule.cpp
49509bfd043SDimitry AndricSRCS_MIN+=	CodeGen/TargetSubtargetInfo.cpp
496986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TwoAddressInstructionPass.cpp
4979771cac2SDimitry AndricSRCS_MIN+=	CodeGen/TypePromotion.cpp
498986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/UnreachableBlockElim.cpp
4999f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/ValueTypes.cpp
500986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/VirtRegMap.cpp
5019f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/WasmEHPrepare.cpp
502986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/WinEHPrepare.cpp
5030fca6ea1SDimitry AndricSRCS_MIN+=	CodeGen/WindowScheduler.cpp
504986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/XRayInstrumentation.cpp
5050fca6ea1SDimitry AndricSRCS_MIN+=	CodeGenTypes/LowLevelType.cpp
506297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Classic/DWARFLinker.cpp
507297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Classic/DWARFLinkerCompileUnit.cpp
508297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Classic/DWARFLinkerDeclContext.cpp
509297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Classic/DWARFStreamer.cpp
5107a6dacacSDimitry AndricSRCS_EXT+=	DWARFLinker/DWARFLinkerBase.cpp
511297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/AcceleratorRecordsSaver.cpp
512297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/DIEAttributeCloner.cpp
513297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/DWARFEmitterImpl.cpp
514297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/DWARFLinker.cpp
515297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/DWARFLinkerCompileUnit.cpp
516297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/DWARFLinkerImpl.cpp
517297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/DWARFLinkerTypeUnit.cpp
518297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/DWARFLinkerUnit.cpp
519297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/DependencyTracker.cpp
520297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/OutputSections.cpp
521297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Parallel/SyntheticTypeNameBuilder.cpp
522297eecfbSDimitry AndricSRCS_EXT+=	DWARFLinker/Utils.cpp
523fe6060f1SDimitry AndricSRCS_EXT+=	DWP/DWP.cpp
524fe6060f1SDimitry AndricSRCS_EXT+=	DWP/DWPError.cpp
52506c3fb27SDimitry AndricSRCS_MIW+=	DebugInfo/BTF/BTFContext.cpp
52606c3fb27SDimitry AndricSRCS_MIW+=	DebugInfo/BTF/BTFParser.cpp
5272e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/AppendingTypeTableBuilder.cpp
52809bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CVSymbolVisitor.cpp
529986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CVTypeVisitor.cpp
530986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CodeViewError.cpp
53109bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CodeViewRecordIO.cpp
53236cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/ContinuationRecordBuilder.cpp
5331b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/DebugChecksumsSubsection.cpp
5342e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/DebugCrossExSubsection.cpp
5352e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/DebugCrossImpSubsection.cpp
5361b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/DebugFrameDataSubsection.cpp
5371b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp
5381b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/DebugLinesSubsection.cpp
5391b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/DebugStringTableSubsection.cpp
5402e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/DebugSubsection.cpp
5412e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/DebugSubsectionRecord.cpp
5422e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/DebugSubsectionVisitor.cpp
5432e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/DebugSymbolRVASubsection.cpp
5442e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/DebugSymbolsSubsection.cpp
5455e86819cSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/EnumTables.cpp
5465897d2f0SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/Formatters.cpp
54736cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/GlobalTypeTableBuilder.cpp
5481b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/LazyRandomTypeCollection.cpp
549986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/Line.cpp
5501b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/MergingTypeTableBuilder.cpp
55136cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/RecordName.cpp
552986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/RecordSerialization.cpp
55336cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SimpleTypeSerializer.cpp
55424d58133SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/StringsAndChecksums.cpp
555986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SymbolDumper.cpp
55661cfbce3SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SymbolRecordHelpers.cpp
55709bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SymbolRecordMapping.cpp
5582e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SymbolSerializer.cpp
559f1a29dd3SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeDumpVisitor.cpp
56036cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeHashing.cpp
561d8866befSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeIndex.cpp
56206230659SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeIndexDiscovery.cpp
563efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/TypeRecordHelpers.cpp
56409bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeRecordMapping.cpp
565986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeStreamMerger.cpp
566d8866befSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeTableCollection.cpp
5672e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
5682e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFAcceleratorTable.cpp
5692e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFAddressRange.cpp
5702e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFCompileUnit.cpp
5712e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFContext.cpp
5722e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDataExtractor.cpp
5732e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugAbbrev.cpp
5742e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugAddr.cpp
5752e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugArangeSet.cpp
5762e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugAranges.cpp
5772e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugFrame.cpp
5782e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugInfoEntry.cpp
5792e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugLine.cpp
5802e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugLoc.cpp
5812e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugMacro.cpp
5822e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugPubTable.cpp
5832e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugRangeList.cpp
5842e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDebugRnglists.cpp
5852e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFDie.cpp
586e89f883aSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFExpression.cpp
5872e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFFormValue.cpp
5882e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFGdbIndex.cpp
5892e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFListTable.cpp
5902e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFTypePrinter.cpp
5912e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFTypeUnit.cpp
5922e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFUnit.cpp
5932e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFUnitIndex.cpp
5942e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFVerifier.cpp
59509bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/MSF/MSFBuilder.cpp
59609bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/MSF/MSFCommon.cpp
5972e47f35bSDimitry AndricSRCS_MIN+=	DebugInfo/MSF/MSFError.cpp
59809bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/MSF/MappedBlockStream.cpp
599986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/GenericError.cpp
60009bfd043SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/IPDBSourceFile.cpp
601f37b6182SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiModuleDescriptor.cpp
602f37b6182SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp
6030f5676f4SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiModuleList.cpp
604050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiStream.cpp
605050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiStreamBuilder.cpp
606050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/EnumTables.cpp
60781ad6265SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/FormatUtil.cpp
6083cd201a1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/GSIStreamBuilder.cpp
609050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/GlobalsStream.cpp
610050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/Hash.cpp
611050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/HashTable.cpp
612050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/InfoStream.cpp
613050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/InfoStreamBuilder.cpp
61424b8043eSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/InjectedSourceStream.cpp
61581ad6265SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/InputFile.cpp
61681ad6265SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/LinePrinter.cpp
617f37b6182SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/ModuleDebugStream.cpp
618050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NamedStreamMap.cpp
619050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeCompilandSymbol.cpp
620efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumGlobals.cpp
62124b8043eSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumInjectedSources.cpp
62248aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumLineNumbers.cpp
623050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumModules.cpp
624e8d8bef9SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumSymbols.cpp
62544389c28SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumTypes.cpp
626050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeExeSymbol.cpp
62748aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeFunctionSymbol.cpp
628e8d8bef9SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeInlineSiteSymbol.cpp
62948aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeLineNumber.cpp
63048aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativePublicSymbol.cpp
631050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeRawSymbol.cpp
632050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeSession.cpp
63348aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeSourceFile.cpp
634efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeSymbolEnumerator.cpp
635efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeArray.cpp
636efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeBuiltin.cpp
637efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeEnum.cpp
638efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp
639efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypePointer.cpp
640efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeTypedef.cpp
641efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeUDT.cpp
642efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeVTShape.cpp
643050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBFile.cpp
644050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBFileBuilder.cpp
645b174acefSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBStringTable.cpp
646b174acefSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBStringTableBuilder.cpp
6473d54deb3SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PublicsStream.cpp
6483d54deb3SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/RawError.cpp
649efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/SymbolCache.cpp
650050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/SymbolStream.cpp
651050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/TpiHashing.cpp
652050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/TpiStream.cpp
653050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/TpiStreamBuilder.cpp
654986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDB.cpp
655986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBContext.cpp
656986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBExtras.cpp
657986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBInterfaceAnchors.cpp
658986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymDumper.cpp
659986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbol.cpp
660986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolAnnotation.cpp
661986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolBlock.cpp
662986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCompiland.cpp
663986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
664986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCompilandEnv.cpp
665986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCustom.cpp
666986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolData.cpp
667986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolExe.cpp
668986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolFunc.cpp
669986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
670986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
671986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolLabel.cpp
672986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
673986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolThunk.cpp
674986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeArray.cpp
675986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
676986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp
677986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeCustom.cpp
678986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeDimension.cpp
679986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeEnum.cpp
680986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeFriend.cpp
681986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
682986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
683986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeManaged.cpp
684986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypePointer.cpp
685986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
686986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeUDT.cpp
687986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeVTable.cpp
688986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp
689986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolUnknown.cpp
690986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolUsingNamespace.cpp
691050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/UDTLayout.cpp
6920db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/DIPrinter.cpp
69381ad6265SDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/Markup.cpp
69481ad6265SDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/MarkupFilter.cpp
69509bfd043SDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/SymbolizableObjectFile.cpp
69609bfd043SDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/Symbolize.cpp
697bdd1243dSDimitry AndricSRCS_MIW+=	Debuginfod/BuildIDFetcher.cpp
69804eeddc0SDimitry AndricSRCS_MIW+=	Debuginfod/Debuginfod.cpp
69904eeddc0SDimitry AndricSRCS_MIW+=	Debuginfod/HTTPClient.cpp
7005c38ea60SDimitry AndricSRCS_MIW+=	Debuginfod/HTTPServer.cpp
7015e801ac6SDimitry AndricSRCS_MIN+=	Demangle/DLangDemangle.cpp
7025e801ac6SDimitry AndricSRCS_MIN+=	Demangle/Demangle.cpp
70309bfd043SDimitry AndricSRCS_MIN+=	Demangle/ItaniumDemangle.cpp
7045e801ac6SDimitry AndricSRCS_MIN+=	Demangle/MicrosoftDemangle.cpp
7055e801ac6SDimitry AndricSRCS_MIN+=	Demangle/MicrosoftDemangleNodes.cpp
7065e801ac6SDimitry AndricSRCS_MIN+=	Demangle/RustDemangle.cpp
707986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/ExecutionEngine.cpp
708986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/ExecutionEngineBindings.cpp
709986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/GDBRegistrationListener.cpp
710986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/Interpreter/Execution.cpp
711986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/Interpreter/ExternalFunctions.cpp
712986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/Interpreter/Interpreter.cpp
713753f127fSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/COFF.cpp
714bdd1243dSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/COFFDirectiveParser.cpp
715753f127fSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/COFFLinkGraphBuilder.cpp
7165f757f3fSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/COFF_x86_64.cpp
71781ad6265SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/DWARFRecordSectionSplitter.cpp
718b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/EHFrameSupport.cpp
71948aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF.cpp
7205f757f3fSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELFLinkGraphBuilder.cpp
72106c3fb27SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF_aarch32.cpp
7225e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF_aarch64.cpp
723bdd1243dSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF_i386.cpp
724bdd1243dSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF_loongarch.cpp
72506c3fb27SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF_ppc64.cpp
726fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF_riscv.cpp
72748aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF_x86_64.cpp
728b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/JITLink.cpp
729b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/JITLinkGeneric.cpp
730b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/JITLinkMemoryManager.cpp
731b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/MachO.cpp
732b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp
733b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/MachO_arm64.cpp
734b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/MachO_x86_64.cpp
73506c3fb27SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/aarch32.cpp
7365e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/aarch64.cpp
737bdd1243dSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/i386.cpp
738bdd1243dSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/loongarch.cpp
73906c3fb27SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ppc64.cpp
740fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/riscv.cpp
741fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/x86_64.cpp
742986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/MCJIT/MCJIT.cpp
74306c3fb27SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/COFFPlatform.cpp
74406c3fb27SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/COFFVCRuntimeSupport.cpp
74567b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/CompileOnDemandLayer.cpp
74624b8043eSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/CompileUtils.cpp
74767b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Core.cpp
748fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/DebugObjectManagerPlugin.cpp
74948aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/DebugUtils.cpp
7505f757f3fSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Debugging/DebuggerSupport.cpp
7515f757f3fSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Debugging/DebuggerSupportPlugin.cpp
7525e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ELFNixPlatform.cpp
753fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/EPCDebugObjectRegistrar.cpp
75406c3fb27SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/EPCDynamicLibrarySearchGenerator.cpp
755fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/EPCEHFrameRegistrar.cpp
7565e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/EPCGenericDylibManager.cpp
7575e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/EPCGenericJITLinkMemoryManager.cpp
7585e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/EPCGenericRTDyldMemoryManager.cpp
759986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ExecutionUtils.cpp
760fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ExecutorProcessControl.cpp
76167b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/IRCompileLayer.cpp
76267b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/IRTransformLayer.cpp
763986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/IndirectionUtils.cpp
764efa75597SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/JITTargetMachineBuilder.cpp
76567b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/LLJIT.cpp
76667b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Layer.cpp
767efa75597SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/LazyReexports.cpp
76881ad6265SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/LookupAndRecordAddrs.cpp
76948aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/MachOPlatform.cpp
77048aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Mangling.cpp
77104eeddc0SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ObjectFileInterface.cpp
772b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ObjectLinkingLayer.cpp
773b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ObjectTransformLayer.cpp
774986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/OrcABISupport.cpp
77567b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
77604eeddc0SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Shared/AllocationActions.cpp
77706c3fb27SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Shared/ObjectFormats.cpp
778e8d8bef9SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Shared/OrcError.cpp
7795e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Shared/OrcRTBridge.cpp
7805e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Shared/SimpleRemoteEPCUtils.cpp
7815e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/SimpleRemoteEPC.cpp
782b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Speculation.cpp
783fe6060f1SDimitry AndricSRCS_XDB+=	ExecutionEngine/Orc/TargetProcess/JITLoaderGDB.cpp
784e8d8bef9SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/TargetProcess/RegisterEHFrames.cpp
785e8d8bef9SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/TargetProcess/TargetExecutionUtils.cpp
7865e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/TaskDispatch.cpp
787efa75597SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ThreadSafeModule.cpp
78809bfd043SDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/JITSymbol.cpp
789986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
790986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
791986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
792986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
793986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
794986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
79509bfd043SDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp
796986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/SectionMemoryManager.cpp
797986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/TargetSelect.cpp
7985f757f3fSDimitry AndricSRCS_MIN+=	Frontend/Driver/CodeGenOptions.cpp
799bdd1243dSDimitry AndricSRCS_MIN+=	Frontend/HLSL/HLSLResource.cpp
8007a6dacacSDimitry AndricSRCS_MIN+=	Frontend/Offloading/OffloadWrapper.cpp
8015f757f3fSDimitry AndricSRCS_MIN+=	Frontend/Offloading/Utility.cpp
802fe6060f1SDimitry AndricSRCS_MIN+=	Frontend/OpenMP/OMP.cpp
80348aaf27bSDimitry AndricSRCS_MIN+=	Frontend/OpenMP/OMPContext.cpp
8049771cac2SDimitry AndricSRCS_MIN+=	Frontend/OpenMP/OMPIRBuilder.cpp
8054014a71fSDimitry AndricSRCS_MIN+=	IR/AbstractCallSite.cpp
806986e05bcSDimitry AndricSRCS_MIN+=	IR/AsmWriter.cpp
807e8d8bef9SDimitry AndricSRCS_MIN+=	IR/Assumptions.cpp
808986e05bcSDimitry AndricSRCS_MIN+=	IR/Attributes.cpp
809986e05bcSDimitry AndricSRCS_MIN+=	IR/AutoUpgrade.cpp
810986e05bcSDimitry AndricSRCS_MIN+=	IR/BasicBlock.cpp
811bdd1243dSDimitry AndricSRCS_MIN+=	IR/BuiltinGCs.cpp
812986e05bcSDimitry AndricSRCS_MIN+=	IR/Comdat.cpp
813986e05bcSDimitry AndricSRCS_MIN+=	IR/ConstantFold.cpp
814986e05bcSDimitry AndricSRCS_MIN+=	IR/ConstantRange.cpp
8150fca6ea1SDimitry AndricSRCS_MIN+=	IR/ConstantRangeList.cpp
816986e05bcSDimitry AndricSRCS_MIN+=	IR/Constants.cpp
8175f757f3fSDimitry AndricSRCS_MIN+=	IR/ConvergenceVerifier.cpp
818986e05bcSDimitry AndricSRCS_MIN+=	IR/Core.cpp
81906c3fb27SDimitry AndricSRCS_MIN+=	IR/CycleInfo.cpp
820986e05bcSDimitry AndricSRCS_MIN+=	IR/DIBuilder.cpp
8210fca6ea1SDimitry AndricSRCS_MIN+=	IR/DIExpressionOptimizer.cpp
822986e05bcSDimitry AndricSRCS_MIN+=	IR/DataLayout.cpp
823986e05bcSDimitry AndricSRCS_MIN+=	IR/DebugInfo.cpp
824986e05bcSDimitry AndricSRCS_MIN+=	IR/DebugInfoMetadata.cpp
825986e05bcSDimitry AndricSRCS_MIN+=	IR/DebugLoc.cpp
8265f757f3fSDimitry AndricSRCS_MIN+=	IR/DebugProgramInstruction.cpp
82736cb3905SDimitry AndricSRCS_MIN+=	IR/DiagnosticHandler.cpp
828986e05bcSDimitry AndricSRCS_MIN+=	IR/DiagnosticInfo.cpp
829986e05bcSDimitry AndricSRCS_MIN+=	IR/DiagnosticPrinter.cpp
830986e05bcSDimitry AndricSRCS_MIN+=	IR/Dominators.cpp
83106c3fb27SDimitry AndricSRCS_MIN+=	IR/EHPersonalities.cpp
8329771cac2SDimitry AndricSRCS_MIN+=	IR/FPEnv.cpp
833986e05bcSDimitry AndricSRCS_MIN+=	IR/Function.cpp
834fe6060f1SDimitry AndricSRCS_MIN+=	IR/GCStrategy.cpp
835986e05bcSDimitry AndricSRCS_MIN+=	IR/GVMaterializer.cpp
836986e05bcSDimitry AndricSRCS_MIN+=	IR/Globals.cpp
837986e05bcSDimitry AndricSRCS_MIN+=	IR/IRBuilder.cpp
838986e05bcSDimitry AndricSRCS_MIN+=	IR/IRPrintingPasses.cpp
839986e05bcSDimitry AndricSRCS_MIN+=	IR/InlineAsm.cpp
840986e05bcSDimitry AndricSRCS_MIN+=	IR/Instruction.cpp
841986e05bcSDimitry AndricSRCS_MIN+=	IR/Instructions.cpp
842986e05bcSDimitry AndricSRCS_MIN+=	IR/IntrinsicInst.cpp
843986e05bcSDimitry AndricSRCS_MIN+=	IR/LLVMContext.cpp
844986e05bcSDimitry AndricSRCS_MIN+=	IR/LLVMContextImpl.cpp
84548aaf27bSDimitry AndricSRCS_MIN+=	IR/LLVMRemarkStreamer.cpp
846986e05bcSDimitry AndricSRCS_MIN+=	IR/LegacyPassManager.cpp
847986e05bcSDimitry AndricSRCS_MIN+=	IR/MDBuilder.cpp
848986e05bcSDimitry AndricSRCS_MIN+=	IR/Mangler.cpp
8490fca6ea1SDimitry AndricSRCS_MIN+=	IR/MemoryModelRelaxationAnnotations.cpp
850986e05bcSDimitry AndricSRCS_MIN+=	IR/Metadata.cpp
851986e05bcSDimitry AndricSRCS_MIN+=	IR/Module.cpp
852986e05bcSDimitry AndricSRCS_MIN+=	IR/ModuleSummaryIndex.cpp
853986e05bcSDimitry AndricSRCS_MIN+=	IR/Operator.cpp
854986e05bcSDimitry AndricSRCS_MIN+=	IR/OptBisect.cpp
855986e05bcSDimitry AndricSRCS_MIN+=	IR/Pass.cpp
8565e86819cSDimitry AndricSRCS_MIN+=	IR/PassInstrumentation.cpp
857986e05bcSDimitry AndricSRCS_MIN+=	IR/PassManager.cpp
858986e05bcSDimitry AndricSRCS_MIN+=	IR/PassRegistry.cpp
8595e86819cSDimitry AndricSRCS_MIN+=	IR/PassTimingInfo.cpp
860e8d8bef9SDimitry AndricSRCS_MIN+=	IR/PrintPasses.cpp
861bdd1243dSDimitry AndricSRCS_MIN+=	IR/ProfDataUtils.cpp
862986e05bcSDimitry AndricSRCS_MIN+=	IR/ProfileSummary.cpp
863e8d8bef9SDimitry AndricSRCS_MIN+=	IR/PseudoProbe.cpp
864e8d8bef9SDimitry AndricSRCS_MIN+=	IR/ReplaceConstant.cpp
8650fca6ea1SDimitry AndricSRCS_MIN+=	IR/RuntimeLibcalls.cpp
86604eeddc0SDimitry AndricSRCS_MIN+=	IR/SSAContext.cpp
867c4394386SDimitry AndricSRCS_MIN+=	IR/SafepointIRVerifier.cpp
868986e05bcSDimitry AndricSRCS_MIN+=	IR/Statepoint.cpp
86906c3fb27SDimitry AndricSRCS_MIN+=	IR/StructuralHash.cpp
870986e05bcSDimitry AndricSRCS_MIN+=	IR/Type.cpp
871986e05bcSDimitry AndricSRCS_MIN+=	IR/TypeFinder.cpp
872986e05bcSDimitry AndricSRCS_MIN+=	IR/Use.cpp
873986e05bcSDimitry AndricSRCS_MIN+=	IR/User.cpp
8747a6dacacSDimitry AndricSRCS_MIN+=	IR/VFABIDemangler.cpp
875986e05bcSDimitry AndricSRCS_MIN+=	IR/Value.cpp
876986e05bcSDimitry AndricSRCS_MIN+=	IR/ValueSymbolTable.cpp
8770fca6ea1SDimitry AndricSRCS_MIN+=	IR/VectorBuilder.cpp
878986e05bcSDimitry AndricSRCS_MIN+=	IR/Verifier.cpp
879bdd1243dSDimitry AndricSRCS_MIN+=	IRPrinter/IRPrintingPasses.cpp
8805f757f3fSDimitry AndricSRCS_MIN+=	IRReader/IRReader.cpp
8815897d2f0SDimitry AndricSRCS_MIN+=	LTO/LTO.cpp
88209bfd043SDimitry AndricSRCS_MIN+=	LTO/LTOBackend.cpp
88375bc38b9SEd MasteSRCS_EXL+=	LTO/LTOCodeGenerator.cpp
88475bc38b9SEd MasteSRCS_EXL+=	LTO/LTOModule.cpp
8852e47f35bSDimitry AndricSRCS_MIN+=	LTO/SummaryBasedOptimizations.cpp
88675bc38b9SEd MasteSRCS_EXL+=	LTO/ThinLTOCodeGenerator.cpp
88709bfd043SDimitry AndricSRCS_MIN+=	LTO/UpdateCompilerUsed.cpp
8885f757f3fSDimitry AndricSRCS_MIN+=	Linker/IRMover.cpp
88931ba4ce8SAlex Richardson# Only needed for clangd/clang-query, uncomment once we build those.
89031ba4ce8SAlex Richardson# SRCS_XDW+=	LineEditor/LineEditor.cpp
891986e05bcSDimitry AndricSRCS_MIN+=	Linker/LinkModules.cpp
892986e05bcSDimitry AndricSRCS_MIN+=	MC/ConstantPools.cpp
893986e05bcSDimitry AndricSRCS_MIN+=	MC/ELFObjectWriter.cpp
8945f757f3fSDimitry AndricSRCS_MIN+=	MC/GOFFObjectWriter.cpp
895986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmBackend.cpp
896986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfo.cpp
897986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoCOFF.cpp
898986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoDarwin.cpp
899986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoELF.cpp
9004014a71fSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoXCOFF.cpp
9019f6e9a9fSDimitry AndricSRCS_MIN+=	MC/MCAsmMacro.cpp
902986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmStreamer.cpp
903986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAssembler.cpp
904986e05bcSDimitry AndricSRCS_MIN+=	MC/MCCodeEmitter.cpp
905986e05bcSDimitry AndricSRCS_MIN+=	MC/MCCodeView.cpp
906986e05bcSDimitry AndricSRCS_MIN+=	MC/MCContext.cpp
90781ad6265SDimitry AndricSRCS_MIN+=	MC/MCDXContainerStreamer.cpp
90881ad6265SDimitry AndricSRCS_MIN+=	MC/MCDXContainerWriter.cpp
90975bc38b9SEd MasteSRCS_XDL+=	MC/MCDisassembler/Disassembler.cpp
9102e47f35bSDimitry AndricSRCS_MIN+=	MC/MCDisassembler/MCDisassembler.cpp
91130d4828eSDimitry AndricSRCS_XDW+=	MC/MCDisassembler/MCExternalSymbolizer.cpp
912986e05bcSDimitry AndricSRCS_MIN+=	MC/MCDisassembler/MCRelocationInfo.cpp
91330d4828eSDimitry AndricSRCS_XDW+=	MC/MCDisassembler/MCSymbolizer.cpp
914986e05bcSDimitry AndricSRCS_MIN+=	MC/MCDwarf.cpp
915986e05bcSDimitry AndricSRCS_MIN+=	MC/MCELFObjectTargetWriter.cpp
916986e05bcSDimitry AndricSRCS_MIN+=	MC/MCELFStreamer.cpp
917986e05bcSDimitry AndricSRCS_MIN+=	MC/MCExpr.cpp
918986e05bcSDimitry AndricSRCS_MIN+=	MC/MCFragment.cpp
9195f757f3fSDimitry AndricSRCS_MIN+=	MC/MCGOFFStreamer.cpp
920986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInst.cpp
921986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInstPrinter.cpp
922986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInstrAnalysis.cpp
923986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInstrDesc.cpp
92448aaf27bSDimitry AndricSRCS_MIN+=	MC/MCInstrInfo.cpp
925986e05bcSDimitry AndricSRCS_MIN+=	MC/MCLinkerOptimizationHint.cpp
926986e05bcSDimitry AndricSRCS_MIN+=	MC/MCMachOStreamer.cpp
927986e05bcSDimitry AndricSRCS_MIN+=	MC/MCMachObjectTargetWriter.cpp
928986e05bcSDimitry AndricSRCS_MIN+=	MC/MCNullStreamer.cpp
929986e05bcSDimitry AndricSRCS_MIN+=	MC/MCObjectFileInfo.cpp
930986e05bcSDimitry AndricSRCS_MIN+=	MC/MCObjectStreamer.cpp
931986e05bcSDimitry AndricSRCS_MIN+=	MC/MCObjectWriter.cpp
932986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/AsmLexer.cpp
933986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/AsmParser.cpp
934986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/COFFAsmParser.cpp
935986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/DarwinAsmParser.cpp
936986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/ELFAsmParser.cpp
9375e801ac6SDimitry AndricSRCS_MIN+=	MC/MCParser/GOFFAsmParser.cpp
938986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCAsmLexer.cpp
939986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCAsmParser.cpp
940986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCAsmParserExtension.cpp
941986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCTargetAsmParser.cpp
9425e86819cSDimitry AndricSRCS_MIN+=	MC/MCParser/WasmAsmParser.cpp
943fe6060f1SDimitry AndricSRCS_MIN+=	MC/MCParser/XCOFFAsmParser.cpp
944e8d8bef9SDimitry AndricSRCS_MIN+=	MC/MCPseudoProbe.cpp
945986e05bcSDimitry AndricSRCS_MIN+=	MC/MCRegisterInfo.cpp
94681ad6265SDimitry AndricSRCS_MIN+=	MC/MCSPIRVStreamer.cpp
947986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSchedule.cpp
948986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSection.cpp
949986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSectionCOFF.cpp
95081ad6265SDimitry AndricSRCS_MIN+=	MC/MCSectionDXContainer.cpp
951986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSectionELF.cpp
952986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSectionMachO.cpp
9535897d2f0SDimitry AndricSRCS_MIN+=	MC/MCSectionWasm.cpp
9544014a71fSDimitry AndricSRCS_MIN+=	MC/MCSectionXCOFF.cpp
955986e05bcSDimitry AndricSRCS_MIN+=	MC/MCStreamer.cpp
956986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSubtargetInfo.cpp
957986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSymbol.cpp
958986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSymbolELF.cpp
95948aaf27bSDimitry AndricSRCS_MIN+=	MC/MCSymbolXCOFF.cpp
960986e05bcSDimitry AndricSRCS_MIN+=	MC/MCTargetOptions.cpp
96148aaf27bSDimitry AndricSRCS_MIN+=	MC/MCTargetOptionsCommandFlags.cpp
962986e05bcSDimitry AndricSRCS_MIN+=	MC/MCValue.cpp
9635897d2f0SDimitry AndricSRCS_MIN+=	MC/MCWasmStreamer.cpp
964986e05bcSDimitry AndricSRCS_MIN+=	MC/MCWin64EH.cpp
965edd7eaddSDimitry AndricSRCS_MIN+=	MC/MCWinCOFFStreamer.cpp
966986e05bcSDimitry AndricSRCS_MIN+=	MC/MCWinEH.cpp
9674014a71fSDimitry AndricSRCS_MIN+=	MC/MCXCOFFObjectTargetWriter.cpp
9685f757f3fSDimitry AndricSRCS_MIN+=	MC/MCXCOFFStreamer.cpp
969986e05bcSDimitry AndricSRCS_MIN+=	MC/MachObjectWriter.cpp
97081ad6265SDimitry AndricSRCS_MIN+=	MC/SPIRVObjectWriter.cpp
971986e05bcSDimitry AndricSRCS_MIN+=	MC/StringTableBuilder.cpp
9725e801ac6SDimitry AndricSRCS_MIN+=	MC/TargetRegistry.cpp
9739f6e9a9fSDimitry AndricSRCS_MIN+=	MC/WasmObjectWriter.cpp
974986e05bcSDimitry AndricSRCS_MIN+=	MC/WinCOFFObjectWriter.cpp
9754014a71fSDimitry AndricSRCS_MIN+=	MC/XCOFFObjectWriter.cpp
976b1ae9102SDimitry AndricSRCS_EXT+=	MCA/CodeEmitter.cpp
977efa75597SDimitry AndricSRCS_EXT+=	MCA/Context.cpp
978fe6060f1SDimitry AndricSRCS_EXT+=	MCA/CustomBehaviour.cpp
979efa75597SDimitry AndricSRCS_EXT+=	MCA/HWEventListener.cpp
980efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/HardwareUnit.cpp
981efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/LSUnit.cpp
982efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/RegisterFile.cpp
983efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/ResourceManager.cpp
984efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/RetireControlUnit.cpp
985efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/Scheduler.cpp
986efa75597SDimitry AndricSRCS_EXT+=	MCA/InstrBuilder.cpp
987efa75597SDimitry AndricSRCS_EXT+=	MCA/Instruction.cpp
988efa75597SDimitry AndricSRCS_EXT+=	MCA/Pipeline.cpp
989efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/DispatchStage.cpp
990efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/EntryStage.cpp
991efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/ExecuteStage.cpp
992fe6060f1SDimitry AndricSRCS_EXT+=	MCA/Stages/InOrderIssueStage.cpp
993efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/InstructionTables.cpp
99424b8043eSDimitry AndricSRCS_EXT+=	MCA/Stages/MicroOpQueueStage.cpp
995efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/RetireStage.cpp
996efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/Stage.cpp
997efa75597SDimitry AndricSRCS_EXT+=	MCA/Support.cpp
9985e801ac6SDimitry AndricSRCS_EXT+=	MCA/View.cpp
99981ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/Archive.cpp
100081ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/COFF/COFFObjcopy.cpp
100181ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/COFF/COFFObject.cpp
100281ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/COFF/COFFReader.cpp
100381ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/COFF/COFFWriter.cpp
100481ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/CommonConfig.cpp
100581ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/ConfigManager.cpp
100681ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/ELF/ELFObjcopy.cpp
100781ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/ELF/ELFObject.cpp
100881ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/MachO/MachOLayoutBuilder.cpp
100981ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/MachO/MachOObjcopy.cpp
101081ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/MachO/MachOObject.cpp
101181ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/MachO/MachOReader.cpp
101281ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/MachO/MachOWriter.cpp
101381ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/ObjCopy.cpp
101481ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/XCOFF/XCOFFObjcopy.cpp
101581ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/XCOFF/XCOFFReader.cpp
101681ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/XCOFF/XCOFFWriter.cpp
101781ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/wasm/WasmObjcopy.cpp
101881ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/wasm/WasmObject.cpp
101981ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/wasm/WasmReader.cpp
102081ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/wasm/WasmWriter.cpp
1021986e05bcSDimitry AndricSRCS_MIN+=	Object/Archive.cpp
1022986e05bcSDimitry AndricSRCS_MIN+=	Object/ArchiveWriter.cpp
1023986e05bcSDimitry AndricSRCS_MIN+=	Object/Binary.cpp
10242e47f35bSDimitry AndricSRCS_MIN+=	Object/BuildID.cpp
10259c954a48SEd MasteSRCS_MIN+=	Object/COFFImportFile.cpp
10262e47f35bSDimitry AndricSRCS_MIN+=	Object/COFFModuleDefinition.cpp
1027986e05bcSDimitry AndricSRCS_MIN+=	Object/COFFObjectFile.cpp
1028f1a29dd3SDimitry AndricSRCS_MIN+=	Object/Decompressor.cpp
1029986e05bcSDimitry AndricSRCS_MIN+=	Object/ELF.cpp
1030986e05bcSDimitry AndricSRCS_MIN+=	Object/ELFObjectFile.cpp
1031986e05bcSDimitry AndricSRCS_MIN+=	Object/Error.cpp
1032fe6060f1SDimitry AndricSRCS_MIW+=	Object/FaultMapParser.cpp
1033986e05bcSDimitry AndricSRCS_MIN+=	Object/IRObjectFile.cpp
10345897d2f0SDimitry AndricSRCS_MIN+=	Object/IRSymtab.cpp
1035986e05bcSDimitry AndricSRCS_MIN+=	Object/MachOObjectFile.cpp
10362e47f35bSDimitry AndricSRCS_MIN+=	Object/MachOUniversal.cpp
1037021385abSAlex RichardsonSRCS_MIW+=	Object/MachOUniversalWriter.cpp
10382e47f35bSDimitry AndricSRCS_MIN+=	Object/Minidump.cpp
103909bfd043SDimitry AndricSRCS_MIN+=	Object/ModuleSymbolTable.cpp
1040986e05bcSDimitry AndricSRCS_EXT+=	Object/Object.cpp
1041986e05bcSDimitry AndricSRCS_MIN+=	Object/ObjectFile.cpp
10422e47f35bSDimitry AndricSRCS_MIN+=	Object/OffloadBinary.cpp
1043986e05bcSDimitry AndricSRCS_MIN+=	Object/RecordStreamer.cpp
10442e47f35bSDimitry AndricSRCS_MIN+=	Object/RelocationResolver.cpp
10450db9a49eSDimitry AndricSRCS_MIW+=	Object/SymbolSize.cpp
1046986e05bcSDimitry AndricSRCS_MIN+=	Object/SymbolicFile.cpp
10472e47f35bSDimitry AndricSRCS_MIN+=	Object/TapiFile.cpp
10482e47f35bSDimitry AndricSRCS_MIN+=	Object/TapiUniversal.cpp
104909bfd043SDimitry AndricSRCS_MIN+=	Object/WasmObjectFile.cpp
10500db9a49eSDimitry AndricSRCS_MIW+=	Object/WindowsMachineFlag.cpp
1051bbd32193SDimitry AndricSRCS_MIN+=	Object/WindowsResource.cpp
10524014a71fSDimitry AndricSRCS_MIN+=	Object/XCOFFObjectFile.cpp
1053986e05bcSDimitry AndricSRCS_MIN+=	ObjectYAML/COFFYAML.cpp
10542e47f35bSDimitry AndricSRCS_MIN+=	ObjectYAML/CodeViewYAMLDebugSections.cpp
10552e47f35bSDimitry AndricSRCS_MIN+=	ObjectYAML/CodeViewYAMLSymbols.cpp
10562e47f35bSDimitry AndricSRCS_MIN+=	ObjectYAML/CodeViewYAMLTypeHashing.cpp
10572e47f35bSDimitry AndricSRCS_MIN+=	ObjectYAML/CodeViewYAMLTypes.cpp
10582e47f35bSDimitry AndricSRCS_MIN+=	ObjectYAML/DWARFEmitter.cpp
105909bfd043SDimitry AndricSRCS_MIN+=	ObjectYAML/DWARFYAML.cpp
10602e47f35bSDimitry AndricSRCS_MIN+=	ObjectYAML/ELFEmitter.cpp
1061986e05bcSDimitry AndricSRCS_MIN+=	ObjectYAML/ELFYAML.cpp
1062986e05bcSDimitry AndricSRCS_MIN+=	ObjectYAML/MachOYAML.cpp
10632e47f35bSDimitry AndricSRCS_MIN+=	ObjectYAML/YAML.cpp
1064986e05bcSDimitry AndricSRCS_MIN+=	Option/Arg.cpp
1065986e05bcSDimitry AndricSRCS_MIN+=	Option/ArgList.cpp
1066986e05bcSDimitry AndricSRCS_MIN+=	Option/OptTable.cpp
1067986e05bcSDimitry AndricSRCS_MIN+=	Option/Option.cpp
10685e801ac6SDimitry AndricSRCS_MIN+=	Passes/OptimizationLevel.cpp
106909bfd043SDimitry AndricSRCS_MIN+=	Passes/PassBuilder.cpp
10705e801ac6SDimitry AndricSRCS_MIN+=	Passes/PassBuilderPipelines.cpp
10714014a71fSDimitry AndricSRCS_MIN+=	Passes/PassPlugin.cpp
10729771cac2SDimitry AndricSRCS_MIN+=	Passes/StandardInstrumentations.cpp
1073986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/Coverage/CoverageMapping.cpp
1074986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/Coverage/CoverageMappingReader.cpp
1075986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/Coverage/CoverageMappingWriter.cpp
10761b49115aSEd MasteSRCS_MIN+=	ProfileData/GCOV.cpp
1077986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/InstrProf.cpp
107804eeddc0SDimitry AndricSRCS_MIN+=	ProfileData/InstrProfCorrelator.cpp
1079986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/InstrProfReader.cpp
1080986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/InstrProfWriter.cpp
108106c3fb27SDimitry AndricSRCS_MIN+=	ProfileData/ItaniumManglingCanonicalizer.cpp
108281ad6265SDimitry AndricSRCS_MIN+=	ProfileData/MemProf.cpp
108336b606aeSDimitry AndricSRCS_COV+=	ProfileData/MemProfReader.cpp
1084986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/ProfileSummaryBuilder.cpp
1085986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/SampleProf.cpp
1086986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/SampleProfReader.cpp
1087961eb443SEd MasteSRCS_MIN+=	ProfileData/SampleProfWriter.cpp
108806c3fb27SDimitry AndricSRCS_MIN+=	ProfileData/SymbolRemappingReader.cpp
1089a2a9ef4bSDimitry AndricSRCS_MIN+=	Remarks/BitstreamRemarkParser.cpp
10909771cac2SDimitry AndricSRCS_MIN+=	Remarks/BitstreamRemarkSerializer.cpp
10914014a71fSDimitry AndricSRCS_MIN+=	Remarks/RemarkFormat.cpp
1092a2a9ef4bSDimitry AndricSRCS_MIN+=	Remarks/RemarkParser.cpp
10939771cac2SDimitry AndricSRCS_MIN+=	Remarks/RemarkSerializer.cpp
109448aaf27bSDimitry AndricSRCS_MIN+=	Remarks/RemarkStreamer.cpp
10954014a71fSDimitry AndricSRCS_MIN+=	Remarks/RemarkStringTable.cpp
1096a2a9ef4bSDimitry AndricSRCS_MIN+=	Remarks/YAMLRemarkParser.cpp
10974014a71fSDimitry AndricSRCS_MIN+=	Remarks/YAMLRemarkSerializer.cpp
1098054f9817SDimitry AndricSRCS_MIN+=	Support/ABIBreak.cpp
1099e8d8bef9SDimitry AndricSRCS_MIN+=	Support/APFixedPoint.cpp
1100986e05bcSDimitry AndricSRCS_MIN+=	Support/APFloat.cpp
1101986e05bcSDimitry AndricSRCS_MIN+=	Support/APInt.cpp
1102986e05bcSDimitry AndricSRCS_MIN+=	Support/APSInt.cpp
11035897d2f0SDimitry AndricSRCS_MIN+=	Support/ARMAttributeParser.cpp
1104986e05bcSDimitry AndricSRCS_MIN+=	Support/ARMBuildAttrs.cpp
11051b85b68dSCameron KatriSRCS_MIN+=	Support/ARMWinEH.cpp
1106986e05bcSDimitry AndricSRCS_MIN+=	Support/Allocator.cpp
1107bdd1243dSDimitry AndricSRCS_MIN+=	Support/BLAKE3/blake3.c
11085f757f3fSDimitry Andric.if ${TARGET_ARCH} == "amd64"
11095f757f3fSDimitry AndricSRCS_MIN+=	Support/BLAKE3/blake3_avx2_x86-64_unix.S
11105f757f3fSDimitry AndricSRCS_MIN+=	Support/BLAKE3/blake3_avx512_x86-64_unix.S
11115f757f3fSDimitry Andric.endif
1112bdd1243dSDimitry AndricSRCS_MIN+=	Support/BLAKE3/blake3_dispatch.c
1113fcaf7f86SDimitry Andric.if ${TARGET_ARCH} == "aarch64"
1114bdd1243dSDimitry AndricSRCS_MIN+=	Support/BLAKE3/blake3_neon.c
1115fcaf7f86SDimitry Andric.endif
1116bdd1243dSDimitry AndricSRCS_MIN+=	Support/BLAKE3/blake3_portable.c
1117fcaf7f86SDimitry Andric.if ${TARGET_ARCH} == "amd64"
1118bdd1243dSDimitry AndricSRCS_MIN+=	Support/BLAKE3/blake3_sse2_x86-64_unix.S
1119bdd1243dSDimitry AndricSRCS_MIN+=	Support/BLAKE3/blake3_sse41_x86-64_unix.S
1120fcaf7f86SDimitry Andric.endif
112106c3fb27SDimitry AndricSRCS_COV+=	Support/BalancedPartitioning.cpp
11225897d2f0SDimitry AndricSRCS_MIN+=	Support/BinaryStreamError.cpp
11235897d2f0SDimitry AndricSRCS_MIN+=	Support/BinaryStreamReader.cpp
1124d8866befSDimitry AndricSRCS_MIN+=	Support/BinaryStreamRef.cpp
11255897d2f0SDimitry AndricSRCS_MIN+=	Support/BinaryStreamWriter.cpp
1126986e05bcSDimitry AndricSRCS_MIN+=	Support/BlockFrequency.cpp
1127986e05bcSDimitry AndricSRCS_MIN+=	Support/BranchProbability.cpp
11285e86819cSDimitry AndricSRCS_MIN+=	Support/BuryPointer.cpp
11290db9a49eSDimitry AndricSRCS_MIW+=	Support/COM.cpp
11304d4aa256SDimitry AndricSRCS_MIN+=	Support/CRC.cpp
113181ad6265SDimitry AndricSRCS_MIN+=	Support/CachePruning.cpp
113281ad6265SDimitry AndricSRCS_MIW+=	Support/Caching.cpp
113309bfd043SDimitry AndricSRCS_MIN+=	Support/Chrono.cpp
113436cb3905SDimitry AndricSRCS_MIN+=	Support/CodeGenCoverage.cpp
1135986e05bcSDimitry AndricSRCS_MIN+=	Support/CommandLine.cpp
1136986e05bcSDimitry AndricSRCS_MIN+=	Support/Compression.cpp
113709bfd043SDimitry AndricSRCS_MIN+=	Support/ConvertUTF.cpp
1138986e05bcSDimitry AndricSRCS_MIN+=	Support/ConvertUTFWrapper.cpp
1139986e05bcSDimitry AndricSRCS_MIN+=	Support/CrashRecoveryContext.cpp
1140986e05bcSDimitry AndricSRCS_MIN+=	Support/DAGDeltaAlgorithm.cpp
11419f6e9a9fSDimitry AndricSRCS_MIN+=	Support/DJB.cpp
1142986e05bcSDimitry AndricSRCS_MIN+=	Support/DataExtractor.cpp
1143986e05bcSDimitry AndricSRCS_MIN+=	Support/Debug.cpp
11445897d2f0SDimitry AndricSRCS_MIN+=	Support/DebugCounter.cpp
1145986e05bcSDimitry AndricSRCS_MIN+=	Support/DeltaAlgorithm.cpp
11465e801ac6SDimitry AndricSRCS_MIN+=	Support/DivisionByConstantInfo.cpp
1147986e05bcSDimitry AndricSRCS_MIN+=	Support/DynamicLibrary.cpp
114848aaf27bSDimitry AndricSRCS_MIN+=	Support/ELFAttributeParser.cpp
114948aaf27bSDimitry AndricSRCS_MIN+=	Support/ELFAttributes.cpp
1150986e05bcSDimitry AndricSRCS_MIN+=	Support/Errno.cpp
1151986e05bcSDimitry AndricSRCS_MIN+=	Support/Error.cpp
1152986e05bcSDimitry AndricSRCS_MIN+=	Support/ErrorHandling.cpp
11530fca6ea1SDimitry AndricSRCS_MIN+=	Support/ExponentialBackoff.cpp
1154fe6060f1SDimitry AndricSRCS_MIN+=	Support/ExtensibleRTTI.cpp
1155e8d8bef9SDimitry AndricSRCS_MIN+=	Support/FileCollector.cpp
11562e47f35bSDimitry AndricSRCS_MIN+=	Support/FileOutputBuffer.cpp
11579771cac2SDimitry AndricSRCS_MIN+=	Support/FileUtilities.cpp
115806c3fb27SDimitry AndricSRCS_MIN+=	Support/FloatingPointMode.cpp
1159986e05bcSDimitry AndricSRCS_MIN+=	Support/FoldingSet.cpp
116009bfd043SDimitry AndricSRCS_MIN+=	Support/FormatVariadic.cpp
1161986e05bcSDimitry AndricSRCS_MIN+=	Support/FormattedStream.cpp
116209bfd043SDimitry AndricSRCS_MIN+=	Support/GlobPattern.cpp
1163986e05bcSDimitry AndricSRCS_MIN+=	Support/GraphWriter.cpp
11640fca6ea1SDimitry AndricSRCS_MIN+=	Support/HexagonAttributeParser.cpp
11650fca6ea1SDimitry AndricSRCS_MIN+=	Support/HexagonAttributes.cpp
11669f6e9a9fSDimitry AndricSRCS_MIN+=	Support/InitLLVM.cpp
1167e8d8bef9SDimitry AndricSRCS_MIN+=	Support/InstructionCost.cpp
1168986e05bcSDimitry AndricSRCS_MIN+=	Support/IntEqClasses.cpp
1169986e05bcSDimitry AndricSRCS_MIN+=	Support/IntervalMap.cpp
11702d31b1b8SDimitry AndricSRCS_MIN+=	Support/JSON.cpp
117136cb3905SDimitry AndricSRCS_MIN+=	Support/KnownBits.cpp
1172986e05bcSDimitry AndricSRCS_MIN+=	Support/LEB128.cpp
1173986e05bcSDimitry AndricSRCS_MIN+=	Support/LineIterator.cpp
1174986e05bcSDimitry AndricSRCS_MIN+=	Support/Locale.cpp
1175986e05bcSDimitry AndricSRCS_MIN+=	Support/LockFileManager.cpp
1176986e05bcSDimitry AndricSRCS_MIN+=	Support/MD5.cpp
11775e801ac6SDimitry AndricSRCS_MIW+=	Support/MSP430AttributeParser.cpp
11785e801ac6SDimitry AndricSRCS_MIW+=	Support/MSP430Attributes.cpp
1179986e05bcSDimitry AndricSRCS_MIN+=	Support/ManagedStatic.cpp
1180986e05bcSDimitry AndricSRCS_MIN+=	Support/MathExtras.cpp
118148aaf27bSDimitry AndricSRCS_MIN+=	Support/MemAlloc.cpp
11822e47f35bSDimitry AndricSRCS_MIN+=	Support/Memory.cpp
1183986e05bcSDimitry AndricSRCS_MIN+=	Support/MemoryBuffer.cpp
1184e8d8bef9SDimitry AndricSRCS_MIN+=	Support/MemoryBufferRef.cpp
118509bfd043SDimitry AndricSRCS_MIN+=	Support/NativeFormatting.cpp
118648aaf27bSDimitry AndricSRCS_MIN+=	Support/OptimizedStructLayout.cpp
11874014a71fSDimitry AndricSRCS_MIN+=	Support/Optional.cpp
118806c3fb27SDimitry AndricSRCS_MIN+=	Support/PGOOptions.cpp
1189e8d8bef9SDimitry AndricSRCS_EXL+=	Support/Parallel.cpp
1190986e05bcSDimitry AndricSRCS_MIN+=	Support/Path.cpp
1191986e05bcSDimitry AndricSRCS_MIN+=	Support/PluginLoader.cpp
1192986e05bcSDimitry AndricSRCS_MIN+=	Support/PrettyStackTrace.cpp
1193986e05bcSDimitry AndricSRCS_MIN+=	Support/Process.cpp
1194986e05bcSDimitry AndricSRCS_MIN+=	Support/Program.cpp
119548aaf27bSDimitry AndricSRCS_MIN+=	Support/RISCVAttributeParser.cpp
119648aaf27bSDimitry AndricSRCS_MIN+=	Support/RISCVAttributes.cpp
11970fca6ea1SDimitry AndricSRCS_MIN+=	Support/RISCVISAUtils.cpp
1198986e05bcSDimitry AndricSRCS_MIN+=	Support/RWMutex.cpp
1199986e05bcSDimitry AndricSRCS_MIN+=	Support/RandomNumberGenerator.cpp
1200986e05bcSDimitry AndricSRCS_MIN+=	Support/Regex.cpp
1201986e05bcSDimitry AndricSRCS_MIN+=	Support/SHA1.cpp
12025e801ac6SDimitry AndricSRCS_MIN+=	Support/SHA256.cpp
1203986e05bcSDimitry AndricSRCS_MIN+=	Support/ScaledNumber.cpp
1204986e05bcSDimitry AndricSRCS_MIN+=	Support/ScopedPrinter.cpp
1205986e05bcSDimitry AndricSRCS_MIN+=	Support/Signals.cpp
12064014a71fSDimitry AndricSRCS_MIN+=	Support/Signposts.cpp
12070fca6ea1SDimitry AndricSRCS_MIN+=	Support/SipHash.cpp
1208986e05bcSDimitry AndricSRCS_MIN+=	Support/SmallPtrSet.cpp
1209986e05bcSDimitry AndricSRCS_MIN+=	Support/SmallVector.cpp
1210986e05bcSDimitry AndricSRCS_MIN+=	Support/SourceMgr.cpp
1211986e05bcSDimitry AndricSRCS_MIN+=	Support/SpecialCaseList.cpp
1212986e05bcSDimitry AndricSRCS_MIN+=	Support/Statistic.cpp
1213986e05bcSDimitry AndricSRCS_MIN+=	Support/StringExtras.cpp
1214986e05bcSDimitry AndricSRCS_MIN+=	Support/StringMap.cpp
1215986e05bcSDimitry AndricSRCS_MIN+=	Support/StringRef.cpp
1216986e05bcSDimitry AndricSRCS_MIN+=	Support/StringSaver.cpp
121748aaf27bSDimitry AndricSRCS_MIN+=	Support/SuffixTree.cpp
121806c3fb27SDimitry AndricSRCS_MIN+=	Support/SuffixTreeNode.cpp
1219986e05bcSDimitry AndricSRCS_EXT+=	Support/SystemUtils.cpp
12201ae4f0f6SDimitry AndricSRCS_LLD+=	Support/TarWriter.cpp
12212e47f35bSDimitry AndricSRCS_MIN+=	Support/ThreadPool.cpp
1222986e05bcSDimitry AndricSRCS_MIN+=	Support/Threading.cpp
12234014a71fSDimitry AndricSRCS_MIN+=	Support/TimeProfiler.cpp
1224986e05bcSDimitry AndricSRCS_MIN+=	Support/Timer.cpp
1225986e05bcSDimitry AndricSRCS_MIN+=	Support/ToolOutputFile.cpp
1226986e05bcSDimitry AndricSRCS_MIN+=	Support/Twine.cpp
1227fe6060f1SDimitry AndricSRCS_MIN+=	Support/TypeSize.cpp
1228986e05bcSDimitry AndricSRCS_MIN+=	Support/Unicode.cpp
12299f6e9a9fSDimitry AndricSRCS_MIN+=	Support/UnicodeCaseFold.cpp
123081ad6265SDimitry AndricSRCS_MIN+=	Support/UnicodeNameToCodepoint.cpp
123181ad6265SDimitry AndricSRCS_MIN+=	Support/UnicodeNameToCodepointGenerated.cpp
1232986e05bcSDimitry AndricSRCS_MIN+=	Support/Valgrind.cpp
12339f6e9a9fSDimitry AndricSRCS_MIN+=	Support/VersionTuple.cpp
12345f757f3fSDimitry AndricSRCS_MIN+=	Support/VirtualFileSystem.cpp
12354014a71fSDimitry AndricSRCS_MIN+=	Support/Watchdog.cpp
123680a8c751SEd MasteSRCS_MIN+=	Support/WithColor.cpp
1237986e05bcSDimitry AndricSRCS_MIN+=	Support/YAMLParser.cpp
1238986e05bcSDimitry AndricSRCS_MIN+=	Support/YAMLTraits.cpp
123923559b6aSDimitry AndricSRCS_FUL+=	Support/Z3Solver.cpp
1240986e05bcSDimitry AndricSRCS_MIN+=	Support/circular_raw_ostream.cpp
1241986e05bcSDimitry AndricSRCS_MIN+=	Support/raw_os_ostream.cpp
1242986e05bcSDimitry AndricSRCS_MIN+=	Support/raw_ostream.cpp
1243cb14a3feSDimitry AndricSRCS_MIN+=	Support/raw_socket_stream.cpp
1244986e05bcSDimitry AndricSRCS_MIN+=	Support/regcomp.c
1245986e05bcSDimitry AndricSRCS_MIN+=	Support/regerror.c
1246986e05bcSDimitry AndricSRCS_MIN+=	Support/regexec.c
1247986e05bcSDimitry AndricSRCS_MIN+=	Support/regfree.c
1248986e05bcSDimitry AndricSRCS_MIN+=	Support/regstrlcpy.c
124980a8c751SEd MasteSRCS_MIN+=	Support/xxhash.cpp
1250cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no"
1251986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64A53Fix835769.cpp
1252986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64A57FPLoadBalancing.cpp
1253986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64AdvSIMDScalarPass.cpp
12547a6dacacSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64Arm64ECCallLowering.cpp
1255986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64AsmPrinter.cpp
12565e86819cSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64BranchTargets.cpp
12574014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CallingConvention.cpp
1258986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp
1259986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CollectLOH.cpp
12605e86819cSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CompressJumpTables.cpp
1261edd7eaddSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CondBrTuning.cpp
1262986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ConditionOptimizer.cpp
1263986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ConditionalCompares.cpp
1264986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
12654014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ExpandImm.cpp
1266986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ExpandPseudoInsts.cpp
1267b40b48b8SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64FalkorHWPFFix.cpp
1268986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64FastISel.cpp
1269986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64FrameLowering.cpp
127006c3fb27SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64GlobalsTagging.cpp
1271986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ISelDAGToDAG.cpp
1272986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ISelLowering.cpp
1273986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64InstrInfo.cpp
1274986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64LoadStoreOptimizer.cpp
1275fe6060f1SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64LowerHomogeneousPrologEpilog.cpp
1276986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MCInstLower.cpp
12775e801ac6SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MIPeepholeOpt.cpp
127848aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MachineFunctionInfo.cpp
127981ad6265SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MachineScheduler.cpp
12805897d2f0SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MacroFusion.cpp
1281986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64PBQPRegAlloc.cpp
12825f757f3fSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64PointerAuth.cpp
12830fca6ea1SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64PostCoalescerPass.cpp
1284986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64PromoteConstant.cpp
1285986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64RedundantCopyElimination.cpp
1286986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64RegisterInfo.cpp
128736cb3905SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SIMDInstrOpt.cpp
128848aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SLSHardening.cpp
1289986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SelectionDAGInfo.cpp
12905e86819cSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SpeculationHardening.cpp
12914014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64StackTagging.cpp
12929771cac2SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64StackTaggingPreRA.cpp
1293986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64StorePairSuppress.cpp
1294986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64Subtarget.cpp
1295986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64TargetMachine.cpp
1296986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64TargetObjectFile.cpp
1297986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64TargetTransformInfo.cpp
1298986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AsmParser/AArch64AsmParser.cpp
129930d4828eSDimitry AndricSRCS_XDW+=	Target/AArch64/Disassembler/AArch64Disassembler.cpp
130030d4828eSDimitry AndricSRCS_XDW+=	Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp
130148aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64CallLowering.cpp
1302fe6060f1SDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64GlobalISelUtils.cpp
130348aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64InstructionSelector.cpp
130448aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64LegalizerInfo.cpp
1305fe6060f1SDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64O0PreLegalizerCombiner.cpp
130648aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64PostLegalizerCombiner.cpp
1307e8d8bef9SDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64PostLegalizerLowering.cpp
1308e8d8bef9SDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64PostSelectOptimize.cpp
13095f757f3fSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64PreLegalizerCombiner.cpp
131048aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64RegisterBankInfo.cpp
1311986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
1312986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
1313986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp
13144014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp
1315986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
1316986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
1317986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
1318986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
1319986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
1320986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp
1321a580b014SDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp
1322a580b014SDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp
1323bdd1243dSDimitry AndricSRCS_MIN+=	Target/AArch64/SMEABIPass.cpp
132448aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/SVEIntrinsicOpts.cpp
1325986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
1326986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/Utils/AArch64BaseInfo.cpp
1327bdd1243dSDimitry AndricSRCS_MIN+=	Target/AArch64/Utils/AArch64SMEAttributes.cpp
1328cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64
1329cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no"
1330986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/A15SDOptimizer.cpp
1331986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMAsmPrinter.cpp
1332986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMBaseInstrInfo.cpp
1333986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMBaseRegisterInfo.cpp
13344014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMBasicBlockInfo.cpp
1335e8d8bef9SDimitry AndricSRCS_MIN+=	Target/ARM/ARMBlockPlacement.cpp
13364824e7fdSDimitry AndricSRCS_MIN+=	Target/ARM/ARMBranchTargets.cpp
13373d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMCallLowering.cpp
13384014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMCallingConv.cpp
1339986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMConstantIslandPass.cpp
1340986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMConstantPoolValue.cpp
1341986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMExpandPseudoInsts.cpp
1342986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMFastISel.cpp
134381ad6265SDimitry AndricSRCS_MIN+=	Target/ARM/ARMFixCortexA57AES1742098Pass.cpp
1344986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMFrameLowering.cpp
1345986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMHazardRecognizer.cpp
1346986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMISelDAGToDAG.cpp
1347986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMISelLowering.cpp
1348986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMInstrInfo.cpp
13493d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMInstructionSelector.cpp
13503d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMLegalizerInfo.cpp
1351986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMLoadStoreOptimizer.cpp
13524014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMLowOverheadLoops.cpp
1353986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMMCInstLower.cpp
1354986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMMachineFunctionInfo.cpp
1355edd7eaddSDimitry AndricSRCS_MIN+=	Target/ARM/ARMMacroFusion.cpp
1356986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMOptimizeBarriersPass.cpp
13579f6e9a9fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMParallelDSP.cpp
13583d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMRegisterBankInfo.cpp
1359986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMRegisterInfo.cpp
1360e8d8bef9SDimitry AndricSRCS_MIN+=	Target/ARM/ARMSLSHardening.cpp
1361986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMSelectionDAGInfo.cpp
1362986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMSubtarget.cpp
1363986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMTargetMachine.cpp
1364986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMTargetObjectFile.cpp
1365986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMTargetTransformInfo.cpp
1366986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/AsmParser/ARMAsmParser.cpp
1367986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Disassembler/ARMDisassembler.cpp
1368986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
1369986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
1370986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
13714014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMInstPrinter.cpp
1372986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp
1373986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
1374986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCExpr.cpp
1375986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
1376986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp
1377986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
1378986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
1379986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp
1380986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp
1381986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp
1382986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MLxExpansionPass.cpp
13839771cac2SDimitry AndricSRCS_MIN+=	Target/ARM/MVEGatherScatterLowering.cpp
1384fe6060f1SDimitry AndricSRCS_MIN+=	Target/ARM/MVELaneInterleavingPass.cpp
1385fe6060f1SDimitry AndricSRCS_MIN+=	Target/ARM/MVETPAndVPTOptimisationsPass.cpp
13869771cac2SDimitry AndricSRCS_MIN+=	Target/ARM/MVETailPredication.cpp
13879771cac2SDimitry AndricSRCS_MIN+=	Target/ARM/MVEVPTBlockPass.cpp
1388986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/TargetInfo/ARMTargetInfo.cpp
1389986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb1FrameLowering.cpp
1390986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb1InstrInfo.cpp
1391986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb2ITBlockPass.cpp
1392986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb2InstrInfo.cpp
1393986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb2SizeReduction.cpp
1394986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ThumbRegisterInfo.cpp
139536cb3905SDimitry AndricSRCS_MIN+=	Target/ARM/Utils/ARMBaseInfo.cpp
1396cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM
139789edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no"
139889edb881SDimitry AndricSRCS_MIN+=	Target/BPF/AsmParser/BPFAsmParser.cpp
13990fca6ea1SDimitry AndricSRCS_MIN+=	Target/BPF/BPFASpaceCastSimplifyPass.cpp
1400a9365f4aSDimitry AndricSRCS_MIN+=	Target/BPF/BPFAbstractMemberAccess.cpp
1401d30dc78fSDimitry AndricSRCS_MIN+=	Target/BPF/BPFAdjustOpt.cpp
140289edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFAsmPrinter.cpp
1403d30dc78fSDimitry AndricSRCS_MIN+=	Target/BPF/BPFCheckAndAdjustIR.cpp
140489edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFFrameLowering.cpp
14055e801ac6SDimitry AndricSRCS_MIN+=	Target/BPF/BPFIRPeephole.cpp
140689edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFISelDAGToDAG.cpp
140789edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFISelLowering.cpp
140889edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFInstrInfo.cpp
140989edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFMCInstLower.cpp
14100a462115SDimitry AndricSRCS_MIN+=	Target/BPF/BPFMIChecking.cpp
1411f9c0a512SDimitry AndricSRCS_MIN+=	Target/BPF/BPFMIPeephole.cpp
1412a9365f4aSDimitry AndricSRCS_MIN+=	Target/BPF/BPFMISimplifyPatchable.cpp
14131c1ab429SDimitry AndricSRCS_MIN+=	Target/BPF/BPFPreserveDIType.cpp
1414442d351bSDimitry AndricSRCS_MIN+=	Target/BPF/BPFPreserveStaticOffset.cpp
141589edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFRegisterInfo.cpp
1416f9c0a512SDimitry AndricSRCS_MIN+=	Target/BPF/BPFSelectionDAGInfo.cpp
141789edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFSubtarget.cpp
141889edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFTargetMachine.cpp
14190a462115SDimitry AndricSRCS_MIN+=	Target/BPF/BTFDebug.cpp
142089edb881SDimitry AndricSRCS_MIN+=	Target/BPF/Disassembler/BPFDisassembler.cpp
1421442d351bSDimitry AndricSRCS_MIN+=	Target/BPF/GISel/BPFCallLowering.cpp
1422442d351bSDimitry AndricSRCS_MIN+=	Target/BPF/GISel/BPFInstructionSelector.cpp
1423442d351bSDimitry AndricSRCS_MIN+=	Target/BPF/GISel/BPFLegalizerInfo.cpp
1424442d351bSDimitry AndricSRCS_MIN+=	Target/BPF/GISel/BPFRegisterBankInfo.cpp
142589edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFAsmBackend.cpp
142689edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
14274014a71fSDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFInstPrinter.cpp
142889edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp
142989edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp
143089edb881SDimitry AndricSRCS_MIN+=	Target/BPF/TargetInfo/BPFTargetInfo.cpp
143189edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF
1432cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no"
1433986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/AsmParser/MipsAsmParser.cpp
143430d4828eSDimitry AndricSRCS_XDW+=	Target/Mips/Disassembler/MipsDisassembler.cpp
1435986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp
1436986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsABIInfo.cpp
1437986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
1438986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
1439986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsELFStreamer.cpp
14404014a71fSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsInstPrinter.cpp
1441986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
1442986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
1443986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCExpr.cpp
1444986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
1445986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
1446986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsOptionRecord.cpp
1447986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
1448f37b6182SDimitry AndricSRCS_MIN+=	Target/Mips/MicroMipsSizeReduction.cpp
1449986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16FrameLowering.cpp
1450986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16HardFloat.cpp
1451986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16HardFloatInfo.cpp
1452986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16ISelDAGToDAG.cpp
1453986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16ISelLowering.cpp
1454986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16InstrInfo.cpp
1455986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16RegisterInfo.cpp
1456986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsAnalyzeImmediate.cpp
1457986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsAsmPrinter.cpp
14589f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsBranchExpansion.cpp
1459986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsCCState.cpp
14609f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsCallLowering.cpp
1461986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsConstantIslandPass.cpp
1462986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsDelaySlotFiller.cpp
14639f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsExpandPseudo.cpp
1464986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsFastISel.cpp
1465986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsFrameLowering.cpp
1466986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsISelDAGToDAG.cpp
1467986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsISelLowering.cpp
1468986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsInstrInfo.cpp
14699f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsInstructionSelector.cpp
14709f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsLegalizerInfo.cpp
1471986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsMCInstLower.cpp
1472986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsMachineFunction.cpp
1473986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsModuleISelDAGToDAG.cpp
14744b1174e2SDimitry AndricSRCS_MIN+=	Target/Mips/MipsMulMulBugPass.cpp
1475986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsOptimizePICCall.cpp
1476986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsOs16.cpp
147781ad6265SDimitry AndricSRCS_MIN+=	Target/Mips/MipsPostLegalizerCombiner.cpp
14785f757f3fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsPreLegalizerCombiner.cpp
14799f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsRegisterBankInfo.cpp
1480986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsRegisterInfo.cpp
1481986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEFrameLowering.cpp
1482986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEISelDAGToDAG.cpp
1483986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEISelLowering.cpp
1484986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEInstrInfo.cpp
1485986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSERegisterInfo.cpp
1486986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSubtarget.cpp
1487986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsTargetMachine.cpp
1488986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsTargetObjectFile.cpp
148981ad6265SDimitry AndricSRCS_MIN+=	Target/Mips/MipsTargetTransformInfo.cpp
1490986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/TargetInfo/MipsTargetInfo.cpp
1491cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS
1492cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no"
1493986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/AsmParser/PPCAsmParser.cpp
1494986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/Disassembler/PPCDisassembler.cpp
1495e8d8bef9SDimitry AndricSRCS_MIN+=	Target/PowerPC/GISel/PPCCallLowering.cpp
1496e8d8bef9SDimitry AndricSRCS_MIN+=	Target/PowerPC/GISel/PPCInstructionSelector.cpp
1497e8d8bef9SDimitry AndricSRCS_MIN+=	Target/PowerPC/GISel/PPCLegalizerInfo.cpp
1498e8d8bef9SDimitry AndricSRCS_MIN+=	Target/PowerPC/GISel/PPCRegisterBankInfo.cpp
1499986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp
1500986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
150148aaf27bSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCELFStreamer.cpp
15024014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCInstPrinter.cpp
1503986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
1504986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
1505986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
1506986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
1507986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCPredicates.cpp
15084014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCXCOFFObjectWriter.cpp
1509fe6060f1SDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCXCOFFStreamer.cpp
1510986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCAsmPrinter.cpp
1511986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCBoolRetToInt.cpp
151236cb3905SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCBranchCoalescing.cpp
1513986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCBranchSelector.cpp
1514986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCCCState.cpp
1515986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCCTRLoops.cpp
151681ad6265SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCCTRLoopsVerify.cpp
15174014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCCallingConv.cpp
1518986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCEarlyReturn.cpp
1519fe6060f1SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCExpandAtomicPseudoInsts.cpp
15205897d2f0SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCExpandISEL.cpp
1521986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCFastISel.cpp
1522986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCFrameLowering.cpp
152381ad6265SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCGenScalarMASSEntries.cpp
1524986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCHazardRecognizers.cpp
1525986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCISelDAGToDAG.cpp
1526986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCISelLowering.cpp
1527986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCInstrInfo.cpp
15289771cac2SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCLoopInstrFormPrep.cpp
15299771cac2SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCLowerMASSVEntries.cpp
1530986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMCInstLower.cpp
1531986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMIPeephole.cpp
1532986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMachineFunctionInfo.cpp
15334014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMachineScheduler.cpp
15345f757f3fSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMacroFusion.cpp
15355f757f3fSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMergeStringPool.cpp
153636cb3905SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCPreEmitPeephole.cpp
153736cb3905SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCReduceCRLogicals.cpp
1538986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCRegisterInfo.cpp
1539986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCSubtarget.cpp
1540986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTLSDynamicCall.cpp
1541986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTOCRegDeps.cpp
1542986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTargetMachine.cpp
1543986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTargetObjectFile.cpp
1544986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTargetTransformInfo.cpp
1545986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCVSXCopy.cpp
1546986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCVSXFMAMutate.cpp
1547986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCVSXSwapRemoval.cpp
1548986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
1549cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC
1550b2689b12SMitchell Horne.if ${MK_LLVM_TARGET_RISCV} != "no"
1551b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/AsmParser/RISCVAsmParser.cpp
1552b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/Disassembler/RISCVDisassembler.cpp
1553bdd1243dSDimitry AndricSRCS_MIN+=	Target/RISCV/GISel/RISCVCallLowering.cpp
1554bdd1243dSDimitry AndricSRCS_MIN+=	Target/RISCV/GISel/RISCVInstructionSelector.cpp
1555bdd1243dSDimitry AndricSRCS_MIN+=	Target/RISCV/GISel/RISCVLegalizerInfo.cpp
15565f757f3fSDimitry AndricSRCS_MIN+=	Target/RISCV/GISel/RISCVO0PreLegalizerCombiner.cpp
15575f757f3fSDimitry AndricSRCS_MIN+=	Target/RISCV/GISel/RISCVPostLegalizerCombiner.cpp
15585f757f3fSDimitry AndricSRCS_MIN+=	Target/RISCV/GISel/RISCVPreLegalizerCombiner.cpp
1559bdd1243dSDimitry AndricSRCS_MIN+=	Target/RISCV/GISel/RISCVRegisterBankInfo.cpp
1560bdd1243dSDimitry AndricSRCS_EXT+=	Target/RISCV/MCA/RISCVCustomBehaviour.cpp
1561b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
1562e8d8bef9SDimitry AndricSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVBaseInfo.cpp
1563b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp
1564b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVELFStreamer.cpp
15654014a71fSDimitry AndricSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVInstPrinter.cpp
1566b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.cpp
1567b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp
1568b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp
15695e801ac6SDimitry AndricSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCObjectFileInfo.cpp
1570b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp
15715f757f3fSDimitry AndricSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMatInt.cpp
1572b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVTargetStreamer.cpp
1573b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVAsmPrinter.cpp
1574fcaf7f86SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVCodeGenPrepare.cpp
15755f757f3fSDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVDeadRegisterDefinitions.cpp
157648aaf27bSDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVExpandAtomicPseudoInsts.cpp
1577b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVExpandPseudoInsts.cpp
1578b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVFrameLowering.cpp
15795e801ac6SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVGatherScatterLowering.cpp
1580b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVISelDAGToDAG.cpp
1581b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVISelLowering.cpp
15825f757f3fSDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVInsertReadWriteCSR.cpp
15835f757f3fSDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVInsertVSETVLI.cpp
15845f757f3fSDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVInsertWriteVXRM.cpp
15855f757f3fSDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVInstrInfo.cpp
15863a9a9c0cSDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVMachineFunctionInfo.cpp
158781ad6265SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVMakeCompressible.cpp
1588b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVMergeBaseOffset.cpp
158906c3fb27SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVMoveMerger.cpp
159006c3fb27SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVOptWInstrs.cpp
15915f757f3fSDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVPostRAExpandPseudoInsts.cpp
159206c3fb27SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVPushPopOptimizer.cpp
159381ad6265SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVRedundantCopyElimination.cpp
1594b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVRegisterInfo.cpp
1595b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVSubtarget.cpp
1596b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVTargetMachine.cpp
1597b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVTargetObjectFile.cpp
1598869fe6d5SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVTargetTransformInfo.cpp
15990fca6ea1SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVVectorPeephole.cpp
1600b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/TargetInfo/RISCVTargetInfo.cpp
1601b2689b12SMitchell Horne.endif # MK_LLVM_TARGET_RISCV
1602986e05bcSDimitry AndricSRCS_MIN+=	Target/Target.cpp
1603986e05bcSDimitry AndricSRCS_MIN+=	Target/TargetLoweringObjectFile.cpp
1604986e05bcSDimitry AndricSRCS_MIN+=	Target/TargetMachine.cpp
1605986e05bcSDimitry AndricSRCS_MIN+=	Target/TargetMachineC.cpp
1606cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no"
1607986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/AsmParser/X86AsmParser.cpp
160830d4828eSDimitry AndricSRCS_XDW+=	Target/X86/Disassembler/X86Disassembler.cpp
16095f757f3fSDimitry AndricSRCS_MIN+=	Target/X86/GISel/X86CallLowering.cpp
16105f757f3fSDimitry AndricSRCS_MIN+=	Target/X86/GISel/X86InstructionSelector.cpp
16115f757f3fSDimitry AndricSRCS_MIN+=	Target/X86/GISel/X86LegalizerInfo.cpp
16125f757f3fSDimitry AndricSRCS_MIN+=	Target/X86/GISel/X86RegisterBankInfo.cpp
16133a9a9c0cSDimitry AndricSRCS_EXT+=	Target/X86/MCA/X86CustomBehaviour.cpp
16144014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86ATTInstPrinter.cpp
1615986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86AsmBackend.cpp
1616986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp
161706c3fb27SDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86EncodingOptimization.cpp
16184014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86InstComments.cpp
16194014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86InstPrinterCommon.cpp
16204014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86IntelInstPrinter.cpp
1621986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
1622986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
1623986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
1624986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
162581ad6265SDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MnemonicTables.cpp
162648aaf27bSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86ShuffleDecode.cpp
1627986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
1628986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
162936cb3905SDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp
1630986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/TargetInfo/X86TargetInfo.cpp
163106c3fb27SDimitry AndricSRCS_MIN+=	Target/X86/X86ArgumentStackSlotRebase.cpp
1632986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86AsmPrinter.cpp
16339f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86AvoidStoreForwardingBlocks.cpp
16349771cac2SDimitry AndricSRCS_MIN+=	Target/X86/X86AvoidTrailingCall.cpp
1635986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86CallFrameOptimization.cpp
163609bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86CallingConv.cpp
1637b40b48b8SDimitry AndricSRCS_MIN+=	Target/X86/X86CmovConversion.cpp
16387a6dacacSDimitry AndricSRCS_MIN+=	Target/X86/X86CodeGenPassBuilder.cpp
16391db9f3b2SDimitry AndricSRCS_MIN+=	Target/X86/X86CompressEVEX.cpp
16405e86819cSDimitry AndricSRCS_MIN+=	Target/X86/X86DiscriminateMemOps.cpp
164136cb3905SDimitry AndricSRCS_MIN+=	Target/X86/X86DomainReassignment.cpp
16425e801ac6SDimitry AndricSRCS_MIN+=	Target/X86/X86DynAllocaExpander.cpp
1643986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ExpandPseudo.cpp
1644986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FastISel.cpp
164581ad6265SDimitry AndricSRCS_MIN+=	Target/X86/X86FastPreTileConfig.cpp
1646fe6060f1SDimitry AndricSRCS_MIN+=	Target/X86/X86FastTileConfig.cpp
1647986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FixupBWInsts.cpp
164806c3fb27SDimitry AndricSRCS_MIN+=	Target/X86/X86FixupInstTuning.cpp
1649986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FixupLEAs.cpp
1650986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FixupSetCC.cpp
165106c3fb27SDimitry AndricSRCS_MIN+=	Target/X86/X86FixupVectorConstants.cpp
16520556cfadSDimitry AndricSRCS_MIN+=	Target/X86/X86FlagsCopyLowering.cpp
1653986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FloatingPoint.cpp
1654986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FrameLowering.cpp
1655986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ISelDAGToDAG.cpp
1656986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ISelLowering.cpp
16575f757f3fSDimitry AndricSRCS_MIN+=	Target/X86/X86ISelLoweringCall.cpp
16589f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86IndirectBranchTracking.cpp
16590946e70aSDimitry AndricSRCS_MIN+=	Target/X86/X86IndirectThunks.cpp
16605e86819cSDimitry AndricSRCS_MIN+=	Target/X86/X86InsertPrefetch.cpp
166148aaf27bSDimitry AndricSRCS_MIN+=	Target/X86/X86InsertWait.cpp
1662e8d8bef9SDimitry AndricSRCS_MIN+=	Target/X86/X86InstCombineIntrinsic.cpp
166309bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86InstrFMA3Info.cpp
16649f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86InstrFoldTables.cpp
1665986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86InstrInfo.cpp
166609bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86InterleavedAccess.cpp
16670946e70aSDimitry AndricSRCS_MIN+=	Target/X86/X86LoadValueInjectionLoadHardening.cpp
16680946e70aSDimitry AndricSRCS_MIN+=	Target/X86/X86LoadValueInjectionRetHardening.cpp
1669fe6060f1SDimitry AndricSRCS_MIN+=	Target/X86/X86LowerAMXIntrinsics.cpp
1670e8d8bef9SDimitry AndricSRCS_MIN+=	Target/X86/X86LowerAMXType.cpp
1671fe6060f1SDimitry AndricSRCS_MIN+=	Target/X86/X86LowerTileCopy.cpp
1672986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86MCInstLower.cpp
1673986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86MachineFunctionInfo.cpp
16745897d2f0SDimitry AndricSRCS_MIN+=	Target/X86/X86MacroFusion.cpp
1675986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86OptimizeLEAs.cpp
1676986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86PadShortFunction.cpp
167748aaf27bSDimitry AndricSRCS_MIN+=	Target/X86/X86PartialReduction.cpp
1678e8d8bef9SDimitry AndricSRCS_MIN+=	Target/X86/X86PreTileConfig.cpp
1679986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86RegisterInfo.cpp
1680753f127fSDimitry AndricSRCS_MIN+=	Target/X86/X86ReturnThunks.cpp
1681986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86SelectionDAGInfo.cpp
1682986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ShuffleDecodeConstantPool.cpp
168348aaf27bSDimitry AndricSRCS_MIN+=	Target/X86/X86SpeculativeExecutionSideEffectSuppression.cpp
16849f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86SpeculativeLoadHardening.cpp
1685986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86Subtarget.cpp
1686986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86TargetMachine.cpp
1687986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86TargetObjectFile.cpp
1688986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86TargetTransformInfo.cpp
1689e8d8bef9SDimitry AndricSRCS_MIN+=	Target/X86/X86TileConfig.cpp
1690986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86VZeroUpper.cpp
1691986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86WinEHState.cpp
16920fca6ea1SDimitry AndricSRCS_MIN+=	Target/X86/X86WinFixupBufferSecurityCheck.cpp
1693cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86
1694bdd1243dSDimitry AndricSRCS_MIN+=	TargetParser/AArch64TargetParser.cpp
1695bdd1243dSDimitry AndricSRCS_MIN+=	TargetParser/ARMTargetParser.cpp
1696bdd1243dSDimitry AndricSRCS_MIN+=	TargetParser/ARMTargetParserCommon.cpp
1697bdd1243dSDimitry AndricSRCS_MIN+=	TargetParser/CSKYTargetParser.cpp
1698bdd1243dSDimitry AndricSRCS_MIN+=	TargetParser/Host.cpp
1699bdd1243dSDimitry AndricSRCS_MIN+=	TargetParser/LoongArchTargetParser.cpp
17000fca6ea1SDimitry AndricSRCS_MIN+=	TargetParser/RISCVISAInfo.cpp
1701bdd1243dSDimitry AndricSRCS_MIN+=	TargetParser/RISCVTargetParser.cpp
170206c3fb27SDimitry AndricSRCS_MIN+=	TargetParser/SubtargetFeature.cpp
1703bdd1243dSDimitry AndricSRCS_MIN+=	TargetParser/TargetParser.cpp
1704bdd1243dSDimitry AndricSRCS_MIN+=	TargetParser/Triple.cpp
1705bdd1243dSDimitry AndricSRCS_MIN+=	TargetParser/X86TargetParser.cpp
17062e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/Architecture.cpp
17072e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/ArchitectureSet.cpp
1708cb14a3feSDimitry AndricSRCS_MIW+=	TextAPI/BinaryReader/DylibReader.cpp
17092e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/InterfaceFile.cpp
17102e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/PackedVersion.cpp
17112e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/Platform.cpp
1712cb14a3feSDimitry AndricSRCS_MIW+=	TextAPI/RecordVisitor.cpp
17132e47f35bSDimitry AndricSRCS_MIW+=	TextAPI/RecordsSlice.cpp
17142e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/Symbol.cpp
17152e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/SymbolSet.cpp
17162e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/Target.cpp
17172e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/TextAPIError.cpp
17182e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/TextStub.cpp
17192e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/TextStubCommon.cpp
17202e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/TextStubV5.cpp
17212e47f35bSDimitry AndricSRCS_MIN+=	TextAPI/Utils.cpp
17229c954a48SEd MasteSRCS_MIN+=	ToolDrivers/llvm-dlltool/DlltoolDriver.cpp
17230db9a49eSDimitry AndricSRCS_MIW+=	ToolDrivers/llvm-lib/LibDriver.cpp
17249f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
17259f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/AggressiveInstCombine/TruncInstCombine.cpp
17269771cac2SDimitry AndricSRCS_MIN+=	Transforms/CFGuard/CFGuard.cpp
172709bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroCleanup.cpp
172881ad6265SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroConditionalWrapper.cpp
172909bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroEarly.cpp
173009bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroElide.cpp
173109bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroFrame.cpp
173209bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroSplit.cpp
173309bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/Coroutines.cpp
17345f757f3fSDimitry AndricSRCS_MIN+=	Transforms/HipStdPar/HipStdPar.cpp
173509bfd043SDimitry AndricSRCS_MIN+=	Transforms/IPO/AlwaysInliner.cpp
1736e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/IPO/Annotation2Metadata.cpp
1737986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ArgumentPromotion.cpp
17384014a71fSDimitry AndricSRCS_MIN+=	Transforms/IPO/Attributor.cpp
173948aaf27bSDimitry AndricSRCS_MIN+=	Transforms/IPO/AttributorAttributes.cpp
1740986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/BarrierNoopPass.cpp
1741e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/IPO/BlockExtractor.cpp
174236cb3905SDimitry AndricSRCS_MIN+=	Transforms/IPO/CalledValuePropagation.cpp
1743986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ConstantMerge.cpp
1744986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/CrossDSOCFI.cpp
1745986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/DeadArgumentElimination.cpp
1746986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ElimAvailExtern.cpp
174706c3fb27SDimitry AndricSRCS_MIN+=	Transforms/IPO/EmbedBitcodePass.cpp
17480fca6ea1SDimitry AndricSRCS_MIN+=	Transforms/IPO/ExpandVariadics.cpp
1749986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ExtractGV.cpp
1750986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ForceFunctionAttrs.cpp
1751986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/FunctionAttrs.cpp
1752986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/FunctionImport.cpp
1753fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/IPO/FunctionSpecialization.cpp
1754986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/GlobalDCE.cpp
1755986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/GlobalOpt.cpp
175609bfd043SDimitry AndricSRCS_MIN+=	Transforms/IPO/GlobalSplit.cpp
17575e86819cSDimitry AndricSRCS_MIN+=	Transforms/IPO/HotColdSplitting.cpp
1758986e05bcSDimitry AndricSRCS_EXT+=	Transforms/IPO/IPO.cpp
1759e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/IPO/IROutliner.cpp
1760986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/InferFunctionAttrs.cpp
1761986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/Inliner.cpp
1762986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/Internalize.cpp
1763986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/LoopExtractor.cpp
1764986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/LowerTypeTests.cpp
176506c3fb27SDimitry AndricSRCS_MIN+=	Transforms/IPO/MemProfContextDisambiguation.cpp
1766986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/MergeFunctions.cpp
17675e801ac6SDimitry AndricSRCS_MIN+=	Transforms/IPO/ModuleInliner.cpp
176848aaf27bSDimitry AndricSRCS_MIN+=	Transforms/IPO/OpenMPOpt.cpp
1769986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/PartialInlining.cpp
17709f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/IPO/SCCP.cpp
1771e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/IPO/SampleContextTracker.cpp
1772986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/SampleProfile.cpp
17730fca6ea1SDimitry AndricSRCS_MIN+=	Transforms/IPO/SampleProfileMatcher.cpp
1774e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/IPO/SampleProfileProbe.cpp
1775986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/StripDeadPrototypes.cpp
1776986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/StripSymbols.cpp
17779f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/IPO/SyntheticCountsPropagation.cpp
177809bfd043SDimitry AndricSRCS_MIN+=	Transforms/IPO/ThinLTOBitcodeWriter.cpp
1779986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/WholeProgramDevirt.cpp
1780986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineAddSub.cpp
1781986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineAndOrXor.cpp
17824014a71fSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineAtomicRMW.cpp
1783986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineCalls.cpp
1784986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineCasts.cpp
1785986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineCompares.cpp
1786986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
1787986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineMulDivRem.cpp
178848aaf27bSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineNegator.cpp
1789986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombinePHI.cpp
1790986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineSelect.cpp
1791986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineShifts.cpp
1792986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
1793986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineVectorOps.cpp
1794986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstructionCombining.cpp
1795986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/AddressSanitizer.cpp
179606c3fb27SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/BlockCoverageInference.cpp
1797986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/BoundsChecking.cpp
17989f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/CGProfile.cpp
17995e86819cSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/ControlHeightReduction.cpp
1800986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/DataFlowSanitizer.cpp
1801986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/GCOVProfiling.cpp
180236cb3905SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/HWAddressSanitizer.cpp
1803986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/IndirectCallPromotion.cpp
18044014a71fSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/InstrOrderFile.cpp
1805986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/InstrProfiling.cpp
1806986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/Instrumentation.cpp
1807bdd1243dSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/KCFI.cpp
18080fca6ea1SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/LowerAllowCheckPass.cpp
1809e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/MemProfiler.cpp
1810986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/MemorySanitizer.cpp
18110fca6ea1SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/NumericalStabilitySanitizer.cpp
18120fca6ea1SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PGOCtxProfLowering.cpp
18130fca6ea1SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PGOForceFunctionAttrs.cpp
1814986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PGOInstrumentation.cpp
181524d58133SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PGOMemOPSizeOpt.cpp
18164014a71fSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PoisonChecking.cpp
1817bdd1243dSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/SanitizerBinaryMetadata.cpp
18185f757f3fSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/SanitizerCoverage.cpp
1819986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/ThreadSanitizer.cpp
18209771cac2SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/ValueProfileCollector.cpp
1821986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/DependencyAnalysis.cpp
1822fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARC.cpp
1823986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCAPElim.cpp
1824986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCContract.cpp
1825986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCExpand.cpp
1826986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCOpts.cpp
1827986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ProvenanceAnalysis.cpp
1828986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp
1829986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/PtrState.cpp
1830986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/ADCE.cpp
1831986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/AlignmentFromAssumptions.cpp
1832e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Scalar/AnnotationRemarks.cpp
1833986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/BDCE.cpp
183436cb3905SDimitry AndricSRCS_MIN+=	Transforms/Scalar/CallSiteSplitting.cpp
1835986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/ConstantHoisting.cpp
1836e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Scalar/ConstraintElimination.cpp
1837986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/CorrelatedValuePropagation.cpp
1838986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/DCE.cpp
1839fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Scalar/DFAJumpThreading.cpp
1840986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/DeadStoreElimination.cpp
184136cb3905SDimitry AndricSRCS_MIN+=	Transforms/Scalar/DivRemPairs.cpp
1842986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/EarlyCSE.cpp
1843986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/FlattenCFGPass.cpp
1844986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Float2Int.cpp
1845986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GVN.cpp
1846986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GVNHoist.cpp
1847302affcbSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GVNSink.cpp
1848986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GuardWidening.cpp
1849f1a29dd3SDimitry AndricSRCS_MIN+=	Transforms/Scalar/IVUsersPrinter.cpp
1850986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/IndVarSimplify.cpp
1851986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/InductiveRangeCheckElimination.cpp
1852e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Scalar/InferAddressSpaces.cpp
18535f757f3fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/InferAlignment.cpp
18549f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/InstSimplifyPass.cpp
18550fca6ea1SDimitry AndricSRCS_MIN+=	Transforms/Scalar/JumpTableToSwitch.cpp
1856986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/JumpThreading.cpp
1857986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LICM.cpp
1858f1a29dd3SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopAccessAnalysisPrinter.cpp
1859fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopBoundSplit.cpp
1860986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopDataPrefetch.cpp
1861986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopDeletion.cpp
1862986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopDistribute.cpp
1863e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopFlatten.cpp
18644014a71fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopFuse.cpp
1865986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopIdiomRecognize.cpp
186609bfd043SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopInstSimplify.cpp
1867986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopInterchange.cpp
1868986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopLoadElimination.cpp
1869f1a29dd3SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopPassManager.cpp
18705897d2f0SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopPredication.cpp
1871986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopRotation.cpp
1872986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopSimplifyCFG.cpp
187309bfd043SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopSink.cpp
1874986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopStrengthReduce.cpp
18759f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopUnrollAndJamPass.cpp
18765f757f3fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopUnrollPass.cpp
1877986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopVersioningLICM.cpp
187881ad6265SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerAtomicPass.cpp
18799771cac2SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerConstantIntrinsics.cpp
1880986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerExpectIntrinsic.cpp
1881986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerGuardIntrinsic.cpp
18829771cac2SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerMatrixIntrinsics.cpp
18834014a71fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerWidenableCondition.cpp
18845e86819cSDimitry AndricSRCS_MIN+=	Transforms/Scalar/MakeGuardsExplicit.cpp
1885986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/MemCpyOptimizer.cpp
188636cb3905SDimitry AndricSRCS_MIN+=	Transforms/Scalar/MergeICmps.cpp
1887986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/MergedLoadStoreMotion.cpp
1888986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/NaryReassociate.cpp
188909bfd043SDimitry AndricSRCS_MIN+=	Transforms/Scalar/NewGVN.cpp
1890986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/PartiallyInlineLibCalls.cpp
1891986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/PlaceSafepoints.cpp
1892986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Reassociate.cpp
1893986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Reg2Mem.cpp
1894986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/RewriteStatepointsForGC.cpp
1895986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SCCP.cpp
1896986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SROA.cpp
1897986e05bcSDimitry AndricSRCS_EXT+=	Transforms/Scalar/Scalar.cpp
1898e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Scalar/ScalarizeMaskedMemIntrin.cpp
1899986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Scalarizer.cpp
1900986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
1901f37b6182SDimitry AndricSRCS_MIN+=	Transforms/Scalar/SimpleLoopUnswitch.cpp
1902986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SimplifyCFGPass.cpp
1903986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Sink.cpp
1904986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SpeculativeExecution.cpp
1905986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/StraightLineStrengthReduce.cpp
1906986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/StructurizeCFG.cpp
190781ad6265SDimitry AndricSRCS_MIN+=	Transforms/Scalar/TLSVariableHoist.cpp
1908986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/TailRecursionElimination.cpp
19095e86819cSDimitry AndricSRCS_MIN+=	Transforms/Scalar/WarnMissedTransforms.cpp
191048aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/AMDGPUEmitPrintf.cpp
1911986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/ASanStackFrameLayout.cpp
1912986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/AddDiscriminators.cpp
191348aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/AssumeBundleBuilder.cpp
1914986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BasicBlockUtils.cpp
1915986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BreakCriticalEdges.cpp
1916986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BuildLibCalls.cpp
1917986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BypassSlowDivision.cpp
191848aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/CallGraphUpdater.cpp
191936cb3905SDimitry AndricSRCS_MIN+=	Transforms/Utils/CallPromotionUtils.cpp
19205e86819cSDimitry AndricSRCS_MIN+=	Transforms/Utils/CanonicalizeAliases.cpp
192148aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/CanonicalizeFreezeInLoops.cpp
1922986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CloneFunction.cpp
1923986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CloneModule.cpp
1924986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CodeExtractor.cpp
192504eeddc0SDimitry AndricSRCS_MIN+=	Transforms/Utils/CodeLayout.cpp
19269771cac2SDimitry AndricSRCS_MIN+=	Transforms/Utils/CodeMoverUtils.cpp
192706c3fb27SDimitry AndricSRCS_MIN+=	Transforms/Utils/CountVisits.cpp
1928986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CtorUtils.cpp
19295f757f3fSDimitry AndricSRCS_MIN+=	Transforms/Utils/DXILUpgrade.cpp
193048aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/Debugify.cpp
1931986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/DemoteRegToStack.cpp
193236cb3905SDimitry AndricSRCS_MIN+=	Transforms/Utils/EntryExitInstrumenter.cpp
193309bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/EscapeEnumerator.cpp
1934986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/Evaluator.cpp
193548aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/FixIrreducible.cpp
1936986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/FlattenCFG.cpp
193709bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/FunctionComparator.cpp
1938986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/FunctionImportUtils.cpp
1939986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/GlobalStatus.cpp
19405e86819cSDimitry AndricSRCS_MIN+=	Transforms/Utils/GuardUtils.cpp
1941fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Utils/HelloWorld.cpp
19429771cac2SDimitry AndricSRCS_MIN+=	Transforms/Utils/InjectTLIMappings.cpp
1943986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/InlineFunction.cpp
1944986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/InstructionNamer.cpp
1945986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/IntegerDivision.cpp
1946986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LCSSA.cpp
194709bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/LibCallsShrinkWrap.cpp
1948986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/Local.cpp
19495f757f3fSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopConstrainer.cpp
1950e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopPeel.cpp
19519f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopRotationUtils.cpp
19525f757f3fSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopSimplify.cpp
1953986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUnroll.cpp
19549f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUnrollAndJam.cpp
1955986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUnrollRuntime.cpp
1956986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUtils.cpp
1957986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopVersioning.cpp
195881ad6265SDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerAtomic.cpp
195981ad6265SDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerGlobalDtors.cpp
1960bdd1243dSDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerIFunc.cpp
1961986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerInvoke.cpp
196206c3fb27SDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerMemIntrinsics.cpp
1963986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerSwitch.cpp
1964e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Utils/MatrixUtils.cpp
1965986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/Mem2Reg.cpp
1966fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Utils/MemoryOpRemark.cpp
196781ad6265SDimitry AndricSRCS_MIN+=	Transforms/Utils/MemoryTaggingSupport.cpp
19685f757f3fSDimitry AndricSRCS_MIN+=	Transforms/Utils/MetaRenamer.cpp
196981ad6265SDimitry AndricSRCS_MIN+=	Transforms/Utils/MisExpect.cpp
1970986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/ModuleUtils.cpp
197106c3fb27SDimitry AndricSRCS_MIN+=	Transforms/Utils/MoveAutoInit.cpp
197209bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/NameAnonGlobals.cpp
19735897d2f0SDimitry AndricSRCS_MIN+=	Transforms/Utils/PredicateInfo.cpp
1974986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/PromoteMemoryToRegister.cpp
1975fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Utils/RelLookupTableConverter.cpp
1976fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Utils/SCCPSolver.cpp
1977986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SSAUpdater.cpp
1978fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Utils/SSAUpdaterBulk.cpp
19794824e7fdSDimitry AndricSRCS_MIN+=	Transforms/Utils/SampleProfileInference.cpp
1980fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Utils/SampleProfileLoaderBaseUtil.cpp
19815f757f3fSDimitry AndricSRCS_MIN+=	Transforms/Utils/SanitizerStats.cpp
19825f757f3fSDimitry AndricSRCS_MIN+=	Transforms/Utils/ScalarEvolutionExpander.cpp
1983986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SimplifyCFG.cpp
1984986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SimplifyIndVar.cpp
1985986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SimplifyLibCalls.cpp
19864014a71fSDimitry AndricSRCS_MIN+=	Transforms/Utils/SizeOpts.cpp
1987986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SplitModule.cpp
198809bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/StripGCRelocates.cpp
198909bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/StripNonLineTableDebugInfo.cpp
1990986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SymbolRewriter.cpp
1991986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/UnifyFunctionExitNodes.cpp
199248aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/UnifyLoopExits.cpp
1993986e05bcSDimitry AndricSRCS_EXT+=	Transforms/Utils/Utils.cpp
19945897d2f0SDimitry AndricSRCS_MIN+=	Transforms/Utils/VNCoercion.cpp
1995986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/ValueMapper.cpp
1996986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/LoadStoreVectorizer.cpp
19970fca6ea1SDimitry AndricSRCS_MIN+=	Transforms/Vectorize/LoopIdiomVectorize.cpp
19989f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/LoopVectorizationLegality.cpp
1999986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/LoopVectorize.cpp
2000986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/SLPVectorizer.cpp
200136cb3905SDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlan.cpp
20025f757f3fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanAnalysis.cpp
20039f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanHCFGBuilder.cpp
200481ad6265SDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanRecipes.cpp
20059771cac2SDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanTransforms.cpp
20069f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanVerifier.cpp
200748aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VectorCombine.cpp
2008986e05bcSDimitry AndricSRCS_EXT+=	Transforms/Vectorize/Vectorize.cpp
200981ad6265SDimitry AndricSRCS_MIN+=	WindowsDriver/MSVCPaths.cpp
2010efa75597SDimitry AndricSRCS_EXT+=	XRay/BlockIndexer.cpp
2011efa75597SDimitry AndricSRCS_EXT+=	XRay/BlockVerifier.cpp
2012efa75597SDimitry AndricSRCS_EXT+=	XRay/FDRRecordProducer.cpp
2013efa75597SDimitry AndricSRCS_EXT+=	XRay/FDRRecords.cpp
2014efa75597SDimitry AndricSRCS_EXT+=	XRay/FDRTraceExpander.cpp
2015efa75597SDimitry AndricSRCS_EXT+=	XRay/FileHeaderReader.cpp
2016050e2df1SDimitry AndricSRCS_EXT+=	XRay/InstrumentationMap.cpp
2017efa75597SDimitry AndricSRCS_EXT+=	XRay/LogBuilderConsumer.cpp
2018efa75597SDimitry AndricSRCS_EXT+=	XRay/RecordInitializer.cpp
201967b158f6SDimitry AndricSRCS_EXT+=	XRay/Trace.cpp
2020986e05bcSDimitry Andric
2021986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_MIN}
2022caf90252SBryan Drewery.if !defined(TOOLS_PREFIX) || ${MK_LLD_BOOTSTRAP} != "no"
202330d4828eSDimitry AndricSRCS_ALL+=	${SRCS_MIW}
202430d4828eSDimitry Andric.endif
2025986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no"
2026986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_EXT}
2027986e05bcSDimitry Andric.endif
2028986e05bcSDimitry Andric.if ${MK_CLANG_FULL} != "no"
2029986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_FUL}
2030986e05bcSDimitry Andric.endif
203178187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLD} != "no" || \
203278187278SBryan Drewery    (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no")
203375bc38b9SEd MasteSRCS_ALL+=	${SRCS_EXL}
203475bc38b9SEd Maste.endif
203578187278SBryan Drewery.if ${MK_LLD} != "no" || \
203678187278SBryan Drewery    (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no")
20370fc5d238SDimitry AndricSRCS_ALL+=	${SRCS_LLD}
20380fc5d238SDimitry Andric.endif
2039986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no"
2040986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_XDB}
2041986e05bcSDimitry Andric.endif
204278187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || ${MK_LLD} != "no" || \
204378187278SBryan Drewery    (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no")
204475bc38b9SEd MasteSRCS_ALL+=	${SRCS_XDL}
204575bc38b9SEd Maste.endif
204630d4828eSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || !defined(TOOLS_PREFIX)
204730d4828eSDimitry AndricSRCS_ALL+=	${SRCS_XDW}
204830d4828eSDimitry Andric.endif
204906c3fb27SDimitry Andric.if ${MK_LLVM_COV} != "no"
205006c3fb27SDimitry AndricSRCS_ALL+=	${SRCS_COV}
205106c3fb27SDimitry Andric.endif
205248aaf27bSDimitry AndricSRCS+=		${GENSRCS}
2053986e05bcSDimitry AndricSRCS+=		${SRCS_ALL:O}
2054986e05bcSDimitry Andric
2055*cf1eaaf4SDimitry Andric# Optimization: for all source files under Target/*/*, use -fvisibility=hidden,
2056*cf1eaaf4SDimitry Andric# which reduces the number of external symbols in the resulting shared library.
2057*cf1eaaf4SDimitry Andric# This is also what upstream does.
2058*cf1eaaf4SDimitry Andric.for src in ${SRCS}
2059*cf1eaaf4SDimitry Andric. if "${src:MTarget/*/*}"
2060*cf1eaaf4SDimitry AndricCFLAGS.${src:T}+=	-fvisibility=hidden
2061*cf1eaaf4SDimitry Andric.info ${src}:	CFLAGS.${src:T}
2062*cf1eaaf4SDimitry Andric. endif
2063*cf1eaaf4SDimitry Andric.endfor
2064*cf1eaaf4SDimitry Andric
206506c3fb27SDimitry Andricllvm/CodeGen/GenVT.inc: ${LLVM_SRCS}/include/llvm/CodeGen/ValueTypes.td
206606c3fb27SDimitry Andric	${LLVM_MIN_TBLGEN} -gen-vt \
206706c3fb27SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
206806c3fb27SDimitry Andric	    ${LLVM_SRCS}/include/llvm/CodeGen/ValueTypes.td
206906c3fb27SDimitry AndricTGHDRS+=	llvm/CodeGen/GenVT.inc
207006c3fb27SDimitry Andric
2071d8ed7fa3SDimitry Andricllvm/Frontend/OpenMP/OMP.h.inc: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
2072d8ed7fa3SDimitry Andric	${LLVM_TBLGEN} --gen-directive-decl \
2073d8ed7fa3SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
207448aaf27bSDimitry Andric	    ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
207548aaf27bSDimitry AndricTGHDRS+=	llvm/Frontend/OpenMP/OMP.h.inc
207648aaf27bSDimitry Andric
2077e8d8bef9SDimitry Andricllvm/Frontend/OpenMP/OMP.inc: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
2078d8ed7fa3SDimitry Andric	${LLVM_TBLGEN} --gen-directive-impl \
2079d8ed7fa3SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
2080d8ed7fa3SDimitry Andric	    ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
2081e8d8bef9SDimitry AndricTGHDRS+=	llvm/Frontend/OpenMP/OMP.inc
208248aaf27bSDimitry Andric
20839f6e9a9fSDimitry Andricllvm/IR/Attributes.inc: ${LLVM_SRCS}/include/llvm/IR/Attributes.td
2084d8ed7fa3SDimitry Andric	${LLVM_TBLGEN} -gen-attrs \
2085d8ed7fa3SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
2086d8ed7fa3SDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Attributes.td
20879f6e9a9fSDimitry AndricTGHDRS+=	llvm/IR/Attributes.inc
2088986e05bcSDimitry Andric
20899f6e9a9fSDimitry Andricllvm/IR/IntrinsicEnums.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
2090d8ed7fa3SDimitry Andric	${LLVM_TBLGEN} -gen-intrinsic-enums \
2091d8ed7fa3SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
2092d8ed7fa3SDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
20939f6e9a9fSDimitry AndricTGHDRS+=	llvm/IR/IntrinsicEnums.inc
20949f6e9a9fSDimitry Andric
20959f6e9a9fSDimitry Andricllvm/IR/IntrinsicImpl.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
2096d8ed7fa3SDimitry Andric	${LLVM_TBLGEN} -gen-intrinsic-impl \
2097d8ed7fa3SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
2098d8ed7fa3SDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
20999f6e9a9fSDimitry AndricTGHDRS+=	llvm/IR/IntrinsicImpl.inc
2100986e05bcSDimitry Andric
21019771cac2SDimitry Andric.for arch in \
2102753f127fSDimitry Andric	AArch64/aarch64 AMDGPU/amdgcn ARM/arm BPF/bpf DirectX/dx \
2103bdd1243dSDimitry Andric	Hexagon/hexagon LoongArch/loongarch Mips/mips NVPTX/nvvm PowerPC/ppc \
21040fca6ea1SDimitry Andric	R600/r600 RISCV/riscv S390/s390 SPIRV/spv VE/ve WebAssembly/wasm \
21050fca6ea1SDimitry Andric	X86/x86 XCore/xcore
21069771cac2SDimitry Andricllvm/IR/Intrinsics${arch:H}.h: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
2107d8ed7fa3SDimitry Andric	${LLVM_TBLGEN} -gen-intrinsic-enums -intrinsic-prefix=${arch:T} \
2108d8ed7fa3SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
2109d8ed7fa3SDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
21109771cac2SDimitry AndricTGHDRS+=	llvm/IR/Intrinsics${arch:H}.h
21119771cac2SDimitry Andric.endfor
21129771cac2SDimitry Andric
21130fca6ea1SDimitry Andric.for arch in AArch64/arm ARM/arm RISCV/riscv
21140fca6ea1SDimitry Andricllvm/TargetParser/${arch:H}TargetParserDef.inc: ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:H}.td
21150fca6ea1SDimitry Andric	${LLVM_TBLGEN} -gen-${arch:T}-target-def \
21160fca6ea1SDimitry Andric	    -I ${LLVM_SRCS}/include -I ${LLVM_SRCS}/lib/Target/${arch:H} \
21170fca6ea1SDimitry Andric	    -d ${.TARGET}.d -o ${.TARGET} ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:H}.td
21180fca6ea1SDimitry AndricTGHDRS+=	llvm/TargetParser/${arch:H}TargetParserDef.inc
21190fca6ea1SDimitry Andric.endfor
2120bdd1243dSDimitry Andric
2121b40b48b8SDimitry Andricllvm-lib/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td
2122d8ed7fa3SDimitry Andric	${LLVM_TBLGEN} -gen-opt-parser-defs \
2123d8ed7fa3SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
2124d8ed7fa3SDimitry Andric	    ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td
2125b40b48b8SDimitry AndricTGHDRS+=	llvm-lib/Options.inc
2126b40b48b8SDimitry AndricCFLAGS.LibDriver.cpp+=	-I${.OBJDIR}/llvm-lib
2127b40b48b8SDimitry Andric
2128b40b48b8SDimitry Andricllvm-dlltool/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td
2129d8ed7fa3SDimitry Andric	${LLVM_TBLGEN} -gen-opt-parser-defs \
2130d8ed7fa3SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
2131d8ed7fa3SDimitry Andric	    ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td
2132b40b48b8SDimitry AndricTGHDRS+=	llvm-dlltool/Options.inc
2133b40b48b8SDimitry AndricCFLAGS.DlltoolDriver.cpp+=	-I${.OBJDIR}/llvm-dlltool
2134986e05bcSDimitry Andric
2135bdd1243dSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no"
2136bdd1243dSDimitry AndricCOFFOptions.inc: ${LLVM_SRCS}/lib/ExecutionEngine/JITLink/COFFOptions.td
2137bdd1243dSDimitry Andric	${LLVM_TBLGEN} -gen-opt-parser-defs \
2138bdd1243dSDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
2139bdd1243dSDimitry Andric	    ${LLVM_SRCS}/lib/ExecutionEngine/JITLink/COFFOptions.td
2140bdd1243dSDimitry AndricTGHDRS+=	COFFOptions.inc
2141bdd1243dSDimitry Andric.endif
2142bdd1243dSDimitry Andric
2143cd283100SBryan Drewerybeforebuild:
2144cd283100SBryan Drewery# 20170724 remove stale Options.inc file, of which there are two different
214537cd60a3SDimitry Andric# versions after upstream r308421, one for llvm-lib, one for llvm-dlltool
2146cd283100SBryan Drewery.for f in Options.inc
2147cd283100SBryan Drewery.if exists(${f}) || exists(${f}.d)
2148cd283100SBryan Drewery	@echo Removing stale generated ${f} files
2149cd283100SBryan Drewery	@rm -f ${f} ${f}.d
2150cd283100SBryan Drewery.endif
2151cd283100SBryan Drewery.endfor
2152cd283100SBryan Drewery
2153986e05bcSDimitry Andric# Note: some rules are superfluous, not every combination is valid.
2154986e05bcSDimitry Andric.for arch in \
21553b7fd87cSWarner Losh	AArch64/AArch64 ARM/ARM BPF/BPF Mips/Mips PowerPC/PPC RISCV/RISCV \
21563b7fd87cSWarner Losh	X86/X86
2157986e05bcSDimitry Andric. for hdr in \
2158986e05bcSDimitry Andric	AsmMatcher/-gen-asm-matcher \
2159986e05bcSDimitry Andric	AsmWriter/-gen-asm-writer \
216048aaf27bSDimitry Andric	AsmWriter1/-gen-asm-writer,-asmwriternum=1 \
2161986e05bcSDimitry Andric	CallingConv/-gen-callingconv \
2162986e05bcSDimitry Andric	CodeEmitter/-gen-emitter \
2163b2689b12SMitchell Horne	CompressInstEmitter/-gen-compress-inst-emitter \
2164986e05bcSDimitry Andric	DAGISel/-gen-dag-isel \
2165986e05bcSDimitry Andric	DisassemblerTables/-gen-disassembler \
2166986e05bcSDimitry Andric	FastISel/-gen-fast-isel \
216706c3fb27SDimitry Andric	FoldTables/-gen-x86-fold-tables,-asmwriternum=1 \
21683d54deb3SDimitry Andric	GlobalISel/-gen-global-isel \
216981ad6265SDimitry Andric	InstrInfo/-gen-instr-info${arch:MX86/X86:C/X86\/X86/,-instr-info-expand-mi-operand-info=0/} \
21700fca6ea1SDimitry Andric	InstrMapping/-gen-x86-instr-mapping \
2171986e05bcSDimitry Andric	MCCodeEmitter/-gen-emitter \
2172986e05bcSDimitry Andric	MCPseudoLowering/-gen-pseudo-lowering \
2173b3edf446SDimitry Andric	MacroFusion/-gen-macro-fusion-pred \
217481ad6265SDimitry Andric	MnemonicTables/-gen-x86-mnemonic-tables,-asmwriternum=1 \
21755f757f3fSDimitry Andric	O0PreLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}O0PreLegalizerCombiner \
21765f757f3fSDimitry Andric	PostLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}PostLegalizerCombiner \
21775f757f3fSDimitry Andric	PostLegalizeGILowering/-gen-global-isel-combiner,-combiners=${arch:H}PostLegalizerLowering \
21785f757f3fSDimitry Andric	PreLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}PreLegalizerCombiner \
21795897d2f0SDimitry Andric	RegisterBank/-gen-register-bank \
2180986e05bcSDimitry Andric	RegisterInfo/-gen-register-info \
2181e8d8bef9SDimitry Andric	SearchableTables/-gen-searchable-tables \
2182986e05bcSDimitry Andric	SubtargetInfo/-gen-subtarget \
218336cb3905SDimitry Andric	SystemOperands/-gen-searchable-tables \
218436cb3905SDimitry Andric	SystemRegister/-gen-searchable-tables
21855f757f3fSDimitry Andric.  if "${arch:T}" == "RISCV" && "${hdr:T:C/(-gen-global-isel).*/\1/}" == "-gen-global-isel"
21865f757f3fSDimitry Andrictdfile_${arch:T}_${hdr:H}=	${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}GISel.td
21875f757f3fSDimitry Andric.  else
21885f757f3fSDimitry Andrictdfile_${arch:T}_${hdr:H}=	${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td
21895f757f3fSDimitry Andric.endif
21905f757f3fSDimitry Andric${arch:T}Gen${hdr:H}.inc: ${tdfile_${arch:T}_${hdr:H}}
2191d8ed7fa3SDimitry Andric	${LLVM_TBLGEN} ${hdr:T:C/,/ /g} \
2192986e05bcSDimitry Andric	    -I ${LLVM_SRCS}/include -I ${LLVM_SRCS}/lib/Target/${arch:H} \
2193d8ed7fa3SDimitry Andric	    -d ${.TARGET}.d -o ${.TARGET} \
21945f757f3fSDimitry Andric	    ${tdfile_${arch:T}_${hdr:H}}
2195986e05bcSDimitry Andric. endfor
2196986e05bcSDimitry Andric.endfor
2197cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no"
2198986e05bcSDimitry AndricTGHDRS+=	AArch64GenAsmMatcher.inc
2199986e05bcSDimitry AndricTGHDRS+=	AArch64GenAsmWriter.inc
2200986e05bcSDimitry AndricTGHDRS+=	AArch64GenAsmWriter1.inc
2201986e05bcSDimitry AndricTGHDRS+=	AArch64GenCallingConv.inc
2202986e05bcSDimitry AndricTGHDRS+=	AArch64GenDAGISel.inc
2203986e05bcSDimitry AndricTGHDRS+=	AArch64GenDisassemblerTables.inc
2204986e05bcSDimitry AndricTGHDRS+=	AArch64GenFastISel.inc
22053d54deb3SDimitry AndricTGHDRS+=	AArch64GenGlobalISel.inc
2206986e05bcSDimitry AndricTGHDRS+=	AArch64GenInstrInfo.inc
2207986e05bcSDimitry AndricTGHDRS+=	AArch64GenMCCodeEmitter.inc
2208986e05bcSDimitry AndricTGHDRS+=	AArch64GenMCPseudoLowering.inc
2209fe6060f1SDimitry AndricTGHDRS+=	AArch64GenO0PreLegalizeGICombiner.inc
221048aaf27bSDimitry AndricTGHDRS+=	AArch64GenPostLegalizeGICombiner.inc
2211e8d8bef9SDimitry AndricTGHDRS+=	AArch64GenPostLegalizeGILowering.inc
221248aaf27bSDimitry AndricTGHDRS+=	AArch64GenPreLegalizeGICombiner.inc
22135897d2f0SDimitry AndricTGHDRS+=	AArch64GenRegisterBank.inc
2214986e05bcSDimitry AndricTGHDRS+=	AArch64GenRegisterInfo.inc
2215986e05bcSDimitry AndricTGHDRS+=	AArch64GenSubtargetInfo.inc
2216986e05bcSDimitry AndricTGHDRS+=	AArch64GenSystemOperands.inc
2217cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64
2218cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no"
2219986e05bcSDimitry AndricTGHDRS+=	ARMGenAsmMatcher.inc
2220986e05bcSDimitry AndricTGHDRS+=	ARMGenAsmWriter.inc
2221986e05bcSDimitry AndricTGHDRS+=	ARMGenCallingConv.inc
2222986e05bcSDimitry AndricTGHDRS+=	ARMGenDAGISel.inc
2223986e05bcSDimitry AndricTGHDRS+=	ARMGenDisassemblerTables.inc
2224986e05bcSDimitry AndricTGHDRS+=	ARMGenFastISel.inc
22253d54deb3SDimitry AndricTGHDRS+=	ARMGenGlobalISel.inc
2226986e05bcSDimitry AndricTGHDRS+=	ARMGenInstrInfo.inc
2227986e05bcSDimitry AndricTGHDRS+=	ARMGenMCCodeEmitter.inc
2228986e05bcSDimitry AndricTGHDRS+=	ARMGenMCPseudoLowering.inc
22295897d2f0SDimitry AndricTGHDRS+=	ARMGenRegisterBank.inc
2230986e05bcSDimitry AndricTGHDRS+=	ARMGenRegisterInfo.inc
2231986e05bcSDimitry AndricTGHDRS+=	ARMGenSubtargetInfo.inc
223236cb3905SDimitry AndricTGHDRS+=	ARMGenSystemRegister.inc
2233cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM
223489edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no"
223589edb881SDimitry AndricTGHDRS+=	BPFGenAsmMatcher.inc
223689edb881SDimitry AndricTGHDRS+=	BPFGenAsmWriter.inc
223789edb881SDimitry AndricTGHDRS+=	BPFGenCallingConv.inc
223889edb881SDimitry AndricTGHDRS+=	BPFGenDAGISel.inc
223989edb881SDimitry AndricTGHDRS+=	BPFGenDisassemblerTables.inc
2240442d351bSDimitry AndricTGHDRS+=	BPFGenGlobalISel.inc
224189edb881SDimitry AndricTGHDRS+=	BPFGenInstrInfo.inc
224289edb881SDimitry AndricTGHDRS+=	BPFGenMCCodeEmitter.inc
2243442d351bSDimitry AndricTGHDRS+=	BPFGenRegisterBank.inc
224489edb881SDimitry AndricTGHDRS+=	BPFGenRegisterInfo.inc
224589edb881SDimitry AndricTGHDRS+=	BPFGenSubtargetInfo.inc
224689edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF
2247cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no"
2248986e05bcSDimitry AndricTGHDRS+=	MipsGenAsmMatcher.inc
2249986e05bcSDimitry AndricTGHDRS+=	MipsGenAsmWriter.inc
2250986e05bcSDimitry AndricTGHDRS+=	MipsGenCallingConv.inc
2251986e05bcSDimitry AndricTGHDRS+=	MipsGenDAGISel.inc
2252986e05bcSDimitry AndricTGHDRS+=	MipsGenDisassemblerTables.inc
2253986e05bcSDimitry AndricTGHDRS+=	MipsGenFastISel.inc
22549f6e9a9fSDimitry AndricTGHDRS+=	MipsGenGlobalISel.inc
2255986e05bcSDimitry AndricTGHDRS+=	MipsGenInstrInfo.inc
2256986e05bcSDimitry AndricTGHDRS+=	MipsGenMCCodeEmitter.inc
2257986e05bcSDimitry AndricTGHDRS+=	MipsGenMCPseudoLowering.inc
225881ad6265SDimitry AndricTGHDRS+=	MipsGenPostLegalizeGICombiner.inc
22599f6e9a9fSDimitry AndricTGHDRS+=	MipsGenRegisterBank.inc
2260986e05bcSDimitry AndricTGHDRS+=	MipsGenRegisterInfo.inc
2261986e05bcSDimitry AndricTGHDRS+=	MipsGenSubtargetInfo.inc
2262cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS
2263cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no"
2264986e05bcSDimitry AndricTGHDRS+=	PPCGenAsmMatcher.inc
2265986e05bcSDimitry AndricTGHDRS+=	PPCGenAsmWriter.inc
2266986e05bcSDimitry AndricTGHDRS+=	PPCGenCallingConv.inc
2267986e05bcSDimitry AndricTGHDRS+=	PPCGenDAGISel.inc
2268986e05bcSDimitry AndricTGHDRS+=	PPCGenDisassemblerTables.inc
2269986e05bcSDimitry AndricTGHDRS+=	PPCGenFastISel.inc
2270e8d8bef9SDimitry AndricTGHDRS+=	PPCGenGlobalISel.inc
2271986e05bcSDimitry AndricTGHDRS+=	PPCGenInstrInfo.inc
2272986e05bcSDimitry AndricTGHDRS+=	PPCGenMCCodeEmitter.inc
2273e8d8bef9SDimitry AndricTGHDRS+=	PPCGenRegisterBank.inc
2274986e05bcSDimitry AndricTGHDRS+=	PPCGenRegisterInfo.inc
2275986e05bcSDimitry AndricTGHDRS+=	PPCGenSubtargetInfo.inc
2276cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC
2277b2689b12SMitchell Horne.if ${MK_LLVM_TARGET_RISCV} != "no"
2278b2689b12SMitchell HorneTGHDRS+=	RISCVGenAsmMatcher.inc
2279b2689b12SMitchell HorneTGHDRS+=	RISCVGenAsmWriter.inc
2280b2689b12SMitchell HorneTGHDRS+=	RISCVGenCallingConv.inc
2281b2689b12SMitchell HorneTGHDRS+=	RISCVGenCompressInstEmitter.inc
2282b2689b12SMitchell HorneTGHDRS+=	RISCVGenDAGISel.inc
2283b2689b12SMitchell HorneTGHDRS+=	RISCVGenDAGISel.inc
22845f757f3fSDimitry AndricTGHDRS+=	RISCVGenDisassemblerTables.inc
22859771cac2SDimitry AndricTGHDRS+=	RISCVGenGlobalISel.inc
2286b2689b12SMitchell HorneTGHDRS+=	RISCVGenInstrInfo.inc
2287b2689b12SMitchell HorneTGHDRS+=	RISCVGenMCCodeEmitter.inc
2288b2689b12SMitchell HorneTGHDRS+=	RISCVGenMCPseudoLowering.inc
2289b3edf446SDimitry AndricTGHDRS+=	RISCVGenMacroFusion.inc
22905f757f3fSDimitry AndricTGHDRS+=	RISCVGenO0PreLegalizeGICombiner.inc
22915f757f3fSDimitry AndricTGHDRS+=	RISCVGenPostLegalizeGICombiner.inc
22925f757f3fSDimitry AndricTGHDRS+=	RISCVGenPreLegalizeGICombiner.inc
22939771cac2SDimitry AndricTGHDRS+=	RISCVGenRegisterBank.inc
2294b2689b12SMitchell HorneTGHDRS+=	RISCVGenRegisterInfo.inc
2295e8d8bef9SDimitry AndricTGHDRS+=	RISCVGenSearchableTables.inc
2296b2689b12SMitchell HorneTGHDRS+=	RISCVGenSubtargetInfo.inc
2297b2689b12SMitchell HorneTGHDRS+=	RISCVGenSystemOperands.inc
2298b2689b12SMitchell Horne.endif # MK_LLVM_TARGET_RISCV
2299cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no"
2300986e05bcSDimitry AndricTGHDRS+=	X86GenAsmMatcher.inc
2301986e05bcSDimitry AndricTGHDRS+=	X86GenAsmWriter.inc
2302986e05bcSDimitry AndricTGHDRS+=	X86GenAsmWriter1.inc
2303986e05bcSDimitry AndricTGHDRS+=	X86GenCallingConv.inc
2304986e05bcSDimitry AndricTGHDRS+=	X86GenDAGISel.inc
2305986e05bcSDimitry AndricTGHDRS+=	X86GenDisassemblerTables.inc
2306986e05bcSDimitry AndricTGHDRS+=	X86GenFastISel.inc
230706c3fb27SDimitry AndricTGHDRS+=	X86GenFoldTables.inc
23083d54deb3SDimitry AndricTGHDRS+=	X86GenGlobalISel.inc
2309986e05bcSDimitry AndricTGHDRS+=	X86GenInstrInfo.inc
23100fca6ea1SDimitry AndricTGHDRS+=	X86GenInstrMapping.inc
231181ad6265SDimitry AndricTGHDRS+=	X86GenMnemonicTables.inc
23125897d2f0SDimitry AndricTGHDRS+=	X86GenRegisterBank.inc
2313986e05bcSDimitry AndricTGHDRS+=	X86GenRegisterInfo.inc
2314986e05bcSDimitry AndricTGHDRS+=	X86GenSubtargetInfo.inc
2315cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86
2316986e05bcSDimitry Andric
2317ddf95e2aSBryan DreweryDEPENDFILES+=	${TGHDRS:C/$/.d/}
2318986e05bcSDimitry AndricDPSRCS+=	${TGHDRS}
2319986e05bcSDimitry AndricCLEANFILES+=	${TGHDRS} ${TGHDRS:C/$/.d/}
232048aaf27bSDimitry AndricCLEANFILES+=	${GENSRCS} ${GENSRCS:C/$/.d/}
2321986e05bcSDimitry Andric
2322986e05bcSDimitry Andric.include "../llvm.build.mk"
2323986e05bcSDimitry Andric.include <bsd.lib.mk>
2324