xref: /freebsd/lib/clang/libllvm/Makefile (revision d30dc78f798adebda488d2b8e21290268d2fb501)
1986e05bcSDimitry Andric# $FreeBSD$
2986e05bcSDimitry Andric
3986e05bcSDimitry Andric.include <src.opts.mk>
4986e05bcSDimitry Andric.include "../llvm.pre.mk"
5986e05bcSDimitry Andric
6986e05bcSDimitry AndricLIB=		llvm
7986e05bcSDimitry AndricINTERNALLIB=
8986e05bcSDimitry Andric
9986e05bcSDimitry AndricCFLAGS+=	-I${.OBJDIR}
10cbafd263SDimitry Andric
11cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} == "no" && ${MK_LLVM_TARGET_ARM} == "no" && \
1289edb881SDimitry Andric    ${MK_LLVM_TARGET_BPF} == "no" && ${MK_LLVM_TARGET_MIPS} == "no" && \
13b2689b12SMitchell Horne    ${MK_LLVM_TARGET_POWERPC} == "no" && ${MK_LLVM_TARGET_RISCV} == "no" && \
143b7fd87cSWarner Losh    ${MK_LLVM_TARGET_X86} == "no"
15cbafd263SDimitry Andric.error Please enable at least one of: MK_LLVM_TARGET_AARCH64,\
1689edb881SDimitry Andric MK_LLVM_TARGET_ARM, MK_LLVM_TARGET_BPF, MK_LLVM_TARGET_MIPS, \
173b7fd87cSWarner Losh MK_LLVM_TARGET_POWERPC, MK_LLVM_TARGET_RISCV, or MK_LLVM_TARGET_X86
18cbafd263SDimitry Andric.endif
19cbafd263SDimitry Andric
203b7fd87cSWarner Losh.for arch in AArch64 ARM BPF Mips PowerPC RISCV X86
21cbafd263SDimitry Andric. if ${MK_LLVM_TARGET_${arch:tu}} != "no"
22986e05bcSDimitry AndricCFLAGS+=	-I${LLVM_SRCS}/lib/Target/${arch}
23cbafd263SDimitry Andric. endif
24986e05bcSDimitry Andric.endfor
25986e05bcSDimitry Andric
260b57cec5SDimitry AndricSRCDIR=		llvm/lib
27986e05bcSDimitry Andric
28a1aaa66bSDimitry Andric# Explanation of different SRCS variants below:
29a1aaa66bSDimitry Andric# SRCS_MIN:	always required, even for bootstrap
30a1aaa66bSDimitry Andric# SRCS_MIW:	required for world stage (after cross-tools)
31a1aaa66bSDimitry Andric# SRCS_EXT:	required for MK_CLANG_EXTRAS
32a1aaa66bSDimitry Andric# SRCS_EXL:	required for MK_CLANG_EXTRAS and MK_LLD
33a1aaa66bSDimitry Andric# SRCS_FUL:	required for MK_CLANG_FULL
34a1aaa66bSDimitry Andric# SRCS_LLD:	required for MK_LLD
35a1aaa66bSDimitry Andric# SRCS_XDB:	required for MK_CLANG_EXTRAS and MK_LLDB
36a1aaa66bSDimitry Andric# SRCS_XDL:	required for MK_CLANG_EXTRAS, MK_LLD and MK_LLDB
37a1aaa66bSDimitry Andric# SRCS_XDW:	required for MK_CLANG_EXTRAS and MK_LLDB in world stage
38a1aaa66bSDimitry Andric
39986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AliasAnalysis.cpp
40986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AliasAnalysisEvaluator.cpp
41986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AliasAnalysisSummary.cpp
42986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AliasSetTracker.cpp
43986e05bcSDimitry AndricSRCS_EXT+=	Analysis/Analysis.cpp
4448aaf27bSDimitry AndricSRCS_MIN+=	Analysis/AssumeBundleQueries.cpp
45986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AssumptionCache.cpp
46986e05bcSDimitry AndricSRCS_MIN+=	Analysis/BasicAliasAnalysis.cpp
47986e05bcSDimitry AndricSRCS_MIN+=	Analysis/BlockFrequencyInfo.cpp
48986e05bcSDimitry AndricSRCS_MIN+=	Analysis/BlockFrequencyInfoImpl.cpp
49986e05bcSDimitry AndricSRCS_MIN+=	Analysis/BranchProbabilityInfo.cpp
50986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CFG.cpp
51986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CFGPrinter.cpp
52986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CFLAndersAliasAnalysis.cpp
53986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CFLSteensAliasAnalysis.cpp
54986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CGSCCPassManager.cpp
55986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CallGraph.cpp
56986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CallGraphSCCPass.cpp
57986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CallPrinter.cpp
58986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CaptureTracking.cpp
5936cb3905SDimitry AndricSRCS_MIN+=	Analysis/CmpInstAnalysis.cpp
60986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CodeMetrics.cpp
61986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ConstantFolding.cpp
62e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/ConstraintSystem.cpp
63986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CostModel.cpp
649771cac2SDimitry AndricSRCS_MIN+=	Analysis/DDG.cpp
65e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/DDGPrinter.cpp
66986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Delinearization.cpp
67986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DemandedBits.cpp
68986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DependenceAnalysis.cpp
699771cac2SDimitry AndricSRCS_MIN+=	Analysis/DependenceGraphBuilder.cpp
70986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DivergenceAnalysis.cpp
71986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DomPrinter.cpp
724014a71fSDimitry AndricSRCS_MIN+=	Analysis/DomTreeUpdater.cpp
73986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DominanceFrontier.cpp
74986e05bcSDimitry AndricSRCS_MIN+=	Analysis/EHPersonalities.cpp
75e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/FunctionPropertiesAnalysis.cpp
76986e05bcSDimitry AndricSRCS_MIN+=	Analysis/GlobalsModRef.cpp
775e86819cSDimitry AndricSRCS_MIN+=	Analysis/GuardUtils.cpp
7848aaf27bSDimitry AndricSRCS_MIN+=	Analysis/HeatUtils.cpp
79e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/IRSimilarityIdentifier.cpp
805e86819cSDimitry AndricSRCS_MIN+=	Analysis/IVDescriptors.cpp
81986e05bcSDimitry AndricSRCS_MIN+=	Analysis/IVUsers.cpp
82e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/ImportedFunctionsInliningStatistics.cpp
83986e05bcSDimitry AndricSRCS_MIN+=	Analysis/IndirectCallPromotionAnalysis.cpp
8448aaf27bSDimitry AndricSRCS_MIN+=	Analysis/InlineAdvisor.cpp
85986e05bcSDimitry AndricSRCS_MIN+=	Analysis/InlineCost.cpp
8648aaf27bSDimitry AndricSRCS_MIN+=	Analysis/InlineSizeEstimatorAnalysis.cpp
87986e05bcSDimitry AndricSRCS_MIN+=	Analysis/InstCount.cpp
885e86819cSDimitry AndricSRCS_MIN+=	Analysis/InstructionPrecedenceTracking.cpp
89986e05bcSDimitry AndricSRCS_MIN+=	Analysis/InstructionSimplify.cpp
90986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Interval.cpp
91986e05bcSDimitry AndricSRCS_MIN+=	Analysis/IntervalPartition.cpp
92986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LazyBlockFrequencyInfo.cpp
9309bfd043SDimitry AndricSRCS_MIN+=	Analysis/LazyBranchProbabilityInfo.cpp
94986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LazyCallGraph.cpp
95986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LazyValueInfo.cpp
965e86819cSDimitry AndricSRCS_MIN+=	Analysis/LegacyDivergenceAnalysis.cpp
97986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Lint.cpp
98986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Loads.cpp
99986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopAccessAnalysis.cpp
100f1a29dd3SDimitry AndricSRCS_MIN+=	Analysis/LoopAnalysisManager.cpp
1019771cac2SDimitry AndricSRCS_MIN+=	Analysis/LoopCacheAnalysis.cpp
102986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopInfo.cpp
10348aaf27bSDimitry AndricSRCS_MIN+=	Analysis/LoopNestAnalysis.cpp
104986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopPass.cpp
105986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopUnrollAnalyzer.cpp
106986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemDepPrinter.cpp
107986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemDerefPrinter.cpp
108986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemoryBuiltins.cpp
109986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemoryDependenceAnalysis.cpp
110986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemoryLocation.cpp
1115897d2f0SDimitry AndricSRCS_MIN+=	Analysis/MemorySSA.cpp
1125897d2f0SDimitry AndricSRCS_MIN+=	Analysis/MemorySSAUpdater.cpp
113986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ModuleDebugInfoPrinter.cpp
114986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ModuleSummaryAnalysis.cpp
1159f6e9a9fSDimitry AndricSRCS_MIN+=	Analysis/MustExecute.cpp
116986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ObjCARCAliasAnalysis.cpp
117986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ObjCARCAnalysisUtils.cpp
118986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ObjCARCInstKind.cpp
11936cb3905SDimitry AndricSRCS_MIN+=	Analysis/OptimizationRemarkEmitter.cpp
120986e05bcSDimitry AndricSRCS_MIN+=	Analysis/PHITransAddr.cpp
1219f6e9a9fSDimitry AndricSRCS_MIN+=	Analysis/PhiValues.cpp
122986e05bcSDimitry AndricSRCS_MIN+=	Analysis/PostDominators.cpp
123986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ProfileSummaryInfo.cpp
124986e05bcSDimitry AndricSRCS_MIN+=	Analysis/PtrUseVisitor.cpp
125986e05bcSDimitry AndricSRCS_MIN+=	Analysis/RegionInfo.cpp
126986e05bcSDimitry AndricSRCS_MIN+=	Analysis/RegionPass.cpp
127986e05bcSDimitry AndricSRCS_MIN+=	Analysis/RegionPrinter.cpp
128e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/ReplayInlineAdvisor.cpp
129986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolution.cpp
13048aaf27bSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolution.cpp
131986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolutionAliasAnalysis.cpp
13248aaf27bSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolutionDivision.cpp
133986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolutionNormalization.cpp
134986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScopedNoAliasAA.cpp
13548aaf27bSDimitry AndricSRCS_MIN+=	Analysis/StackLifetime.cpp
1365e86819cSDimitry AndricSRCS_MIN+=	Analysis/StackSafetyAnalysis.cpp
1375e86819cSDimitry AndricSRCS_MIN+=	Analysis/SyncDependenceAnalysis.cpp
1389f6e9a9fSDimitry AndricSRCS_MIN+=	Analysis/SyntheticCountsUtils.cpp
139986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TargetLibraryInfo.cpp
140986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TargetTransformInfo.cpp
141986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TypeBasedAliasAnalysis.cpp
142986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TypeMetadataUtils.cpp
1439771cac2SDimitry AndricSRCS_MIN+=	Analysis/VFABIDemangling.cpp
14436cb3905SDimitry AndricSRCS_MIN+=	Analysis/ValueLattice.cpp
14536cb3905SDimitry AndricSRCS_MIN+=	Analysis/ValueLatticeUtils.cpp
146986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ValueTracking.cpp
147986e05bcSDimitry AndricSRCS_MIN+=	Analysis/VectorUtils.cpp
148986e05bcSDimitry AndricSRCS_MIN+=	AsmParser/LLLexer.cpp
149986e05bcSDimitry AndricSRCS_MIN+=	AsmParser/LLParser.cpp
150986e05bcSDimitry AndricSRCS_MIN+=	AsmParser/Parser.cpp
1511b85b68dSCameron KatriSRCS_MIN+=	BinaryFormat/AMDGPUMetadataVerifier.cpp
15244389c28SDimitry AndricSRCS_MIN+=	BinaryFormat/Dwarf.cpp
15344389c28SDimitry AndricSRCS_MIN+=	BinaryFormat/Magic.cpp
15448aaf27bSDimitry AndricSRCS_MIN+=	BinaryFormat/MachO.cpp
1551b85b68dSCameron KatriSRCS_MIN+=	BinaryFormat/MsgPackDocument.cpp
1561b85b68dSCameron KatriSRCS_MIN+=	BinaryFormat/MsgPackDocumentYAML.cpp
1571b85b68dSCameron KatriSRCS_MIN+=	BinaryFormat/MsgPackReader.cpp
15879239b5bSDimitry AndricSRCS_MIN+=	BinaryFormat/MsgPackWriter.cpp
1599f6e9a9fSDimitry AndricSRCS_MIN+=	BinaryFormat/Wasm.cpp
1609771cac2SDimitry AndricSRCS_MIN+=	BinaryFormat/XCOFF.cpp
16109bfd043SDimitry AndricSRCS_MIN+=	Bitcode/Reader/BitReader.cpp
16224b8043eSDimitry AndricSRCS_EXT+=	Bitcode/Reader/BitcodeAnalyzer.cpp
163986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Reader/BitcodeReader.cpp
16409bfd043SDimitry AndricSRCS_MIN+=	Bitcode/Reader/MetadataLoader.cpp
16509bfd043SDimitry AndricSRCS_MIN+=	Bitcode/Reader/ValueList.cpp
166986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Writer/BitcodeWriter.cpp
167986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Writer/BitcodeWriterPass.cpp
168986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Writer/ValueEnumerator.cpp
1694014a71fSDimitry AndricSRCS_MIN+=	Bitstream/Reader/BitstreamReader.cpp
170986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AggressiveAntiDepBreaker.cpp
171986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AllocationOrder.cpp
172986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/Analysis.cpp
173e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AIXException.cpp
174986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/ARMException.cpp
1759f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AccelTable.cpp
176986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AddressPool.cpp
177986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AsmPrinter.cpp
178986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
179986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
180986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/CodeViewDebug.cpp
181986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DIE.cpp
182986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DIEHash.cpp
1835e86819cSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp
184986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DebugHandlerBase.cpp
185986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DebugLocStream.cpp
186986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfCFIException.cpp
187986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfCompileUnit.cpp
188986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfDebug.cpp
189986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfExpression.cpp
190986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfFile.cpp
191986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfStringPool.cpp
192986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfUnit.cpp
193986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/EHStreamer.cpp
19424b8043eSDimitry AndricSRCS_EXT+=	CodeGen/AsmPrinter/ErlangGCPrinter.cpp
195986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/OcamlGCPrinter.cpp
196e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/PseudoProbePrinter.cpp
1975e86819cSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/WasmException.cpp
1989f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/WinCFGuard.cpp
199986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/WinException.cpp
200986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AtomicExpandPass.cpp
201e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/BasicBlockSections.cpp
202986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/BasicTargetTransformInfo.cpp
203986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/BranchFolding.cpp
20409bfd043SDimitry AndricSRCS_MIN+=	CodeGen/BranchRelaxation.cpp
2059f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/BreakFalseDeps.cpp
20624b8043eSDimitry AndricSRCS_EXT+=	CodeGen/BuiltinGCs.cpp
2079771cac2SDimitry AndricSRCS_MIN+=	CodeGen/CFGuardLongjmp.cpp
2089f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/CFIInstrInserter.cpp
209986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CalcSpillWeights.cpp
210986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CallingConvLower.cpp
211986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CodeGen.cpp
212986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CodeGenPrepare.cpp
21348aaf27bSDimitry AndricSRCS_EXL+=	CodeGen/CommandFlags.cpp
214986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CriticalAntiDepBreaker.cpp
215986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DFAPacketizer.cpp
216986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DeadMachineInstructionElim.cpp
217986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DetectDeadLanes.cpp
218986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DwarfEHPrepare.cpp
219986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/EarlyIfConversion.cpp
220986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/EdgeBundles.cpp
2219f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/ExecutionDomainFix.cpp
22236cb3905SDimitry AndricSRCS_MIN+=	CodeGen/ExpandMemCmp.cpp
223986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ExpandPostRAPseudos.cpp
2245517e702SDimitry AndricSRCS_MIN+=	CodeGen/ExpandReductions.cpp
2255897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/FEntryInserter.cpp
226986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/FaultMaps.cpp
2274014a71fSDimitry AndricSRCS_MIN+=	CodeGen/FinalizeISel.cpp
22848aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/FixupStatepointCallerSaved.cpp
229986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/FuncletLayout.cpp
230986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GCMetadata.cpp
23109bfd043SDimitry AndricSRCS_MIN+=	CodeGen/GCMetadataPrinter.cpp
232986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GCRootLowering.cpp
23309bfd043SDimitry AndricSRCS_MIN+=	CodeGen/GCStrategy.cpp
2345e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CSEInfo.cpp
2355e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CSEMIRBuilder.cpp
2365e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Combiner.cpp
2375e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CombinerHelper.cpp
2383d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CallLowering.cpp
2395e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/GISelChangeObserver.cpp
2409771cac2SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/GISelKnownBits.cpp
241986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/GlobalISel.cpp
2423d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/IRTranslator.cpp
24348aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/InlineAsmLowering.cpp
2443d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/InstructionSelect.cpp
2453d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/InstructionSelector.cpp
2469f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalityPredicates.cpp
2479f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalizeMutations.cpp
2483d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Legalizer.cpp
2493d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalizerHelper.cpp
2503d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalizerInfo.cpp
251302affcbSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Localizer.cpp
25248aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LostDebugLocObserver.cpp
2533d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/MachineIRBuilder.cpp
2543d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/RegBankSelect.cpp
2553d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/RegisterBank.cpp
2563d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/RegisterBankInfo.cpp
2573d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Utils.cpp
258986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GlobalMerge.cpp
2594014a71fSDimitry AndricSRCS_MIN+=	CodeGen/HardwareLoops.cpp
260986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/IfConversion.cpp
261986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ImplicitNullChecks.cpp
26207577dfeSDimitry AndricSRCS_MIN+=	CodeGen/IndirectBrExpandPass.cpp
263986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/InlineSpiller.cpp
264986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/InterferenceCache.cpp
265986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/InterleavedAccessPass.cpp
2665e86819cSDimitry AndricSRCS_MIN+=	CodeGen/InterleavedLoadCombinePass.cpp
267986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/IntrinsicLowering.cpp
268986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LLVMTargetMachine.cpp
269986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LatencyPriorityQueue.cpp
2705897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/LazyMachineBlockFrequencyInfo.cpp
271986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LexicalScopes.cpp
272e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/LiveDebugValues/InstrRefBasedImpl.cpp
273e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/LiveDebugValues/LiveDebugValues.cpp
274e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/LiveDebugValues/VarLocBasedImpl.cpp
275986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveDebugVariables.cpp
276986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveInterval.cpp
27748aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/LiveIntervalCalc.cpp
278986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveIntervalUnion.cpp
27944389c28SDimitry AndricSRCS_MIN+=	CodeGen/LiveIntervals.cpp
280986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LivePhysRegs.cpp
281986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveRangeCalc.cpp
282986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveRangeEdit.cpp
283f9448bf3SDimitry AndricSRCS_MIN+=	CodeGen/LiveRangeShrink.cpp
284986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveRegMatrix.cpp
2855897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/LiveRegUnits.cpp
2862757ff7eSDimitry AndricSRCS_MIN+=	CodeGen/LiveStacks.cpp
287986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveVariables.cpp
288986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LocalStackSlotAllocation.cpp
2899f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/LoopTraversal.cpp
29009bfd043SDimitry AndricSRCS_MIN+=	CodeGen/LowLevelType.cpp
291986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LowerEmuTLS.cpp
29248aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/MBFIWrapper.cpp
29336cb3905SDimitry AndricSRCS_MIN+=	CodeGen/MIRCanonicalizerPass.cpp
2949771cac2SDimitry AndricSRCS_MIN+=	CodeGen/MIRNamerPass.cpp
295986e05bcSDimitry AndricSRCS_EXT+=	CodeGen/MIRParser/MILexer.cpp
296986e05bcSDimitry AndricSRCS_EXT+=	CodeGen/MIRParser/MIParser.cpp
297986e05bcSDimitry AndricSRCS_EXT+=	CodeGen/MIRParser/MIRParser.cpp
298986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MIRPrinter.cpp
299986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MIRPrintingPass.cpp
3009771cac2SDimitry AndricSRCS_MIN+=	CodeGen/MIRVRegNamerUtils.cpp
301986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBasicBlock.cpp
302986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBlockFrequencyInfo.cpp
303986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBlockPlacement.cpp
304986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBranchProbabilityInfo.cpp
305986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineCSE.cpp
306e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/MachineCheckDebugify.cpp
307986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineCombiner.cpp
308986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineCopyPropagation.cpp
30948aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/MachineDebugify.cpp
310986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineDominanceFrontier.cpp
311986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineDominators.cpp
312f37b6182SDimitry AndricSRCS_MIN+=	CodeGen/MachineFrameInfo.cpp
313986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineFunction.cpp
314986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineFunctionPass.cpp
315986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineFunctionPrinterPass.cpp
316e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/MachineFunctionSplitter.cpp
317986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineInstr.cpp
318986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineInstrBundle.cpp
319986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineLICM.cpp
320986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineLoopInfo.cpp
3219771cac2SDimitry AndricSRCS_MIN+=	CodeGen/MachineLoopUtils.cpp
322986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineModuleInfo.cpp
323986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineModuleInfoImpls.cpp
32436cb3905SDimitry AndricSRCS_MIN+=	CodeGen/MachineOperand.cpp
3255897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/MachineOptimizationRemarkEmitter.cpp
3265897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/MachineOutliner.cpp
32709bfd043SDimitry AndricSRCS_MIN+=	CodeGen/MachinePipeliner.cpp
328986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachinePostDominators.cpp
329986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineRegionInfo.cpp
330986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineRegisterInfo.cpp
331986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineSSAUpdater.cpp
332986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineScheduler.cpp
333986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineSink.cpp
3349771cac2SDimitry AndricSRCS_MIN+=	CodeGen/MachineSizeOpts.cpp
335e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/MachineStableHash.cpp
33648aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/MachineStripDebug.cpp
337986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineTraceMetrics.cpp
338986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineVerifier.cpp
339edd7eaddSDimitry AndricSRCS_MIN+=	CodeGen/MacroFusion.cpp
3409771cac2SDimitry AndricSRCS_MIN+=	CodeGen/ModuloSchedule.cpp
341e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/MultiHazardRecognizer.cpp
342986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/OptimizePHIs.cpp
343986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PHIElimination.cpp
344986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PHIEliminationUtils.cpp
345986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ParallelCG.cpp
346986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PatchableFunction.cpp
347986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PeepholeOptimizer.cpp
348986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PostRAHazardRecognizer.cpp
349986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PostRASchedulerList.cpp
350986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PreISelIntrinsicLowering.cpp
351986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ProcessImplicitDefs.cpp
352986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PrologEpilogInserter.cpp
353e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/PseudoProbeInserter.cpp
354986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PseudoSourceValue.cpp
3559f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/ReachingDefAnalysis.cpp
3560946e70aSDimitry AndricSRCS_MIN+=	CodeGen/RDFGraph.cpp
3570946e70aSDimitry AndricSRCS_MIN+=	CodeGen/RDFLiveness.cpp
3580946e70aSDimitry AndricSRCS_MIN+=	CodeGen/RDFRegisters.cpp
359986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocBase.cpp
360986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocBasic.cpp
361986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocFast.cpp
362986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocGreedy.cpp
363986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocPBQP.cpp
364986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegUsageInfoCollector.cpp
365986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegUsageInfoPropagate.cpp
366986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterClassInfo.cpp
367986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterCoalescer.cpp
368986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterPressure.cpp
369986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterScavenging.cpp
370986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterUsageInfo.cpp
371986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RenameIndependentSubregs.cpp
37209bfd043SDimitry AndricSRCS_MIN+=	CodeGen/ResetMachineFunctionPass.cpp
373986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SafeStack.cpp
374986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SafeStackLayout.cpp
375986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScheduleDAG.cpp
376986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScheduleDAGInstrs.cpp
377986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScheduleDAGPrinter.cpp
378986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScoreboardHazardRecognizer.cpp
379986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/DAGCombiner.cpp
380986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/FastISel.cpp
381986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
382986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/InstrEmitter.cpp
383986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeDAG.cpp
384986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
385986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
386986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeTypes.cpp
387986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
388986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeVectorOps.cpp
389986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
390986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ResourcePriorityQueue.cpp
391986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGFast.cpp
392986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
393986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
394986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
395986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAG.cpp
39644389c28SDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
397986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
398986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGDumper.cpp
399986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGISel.cpp
400986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
401986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp
402986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/StatepointLowering.cpp
403986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/TargetLowering.cpp
404986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ShadowStackGCLowering.cpp
405986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ShrinkWrap.cpp
406986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SjLjEHPrepare.cpp
407986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SlotIndexes.cpp
408986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SpillPlacement.cpp
409986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SplitKit.cpp
410986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackColoring.cpp
411986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackMapLivenessAnalysis.cpp
412986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackMaps.cpp
413986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackProtector.cpp
414986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackSlotColoring.cpp
4154014a71fSDimitry AndricSRCS_MIN+=	CodeGen/SwiftErrorValueTracking.cpp
4164014a71fSDimitry AndricSRCS_MIN+=	CodeGen/SwitchLoweringUtils.cpp
417986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TailDuplication.cpp
418986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TailDuplicator.cpp
419986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetFrameLoweringImpl.cpp
420986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetInstrInfo.cpp
421986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetLoweringBase.cpp
422986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetLoweringObjectFileImpl.cpp
423986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetOptionsImpl.cpp
424986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetPassConfig.cpp
425986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetRegisterInfo.cpp
426986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetSchedule.cpp
42709bfd043SDimitry AndricSRCS_MIN+=	CodeGen/TargetSubtargetInfo.cpp
428986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TwoAddressInstructionPass.cpp
4299771cac2SDimitry AndricSRCS_MIN+=	CodeGen/TypePromotion.cpp
430986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/UnreachableBlockElim.cpp
4319f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/ValueTypes.cpp
432986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/VirtRegMap.cpp
4339f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/WasmEHPrepare.cpp
434986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/WinEHPrepare.cpp
435986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/XRayInstrumentation.cpp
4363cd201a1SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/AppendingTypeTableBuilder.cpp
43709bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CVSymbolVisitor.cpp
438986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CVTypeVisitor.cpp
439986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CodeViewError.cpp
44009bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CodeViewRecordIO.cpp
44136cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/ContinuationRecordBuilder.cpp
4421b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/DebugChecksumsSubsection.cpp
443db17bf38SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugCrossExSubsection.cpp
444db17bf38SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugCrossImpSubsection.cpp
4451b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/DebugFrameDataSubsection.cpp
4461b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp
4471b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/DebugLinesSubsection.cpp
4481b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/DebugStringTableSubsection.cpp
4491b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/DebugSubsection.cpp
45089cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugSubsectionRecord.cpp
45189cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugSubsectionVisitor.cpp
452db17bf38SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugSymbolRVASubsection.cpp
45389cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugSymbolsSubsection.cpp
4545e86819cSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/EnumTables.cpp
4555897d2f0SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/Formatters.cpp
45636cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/GlobalTypeTableBuilder.cpp
4571b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/LazyRandomTypeCollection.cpp
458986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/Line.cpp
4591b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/MergingTypeTableBuilder.cpp
46036cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/RecordName.cpp
461986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/RecordSerialization.cpp
46236cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SimpleTypeSerializer.cpp
46324d58133SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/StringsAndChecksums.cpp
464986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SymbolDumper.cpp
46509bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SymbolRecordMapping.cpp
466050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/SymbolSerializer.cpp
467f1a29dd3SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeDumpVisitor.cpp
46836cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeHashing.cpp
469d8866befSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeIndex.cpp
47006230659SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeIndexDiscovery.cpp
471efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/TypeRecordHelpers.cpp
47209bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeRecordMapping.cpp
473986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeStreamMerger.cpp
474d8866befSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeTableCollection.cpp
475caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
476caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFAcceleratorTable.cpp
4770db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFAddressRange.cpp
478caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFCompileUnit.cpp
479caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFContext.cpp
4800db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDataExtractor.cpp
481caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugAbbrev.cpp
48299be4f2aSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDebugAddr.cpp
4830db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDebugArangeSet.cpp
484caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugAranges.cpp
485caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugFrame.cpp
4860db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDebugInfoEntry.cpp
487caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugLine.cpp
488caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugLoc.cpp
4890db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDebugMacro.cpp
490caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugPubTable.cpp
491caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugRangeList.cpp
49267b158f6SDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDebugRnglists.cpp
493caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDie.cpp
494e89f883aSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFExpression.cpp
495caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFFormValue.cpp
496caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFGdbIndex.cpp
49767b158f6SDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFListTable.cpp
498caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFTypeUnit.cpp
499caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFUnit.cpp
500caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFUnitIndex.cpp
501caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFVerifier.cpp
50209bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/MSF/MSFBuilder.cpp
50309bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/MSF/MSFCommon.cpp
50424b8043eSDimitry AndricSRCS_EXT+=	DebugInfo/MSF/MSFError.cpp
50509bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/MSF/MappedBlockStream.cpp
506986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/GenericError.cpp
50709bfd043SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/IPDBSourceFile.cpp
508f37b6182SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiModuleDescriptor.cpp
509f37b6182SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp
5100f5676f4SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiModuleList.cpp
511050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiStream.cpp
512050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiStreamBuilder.cpp
513050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/EnumTables.cpp
5143cd201a1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/GSIStreamBuilder.cpp
515050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/GlobalsStream.cpp
516050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/Hash.cpp
517050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/HashTable.cpp
518050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/InfoStream.cpp
519050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/InfoStreamBuilder.cpp
52024b8043eSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/InjectedSourceStream.cpp
521f37b6182SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/ModuleDebugStream.cpp
522050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NamedStreamMap.cpp
523050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeCompilandSymbol.cpp
524efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumGlobals.cpp
52524b8043eSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumInjectedSources.cpp
52648aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumLineNumbers.cpp
527050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumModules.cpp
528e8d8bef9SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumSymbols.cpp
52944389c28SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumTypes.cpp
530050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeExeSymbol.cpp
53148aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeFunctionSymbol.cpp
532e8d8bef9SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeInlineSiteSymbol.cpp
53348aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeLineNumber.cpp
53448aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativePublicSymbol.cpp
535050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeRawSymbol.cpp
536050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeSession.cpp
53748aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeSourceFile.cpp
538efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeSymbolEnumerator.cpp
539efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeArray.cpp
540efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeBuiltin.cpp
541efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeEnum.cpp
542efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp
543efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypePointer.cpp
544efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeTypedef.cpp
545efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeUDT.cpp
546efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeVTShape.cpp
547050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBFile.cpp
548050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBFileBuilder.cpp
549b174acefSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBStringTable.cpp
550b174acefSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBStringTableBuilder.cpp
5513d54deb3SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PublicsStream.cpp
5523d54deb3SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/RawError.cpp
553efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/SymbolCache.cpp
554050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/SymbolStream.cpp
555050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/TpiHashing.cpp
556050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/TpiStream.cpp
557050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/TpiStreamBuilder.cpp
558986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDB.cpp
559986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBContext.cpp
560986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBExtras.cpp
561986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBInterfaceAnchors.cpp
562986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymDumper.cpp
563986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbol.cpp
564986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolAnnotation.cpp
565986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolBlock.cpp
566986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCompiland.cpp
567986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
568986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCompilandEnv.cpp
569986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCustom.cpp
570986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolData.cpp
571986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolExe.cpp
572986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolFunc.cpp
573986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
574986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
575986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolLabel.cpp
576986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
577986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolThunk.cpp
578986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeArray.cpp
579986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
580986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp
581986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeCustom.cpp
582986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeDimension.cpp
583986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeEnum.cpp
584986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeFriend.cpp
585986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
586986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
587986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeManaged.cpp
588986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypePointer.cpp
589986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
590986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeUDT.cpp
591986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeVTable.cpp
592986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp
593986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolUnknown.cpp
594986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolUsingNamespace.cpp
595050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/UDTLayout.cpp
5960db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/DIPrinter.cpp
59709bfd043SDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/SymbolizableObjectFile.cpp
59809bfd043SDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/Symbolize.cpp
5990db9a49eSDimitry AndricSRCS_MIW+=	Demangle/Demangle.cpp
60009bfd043SDimitry AndricSRCS_MIN+=	Demangle/ItaniumDemangle.cpp
6010db9a49eSDimitry AndricSRCS_MIW+=	Demangle/MicrosoftDemangle.cpp
6020db9a49eSDimitry AndricSRCS_MIW+=	Demangle/MicrosoftDemangleNodes.cpp
603986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/ExecutionEngine.cpp
604986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/ExecutionEngineBindings.cpp
605986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/GDBRegistrationListener.cpp
606986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/Interpreter/Execution.cpp
607986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/Interpreter/ExternalFunctions.cpp
608986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/Interpreter/Interpreter.cpp
609b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/EHFrameSupport.cpp
61048aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF.cpp
61148aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF_x86_64.cpp
612b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/JITLink.cpp
613b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/JITLinkGeneric.cpp
614b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/JITLinkMemoryManager.cpp
615b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/MachO.cpp
616b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp
617b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/MachO_arm64.cpp
618b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/MachO_x86_64.cpp
619986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/MCJIT/MCJIT.cpp
62067b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/CompileOnDemandLayer.cpp
62124b8043eSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/CompileUtils.cpp
62267b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Core.cpp
62348aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/DebugUtils.cpp
624986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ExecutionUtils.cpp
62567b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/IRCompileLayer.cpp
62667b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/IRTransformLayer.cpp
627986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/IndirectionUtils.cpp
628efa75597SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/JITTargetMachineBuilder.cpp
62967b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/LLJIT.cpp
63067b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Layer.cpp
631efa75597SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/LazyReexports.cpp
63248aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/MachOPlatform.cpp
63348aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Mangling.cpp
634b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ObjectLinkingLayer.cpp
635b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ObjectTransformLayer.cpp
636986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/OrcABISupport.cpp
63767b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
638e8d8bef9SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Shared/OrcError.cpp
639e8d8bef9SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Shared/RPCError.cpp
640b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Speculation.cpp
641e8d8bef9SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/TargetProcess/RegisterEHFrames.cpp
642e8d8bef9SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/TargetProcess/TargetExecutionUtils.cpp
643e8d8bef9SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/TargetProcessControl.cpp
644efa75597SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ThreadSafeModule.cpp
64509bfd043SDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/JITSymbol.cpp
646986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
647986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
648986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
649986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
650986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
651986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
65209bfd043SDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp
653986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/SectionMemoryManager.cpp
654986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/TargetSelect.cpp
65548aaf27bSDimitry AndricSRCS_MIN+=	Frontend/OpenMP/OMPContext.cpp
6569771cac2SDimitry AndricSRCS_MIN+=	Frontend/OpenMP/OMPIRBuilder.cpp
6574014a71fSDimitry AndricSRCS_MIN+=	IR/AbstractCallSite.cpp
658986e05bcSDimitry AndricSRCS_MIN+=	IR/AsmWriter.cpp
659e8d8bef9SDimitry AndricSRCS_MIN+=	IR/Assumptions.cpp
660986e05bcSDimitry AndricSRCS_MIN+=	IR/Attributes.cpp
661986e05bcSDimitry AndricSRCS_MIN+=	IR/AutoUpgrade.cpp
662986e05bcSDimitry AndricSRCS_MIN+=	IR/BasicBlock.cpp
663986e05bcSDimitry AndricSRCS_MIN+=	IR/Comdat.cpp
664986e05bcSDimitry AndricSRCS_MIN+=	IR/ConstantFold.cpp
665986e05bcSDimitry AndricSRCS_MIN+=	IR/ConstantRange.cpp
666986e05bcSDimitry AndricSRCS_MIN+=	IR/Constants.cpp
667986e05bcSDimitry AndricSRCS_MIN+=	IR/Core.cpp
668986e05bcSDimitry AndricSRCS_MIN+=	IR/DIBuilder.cpp
669986e05bcSDimitry AndricSRCS_MIN+=	IR/DataLayout.cpp
670986e05bcSDimitry AndricSRCS_MIN+=	IR/DebugInfo.cpp
671986e05bcSDimitry AndricSRCS_MIN+=	IR/DebugInfoMetadata.cpp
672986e05bcSDimitry AndricSRCS_MIN+=	IR/DebugLoc.cpp
67336cb3905SDimitry AndricSRCS_MIN+=	IR/DiagnosticHandler.cpp
674986e05bcSDimitry AndricSRCS_MIN+=	IR/DiagnosticInfo.cpp
675986e05bcSDimitry AndricSRCS_MIN+=	IR/DiagnosticPrinter.cpp
676986e05bcSDimitry AndricSRCS_MIN+=	IR/Dominators.cpp
6779771cac2SDimitry AndricSRCS_MIN+=	IR/FPEnv.cpp
678986e05bcSDimitry AndricSRCS_MIN+=	IR/Function.cpp
679986e05bcSDimitry AndricSRCS_MIN+=	IR/GVMaterializer.cpp
680986e05bcSDimitry AndricSRCS_MIN+=	IR/Globals.cpp
681986e05bcSDimitry AndricSRCS_MIN+=	IR/IRBuilder.cpp
682986e05bcSDimitry AndricSRCS_MIN+=	IR/IRPrintingPasses.cpp
683986e05bcSDimitry AndricSRCS_MIN+=	IR/InlineAsm.cpp
684986e05bcSDimitry AndricSRCS_MIN+=	IR/Instruction.cpp
685986e05bcSDimitry AndricSRCS_MIN+=	IR/Instructions.cpp
686986e05bcSDimitry AndricSRCS_MIN+=	IR/IntrinsicInst.cpp
687986e05bcSDimitry AndricSRCS_MIN+=	IR/LLVMContext.cpp
688986e05bcSDimitry AndricSRCS_MIN+=	IR/LLVMContextImpl.cpp
68948aaf27bSDimitry AndricSRCS_MIN+=	IR/LLVMRemarkStreamer.cpp
690986e05bcSDimitry AndricSRCS_MIN+=	IR/LegacyPassManager.cpp
691986e05bcSDimitry AndricSRCS_MIN+=	IR/MDBuilder.cpp
692986e05bcSDimitry AndricSRCS_MIN+=	IR/Mangler.cpp
693986e05bcSDimitry AndricSRCS_MIN+=	IR/Metadata.cpp
694986e05bcSDimitry AndricSRCS_MIN+=	IR/Module.cpp
695986e05bcSDimitry AndricSRCS_MIN+=	IR/ModuleSummaryIndex.cpp
696986e05bcSDimitry AndricSRCS_MIN+=	IR/Operator.cpp
697986e05bcSDimitry AndricSRCS_MIN+=	IR/OptBisect.cpp
698986e05bcSDimitry AndricSRCS_MIN+=	IR/Pass.cpp
6995e86819cSDimitry AndricSRCS_MIN+=	IR/PassInstrumentation.cpp
700986e05bcSDimitry AndricSRCS_MIN+=	IR/PassManager.cpp
701986e05bcSDimitry AndricSRCS_MIN+=	IR/PassRegistry.cpp
7025e86819cSDimitry AndricSRCS_MIN+=	IR/PassTimingInfo.cpp
703e8d8bef9SDimitry AndricSRCS_MIN+=	IR/PrintPasses.cpp
704986e05bcSDimitry AndricSRCS_MIN+=	IR/ProfileSummary.cpp
705e8d8bef9SDimitry AndricSRCS_MIN+=	IR/PseudoProbe.cpp
706e8d8bef9SDimitry AndricSRCS_MIN+=	IR/ReplaceConstant.cpp
707c4394386SDimitry AndricSRCS_MIN+=	IR/SafepointIRVerifier.cpp
708986e05bcSDimitry AndricSRCS_MIN+=	IR/Statepoint.cpp
709986e05bcSDimitry AndricSRCS_MIN+=	IR/Type.cpp
710986e05bcSDimitry AndricSRCS_MIN+=	IR/TypeFinder.cpp
711986e05bcSDimitry AndricSRCS_MIN+=	IR/Use.cpp
712986e05bcSDimitry AndricSRCS_MIN+=	IR/User.cpp
713986e05bcSDimitry AndricSRCS_MIN+=	IR/Value.cpp
714986e05bcSDimitry AndricSRCS_MIN+=	IR/ValueSymbolTable.cpp
715986e05bcSDimitry AndricSRCS_MIN+=	IR/Verifier.cpp
716986e05bcSDimitry AndricSRCS_MIN+=	IRReader/IRReader.cpp
71709bfd043SDimitry AndricSRCS_EXL+=	LTO/Caching.cpp
7185897d2f0SDimitry AndricSRCS_MIN+=	LTO/LTO.cpp
71909bfd043SDimitry AndricSRCS_MIN+=	LTO/LTOBackend.cpp
72075bc38b9SEd MasteSRCS_EXL+=	LTO/LTOCodeGenerator.cpp
72175bc38b9SEd MasteSRCS_EXL+=	LTO/LTOModule.cpp
722efa75597SDimitry AndricSRCS_EXL+=	LTO/SummaryBasedOptimizations.cpp
72375bc38b9SEd MasteSRCS_EXL+=	LTO/ThinLTOCodeGenerator.cpp
72409bfd043SDimitry AndricSRCS_MIN+=	LTO/UpdateCompilerUsed.cpp
72531ba4ce8SAlex Richardson# Only needed for clangd/clang-query, uncomment once we build those.
72631ba4ce8SAlex Richardson# SRCS_XDW+=	LineEditor/LineEditor.cpp
727986e05bcSDimitry AndricSRCS_MIN+=	Linker/IRMover.cpp
728986e05bcSDimitry AndricSRCS_MIN+=	Linker/LinkModules.cpp
729986e05bcSDimitry AndricSRCS_MIN+=	MC/ConstantPools.cpp
730986e05bcSDimitry AndricSRCS_MIN+=	MC/ELFObjectWriter.cpp
731986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmBackend.cpp
732986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfo.cpp
733986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoCOFF.cpp
734986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoDarwin.cpp
735986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoELF.cpp
7364014a71fSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoXCOFF.cpp
7379f6e9a9fSDimitry AndricSRCS_MIN+=	MC/MCAsmMacro.cpp
738986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmStreamer.cpp
739986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAssembler.cpp
740986e05bcSDimitry AndricSRCS_MIN+=	MC/MCCodeEmitter.cpp
741986e05bcSDimitry AndricSRCS_MIN+=	MC/MCCodeView.cpp
742986e05bcSDimitry AndricSRCS_MIN+=	MC/MCContext.cpp
74375bc38b9SEd MasteSRCS_XDL+=	MC/MCDisassembler/Disassembler.cpp
74430d4828eSDimitry AndricSRCS_XDW+=	MC/MCDisassembler/MCDisassembler.cpp
74530d4828eSDimitry AndricSRCS_XDW+=	MC/MCDisassembler/MCExternalSymbolizer.cpp
746986e05bcSDimitry AndricSRCS_MIN+=	MC/MCDisassembler/MCRelocationInfo.cpp
74730d4828eSDimitry AndricSRCS_XDW+=	MC/MCDisassembler/MCSymbolizer.cpp
748986e05bcSDimitry AndricSRCS_MIN+=	MC/MCDwarf.cpp
749986e05bcSDimitry AndricSRCS_MIN+=	MC/MCELFObjectTargetWriter.cpp
750986e05bcSDimitry AndricSRCS_MIN+=	MC/MCELFStreamer.cpp
751986e05bcSDimitry AndricSRCS_MIN+=	MC/MCExpr.cpp
752986e05bcSDimitry AndricSRCS_MIN+=	MC/MCFragment.cpp
753986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInst.cpp
754986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInstPrinter.cpp
755986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInstrAnalysis.cpp
756986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInstrDesc.cpp
75748aaf27bSDimitry AndricSRCS_MIN+=	MC/MCInstrInfo.cpp
758986e05bcSDimitry AndricSRCS_MIN+=	MC/MCLinkerOptimizationHint.cpp
759986e05bcSDimitry AndricSRCS_MIN+=	MC/MCMachOStreamer.cpp
760986e05bcSDimitry AndricSRCS_MIN+=	MC/MCMachObjectTargetWriter.cpp
761986e05bcSDimitry AndricSRCS_MIN+=	MC/MCNullStreamer.cpp
762986e05bcSDimitry AndricSRCS_MIN+=	MC/MCObjectFileInfo.cpp
763986e05bcSDimitry AndricSRCS_MIN+=	MC/MCObjectStreamer.cpp
764986e05bcSDimitry AndricSRCS_MIN+=	MC/MCObjectWriter.cpp
765986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/AsmLexer.cpp
766986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/AsmParser.cpp
767986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/COFFAsmParser.cpp
768986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/DarwinAsmParser.cpp
769986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/ELFAsmParser.cpp
770986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCAsmLexer.cpp
771986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCAsmParser.cpp
772986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCAsmParserExtension.cpp
773986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCTargetAsmParser.cpp
7745e86819cSDimitry AndricSRCS_MIN+=	MC/MCParser/WasmAsmParser.cpp
775e8d8bef9SDimitry AndricSRCS_MIN+=	MC/MCPseudoProbe.cpp
776986e05bcSDimitry AndricSRCS_MIN+=	MC/MCRegisterInfo.cpp
777986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSchedule.cpp
778986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSection.cpp
779986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSectionCOFF.cpp
780986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSectionELF.cpp
781986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSectionMachO.cpp
7825897d2f0SDimitry AndricSRCS_MIN+=	MC/MCSectionWasm.cpp
7834014a71fSDimitry AndricSRCS_MIN+=	MC/MCSectionXCOFF.cpp
784986e05bcSDimitry AndricSRCS_MIN+=	MC/MCStreamer.cpp
785986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSubtargetInfo.cpp
786986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSymbol.cpp
787986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSymbolELF.cpp
78848aaf27bSDimitry AndricSRCS_MIN+=	MC/MCSymbolXCOFF.cpp
789986e05bcSDimitry AndricSRCS_MIN+=	MC/MCTargetOptions.cpp
79048aaf27bSDimitry AndricSRCS_MIN+=	MC/MCTargetOptionsCommandFlags.cpp
791986e05bcSDimitry AndricSRCS_MIN+=	MC/MCValue.cpp
7925897d2f0SDimitry AndricSRCS_MIN+=	MC/MCWasmStreamer.cpp
793986e05bcSDimitry AndricSRCS_MIN+=	MC/MCWin64EH.cpp
794edd7eaddSDimitry AndricSRCS_MIN+=	MC/MCWinCOFFStreamer.cpp
795986e05bcSDimitry AndricSRCS_MIN+=	MC/MCWinEH.cpp
7964014a71fSDimitry AndricSRCS_MIN+=	MC/MCXCOFFStreamer.cpp
7974014a71fSDimitry AndricSRCS_MIN+=	MC/MCXCOFFObjectTargetWriter.cpp
798986e05bcSDimitry AndricSRCS_MIN+=	MC/MachObjectWriter.cpp
799986e05bcSDimitry AndricSRCS_MIN+=	MC/StringTableBuilder.cpp
800986e05bcSDimitry AndricSRCS_MIN+=	MC/SubtargetFeature.cpp
8019f6e9a9fSDimitry AndricSRCS_MIN+=	MC/WasmObjectWriter.cpp
802986e05bcSDimitry AndricSRCS_MIN+=	MC/WinCOFFObjectWriter.cpp
8034014a71fSDimitry AndricSRCS_MIN+=	MC/XCOFFObjectWriter.cpp
804b1ae9102SDimitry AndricSRCS_EXT+=	MCA/CodeEmitter.cpp
805efa75597SDimitry AndricSRCS_EXT+=	MCA/Context.cpp
806efa75597SDimitry AndricSRCS_EXT+=	MCA/HWEventListener.cpp
807efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/HardwareUnit.cpp
808efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/LSUnit.cpp
809efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/RegisterFile.cpp
810efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/ResourceManager.cpp
811efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/RetireControlUnit.cpp
812efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/Scheduler.cpp
813efa75597SDimitry AndricSRCS_EXT+=	MCA/InstrBuilder.cpp
814efa75597SDimitry AndricSRCS_EXT+=	MCA/Instruction.cpp
815efa75597SDimitry AndricSRCS_EXT+=	MCA/Pipeline.cpp
816efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/DispatchStage.cpp
817efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/EntryStage.cpp
818efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/ExecuteStage.cpp
819efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/InstructionTables.cpp
82024b8043eSDimitry AndricSRCS_EXT+=	MCA/Stages/MicroOpQueueStage.cpp
821efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/RetireStage.cpp
822efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/Stage.cpp
823efa75597SDimitry AndricSRCS_EXT+=	MCA/Support.cpp
824986e05bcSDimitry AndricSRCS_MIN+=	Object/Archive.cpp
825986e05bcSDimitry AndricSRCS_MIN+=	Object/ArchiveWriter.cpp
826986e05bcSDimitry AndricSRCS_MIN+=	Object/Binary.cpp
8279c954a48SEd MasteSRCS_MIN+=	Object/COFFImportFile.cpp
8280db9a49eSDimitry AndricSRCS_MIW+=	Object/COFFModuleDefinition.cpp
829986e05bcSDimitry AndricSRCS_MIN+=	Object/COFFObjectFile.cpp
830f1a29dd3SDimitry AndricSRCS_MIN+=	Object/Decompressor.cpp
831986e05bcSDimitry AndricSRCS_MIN+=	Object/ELF.cpp
832986e05bcSDimitry AndricSRCS_MIN+=	Object/ELFObjectFile.cpp
833986e05bcSDimitry AndricSRCS_MIN+=	Object/Error.cpp
834986e05bcSDimitry AndricSRCS_MIN+=	Object/IRObjectFile.cpp
8355897d2f0SDimitry AndricSRCS_MIN+=	Object/IRSymtab.cpp
836986e05bcSDimitry AndricSRCS_MIN+=	Object/MachOObjectFile.cpp
8370db9a49eSDimitry AndricSRCS_MIW+=	Object/MachOUniversal.cpp
838021385abSAlex RichardsonSRCS_MIW+=	Object/MachOUniversalWriter.cpp
8390db9a49eSDimitry AndricSRCS_MIW+=	Object/Minidump.cpp
84009bfd043SDimitry AndricSRCS_MIN+=	Object/ModuleSymbolTable.cpp
841986e05bcSDimitry AndricSRCS_EXT+=	Object/Object.cpp
842986e05bcSDimitry AndricSRCS_MIN+=	Object/ObjectFile.cpp
843986e05bcSDimitry AndricSRCS_MIN+=	Object/RecordStreamer.cpp
8440db9a49eSDimitry AndricSRCS_MIW+=	Object/RelocationResolver.cpp
8450db9a49eSDimitry AndricSRCS_MIW+=	Object/SymbolSize.cpp
846986e05bcSDimitry AndricSRCS_MIN+=	Object/SymbolicFile.cpp
84748aaf27bSDimitry AndricSRCS_MIW+=	Object/TapiFile.cpp
848d311d024SDimitry AndricSRCS_MIW+=	Object/TapiUniversal.cpp
84909bfd043SDimitry AndricSRCS_MIN+=	Object/WasmObjectFile.cpp
8500db9a49eSDimitry AndricSRCS_MIW+=	Object/WindowsMachineFlag.cpp
851bbd32193SDimitry AndricSRCS_MIN+=	Object/WindowsResource.cpp
8524014a71fSDimitry AndricSRCS_MIN+=	Object/XCOFFObjectFile.cpp
853986e05bcSDimitry AndricSRCS_MIN+=	ObjectYAML/COFFYAML.cpp
854f9448bf3SDimitry AndricSRCS_EXT+=	ObjectYAML/CodeViewYAMLDebugSections.cpp
855f9448bf3SDimitry AndricSRCS_EXT+=	ObjectYAML/CodeViewYAMLSymbols.cpp
856f9448bf3SDimitry AndricSRCS_EXT+=	ObjectYAML/CodeViewYAMLTypes.cpp
85709bfd043SDimitry AndricSRCS_MIN+=	ObjectYAML/DWARFYAML.cpp
858986e05bcSDimitry AndricSRCS_MIN+=	ObjectYAML/ELFYAML.cpp
859986e05bcSDimitry AndricSRCS_MIN+=	ObjectYAML/MachOYAML.cpp
86024d58133SDimitry AndricSRCS_EXT+=	ObjectYAML/YAML.cpp
861986e05bcSDimitry AndricSRCS_MIN+=	Option/Arg.cpp
862986e05bcSDimitry AndricSRCS_MIN+=	Option/ArgList.cpp
863986e05bcSDimitry AndricSRCS_MIN+=	Option/OptTable.cpp
864986e05bcSDimitry AndricSRCS_MIN+=	Option/Option.cpp
86509bfd043SDimitry AndricSRCS_MIN+=	Passes/PassBuilder.cpp
8664014a71fSDimitry AndricSRCS_MIN+=	Passes/PassPlugin.cpp
8679771cac2SDimitry AndricSRCS_MIN+=	Passes/StandardInstrumentations.cpp
868986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/Coverage/CoverageMapping.cpp
869986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/Coverage/CoverageMappingReader.cpp
870986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/Coverage/CoverageMappingWriter.cpp
8711b49115aSEd MasteSRCS_MIN+=	ProfileData/GCOV.cpp
872986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/InstrProf.cpp
873986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/InstrProfReader.cpp
874986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/InstrProfWriter.cpp
875986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/ProfileSummaryBuilder.cpp
876986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/SampleProf.cpp
877986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/SampleProfReader.cpp
878961eb443SEd MasteSRCS_MIN+=	ProfileData/SampleProfWriter.cpp
879a2a9ef4bSDimitry AndricSRCS_MIN+=	Remarks/BitstreamRemarkParser.cpp
8809771cac2SDimitry AndricSRCS_MIN+=	Remarks/BitstreamRemarkSerializer.cpp
8814014a71fSDimitry AndricSRCS_MIN+=	Remarks/RemarkFormat.cpp
882a2a9ef4bSDimitry AndricSRCS_MIN+=	Remarks/RemarkParser.cpp
8839771cac2SDimitry AndricSRCS_MIN+=	Remarks/RemarkSerializer.cpp
88448aaf27bSDimitry AndricSRCS_MIN+=	Remarks/RemarkStreamer.cpp
8854014a71fSDimitry AndricSRCS_MIN+=	Remarks/RemarkStringTable.cpp
886a2a9ef4bSDimitry AndricSRCS_MIN+=	Remarks/YAMLRemarkParser.cpp
8874014a71fSDimitry AndricSRCS_MIN+=	Remarks/YAMLRemarkSerializer.cpp
8885e86819cSDimitry AndricSRCS_MIN+=	Support/AArch64TargetParser.cpp
889054f9817SDimitry AndricSRCS_MIN+=	Support/ABIBreak.cpp
890e8d8bef9SDimitry AndricSRCS_MIN+=	Support/APFixedPoint.cpp
891986e05bcSDimitry AndricSRCS_MIN+=	Support/APFloat.cpp
892986e05bcSDimitry AndricSRCS_MIN+=	Support/APInt.cpp
893986e05bcSDimitry AndricSRCS_MIN+=	Support/APSInt.cpp
8945897d2f0SDimitry AndricSRCS_MIN+=	Support/ARMAttributeParser.cpp
895986e05bcSDimitry AndricSRCS_MIN+=	Support/ARMBuildAttrs.cpp
8965e86819cSDimitry AndricSRCS_MIN+=	Support/ARMTargetParser.cpp
8971b85b68dSCameron KatriSRCS_MIN+=	Support/ARMWinEH.cpp
898986e05bcSDimitry AndricSRCS_MIN+=	Support/Allocator.cpp
8995897d2f0SDimitry AndricSRCS_MIN+=	Support/BinaryStreamError.cpp
9005897d2f0SDimitry AndricSRCS_MIN+=	Support/BinaryStreamReader.cpp
901d8866befSDimitry AndricSRCS_MIN+=	Support/BinaryStreamRef.cpp
9025897d2f0SDimitry AndricSRCS_MIN+=	Support/BinaryStreamWriter.cpp
903986e05bcSDimitry AndricSRCS_MIN+=	Support/BlockFrequency.cpp
904986e05bcSDimitry AndricSRCS_MIN+=	Support/BranchProbability.cpp
9055e86819cSDimitry AndricSRCS_MIN+=	Support/BuryPointer.cpp
906986e05bcSDimitry AndricSRCS_MIN+=	Support/CachePruning.cpp
9070db9a49eSDimitry AndricSRCS_MIW+=	Support/COM.cpp
9084d4aa256SDimitry AndricSRCS_MIN+=	Support/CRC.cpp
90909bfd043SDimitry AndricSRCS_MIN+=	Support/Chrono.cpp
91036cb3905SDimitry AndricSRCS_MIN+=	Support/CodeGenCoverage.cpp
911986e05bcSDimitry AndricSRCS_MIN+=	Support/CommandLine.cpp
912986e05bcSDimitry AndricSRCS_MIN+=	Support/Compression.cpp
91309bfd043SDimitry AndricSRCS_MIN+=	Support/ConvertUTF.cpp
914986e05bcSDimitry AndricSRCS_MIN+=	Support/ConvertUTFWrapper.cpp
915986e05bcSDimitry AndricSRCS_MIN+=	Support/CrashRecoveryContext.cpp
916986e05bcSDimitry AndricSRCS_MIN+=	Support/DAGDeltaAlgorithm.cpp
9179f6e9a9fSDimitry AndricSRCS_MIN+=	Support/DJB.cpp
918986e05bcSDimitry AndricSRCS_MIN+=	Support/DataExtractor.cpp
919986e05bcSDimitry AndricSRCS_MIN+=	Support/Debug.cpp
9205897d2f0SDimitry AndricSRCS_MIN+=	Support/DebugCounter.cpp
921986e05bcSDimitry AndricSRCS_MIN+=	Support/DeltaAlgorithm.cpp
922986e05bcSDimitry AndricSRCS_MIN+=	Support/DynamicLibrary.cpp
92348aaf27bSDimitry AndricSRCS_MIN+=	Support/ELFAttributeParser.cpp
92448aaf27bSDimitry AndricSRCS_MIN+=	Support/ELFAttributes.cpp
925986e05bcSDimitry AndricSRCS_MIN+=	Support/Errno.cpp
926986e05bcSDimitry AndricSRCS_MIN+=	Support/Error.cpp
927986e05bcSDimitry AndricSRCS_MIN+=	Support/ErrorHandling.cpp
928e8d8bef9SDimitry AndricSRCS_MIN+=	Support/FileCollector.cpp
929021385abSAlex RichardsonSRCS_MIW+=	Support/FileOutputBuffer.cpp
9309771cac2SDimitry AndricSRCS_MIN+=	Support/FileUtilities.cpp
931986e05bcSDimitry AndricSRCS_MIN+=	Support/FoldingSet.cpp
93209bfd043SDimitry AndricSRCS_MIN+=	Support/FormatVariadic.cpp
933986e05bcSDimitry AndricSRCS_MIN+=	Support/FormattedStream.cpp
93409bfd043SDimitry AndricSRCS_MIN+=	Support/GlobPattern.cpp
935986e05bcSDimitry AndricSRCS_MIN+=	Support/GraphWriter.cpp
936986e05bcSDimitry AndricSRCS_MIN+=	Support/Hashing.cpp
937986e05bcSDimitry AndricSRCS_MIN+=	Support/Host.cpp
9389f6e9a9fSDimitry AndricSRCS_MIN+=	Support/InitLLVM.cpp
939e8d8bef9SDimitry AndricSRCS_MIN+=	Support/InstructionCost.cpp
940986e05bcSDimitry AndricSRCS_MIN+=	Support/IntEqClasses.cpp
941986e05bcSDimitry AndricSRCS_MIN+=	Support/IntervalMap.cpp
9425e86819cSDimitry AndricSRCS_MIN+=	Support/ItaniumManglingCanonicalizer.cpp
9432d31b1b8SDimitry AndricSRCS_MIN+=	Support/JSON.cpp
94436cb3905SDimitry AndricSRCS_MIN+=	Support/KnownBits.cpp
945986e05bcSDimitry AndricSRCS_MIN+=	Support/LEB128.cpp
946986e05bcSDimitry AndricSRCS_MIN+=	Support/LineIterator.cpp
947986e05bcSDimitry AndricSRCS_MIN+=	Support/Locale.cpp
948986e05bcSDimitry AndricSRCS_MIN+=	Support/LockFileManager.cpp
9495897d2f0SDimitry AndricSRCS_MIN+=	Support/LowLevelType.cpp
950986e05bcSDimitry AndricSRCS_MIN+=	Support/MD5.cpp
951986e05bcSDimitry AndricSRCS_MIN+=	Support/ManagedStatic.cpp
952986e05bcSDimitry AndricSRCS_MIN+=	Support/MathExtras.cpp
95348aaf27bSDimitry AndricSRCS_MIN+=	Support/MemAlloc.cpp
954021385abSAlex RichardsonSRCS_MIW+=	Support/Memory.cpp
955986e05bcSDimitry AndricSRCS_MIN+=	Support/MemoryBuffer.cpp
956e8d8bef9SDimitry AndricSRCS_MIN+=	Support/MemoryBufferRef.cpp
95709bfd043SDimitry AndricSRCS_MIN+=	Support/NativeFormatting.cpp
95848aaf27bSDimitry AndricSRCS_MIN+=	Support/OptimizedStructLayout.cpp
9594014a71fSDimitry AndricSRCS_MIN+=	Support/Optional.cpp
960e8d8bef9SDimitry AndricSRCS_EXL+=	Support/Parallel.cpp
961986e05bcSDimitry AndricSRCS_MIN+=	Support/Path.cpp
962986e05bcSDimitry AndricSRCS_MIN+=	Support/PluginLoader.cpp
963986e05bcSDimitry AndricSRCS_MIN+=	Support/PrettyStackTrace.cpp
964986e05bcSDimitry AndricSRCS_MIN+=	Support/Process.cpp
965986e05bcSDimitry AndricSRCS_MIN+=	Support/Program.cpp
96648aaf27bSDimitry AndricSRCS_MIN+=	Support/RISCVAttributeParser.cpp
96748aaf27bSDimitry AndricSRCS_MIN+=	Support/RISCVAttributes.cpp
968986e05bcSDimitry AndricSRCS_MIN+=	Support/RWMutex.cpp
969986e05bcSDimitry AndricSRCS_MIN+=	Support/RandomNumberGenerator.cpp
970986e05bcSDimitry AndricSRCS_MIN+=	Support/Regex.cpp
971986e05bcSDimitry AndricSRCS_MIN+=	Support/SHA1.cpp
972986e05bcSDimitry AndricSRCS_MIN+=	Support/ScaledNumber.cpp
973986e05bcSDimitry AndricSRCS_MIN+=	Support/ScopedPrinter.cpp
974986e05bcSDimitry AndricSRCS_MIN+=	Support/Signals.cpp
9754014a71fSDimitry AndricSRCS_MIN+=	Support/Signposts.cpp
976986e05bcSDimitry AndricSRCS_MIN+=	Support/SmallPtrSet.cpp
977986e05bcSDimitry AndricSRCS_MIN+=	Support/SmallVector.cpp
978986e05bcSDimitry AndricSRCS_MIN+=	Support/SourceMgr.cpp
979986e05bcSDimitry AndricSRCS_MIN+=	Support/SpecialCaseList.cpp
980986e05bcSDimitry AndricSRCS_MIN+=	Support/Statistic.cpp
981986e05bcSDimitry AndricSRCS_MIN+=	Support/StringExtras.cpp
982986e05bcSDimitry AndricSRCS_MIN+=	Support/StringMap.cpp
983986e05bcSDimitry AndricSRCS_MIN+=	Support/StringRef.cpp
984986e05bcSDimitry AndricSRCS_MIN+=	Support/StringSaver.cpp
98548aaf27bSDimitry AndricSRCS_MIN+=	Support/SuffixTree.cpp
9865e86819cSDimitry AndricSRCS_MIN+=	Support/SymbolRemappingReader.cpp
987986e05bcSDimitry AndricSRCS_EXT+=	Support/SystemUtils.cpp
9881ae4f0f6SDimitry AndricSRCS_LLD+=	Support/TarWriter.cpp
989986e05bcSDimitry AndricSRCS_MIN+=	Support/TargetParser.cpp
990986e05bcSDimitry AndricSRCS_MIN+=	Support/TargetRegistry.cpp
991986e05bcSDimitry AndricSRCS_MIN+=	Support/ThreadLocal.cpp
9920db9a49eSDimitry AndricSRCS_MIW+=	Support/ThreadPool.cpp
993986e05bcSDimitry AndricSRCS_MIN+=	Support/Threading.cpp
9944014a71fSDimitry AndricSRCS_MIN+=	Support/TimeProfiler.cpp
995986e05bcSDimitry AndricSRCS_MIN+=	Support/Timer.cpp
996986e05bcSDimitry AndricSRCS_MIN+=	Support/ToolOutputFile.cpp
99709bfd043SDimitry AndricSRCS_MIN+=	Support/TrigramIndex.cpp
998986e05bcSDimitry AndricSRCS_MIN+=	Support/Triple.cpp
999986e05bcSDimitry AndricSRCS_MIN+=	Support/Twine.cpp
1000986e05bcSDimitry AndricSRCS_MIN+=	Support/Unicode.cpp
10019f6e9a9fSDimitry AndricSRCS_MIN+=	Support/UnicodeCaseFold.cpp
1002986e05bcSDimitry AndricSRCS_MIN+=	Support/Valgrind.cpp
10035e86819cSDimitry AndricSRCS_MIN+=	Support/VirtualFileSystem.cpp
10049f6e9a9fSDimitry AndricSRCS_MIN+=	Support/VersionTuple.cpp
10054014a71fSDimitry AndricSRCS_MIN+=	Support/Watchdog.cpp
100680a8c751SEd MasteSRCS_MIN+=	Support/WithColor.cpp
100748aaf27bSDimitry AndricSRCS_MIN+=	Support/X86TargetParser.cpp
1008986e05bcSDimitry AndricSRCS_MIN+=	Support/YAMLParser.cpp
1009986e05bcSDimitry AndricSRCS_MIN+=	Support/YAMLTraits.cpp
101023559b6aSDimitry AndricSRCS_FUL+=	Support/Z3Solver.cpp
1011986e05bcSDimitry AndricSRCS_MIN+=	Support/circular_raw_ostream.cpp
1012986e05bcSDimitry AndricSRCS_MIN+=	Support/raw_os_ostream.cpp
1013986e05bcSDimitry AndricSRCS_MIN+=	Support/raw_ostream.cpp
1014986e05bcSDimitry AndricSRCS_MIN+=	Support/regcomp.c
1015986e05bcSDimitry AndricSRCS_MIN+=	Support/regerror.c
1016986e05bcSDimitry AndricSRCS_MIN+=	Support/regexec.c
1017986e05bcSDimitry AndricSRCS_MIN+=	Support/regfree.c
1018986e05bcSDimitry AndricSRCS_MIN+=	Support/regstrlcpy.c
101980a8c751SEd MasteSRCS_MIN+=	Support/xxhash.cpp
1020d409305fSDimitry AndricSRCS_MIN+=	TableGen/DetailedRecordsBackend.cpp
1021986e05bcSDimitry AndricSRCS_MIN+=	TableGen/Error.cpp
1022d25b9f8fSDimitry AndricSRCS_MIN+=	TableGen/JSONBackend.cpp
1023986e05bcSDimitry AndricSRCS_MIN+=	TableGen/Main.cpp
1024986e05bcSDimitry AndricSRCS_MIN+=	TableGen/Record.cpp
1025986e05bcSDimitry AndricSRCS_MIN+=	TableGen/SetTheory.cpp
1026986e05bcSDimitry AndricSRCS_MIN+=	TableGen/StringMatcher.cpp
1027986e05bcSDimitry AndricSRCS_MIN+=	TableGen/TGLexer.cpp
1028986e05bcSDimitry AndricSRCS_MIN+=	TableGen/TGParser.cpp
1029986e05bcSDimitry AndricSRCS_MIN+=	TableGen/TableGenBackend.cpp
1030cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no"
1031986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64A53Fix835769.cpp
1032986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64A57FPLoadBalancing.cpp
1033986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64AdvSIMDScalarPass.cpp
1034986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64AsmPrinter.cpp
10355e86819cSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64BranchTargets.cpp
10364014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CallingConvention.cpp
1037986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp
1038986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CollectLOH.cpp
10395e86819cSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CompressJumpTables.cpp
1040edd7eaddSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CondBrTuning.cpp
1041986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ConditionOptimizer.cpp
1042986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ConditionalCompares.cpp
1043986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
10444014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ExpandImm.cpp
1045986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ExpandPseudoInsts.cpp
1046b40b48b8SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64FalkorHWPFFix.cpp
1047986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64FastISel.cpp
1048986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64FrameLowering.cpp
1049986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ISelDAGToDAG.cpp
1050986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ISelLowering.cpp
1051986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64InstrInfo.cpp
1052986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64LoadStoreOptimizer.cpp
1053986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MCInstLower.cpp
105448aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MachineFunctionInfo.cpp
10555897d2f0SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MacroFusion.cpp
1056986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64PBQPRegAlloc.cpp
1057986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64PromoteConstant.cpp
1058986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64RedundantCopyElimination.cpp
1059986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64RegisterInfo.cpp
106036cb3905SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SIMDInstrOpt.cpp
106148aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SLSHardening.cpp
1062986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SelectionDAGInfo.cpp
10635e86819cSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SpeculationHardening.cpp
10644014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64StackTagging.cpp
10659771cac2SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64StackTaggingPreRA.cpp
1066986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64StorePairSuppress.cpp
1067986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64Subtarget.cpp
1068986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64TargetMachine.cpp
1069986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64TargetObjectFile.cpp
1070986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64TargetTransformInfo.cpp
1071986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AsmParser/AArch64AsmParser.cpp
107230d4828eSDimitry AndricSRCS_XDW+=	Target/AArch64/Disassembler/AArch64Disassembler.cpp
107330d4828eSDimitry AndricSRCS_XDW+=	Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp
107448aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64CallLowering.cpp
107548aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64InstructionSelector.cpp
107648aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64LegalizerInfo.cpp
107748aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64PreLegalizerCombiner.cpp
107848aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64PostLegalizerCombiner.cpp
1079e8d8bef9SDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64PostLegalizerLowering.cpp
1080e8d8bef9SDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64PostSelectOptimize.cpp
108148aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64RegisterBankInfo.cpp
1082986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
1083986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
1084986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp
10854014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp
1086986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
1087986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
1088986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
1089986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
1090986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
1091986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp
1092a580b014SDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp
1093a580b014SDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp
109448aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/SVEIntrinsicOpts.cpp
1095986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
1096986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/Utils/AArch64BaseInfo.cpp
1097cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64
1098cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no"
1099986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/A15SDOptimizer.cpp
1100986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMAsmPrinter.cpp
1101986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMBaseInstrInfo.cpp
1102986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMBaseRegisterInfo.cpp
11034014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMBasicBlockInfo.cpp
1104e8d8bef9SDimitry AndricSRCS_MIN+=	Target/ARM/ARMBlockPlacement.cpp
11053d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMCallLowering.cpp
11064014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMCallingConv.cpp
1107986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMConstantIslandPass.cpp
1108986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMConstantPoolValue.cpp
1109986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMExpandPseudoInsts.cpp
1110986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMFastISel.cpp
1111986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMFrameLowering.cpp
1112986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMHazardRecognizer.cpp
1113986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMISelDAGToDAG.cpp
1114986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMISelLowering.cpp
1115986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMInstrInfo.cpp
11163d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMInstructionSelector.cpp
11173d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMLegalizerInfo.cpp
1118986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMLoadStoreOptimizer.cpp
11194014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMLowOverheadLoops.cpp
1120986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMMCInstLower.cpp
1121986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMMachineFunctionInfo.cpp
1122edd7eaddSDimitry AndricSRCS_MIN+=	Target/ARM/ARMMacroFusion.cpp
1123986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMOptimizeBarriersPass.cpp
11249f6e9a9fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMParallelDSP.cpp
11253d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMRegisterBankInfo.cpp
1126986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMRegisterInfo.cpp
1127e8d8bef9SDimitry AndricSRCS_MIN+=	Target/ARM/ARMSLSHardening.cpp
1128986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMSelectionDAGInfo.cpp
1129986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMSubtarget.cpp
1130986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMTargetMachine.cpp
1131986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMTargetObjectFile.cpp
1132986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMTargetTransformInfo.cpp
1133986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/AsmParser/ARMAsmParser.cpp
1134986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Disassembler/ARMDisassembler.cpp
1135986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
1136986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
1137986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
11384014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMInstPrinter.cpp
1139986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp
1140986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
1141986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCExpr.cpp
1142986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
1143986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp
1144986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
1145986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
1146986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp
1147986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp
1148986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp
1149986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MLxExpansionPass.cpp
11509771cac2SDimitry AndricSRCS_MIN+=	Target/ARM/MVEGatherScatterLowering.cpp
11519771cac2SDimitry AndricSRCS_MIN+=	Target/ARM/MVETailPredication.cpp
11529771cac2SDimitry AndricSRCS_MIN+=	Target/ARM/MVEVPTBlockPass.cpp
115348aaf27bSDimitry AndricSRCS_MIN+=	Target/ARM/MVEVPTOptimisationsPass.cpp
1154986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/TargetInfo/ARMTargetInfo.cpp
1155986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb1FrameLowering.cpp
1156986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb1InstrInfo.cpp
1157986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb2ITBlockPass.cpp
1158986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb2InstrInfo.cpp
1159986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb2SizeReduction.cpp
1160986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ThumbRegisterInfo.cpp
116136cb3905SDimitry AndricSRCS_MIN+=	Target/ARM/Utils/ARMBaseInfo.cpp
1162cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM
116389edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no"
116489edb881SDimitry AndricSRCS_MIN+=	Target/BPF/AsmParser/BPFAsmParser.cpp
1165a9365f4aSDimitry AndricSRCS_MIN+=	Target/BPF/BPFAbstractMemberAccess.cpp
1166*d30dc78fSDimitry AndricSRCS_MIN+=	Target/BPF/BPFAdjustOpt.cpp
116789edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFAsmPrinter.cpp
1168*d30dc78fSDimitry AndricSRCS_MIN+=	Target/BPF/BPFCheckAndAdjustIR.cpp
116989edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFFrameLowering.cpp
117089edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFISelDAGToDAG.cpp
117189edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFISelLowering.cpp
117289edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFInstrInfo.cpp
117389edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFMCInstLower.cpp
11740a462115SDimitry AndricSRCS_MIN+=	Target/BPF/BPFMIChecking.cpp
1175f9c0a512SDimitry AndricSRCS_MIN+=	Target/BPF/BPFMIPeephole.cpp
1176a9365f4aSDimitry AndricSRCS_MIN+=	Target/BPF/BPFMISimplifyPatchable.cpp
11771c1ab429SDimitry AndricSRCS_MIN+=	Target/BPF/BPFPreserveDIType.cpp
117889edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFRegisterInfo.cpp
1179f9c0a512SDimitry AndricSRCS_MIN+=	Target/BPF/BPFSelectionDAGInfo.cpp
118089edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFSubtarget.cpp
118189edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFTargetMachine.cpp
11820a462115SDimitry AndricSRCS_MIN+=	Target/BPF/BTFDebug.cpp
118389edb881SDimitry AndricSRCS_MIN+=	Target/BPF/Disassembler/BPFDisassembler.cpp
118489edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFAsmBackend.cpp
118589edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
11864014a71fSDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFInstPrinter.cpp
118789edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp
118889edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp
118989edb881SDimitry AndricSRCS_MIN+=	Target/BPF/TargetInfo/BPFTargetInfo.cpp
119089edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF
1191cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no"
1192986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/AsmParser/MipsAsmParser.cpp
119330d4828eSDimitry AndricSRCS_XDW+=	Target/Mips/Disassembler/MipsDisassembler.cpp
1194986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp
1195986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsABIInfo.cpp
1196986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
1197986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
1198986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsELFStreamer.cpp
11994014a71fSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsInstPrinter.cpp
1200986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
1201986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
1202986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCExpr.cpp
1203986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
1204986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
1205986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsOptionRecord.cpp
1206986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
1207f37b6182SDimitry AndricSRCS_MIN+=	Target/Mips/MicroMipsSizeReduction.cpp
1208986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16FrameLowering.cpp
1209986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16HardFloat.cpp
1210986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16HardFloatInfo.cpp
1211986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16ISelDAGToDAG.cpp
1212986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16ISelLowering.cpp
1213986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16InstrInfo.cpp
1214986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16RegisterInfo.cpp
1215986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsAnalyzeImmediate.cpp
1216986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsAsmPrinter.cpp
12179f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsBranchExpansion.cpp
1218986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsCCState.cpp
12199f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsCallLowering.cpp
1220986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsConstantIslandPass.cpp
1221986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsDelaySlotFiller.cpp
12229f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsExpandPseudo.cpp
1223986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsFastISel.cpp
1224986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsFrameLowering.cpp
1225986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsISelDAGToDAG.cpp
1226986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsISelLowering.cpp
1227986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsInstrInfo.cpp
12289f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsInstructionSelector.cpp
12299f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsLegalizerInfo.cpp
1230986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsMCInstLower.cpp
1231986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsMachineFunction.cpp
1232986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsModuleISelDAGToDAG.cpp
1233986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsOptimizePICCall.cpp
1234986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsOs16.cpp
12355e86819cSDimitry AndricSRCS_MIN+=	Target/Mips/MipsPreLegalizerCombiner.cpp
12369f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsRegisterBankInfo.cpp
1237986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsRegisterInfo.cpp
1238986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEFrameLowering.cpp
1239986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEISelDAGToDAG.cpp
1240986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEISelLowering.cpp
1241986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEInstrInfo.cpp
1242986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSERegisterInfo.cpp
1243986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSubtarget.cpp
1244986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsTargetMachine.cpp
1245986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsTargetObjectFile.cpp
1246986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/TargetInfo/MipsTargetInfo.cpp
1247cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS
1248cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no"
1249986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/AsmParser/PPCAsmParser.cpp
1250986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/Disassembler/PPCDisassembler.cpp
1251e8d8bef9SDimitry AndricSRCS_MIN+=	Target/PowerPC/GISel/PPCCallLowering.cpp
1252e8d8bef9SDimitry AndricSRCS_MIN+=	Target/PowerPC/GISel/PPCInstructionSelector.cpp
1253e8d8bef9SDimitry AndricSRCS_MIN+=	Target/PowerPC/GISel/PPCLegalizerInfo.cpp
1254e8d8bef9SDimitry AndricSRCS_MIN+=	Target/PowerPC/GISel/PPCRegisterBankInfo.cpp
1255986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp
1256986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
125748aaf27bSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCELFStreamer.cpp
12584014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCInstPrinter.cpp
1259986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
1260986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
1261986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
1262986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
1263986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCPredicates.cpp
12644014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCXCOFFObjectWriter.cpp
1265986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCAsmPrinter.cpp
1266986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCBoolRetToInt.cpp
126736cb3905SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCBranchCoalescing.cpp
1268986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCBranchSelector.cpp
1269986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCCCState.cpp
1270986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCCTRLoops.cpp
12714014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCCallingConv.cpp
1272986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCEarlyReturn.cpp
12735897d2f0SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCExpandISEL.cpp
1274986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCFastISel.cpp
1275986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCFrameLowering.cpp
1276986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCHazardRecognizers.cpp
1277986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCISelDAGToDAG.cpp
1278986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCISelLowering.cpp
1279986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCInstrInfo.cpp
12809771cac2SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCLoopInstrFormPrep.cpp
12819771cac2SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCLowerMASSVEntries.cpp
128248aaf27bSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMacroFusion.cpp
1283986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMCInstLower.cpp
1284986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMIPeephole.cpp
1285986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMachineFunctionInfo.cpp
12864014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMachineScheduler.cpp
128736cb3905SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCPreEmitPeephole.cpp
128836cb3905SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCReduceCRLogicals.cpp
1289986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCRegisterInfo.cpp
1290986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCSubtarget.cpp
1291986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTLSDynamicCall.cpp
1292986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTOCRegDeps.cpp
1293986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTargetMachine.cpp
1294986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTargetObjectFile.cpp
1295986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTargetTransformInfo.cpp
1296986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCVSXCopy.cpp
1297986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCVSXFMAMutate.cpp
1298986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCVSXSwapRemoval.cpp
1299986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
1300cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC
1301b2689b12SMitchell Horne.if ${MK_LLVM_TARGET_RISCV} != "no"
1302b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/AsmParser/RISCVAsmParser.cpp
1303b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/Disassembler/RISCVDisassembler.cpp
1304b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
1305e8d8bef9SDimitry AndricSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVBaseInfo.cpp
1306b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp
1307b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVELFStreamer.cpp
13084014a71fSDimitry AndricSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVInstPrinter.cpp
1309e8d8bef9SDimitry AndricSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMatInt.cpp
1310b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.cpp
1311b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp
1312b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp
1313b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp
1314b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVTargetStreamer.cpp
1315b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVAsmPrinter.cpp
13169771cac2SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVCallLowering.cpp
1317e8d8bef9SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVCleanupVSETVLI.cpp
131848aaf27bSDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVExpandAtomicPseudoInsts.cpp
1319b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVExpandPseudoInsts.cpp
1320b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVFrameLowering.cpp
1321b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVInstrInfo.cpp
13229771cac2SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVInstructionSelector.cpp
1323b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVISelDAGToDAG.cpp
1324b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVISelLowering.cpp
13259771cac2SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVLegalizerInfo.cpp
1326b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVMCInstLower.cpp
1327b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVMergeBaseOffset.cpp
13289771cac2SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVRegisterBankInfo.cpp
1329b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVRegisterInfo.cpp
1330b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVSubtarget.cpp
1331b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVTargetMachine.cpp
1332b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVTargetObjectFile.cpp
1333869fe6d5SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVTargetTransformInfo.cpp
1334b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/TargetInfo/RISCVTargetInfo.cpp
1335b2689b12SMitchell Horne.endif # MK_LLVM_TARGET_RISCV
1336986e05bcSDimitry AndricSRCS_MIN+=	Target/Target.cpp
1337986e05bcSDimitry AndricSRCS_MIN+=	Target/TargetLoweringObjectFile.cpp
1338986e05bcSDimitry AndricSRCS_MIN+=	Target/TargetMachine.cpp
1339986e05bcSDimitry AndricSRCS_MIN+=	Target/TargetMachineC.cpp
1340cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no"
1341986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/AsmParser/X86AsmParser.cpp
134230d4828eSDimitry AndricSRCS_XDW+=	Target/X86/Disassembler/X86Disassembler.cpp
13434014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86ATTInstPrinter.cpp
1344986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86AsmBackend.cpp
1345986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp
13464014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86InstComments.cpp
13474014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86InstPrinterCommon.cpp
13484014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86IntelInstPrinter.cpp
1349986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
1350986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
1351986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
1352986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
135348aaf27bSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86ShuffleDecode.cpp
1354986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
1355986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
135636cb3905SDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp
1357986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/TargetInfo/X86TargetInfo.cpp
1358986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86AsmPrinter.cpp
13599f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86AvoidStoreForwardingBlocks.cpp
13609771cac2SDimitry AndricSRCS_MIN+=	Target/X86/X86AvoidTrailingCall.cpp
1361986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86CallFrameOptimization.cpp
13623d54deb3SDimitry AndricSRCS_MIN+=	Target/X86/X86CallLowering.cpp
136309bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86CallingConv.cpp
1364b40b48b8SDimitry AndricSRCS_MIN+=	Target/X86/X86CmovConversion.cpp
13655e86819cSDimitry AndricSRCS_MIN+=	Target/X86/X86DiscriminateMemOps.cpp
136636cb3905SDimitry AndricSRCS_MIN+=	Target/X86/X86DomainReassignment.cpp
136709bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86EvexToVex.cpp
1368986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ExpandPseudo.cpp
1369986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FastISel.cpp
1370986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FixupBWInsts.cpp
1371986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FixupLEAs.cpp
1372986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FixupSetCC.cpp
13730556cfadSDimitry AndricSRCS_MIN+=	Target/X86/X86FlagsCopyLowering.cpp
1374986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FloatingPoint.cpp
1375986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FrameLowering.cpp
1376986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ISelDAGToDAG.cpp
1377986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ISelLowering.cpp
13789f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86IndirectBranchTracking.cpp
13790946e70aSDimitry AndricSRCS_MIN+=	Target/X86/X86IndirectThunks.cpp
13805e86819cSDimitry AndricSRCS_MIN+=	Target/X86/X86InsertPrefetch.cpp
138148aaf27bSDimitry AndricSRCS_MIN+=	Target/X86/X86InsertWait.cpp
1382e8d8bef9SDimitry AndricSRCS_MIN+=	Target/X86/X86InstCombineIntrinsic.cpp
138309bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86InstrFMA3Info.cpp
13849f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86InstrFoldTables.cpp
1385986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86InstrInfo.cpp
13863d54deb3SDimitry AndricSRCS_MIN+=	Target/X86/X86InstructionSelector.cpp
138709bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86InterleavedAccess.cpp
13883d54deb3SDimitry AndricSRCS_MIN+=	Target/X86/X86LegalizerInfo.cpp
13890946e70aSDimitry AndricSRCS_MIN+=	Target/X86/X86LoadValueInjectionLoadHardening.cpp
13900946e70aSDimitry AndricSRCS_MIN+=	Target/X86/X86LoadValueInjectionRetHardening.cpp
1391e8d8bef9SDimitry AndricSRCS_MIN+=	Target/X86/X86LowerAMXType.cpp
1392986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86MCInstLower.cpp
1393986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86MachineFunctionInfo.cpp
13945897d2f0SDimitry AndricSRCS_MIN+=	Target/X86/X86MacroFusion.cpp
1395986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86OptimizeLEAs.cpp
1396986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86PadShortFunction.cpp
139748aaf27bSDimitry AndricSRCS_MIN+=	Target/X86/X86PartialReduction.cpp
1398e8d8bef9SDimitry AndricSRCS_MIN+=	Target/X86/X86PreTileConfig.cpp
13993d54deb3SDimitry AndricSRCS_MIN+=	Target/X86/X86RegisterBankInfo.cpp
1400986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86RegisterInfo.cpp
1401986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86SelectionDAGInfo.cpp
1402986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ShuffleDecodeConstantPool.cpp
140348aaf27bSDimitry AndricSRCS_MIN+=	Target/X86/X86SpeculativeExecutionSideEffectSuppression.cpp
14049f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86SpeculativeLoadHardening.cpp
1405986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86Subtarget.cpp
1406986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86TargetMachine.cpp
1407986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86TargetObjectFile.cpp
1408986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86TargetTransformInfo.cpp
1409e8d8bef9SDimitry AndricSRCS_MIN+=	Target/X86/X86TileConfig.cpp
1410986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86VZeroUpper.cpp
1411986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86WinAllocaExpander.cpp
1412986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86WinEHState.cpp
1413cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86
1414d311d024SDimitry AndricSRCS_MIW+=	TextAPI/MachO/Architecture.cpp
1415d311d024SDimitry AndricSRCS_MIW+=	TextAPI/MachO/ArchitectureSet.cpp
1416d311d024SDimitry AndricSRCS_MIW+=	TextAPI/MachO/InterfaceFile.cpp
1417d311d024SDimitry AndricSRCS_MIW+=	TextAPI/MachO/PackedVersion.cpp
1418d311d024SDimitry AndricSRCS_MIW+=	TextAPI/MachO/Platform.cpp
1419d311d024SDimitry AndricSRCS_MIW+=	TextAPI/MachO/Target.cpp
1420d311d024SDimitry AndricSRCS_MIW+=	TextAPI/MachO/TextStub.cpp
1421d311d024SDimitry AndricSRCS_MIW+=	TextAPI/MachO/TextStubCommon.cpp
14229c954a48SEd MasteSRCS_MIN+=	ToolDrivers/llvm-dlltool/DlltoolDriver.cpp
14230db9a49eSDimitry AndricSRCS_MIW+=	ToolDrivers/llvm-lib/LibDriver.cpp
14249f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
14259f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/AggressiveInstCombine/TruncInstCombine.cpp
14269771cac2SDimitry AndricSRCS_MIN+=	Transforms/CFGuard/CFGuard.cpp
142709bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroCleanup.cpp
142809bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroEarly.cpp
142909bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroElide.cpp
143009bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroFrame.cpp
143109bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroSplit.cpp
143209bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/Coroutines.cpp
1433e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/HelloNew/HelloWorld.cpp
143409bfd043SDimitry AndricSRCS_MIN+=	Transforms/IPO/AlwaysInliner.cpp
1435e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/IPO/Annotation2Metadata.cpp
1436986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ArgumentPromotion.cpp
14374014a71fSDimitry AndricSRCS_MIN+=	Transforms/IPO/Attributor.cpp
143848aaf27bSDimitry AndricSRCS_MIN+=	Transforms/IPO/AttributorAttributes.cpp
1439986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/BarrierNoopPass.cpp
1440e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/IPO/BlockExtractor.cpp
144136cb3905SDimitry AndricSRCS_MIN+=	Transforms/IPO/CalledValuePropagation.cpp
1442986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ConstantMerge.cpp
1443986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/CrossDSOCFI.cpp
1444986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/DeadArgumentElimination.cpp
1445986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ElimAvailExtern.cpp
1446986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ExtractGV.cpp
1447986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ForceFunctionAttrs.cpp
1448986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/FunctionAttrs.cpp
1449986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/FunctionImport.cpp
1450986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/GlobalDCE.cpp
1451986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/GlobalOpt.cpp
145209bfd043SDimitry AndricSRCS_MIN+=	Transforms/IPO/GlobalSplit.cpp
14535e86819cSDimitry AndricSRCS_MIN+=	Transforms/IPO/HotColdSplitting.cpp
1454986e05bcSDimitry AndricSRCS_EXT+=	Transforms/IPO/IPO.cpp
1455e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/IPO/IROutliner.cpp
1456986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/InferFunctionAttrs.cpp
1457986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/InlineSimple.cpp
1458986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/Inliner.cpp
1459986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/Internalize.cpp
1460986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/LoopExtractor.cpp
1461986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/LowerTypeTests.cpp
1462986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/MergeFunctions.cpp
146348aaf27bSDimitry AndricSRCS_MIN+=	Transforms/IPO/OpenMPOpt.cpp
1464986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/PartialInlining.cpp
1465986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/PassManagerBuilder.cpp
1466986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/PruneEH.cpp
14679f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/IPO/SCCP.cpp
1468e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/IPO/SampleContextTracker.cpp
1469986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/SampleProfile.cpp
1470e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/IPO/SampleProfileProbe.cpp
1471986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/StripDeadPrototypes.cpp
1472986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/StripSymbols.cpp
14739f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/IPO/SyntheticCountsPropagation.cpp
147409bfd043SDimitry AndricSRCS_MIN+=	Transforms/IPO/ThinLTOBitcodeWriter.cpp
1475986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/WholeProgramDevirt.cpp
1476986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineAddSub.cpp
1477986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineAndOrXor.cpp
14784014a71fSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineAtomicRMW.cpp
1479986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineCalls.cpp
1480986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineCasts.cpp
1481986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineCompares.cpp
1482986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
1483986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineMulDivRem.cpp
148448aaf27bSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineNegator.cpp
1485986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombinePHI.cpp
1486986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineSelect.cpp
1487986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineShifts.cpp
1488986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
1489986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineVectorOps.cpp
1490986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstructionCombining.cpp
1491986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/AddressSanitizer.cpp
1492986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/BoundsChecking.cpp
14939f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/CGProfile.cpp
14945e86819cSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/ControlHeightReduction.cpp
1495986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/DataFlowSanitizer.cpp
1496986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/GCOVProfiling.cpp
149736cb3905SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/HWAddressSanitizer.cpp
1498986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/IndirectCallPromotion.cpp
14994014a71fSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/InstrOrderFile.cpp
1500986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/InstrProfiling.cpp
1501986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/Instrumentation.cpp
1502e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/MemProfiler.cpp
1503986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/MemorySanitizer.cpp
1504986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PGOInstrumentation.cpp
150524d58133SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PGOMemOPSizeOpt.cpp
15064014a71fSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PoisonChecking.cpp
1507986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/SanitizerCoverage.cpp
1508986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/ThreadSanitizer.cpp
15099771cac2SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/ValueProfileCollector.cpp
1510986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/DependencyAnalysis.cpp
1511986e05bcSDimitry AndricSRCS_EXT+=	Transforms/ObjCARC/ObjCARC.cpp
1512986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCAPElim.cpp
1513986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCContract.cpp
1514986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCExpand.cpp
1515986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCOpts.cpp
1516986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ProvenanceAnalysis.cpp
1517986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp
1518986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/PtrState.cpp
1519986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/ADCE.cpp
1520986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/AlignmentFromAssumptions.cpp
1521e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Scalar/AnnotationRemarks.cpp
1522986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/BDCE.cpp
152336cb3905SDimitry AndricSRCS_MIN+=	Transforms/Scalar/CallSiteSplitting.cpp
1524986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/ConstantHoisting.cpp
1525e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Scalar/ConstraintElimination.cpp
1526986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/CorrelatedValuePropagation.cpp
1527986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/DCE.cpp
1528986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/DeadStoreElimination.cpp
152936cb3905SDimitry AndricSRCS_MIN+=	Transforms/Scalar/DivRemPairs.cpp
1530986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/EarlyCSE.cpp
1531986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/FlattenCFGPass.cpp
1532986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Float2Int.cpp
1533986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GVN.cpp
1534986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GVNHoist.cpp
1535302affcbSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GVNSink.cpp
1536986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GuardWidening.cpp
1537f1a29dd3SDimitry AndricSRCS_MIN+=	Transforms/Scalar/IVUsersPrinter.cpp
1538986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/IndVarSimplify.cpp
1539986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/InductiveRangeCheckElimination.cpp
1540e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Scalar/InferAddressSpaces.cpp
15419f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/InstSimplifyPass.cpp
1542986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/JumpThreading.cpp
1543986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LICM.cpp
1544f1a29dd3SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopAccessAnalysisPrinter.cpp
1545986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopDataPrefetch.cpp
1546986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopDeletion.cpp
1547986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopDistribute.cpp
1548e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopFlatten.cpp
15494014a71fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopFuse.cpp
1550986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopIdiomRecognize.cpp
155109bfd043SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopInstSimplify.cpp
1552986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopInterchange.cpp
1553986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopLoadElimination.cpp
1554f1a29dd3SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopPassManager.cpp
15555897d2f0SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopPredication.cpp
1556986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopRerollPass.cpp
1557986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopRotation.cpp
1558986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopSimplifyCFG.cpp
155909bfd043SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopSink.cpp
1560986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopStrengthReduce.cpp
1561986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopUnrollPass.cpp
15629f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopUnrollAndJamPass.cpp
1563986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopUnswitch.cpp
1564986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopVersioningLICM.cpp
1565986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerAtomic.cpp
15669771cac2SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerConstantIntrinsics.cpp
1567986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerExpectIntrinsic.cpp
1568986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerGuardIntrinsic.cpp
15699771cac2SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerMatrixIntrinsics.cpp
15704014a71fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerWidenableCondition.cpp
15715e86819cSDimitry AndricSRCS_MIN+=	Transforms/Scalar/MakeGuardsExplicit.cpp
1572986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/MemCpyOptimizer.cpp
157336cb3905SDimitry AndricSRCS_MIN+=	Transforms/Scalar/MergeICmps.cpp
1574986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/MergedLoadStoreMotion.cpp
1575986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/NaryReassociate.cpp
157609bfd043SDimitry AndricSRCS_MIN+=	Transforms/Scalar/NewGVN.cpp
1577986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/PartiallyInlineLibCalls.cpp
1578986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/PlaceSafepoints.cpp
1579986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Reassociate.cpp
1580986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Reg2Mem.cpp
1581986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/RewriteStatepointsForGC.cpp
1582986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SCCP.cpp
1583986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SROA.cpp
1584986e05bcSDimitry AndricSRCS_EXT+=	Transforms/Scalar/Scalar.cpp
1585e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Scalar/ScalarizeMaskedMemIntrin.cpp
1586986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Scalarizer.cpp
1587986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
1588f37b6182SDimitry AndricSRCS_MIN+=	Transforms/Scalar/SimpleLoopUnswitch.cpp
1589986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SimplifyCFGPass.cpp
1590986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Sink.cpp
159136cb3905SDimitry AndricSRCS_MIN+=	Transforms/Scalar/SpeculateAroundPHIs.cpp
1592986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SpeculativeExecution.cpp
1593986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/StraightLineStrengthReduce.cpp
1594986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/StructurizeCFG.cpp
1595986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/TailRecursionElimination.cpp
15965e86819cSDimitry AndricSRCS_MIN+=	Transforms/Scalar/WarnMissedTransforms.cpp
159748aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/AMDGPUEmitPrintf.cpp
1598986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/ASanStackFrameLayout.cpp
1599986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/AddDiscriminators.cpp
160048aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/AssumeBundleBuilder.cpp
1601986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BasicBlockUtils.cpp
1602986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BreakCriticalEdges.cpp
1603986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BuildLibCalls.cpp
1604986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BypassSlowDivision.cpp
160548aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/CallGraphUpdater.cpp
160636cb3905SDimitry AndricSRCS_MIN+=	Transforms/Utils/CallPromotionUtils.cpp
16075e86819cSDimitry AndricSRCS_MIN+=	Transforms/Utils/CanonicalizeAliases.cpp
160848aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/CanonicalizeFreezeInLoops.cpp
1609986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CloneFunction.cpp
1610986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CloneModule.cpp
1611986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CodeExtractor.cpp
16129771cac2SDimitry AndricSRCS_MIN+=	Transforms/Utils/CodeMoverUtils.cpp
1613986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CtorUtils.cpp
161448aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/Debugify.cpp
1615986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/DemoteRegToStack.cpp
161636cb3905SDimitry AndricSRCS_MIN+=	Transforms/Utils/EntryExitInstrumenter.cpp
161709bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/EscapeEnumerator.cpp
1618986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/Evaluator.cpp
161948aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/FixIrreducible.cpp
1620986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/FlattenCFG.cpp
162109bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/FunctionComparator.cpp
1622986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/FunctionImportUtils.cpp
1623986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/GlobalStatus.cpp
16245e86819cSDimitry AndricSRCS_MIN+=	Transforms/Utils/GuardUtils.cpp
16259771cac2SDimitry AndricSRCS_MIN+=	Transforms/Utils/InjectTLIMappings.cpp
1626986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/InlineFunction.cpp
1627986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/InstructionNamer.cpp
1628986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/IntegerDivision.cpp
1629986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LCSSA.cpp
163009bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/LibCallsShrinkWrap.cpp
1631986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/Local.cpp
1632e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopPeel.cpp
1633986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopSimplify.cpp
16349f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopRotationUtils.cpp
1635986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUnroll.cpp
16369f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUnrollAndJam.cpp
1637986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUnrollRuntime.cpp
1638986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUtils.cpp
1639986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopVersioning.cpp
1640986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerInvoke.cpp
1641986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerSwitch.cpp
1642e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Utils/MatrixUtils.cpp
1643986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/Mem2Reg.cpp
1644986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/MetaRenamer.cpp
1645986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/ModuleUtils.cpp
164609bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/NameAnonGlobals.cpp
16475897d2f0SDimitry AndricSRCS_MIN+=	Transforms/Utils/PredicateInfo.cpp
1648986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/PromoteMemoryToRegister.cpp
1649986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SSAUpdater.cpp
1650986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SanitizerStats.cpp
165148aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/ScalarEvolutionExpander.cpp
1652986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SimplifyCFG.cpp
1653986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SimplifyIndVar.cpp
1654986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SimplifyLibCalls.cpp
16554014a71fSDimitry AndricSRCS_MIN+=	Transforms/Utils/SizeOpts.cpp
1656986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SplitModule.cpp
165709bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/StripGCRelocates.cpp
165809bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/StripNonLineTableDebugInfo.cpp
1659986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SymbolRewriter.cpp
1660986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/UnifyFunctionExitNodes.cpp
166148aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/UnifyLoopExits.cpp
166248aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/UniqueInternalLinkageNames.cpp
1663986e05bcSDimitry AndricSRCS_EXT+=	Transforms/Utils/Utils.cpp
16645897d2f0SDimitry AndricSRCS_MIN+=	Transforms/Utils/VNCoercion.cpp
1665986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/ValueMapper.cpp
1666986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/LoadStoreVectorizer.cpp
16679f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/LoopVectorizationLegality.cpp
1668986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/LoopVectorize.cpp
1669986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/SLPVectorizer.cpp
167036cb3905SDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlan.cpp
16719f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanHCFGBuilder.cpp
16724014a71fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanPredicator.cpp
16739771cac2SDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanTransforms.cpp
16749f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanVerifier.cpp
167548aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VectorCombine.cpp
1676986e05bcSDimitry AndricSRCS_EXT+=	Transforms/Vectorize/Vectorize.cpp
1677efa75597SDimitry AndricSRCS_EXT+=	XRay/BlockIndexer.cpp
1678efa75597SDimitry AndricSRCS_EXT+=	XRay/BlockVerifier.cpp
1679efa75597SDimitry AndricSRCS_EXT+=	XRay/FDRRecordProducer.cpp
1680efa75597SDimitry AndricSRCS_EXT+=	XRay/FDRRecords.cpp
1681efa75597SDimitry AndricSRCS_EXT+=	XRay/FDRTraceExpander.cpp
1682efa75597SDimitry AndricSRCS_EXT+=	XRay/FileHeaderReader.cpp
1683050e2df1SDimitry AndricSRCS_EXT+=	XRay/InstrumentationMap.cpp
1684efa75597SDimitry AndricSRCS_EXT+=	XRay/LogBuilderConsumer.cpp
1685efa75597SDimitry AndricSRCS_EXT+=	XRay/RecordInitializer.cpp
168667b158f6SDimitry AndricSRCS_EXT+=	XRay/Trace.cpp
1687986e05bcSDimitry Andric
1688986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_MIN}
1689caf90252SBryan Drewery.if !defined(TOOLS_PREFIX) || ${MK_LLD_BOOTSTRAP} != "no"
169030d4828eSDimitry AndricSRCS_ALL+=	${SRCS_MIW}
169130d4828eSDimitry Andric.endif
1692986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no"
1693986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_EXT}
1694986e05bcSDimitry Andric.endif
1695986e05bcSDimitry Andric.if ${MK_CLANG_FULL} != "no"
1696986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_FUL}
1697986e05bcSDimitry Andric.endif
169878187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLD} != "no" || \
169978187278SBryan Drewery    (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no")
170075bc38b9SEd MasteSRCS_ALL+=	${SRCS_EXL}
170175bc38b9SEd Maste.endif
170278187278SBryan Drewery.if ${MK_LLD} != "no" || \
170378187278SBryan Drewery    (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no")
17040fc5d238SDimitry AndricSRCS_ALL+=	${SRCS_LLD}
17050fc5d238SDimitry Andric.endif
1706986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no"
1707986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_XDB}
1708986e05bcSDimitry Andric.endif
170978187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || ${MK_LLD} != "no" || \
171078187278SBryan Drewery    (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no")
171175bc38b9SEd MasteSRCS_ALL+=	${SRCS_XDL}
171275bc38b9SEd Maste.endif
171330d4828eSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || !defined(TOOLS_PREFIX)
171430d4828eSDimitry AndricSRCS_ALL+=	${SRCS_XDW}
171530d4828eSDimitry Andric.endif
171648aaf27bSDimitry AndricSRCS+=		${GENSRCS}
1717986e05bcSDimitry AndricSRCS+=		${SRCS_ALL:O}
1718986e05bcSDimitry Andric
171948aaf27bSDimitry Andricllvm/Frontend/OpenMP/OMP.h.inc: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
172048aaf27bSDimitry Andric	${LLVM_TBLGEN} --gen-directive-decl \
172148aaf27bSDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
172248aaf27bSDimitry Andric	    ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
172348aaf27bSDimitry AndricTGHDRS+=	llvm/Frontend/OpenMP/OMP.h.inc
172448aaf27bSDimitry Andric
1725e8d8bef9SDimitry Andricllvm/Frontend/OpenMP/OMP.inc: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
172648aaf27bSDimitry Andric	${LLVM_TBLGEN} --gen-directive-gen \
172748aaf27bSDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
172848aaf27bSDimitry Andric	    ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
1729e8d8bef9SDimitry AndricTGHDRS+=	llvm/Frontend/OpenMP/OMP.inc
173048aaf27bSDimitry Andric
173148aaf27bSDimitry AndricOMP.cpp: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
173248aaf27bSDimitry Andric	${LLVM_TBLGEN} --gen-directive-impl \
173348aaf27bSDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
173448aaf27bSDimitry Andric	    ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
173548aaf27bSDimitry AndricGENSRCS+=	OMP.cpp
173648aaf27bSDimitry Andric
17379f6e9a9fSDimitry Andricllvm/IR/Attributes.inc: ${LLVM_SRCS}/include/llvm/IR/Attributes.td
1738986e05bcSDimitry Andric	${LLVM_TBLGEN} -gen-attrs \
1739050e2df1SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
1740986e05bcSDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Attributes.td
17419f6e9a9fSDimitry AndricTGHDRS+=	llvm/IR/Attributes.inc
1742986e05bcSDimitry Andric
17439f6e9a9fSDimitry Andricllvm/IR/IntrinsicEnums.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
17449f6e9a9fSDimitry Andric	${LLVM_TBLGEN} -gen-intrinsic-enums \
1745050e2df1SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
1746986e05bcSDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
17479f6e9a9fSDimitry AndricTGHDRS+=	llvm/IR/IntrinsicEnums.inc
17489f6e9a9fSDimitry Andric
17499f6e9a9fSDimitry Andricllvm/IR/IntrinsicImpl.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
17509f6e9a9fSDimitry Andric	${LLVM_TBLGEN} -gen-intrinsic-impl \
17519f6e9a9fSDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
17529f6e9a9fSDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
17539f6e9a9fSDimitry AndricTGHDRS+=	llvm/IR/IntrinsicImpl.inc
1754986e05bcSDimitry Andric
17559771cac2SDimitry Andric.for arch in \
17569771cac2SDimitry Andric	AArch64/aarch64 AMDGPU/amdgcn ARM/arm BPF/bpf Hexagon/hexagon \
17579771cac2SDimitry Andric	Mips/mips NVPTX/nvvm PowerPC/ppc R600/r600 RISCV/riscv S390/s390 \
1758e8d8bef9SDimitry Andric	VE/ve WebAssembly/wasm X86/x86 XCore/xcore
17599771cac2SDimitry Andricllvm/IR/Intrinsics${arch:H}.h: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
17609771cac2SDimitry Andric	${LLVM_TBLGEN} -gen-intrinsic-enums -intrinsic-prefix=${arch:T} \
17619771cac2SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
17629771cac2SDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
17639771cac2SDimitry AndricTGHDRS+=	llvm/IR/Intrinsics${arch:H}.h
17649771cac2SDimitry Andric.endfor
17659771cac2SDimitry Andric
1766b40b48b8SDimitry Andricllvm-lib/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td
1767986e05bcSDimitry Andric	${LLVM_TBLGEN} -gen-opt-parser-defs \
1768050e2df1SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
17695517e702SDimitry Andric	    ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td
1770b40b48b8SDimitry AndricTGHDRS+=	llvm-lib/Options.inc
1771b40b48b8SDimitry AndricCFLAGS.LibDriver.cpp+=	-I${.OBJDIR}/llvm-lib
1772b40b48b8SDimitry Andric
1773b40b48b8SDimitry Andricllvm-dlltool/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td
1774b40b48b8SDimitry Andric	${LLVM_TBLGEN} -gen-opt-parser-defs \
1775b40b48b8SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
1776b40b48b8SDimitry Andric	    ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td
1777b40b48b8SDimitry AndricTGHDRS+=	llvm-dlltool/Options.inc
1778b40b48b8SDimitry AndricCFLAGS.DlltoolDriver.cpp+=	-I${.OBJDIR}/llvm-dlltool
1779986e05bcSDimitry Andric
1780cd283100SBryan Drewerybeforebuild:
1781cd283100SBryan Drewery# 20170724 remove stale Options.inc file, of which there are two different
178237cd60a3SDimitry Andric# versions after upstream r308421, one for llvm-lib, one for llvm-dlltool
1783cd283100SBryan Drewery.for f in Options.inc
1784cd283100SBryan Drewery.if exists(${f}) || exists(${f}.d)
1785cd283100SBryan Drewery	@echo Removing stale generated ${f} files
1786cd283100SBryan Drewery	@rm -f ${f} ${f}.d
1787cd283100SBryan Drewery.endif
1788cd283100SBryan Drewery.endfor
1789cd283100SBryan Drewery
1790986e05bcSDimitry Andric# Note: some rules are superfluous, not every combination is valid.
1791986e05bcSDimitry Andric.for arch in \
17923b7fd87cSWarner Losh	AArch64/AArch64 ARM/ARM BPF/BPF Mips/Mips PowerPC/PPC RISCV/RISCV \
17933b7fd87cSWarner Losh	X86/X86
1794986e05bcSDimitry Andric. for hdr in \
1795986e05bcSDimitry Andric	AsmMatcher/-gen-asm-matcher \
1796986e05bcSDimitry Andric	AsmWriter/-gen-asm-writer \
179748aaf27bSDimitry Andric	AsmWriter1/-gen-asm-writer,-asmwriternum=1 \
1798986e05bcSDimitry Andric	CallingConv/-gen-callingconv \
1799986e05bcSDimitry Andric	CodeEmitter/-gen-emitter \
1800b2689b12SMitchell Horne	CompressInstEmitter/-gen-compress-inst-emitter \
1801986e05bcSDimitry Andric	DAGISel/-gen-dag-isel \
1802986e05bcSDimitry Andric	DisassemblerTables/-gen-disassembler \
18035897d2f0SDimitry Andric	EVEX2VEXTables/-gen-x86-EVEX2VEX-tables \
1804986e05bcSDimitry Andric	FastISel/-gen-fast-isel \
18053d54deb3SDimitry Andric	GlobalISel/-gen-global-isel \
1806986e05bcSDimitry Andric	InstrInfo/-gen-instr-info \
1807986e05bcSDimitry Andric	MCCodeEmitter/-gen-emitter \
1808986e05bcSDimitry Andric	MCPseudoLowering/-gen-pseudo-lowering \
180948aaf27bSDimitry Andric	PostLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}PostLegalizerCombinerHelper \
1810e8d8bef9SDimitry Andric	PostLegalizeGILowering/-gen-global-isel-combiner,-combiners=${arch:H}PostLegalizerLoweringHelper \
181148aaf27bSDimitry Andric	PreLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}PreLegalizerCombinerHelper \
18125897d2f0SDimitry Andric	RegisterBank/-gen-register-bank \
1813986e05bcSDimitry Andric	RegisterInfo/-gen-register-info \
1814e8d8bef9SDimitry Andric	SearchableTables/-gen-searchable-tables \
1815986e05bcSDimitry Andric	SubtargetInfo/-gen-subtarget \
181636cb3905SDimitry Andric	SystemOperands/-gen-searchable-tables \
181736cb3905SDimitry Andric	SystemRegister/-gen-searchable-tables
1818986e05bcSDimitry Andric${arch:T}Gen${hdr:H}.inc: ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td
1819986e05bcSDimitry Andric	${LLVM_TBLGEN} ${hdr:T:C/,/ /g} \
1820986e05bcSDimitry Andric	    -I ${LLVM_SRCS}/include -I ${LLVM_SRCS}/lib/Target/${arch:H} \
1821050e2df1SDimitry Andric	    -d ${.TARGET}.d -o ${.TARGET} \
1822986e05bcSDimitry Andric	    ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td
1823986e05bcSDimitry Andric. endfor
1824986e05bcSDimitry Andric.endfor
1825cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no"
1826986e05bcSDimitry AndricTGHDRS+=	AArch64GenAsmMatcher.inc
1827986e05bcSDimitry AndricTGHDRS+=	AArch64GenAsmWriter.inc
1828986e05bcSDimitry AndricTGHDRS+=	AArch64GenAsmWriter1.inc
1829986e05bcSDimitry AndricTGHDRS+=	AArch64GenCallingConv.inc
1830986e05bcSDimitry AndricTGHDRS+=	AArch64GenDAGISel.inc
1831986e05bcSDimitry AndricTGHDRS+=	AArch64GenDisassemblerTables.inc
1832986e05bcSDimitry AndricTGHDRS+=	AArch64GenFastISel.inc
18333d54deb3SDimitry AndricTGHDRS+=	AArch64GenGlobalISel.inc
1834986e05bcSDimitry AndricTGHDRS+=	AArch64GenInstrInfo.inc
1835986e05bcSDimitry AndricTGHDRS+=	AArch64GenMCCodeEmitter.inc
1836986e05bcSDimitry AndricTGHDRS+=	AArch64GenMCPseudoLowering.inc
183748aaf27bSDimitry AndricTGHDRS+=	AArch64GenPostLegalizeGICombiner.inc
1838e8d8bef9SDimitry AndricTGHDRS+=	AArch64GenPostLegalizeGILowering.inc
183948aaf27bSDimitry AndricTGHDRS+=	AArch64GenPreLegalizeGICombiner.inc
18405897d2f0SDimitry AndricTGHDRS+=	AArch64GenRegisterBank.inc
1841986e05bcSDimitry AndricTGHDRS+=	AArch64GenRegisterInfo.inc
1842986e05bcSDimitry AndricTGHDRS+=	AArch64GenSubtargetInfo.inc
1843986e05bcSDimitry AndricTGHDRS+=	AArch64GenSystemOperands.inc
1844cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64
1845cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no"
1846986e05bcSDimitry AndricTGHDRS+=	ARMGenAsmMatcher.inc
1847986e05bcSDimitry AndricTGHDRS+=	ARMGenAsmWriter.inc
1848986e05bcSDimitry AndricTGHDRS+=	ARMGenCallingConv.inc
1849986e05bcSDimitry AndricTGHDRS+=	ARMGenDAGISel.inc
1850986e05bcSDimitry AndricTGHDRS+=	ARMGenDisassemblerTables.inc
1851986e05bcSDimitry AndricTGHDRS+=	ARMGenFastISel.inc
18523d54deb3SDimitry AndricTGHDRS+=	ARMGenGlobalISel.inc
1853986e05bcSDimitry AndricTGHDRS+=	ARMGenInstrInfo.inc
1854986e05bcSDimitry AndricTGHDRS+=	ARMGenMCCodeEmitter.inc
1855986e05bcSDimitry AndricTGHDRS+=	ARMGenMCPseudoLowering.inc
18565897d2f0SDimitry AndricTGHDRS+=	ARMGenRegisterBank.inc
1857986e05bcSDimitry AndricTGHDRS+=	ARMGenRegisterInfo.inc
1858986e05bcSDimitry AndricTGHDRS+=	ARMGenSubtargetInfo.inc
185936cb3905SDimitry AndricTGHDRS+=	ARMGenSystemRegister.inc
1860cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM
186189edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no"
186289edb881SDimitry AndricTGHDRS+=	BPFGenAsmMatcher.inc
186389edb881SDimitry AndricTGHDRS+=	BPFGenAsmWriter.inc
186489edb881SDimitry AndricTGHDRS+=	BPFGenCallingConv.inc
186589edb881SDimitry AndricTGHDRS+=	BPFGenDAGISel.inc
186689edb881SDimitry AndricTGHDRS+=	BPFGenDisassemblerTables.inc
186789edb881SDimitry AndricTGHDRS+=	BPFGenInstrInfo.inc
186889edb881SDimitry AndricTGHDRS+=	BPFGenMCCodeEmitter.inc
186989edb881SDimitry AndricTGHDRS+=	BPFGenRegisterInfo.inc
187089edb881SDimitry AndricTGHDRS+=	BPFGenSubtargetInfo.inc
187189edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF
1872cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no"
1873986e05bcSDimitry AndricTGHDRS+=	MipsGenAsmMatcher.inc
1874986e05bcSDimitry AndricTGHDRS+=	MipsGenAsmWriter.inc
1875986e05bcSDimitry AndricTGHDRS+=	MipsGenCallingConv.inc
1876986e05bcSDimitry AndricTGHDRS+=	MipsGenDAGISel.inc
1877986e05bcSDimitry AndricTGHDRS+=	MipsGenDisassemblerTables.inc
1878986e05bcSDimitry AndricTGHDRS+=	MipsGenFastISel.inc
18799f6e9a9fSDimitry AndricTGHDRS+=	MipsGenGlobalISel.inc
1880986e05bcSDimitry AndricTGHDRS+=	MipsGenInstrInfo.inc
1881986e05bcSDimitry AndricTGHDRS+=	MipsGenMCCodeEmitter.inc
1882986e05bcSDimitry AndricTGHDRS+=	MipsGenMCPseudoLowering.inc
18839f6e9a9fSDimitry AndricTGHDRS+=	MipsGenRegisterBank.inc
1884986e05bcSDimitry AndricTGHDRS+=	MipsGenRegisterInfo.inc
1885986e05bcSDimitry AndricTGHDRS+=	MipsGenSubtargetInfo.inc
1886cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS
1887cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no"
1888986e05bcSDimitry AndricTGHDRS+=	PPCGenAsmMatcher.inc
1889986e05bcSDimitry AndricTGHDRS+=	PPCGenAsmWriter.inc
1890986e05bcSDimitry AndricTGHDRS+=	PPCGenCallingConv.inc
1891986e05bcSDimitry AndricTGHDRS+=	PPCGenDAGISel.inc
1892986e05bcSDimitry AndricTGHDRS+=	PPCGenDisassemblerTables.inc
1893986e05bcSDimitry AndricTGHDRS+=	PPCGenFastISel.inc
1894e8d8bef9SDimitry AndricTGHDRS+=	PPCGenGlobalISel.inc
1895986e05bcSDimitry AndricTGHDRS+=	PPCGenInstrInfo.inc
1896986e05bcSDimitry AndricTGHDRS+=	PPCGenMCCodeEmitter.inc
1897e8d8bef9SDimitry AndricTGHDRS+=	PPCGenRegisterBank.inc
1898986e05bcSDimitry AndricTGHDRS+=	PPCGenRegisterInfo.inc
1899986e05bcSDimitry AndricTGHDRS+=	PPCGenSubtargetInfo.inc
1900cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC
1901b2689b12SMitchell Horne.if ${MK_LLVM_TARGET_RISCV} != "no"
1902b2689b12SMitchell HorneTGHDRS+=	RISCVGenAsmMatcher.inc
1903b2689b12SMitchell HorneTGHDRS+=	RISCVGenAsmWriter.inc
1904b2689b12SMitchell HorneTGHDRS+=	RISCVGenCallingConv.inc
1905b2689b12SMitchell HorneTGHDRS+=	RISCVGenCompressInstEmitter.inc
1906b2689b12SMitchell HorneTGHDRS+=	RISCVGenDAGISel.inc
1907b2689b12SMitchell HorneTGHDRS+=	RISCVGenDisassemblerTables.inc
1908b2689b12SMitchell HorneTGHDRS+=	RISCVGenDAGISel.inc
19099771cac2SDimitry AndricTGHDRS+=	RISCVGenGlobalISel.inc
1910b2689b12SMitchell HorneTGHDRS+=	RISCVGenInstrInfo.inc
1911b2689b12SMitchell HorneTGHDRS+=	RISCVGenMCCodeEmitter.inc
1912b2689b12SMitchell HorneTGHDRS+=	RISCVGenMCPseudoLowering.inc
19139771cac2SDimitry AndricTGHDRS+=	RISCVGenRegisterBank.inc
1914b2689b12SMitchell HorneTGHDRS+=	RISCVGenRegisterInfo.inc
1915e8d8bef9SDimitry AndricTGHDRS+=	RISCVGenSearchableTables.inc
1916b2689b12SMitchell HorneTGHDRS+=	RISCVGenSubtargetInfo.inc
1917b2689b12SMitchell HorneTGHDRS+=	RISCVGenSystemOperands.inc
1918b2689b12SMitchell Horne.endif # MK_LLVM_TARGET_RISCV
1919cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no"
1920986e05bcSDimitry AndricTGHDRS+=	X86GenAsmMatcher.inc
1921986e05bcSDimitry AndricTGHDRS+=	X86GenAsmWriter.inc
1922986e05bcSDimitry AndricTGHDRS+=	X86GenAsmWriter1.inc
1923986e05bcSDimitry AndricTGHDRS+=	X86GenCallingConv.inc
1924986e05bcSDimitry AndricTGHDRS+=	X86GenDAGISel.inc
1925986e05bcSDimitry AndricTGHDRS+=	X86GenDisassemblerTables.inc
19265897d2f0SDimitry AndricTGHDRS+=	X86GenEVEX2VEXTables.inc
1927986e05bcSDimitry AndricTGHDRS+=	X86GenFastISel.inc
19283d54deb3SDimitry AndricTGHDRS+=	X86GenGlobalISel.inc
1929986e05bcSDimitry AndricTGHDRS+=	X86GenInstrInfo.inc
19305897d2f0SDimitry AndricTGHDRS+=	X86GenRegisterBank.inc
1931986e05bcSDimitry AndricTGHDRS+=	X86GenRegisterInfo.inc
1932986e05bcSDimitry AndricTGHDRS+=	X86GenSubtargetInfo.inc
1933cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86
1934986e05bcSDimitry Andric
1935ddf95e2aSBryan DreweryDEPENDFILES+=	${TGHDRS:C/$/.d/}
1936986e05bcSDimitry AndricDPSRCS+=	${TGHDRS}
1937986e05bcSDimitry AndricCLEANFILES+=	${TGHDRS} ${TGHDRS:C/$/.d/}
193848aaf27bSDimitry AndricCLEANFILES+=	${GENSRCS} ${GENSRCS:C/$/.d/}
1939986e05bcSDimitry Andric
1940986e05bcSDimitry Andric.include "../llvm.build.mk"
1941986e05bcSDimitry Andric.include <bsd.lib.mk>
1942