xref: /freebsd/lib/clang/libllvm/Makefile (revision 1c1ab42925832e606ab1d6c48bd75de9b8432a3d)
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
62986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CostModel.cpp
639771cac2SDimitry AndricSRCS_MIN+=	Analysis/DDG.cpp
64986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Delinearization.cpp
65986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DemandedBits.cpp
66986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DependenceAnalysis.cpp
679771cac2SDimitry AndricSRCS_MIN+=	Analysis/DependenceGraphBuilder.cpp
68986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DivergenceAnalysis.cpp
69986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DomPrinter.cpp
704014a71fSDimitry AndricSRCS_MIN+=	Analysis/DomTreeUpdater.cpp
71986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DominanceFrontier.cpp
72986e05bcSDimitry AndricSRCS_MIN+=	Analysis/EHPersonalities.cpp
73986e05bcSDimitry AndricSRCS_MIN+=	Analysis/GlobalsModRef.cpp
745e86819cSDimitry AndricSRCS_MIN+=	Analysis/GuardUtils.cpp
7548aaf27bSDimitry AndricSRCS_MIN+=	Analysis/HeatUtils.cpp
765e86819cSDimitry AndricSRCS_MIN+=	Analysis/IVDescriptors.cpp
77986e05bcSDimitry AndricSRCS_MIN+=	Analysis/IVUsers.cpp
78986e05bcSDimitry AndricSRCS_MIN+=	Analysis/IndirectCallPromotionAnalysis.cpp
7948aaf27bSDimitry AndricSRCS_MIN+=	Analysis/InlineAdvisor.cpp
80986e05bcSDimitry AndricSRCS_MIN+=	Analysis/InlineCost.cpp
8148aaf27bSDimitry AndricSRCS_MIN+=	Analysis/InlineFeaturesAnalysis.cpp
8248aaf27bSDimitry AndricSRCS_MIN+=	Analysis/InlineSizeEstimatorAnalysis.cpp
83986e05bcSDimitry AndricSRCS_MIN+=	Analysis/InstCount.cpp
845e86819cSDimitry AndricSRCS_MIN+=	Analysis/InstructionPrecedenceTracking.cpp
85986e05bcSDimitry AndricSRCS_MIN+=	Analysis/InstructionSimplify.cpp
86986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Interval.cpp
87986e05bcSDimitry AndricSRCS_MIN+=	Analysis/IntervalPartition.cpp
88986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LazyBlockFrequencyInfo.cpp
8909bfd043SDimitry AndricSRCS_MIN+=	Analysis/LazyBranchProbabilityInfo.cpp
90986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LazyCallGraph.cpp
91986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LazyValueInfo.cpp
925e86819cSDimitry AndricSRCS_MIN+=	Analysis/LegacyDivergenceAnalysis.cpp
93986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Lint.cpp
94986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Loads.cpp
95986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopAccessAnalysis.cpp
96f1a29dd3SDimitry AndricSRCS_MIN+=	Analysis/LoopAnalysisManager.cpp
979771cac2SDimitry AndricSRCS_MIN+=	Analysis/LoopCacheAnalysis.cpp
98986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopInfo.cpp
9948aaf27bSDimitry AndricSRCS_MIN+=	Analysis/LoopNestAnalysis.cpp
100986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopPass.cpp
101986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopUnrollAnalyzer.cpp
102986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemDepPrinter.cpp
103986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemDerefPrinter.cpp
104986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemoryBuiltins.cpp
105986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemoryDependenceAnalysis.cpp
106986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemoryLocation.cpp
1075897d2f0SDimitry AndricSRCS_MIN+=	Analysis/MemorySSA.cpp
1085897d2f0SDimitry AndricSRCS_MIN+=	Analysis/MemorySSAUpdater.cpp
109986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ModuleDebugInfoPrinter.cpp
110986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ModuleSummaryAnalysis.cpp
1119f6e9a9fSDimitry AndricSRCS_MIN+=	Analysis/MustExecute.cpp
112986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ObjCARCAliasAnalysis.cpp
113986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ObjCARCAnalysisUtils.cpp
114986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ObjCARCInstKind.cpp
11536cb3905SDimitry AndricSRCS_MIN+=	Analysis/OptimizationRemarkEmitter.cpp
116986e05bcSDimitry AndricSRCS_MIN+=	Analysis/PHITransAddr.cpp
1179f6e9a9fSDimitry AndricSRCS_MIN+=	Analysis/PhiValues.cpp
118986e05bcSDimitry AndricSRCS_MIN+=	Analysis/PostDominators.cpp
119986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ProfileSummaryInfo.cpp
120986e05bcSDimitry AndricSRCS_MIN+=	Analysis/PtrUseVisitor.cpp
121986e05bcSDimitry AndricSRCS_MIN+=	Analysis/RegionInfo.cpp
122986e05bcSDimitry AndricSRCS_MIN+=	Analysis/RegionPass.cpp
123986e05bcSDimitry AndricSRCS_MIN+=	Analysis/RegionPrinter.cpp
124986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolution.cpp
12548aaf27bSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolution.cpp
126986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolutionAliasAnalysis.cpp
12748aaf27bSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolutionDivision.cpp
128986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolutionNormalization.cpp
129986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScopedNoAliasAA.cpp
13048aaf27bSDimitry AndricSRCS_MIN+=	Analysis/StackLifetime.cpp
1315e86819cSDimitry AndricSRCS_MIN+=	Analysis/StackSafetyAnalysis.cpp
1325e86819cSDimitry AndricSRCS_MIN+=	Analysis/SyncDependenceAnalysis.cpp
1339f6e9a9fSDimitry AndricSRCS_MIN+=	Analysis/SyntheticCountsUtils.cpp
134986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TargetLibraryInfo.cpp
135986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TargetTransformInfo.cpp
136986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TypeBasedAliasAnalysis.cpp
137986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TypeMetadataUtils.cpp
1389771cac2SDimitry AndricSRCS_MIN+=	Analysis/VFABIDemangling.cpp
13936cb3905SDimitry AndricSRCS_MIN+=	Analysis/ValueLattice.cpp
14036cb3905SDimitry AndricSRCS_MIN+=	Analysis/ValueLatticeUtils.cpp
141986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ValueTracking.cpp
142986e05bcSDimitry AndricSRCS_MIN+=	Analysis/VectorUtils.cpp
143986e05bcSDimitry AndricSRCS_MIN+=	AsmParser/LLLexer.cpp
144986e05bcSDimitry AndricSRCS_MIN+=	AsmParser/LLParser.cpp
145986e05bcSDimitry AndricSRCS_MIN+=	AsmParser/Parser.cpp
14644389c28SDimitry AndricSRCS_MIN+=	BinaryFormat/Dwarf.cpp
14744389c28SDimitry AndricSRCS_MIN+=	BinaryFormat/Magic.cpp
14848aaf27bSDimitry AndricSRCS_MIN+=	BinaryFormat/MachO.cpp
1499f6e9a9fSDimitry AndricSRCS_MIN+=	BinaryFormat/Wasm.cpp
1509771cac2SDimitry AndricSRCS_MIN+=	BinaryFormat/XCOFF.cpp
15109bfd043SDimitry AndricSRCS_MIN+=	Bitcode/Reader/BitReader.cpp
15224b8043eSDimitry AndricSRCS_EXT+=	Bitcode/Reader/BitcodeAnalyzer.cpp
153986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Reader/BitcodeReader.cpp
15409bfd043SDimitry AndricSRCS_MIN+=	Bitcode/Reader/MetadataLoader.cpp
15509bfd043SDimitry AndricSRCS_MIN+=	Bitcode/Reader/ValueList.cpp
156986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Writer/BitcodeWriter.cpp
157986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Writer/BitcodeWriterPass.cpp
158986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Writer/ValueEnumerator.cpp
1594014a71fSDimitry AndricSRCS_MIN+=	Bitstream/Reader/BitstreamReader.cpp
160986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AggressiveAntiDepBreaker.cpp
161986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AllocationOrder.cpp
162986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/Analysis.cpp
163986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/ARMException.cpp
1649f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AccelTable.cpp
165986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AddressPool.cpp
166986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AsmPrinter.cpp
167986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
168986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
169986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/CodeViewDebug.cpp
170986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DIE.cpp
171986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DIEHash.cpp
1725e86819cSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp
173986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DebugHandlerBase.cpp
174986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DebugLocStream.cpp
175986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfCFIException.cpp
176986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfCompileUnit.cpp
177986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfDebug.cpp
178986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfExpression.cpp
179986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfFile.cpp
180986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfStringPool.cpp
181986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfUnit.cpp
182986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/EHStreamer.cpp
18324b8043eSDimitry AndricSRCS_EXT+=	CodeGen/AsmPrinter/ErlangGCPrinter.cpp
184986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/OcamlGCPrinter.cpp
1855e86819cSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/WasmException.cpp
1869f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/WinCFGuard.cpp
187986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/WinException.cpp
188986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AtomicExpandPass.cpp
18948aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/BBSectionsPrepare.cpp
190986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/BasicTargetTransformInfo.cpp
191986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/BranchFolding.cpp
19209bfd043SDimitry AndricSRCS_MIN+=	CodeGen/BranchRelaxation.cpp
1939f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/BreakFalseDeps.cpp
19424b8043eSDimitry AndricSRCS_EXT+=	CodeGen/BuiltinGCs.cpp
1959771cac2SDimitry AndricSRCS_MIN+=	CodeGen/CFGuardLongjmp.cpp
1969f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/CFIInstrInserter.cpp
197986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CalcSpillWeights.cpp
198986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CallingConvLower.cpp
199986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CodeGen.cpp
200986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CodeGenPrepare.cpp
20148aaf27bSDimitry AndricSRCS_EXL+=	CodeGen/CommandFlags.cpp
202986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CriticalAntiDepBreaker.cpp
203986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DFAPacketizer.cpp
204986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DeadMachineInstructionElim.cpp
205986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DetectDeadLanes.cpp
206986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DwarfEHPrepare.cpp
207986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/EarlyIfConversion.cpp
208986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/EdgeBundles.cpp
2099f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/ExecutionDomainFix.cpp
21036cb3905SDimitry AndricSRCS_MIN+=	CodeGen/ExpandMemCmp.cpp
211986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ExpandPostRAPseudos.cpp
2125517e702SDimitry AndricSRCS_MIN+=	CodeGen/ExpandReductions.cpp
2135897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/FEntryInserter.cpp
214986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/FaultMaps.cpp
2154014a71fSDimitry AndricSRCS_MIN+=	CodeGen/FinalizeISel.cpp
21648aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/FixupStatepointCallerSaved.cpp
217986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/FuncletLayout.cpp
218986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GCMetadata.cpp
21909bfd043SDimitry AndricSRCS_MIN+=	CodeGen/GCMetadataPrinter.cpp
220986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GCRootLowering.cpp
22109bfd043SDimitry AndricSRCS_MIN+=	CodeGen/GCStrategy.cpp
2225e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CSEInfo.cpp
2235e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CSEMIRBuilder.cpp
2245e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Combiner.cpp
2255e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CombinerHelper.cpp
2263d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CallLowering.cpp
2275e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/GISelChangeObserver.cpp
2289771cac2SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/GISelKnownBits.cpp
229986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/GlobalISel.cpp
2303d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/IRTranslator.cpp
23148aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/InlineAsmLowering.cpp
2323d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/InstructionSelect.cpp
2333d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/InstructionSelector.cpp
2349f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalityPredicates.cpp
2359f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalizeMutations.cpp
2363d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Legalizer.cpp
2373d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalizerHelper.cpp
2383d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalizerInfo.cpp
239302affcbSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Localizer.cpp
24048aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LostDebugLocObserver.cpp
2413d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/MachineIRBuilder.cpp
2423d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/RegBankSelect.cpp
2433d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/RegisterBank.cpp
2443d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/RegisterBankInfo.cpp
2453d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Utils.cpp
246986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GlobalMerge.cpp
2474014a71fSDimitry AndricSRCS_MIN+=	CodeGen/HardwareLoops.cpp
248986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/IfConversion.cpp
249986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ImplicitNullChecks.cpp
25007577dfeSDimitry AndricSRCS_MIN+=	CodeGen/IndirectBrExpandPass.cpp
251986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/InlineSpiller.cpp
252986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/InterferenceCache.cpp
253986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/InterleavedAccessPass.cpp
2545e86819cSDimitry AndricSRCS_MIN+=	CodeGen/InterleavedLoadCombinePass.cpp
255986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/IntrinsicLowering.cpp
256986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LLVMTargetMachine.cpp
257986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LatencyPriorityQueue.cpp
2585897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/LazyMachineBlockFrequencyInfo.cpp
259986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LexicalScopes.cpp
260986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveDebugValues.cpp
261986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveDebugVariables.cpp
262986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveInterval.cpp
26348aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/LiveIntervalCalc.cpp
264986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveIntervalUnion.cpp
26544389c28SDimitry AndricSRCS_MIN+=	CodeGen/LiveIntervals.cpp
266986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LivePhysRegs.cpp
267986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveRangeCalc.cpp
268986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveRangeEdit.cpp
269f9448bf3SDimitry AndricSRCS_MIN+=	CodeGen/LiveRangeShrink.cpp
270986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveRegMatrix.cpp
2715897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/LiveRegUnits.cpp
2722757ff7eSDimitry AndricSRCS_MIN+=	CodeGen/LiveStacks.cpp
273986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveVariables.cpp
274986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LocalStackSlotAllocation.cpp
2759f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/LoopTraversal.cpp
27609bfd043SDimitry AndricSRCS_MIN+=	CodeGen/LowLevelType.cpp
277986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LowerEmuTLS.cpp
27848aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/MBFIWrapper.cpp
27936cb3905SDimitry AndricSRCS_MIN+=	CodeGen/MIRCanonicalizerPass.cpp
2809771cac2SDimitry AndricSRCS_MIN+=	CodeGen/MIRNamerPass.cpp
281986e05bcSDimitry AndricSRCS_EXT+=	CodeGen/MIRParser/MILexer.cpp
282986e05bcSDimitry AndricSRCS_EXT+=	CodeGen/MIRParser/MIParser.cpp
283986e05bcSDimitry AndricSRCS_EXT+=	CodeGen/MIRParser/MIRParser.cpp
284986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MIRPrinter.cpp
285986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MIRPrintingPass.cpp
2869771cac2SDimitry AndricSRCS_MIN+=	CodeGen/MIRVRegNamerUtils.cpp
287986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBasicBlock.cpp
288986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBlockFrequencyInfo.cpp
289986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBlockPlacement.cpp
290986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBranchProbabilityInfo.cpp
291986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineCSE.cpp
292986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineCombiner.cpp
293986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineCopyPropagation.cpp
29448aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/MachineDebugify.cpp
295986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineDominanceFrontier.cpp
296986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineDominators.cpp
297f37b6182SDimitry AndricSRCS_MIN+=	CodeGen/MachineFrameInfo.cpp
298986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineFunction.cpp
299986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineFunctionPass.cpp
300986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineFunctionPrinterPass.cpp
301986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineInstr.cpp
302986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineInstrBundle.cpp
303986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineLICM.cpp
304986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineLoopInfo.cpp
3059771cac2SDimitry AndricSRCS_MIN+=	CodeGen/MachineLoopUtils.cpp
306986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineModuleInfo.cpp
307986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineModuleInfoImpls.cpp
30836cb3905SDimitry AndricSRCS_MIN+=	CodeGen/MachineOperand.cpp
3095897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/MachineOptimizationRemarkEmitter.cpp
3105897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/MachineOutliner.cpp
31109bfd043SDimitry AndricSRCS_MIN+=	CodeGen/MachinePipeliner.cpp
312986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachinePostDominators.cpp
313986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineRegionInfo.cpp
314986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineRegisterInfo.cpp
315986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineSSAUpdater.cpp
316986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineScheduler.cpp
317986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineSink.cpp
3189771cac2SDimitry AndricSRCS_MIN+=	CodeGen/MachineSizeOpts.cpp
31948aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/MachineStripDebug.cpp
320986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineTraceMetrics.cpp
321986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineVerifier.cpp
322edd7eaddSDimitry AndricSRCS_MIN+=	CodeGen/MacroFusion.cpp
3239771cac2SDimitry AndricSRCS_MIN+=	CodeGen/ModuloSchedule.cpp
324986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/OptimizePHIs.cpp
325986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PHIElimination.cpp
326986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PHIEliminationUtils.cpp
327986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ParallelCG.cpp
328986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PatchableFunction.cpp
329986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PeepholeOptimizer.cpp
330986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PostRAHazardRecognizer.cpp
331986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PostRASchedulerList.cpp
332986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PreISelIntrinsicLowering.cpp
333986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ProcessImplicitDefs.cpp
334986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PrologEpilogInserter.cpp
335986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PseudoSourceValue.cpp
3369f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/ReachingDefAnalysis.cpp
3370946e70aSDimitry AndricSRCS_MIN+=	CodeGen/RDFGraph.cpp
3380946e70aSDimitry AndricSRCS_MIN+=	CodeGen/RDFLiveness.cpp
3390946e70aSDimitry AndricSRCS_MIN+=	CodeGen/RDFRegisters.cpp
340986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocBase.cpp
341986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocBasic.cpp
342986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocFast.cpp
343986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocGreedy.cpp
344986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocPBQP.cpp
345986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegUsageInfoCollector.cpp
346986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegUsageInfoPropagate.cpp
347986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterClassInfo.cpp
348986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterCoalescer.cpp
349986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterPressure.cpp
350986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterScavenging.cpp
351986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterUsageInfo.cpp
352986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RenameIndependentSubregs.cpp
35309bfd043SDimitry AndricSRCS_MIN+=	CodeGen/ResetMachineFunctionPass.cpp
354986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SafeStack.cpp
355986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SafeStackLayout.cpp
3565517e702SDimitry AndricSRCS_MIN+=	CodeGen/ScalarizeMaskedMemIntrin.cpp
357986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScheduleDAG.cpp
358986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScheduleDAGInstrs.cpp
359986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScheduleDAGPrinter.cpp
360986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScoreboardHazardRecognizer.cpp
361986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/DAGCombiner.cpp
362986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/FastISel.cpp
363986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
364986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/InstrEmitter.cpp
365986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeDAG.cpp
366986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
367986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
368986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeTypes.cpp
369986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
370986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeVectorOps.cpp
371986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
372986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ResourcePriorityQueue.cpp
373986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGFast.cpp
374986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
375986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
376986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
377986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAG.cpp
37844389c28SDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
379986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
380986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGDumper.cpp
381986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGISel.cpp
382986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
383986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp
384986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/StatepointLowering.cpp
385986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/TargetLowering.cpp
386986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ShadowStackGCLowering.cpp
387986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ShrinkWrap.cpp
388986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SjLjEHPrepare.cpp
389986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SlotIndexes.cpp
390986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SpillPlacement.cpp
391986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SplitKit.cpp
392986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackColoring.cpp
393986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackMapLivenessAnalysis.cpp
394986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackMaps.cpp
395986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackProtector.cpp
396986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackSlotColoring.cpp
3974014a71fSDimitry AndricSRCS_MIN+=	CodeGen/SwiftErrorValueTracking.cpp
3984014a71fSDimitry AndricSRCS_MIN+=	CodeGen/SwitchLoweringUtils.cpp
399986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TailDuplication.cpp
400986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TailDuplicator.cpp
401986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetFrameLoweringImpl.cpp
402986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetInstrInfo.cpp
403986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetLoweringBase.cpp
404986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetLoweringObjectFileImpl.cpp
405986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetOptionsImpl.cpp
406986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetPassConfig.cpp
407986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetRegisterInfo.cpp
408986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetSchedule.cpp
40909bfd043SDimitry AndricSRCS_MIN+=	CodeGen/TargetSubtargetInfo.cpp
410986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TwoAddressInstructionPass.cpp
4119771cac2SDimitry AndricSRCS_MIN+=	CodeGen/TypePromotion.cpp
412986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/UnreachableBlockElim.cpp
4139f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/ValueTypes.cpp
414986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/VirtRegMap.cpp
4159f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/WasmEHPrepare.cpp
416986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/WinEHPrepare.cpp
417986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/XRayInstrumentation.cpp
4183cd201a1SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/AppendingTypeTableBuilder.cpp
41909bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CVSymbolVisitor.cpp
420986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CVTypeVisitor.cpp
421986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CodeViewError.cpp
42209bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CodeViewRecordIO.cpp
42336cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/ContinuationRecordBuilder.cpp
42489cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugChecksumsSubsection.cpp
425db17bf38SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugCrossExSubsection.cpp
426db17bf38SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugCrossImpSubsection.cpp
42789cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugFrameDataSubsection.cpp
42889cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp
42989cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugLinesSubsection.cpp
43089cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugStringTableSubsection.cpp
43189cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugSubsection.cpp
43289cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugSubsectionRecord.cpp
43389cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugSubsectionVisitor.cpp
434db17bf38SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugSymbolRVASubsection.cpp
43589cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugSymbolsSubsection.cpp
4365e86819cSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/EnumTables.cpp
4375897d2f0SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/Formatters.cpp
43836cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/GlobalTypeTableBuilder.cpp
4392a1b82cfSDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/LazyRandomTypeCollection.cpp
440986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/Line.cpp
4413cd201a1SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/MergingTypeTableBuilder.cpp
44236cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/RecordName.cpp
443986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/RecordSerialization.cpp
44436cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SimpleTypeSerializer.cpp
44524d58133SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/StringsAndChecksums.cpp
446986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SymbolDumper.cpp
44709bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SymbolRecordMapping.cpp
448050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/SymbolSerializer.cpp
449f1a29dd3SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeDumpVisitor.cpp
45036cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeHashing.cpp
451d8866befSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeIndex.cpp
45206230659SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeIndexDiscovery.cpp
453efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/TypeRecordHelpers.cpp
45409bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeRecordMapping.cpp
455986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeStreamMerger.cpp
456d8866befSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeTableCollection.cpp
457caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
458caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFAcceleratorTable.cpp
4590db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFAddressRange.cpp
460caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFCompileUnit.cpp
461caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFContext.cpp
4620db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDataExtractor.cpp
463caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugAbbrev.cpp
46499be4f2aSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDebugAddr.cpp
4650db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDebugArangeSet.cpp
466caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugAranges.cpp
467caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugFrame.cpp
4680db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDebugInfoEntry.cpp
469caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugLine.cpp
470caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugLoc.cpp
4710db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDebugMacro.cpp
472caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugPubTable.cpp
473caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugRangeList.cpp
47467b158f6SDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDebugRnglists.cpp
475caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDie.cpp
476e89f883aSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFExpression.cpp
477caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFFormValue.cpp
478caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFGdbIndex.cpp
47967b158f6SDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFListTable.cpp
480caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFTypeUnit.cpp
481caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFUnit.cpp
482caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFUnitIndex.cpp
483caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFVerifier.cpp
48409bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/MSF/MSFBuilder.cpp
48509bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/MSF/MSFCommon.cpp
48624b8043eSDimitry AndricSRCS_EXT+=	DebugInfo/MSF/MSFError.cpp
48709bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/MSF/MappedBlockStream.cpp
488986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/GenericError.cpp
48909bfd043SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/IPDBSourceFile.cpp
490f37b6182SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiModuleDescriptor.cpp
491f37b6182SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp
4920f5676f4SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiModuleList.cpp
493050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiStream.cpp
494050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiStreamBuilder.cpp
495050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/EnumTables.cpp
4963cd201a1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/GSIStreamBuilder.cpp
497050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/GlobalsStream.cpp
498050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/Hash.cpp
499050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/HashTable.cpp
500050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/InfoStream.cpp
501050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/InfoStreamBuilder.cpp
50224b8043eSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/InjectedSourceStream.cpp
503f37b6182SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/ModuleDebugStream.cpp
504050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NamedStreamMap.cpp
505050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeCompilandSymbol.cpp
506efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumGlobals.cpp
50724b8043eSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumInjectedSources.cpp
50848aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumLineNumbers.cpp
509050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumModules.cpp
51044389c28SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumTypes.cpp
511050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeExeSymbol.cpp
51248aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeFunctionSymbol.cpp
51348aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeLineNumber.cpp
51448aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativePublicSymbol.cpp
515050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeRawSymbol.cpp
516050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeSession.cpp
51748aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeSourceFile.cpp
518efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeSymbolEnumerator.cpp
519efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeArray.cpp
520efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeBuiltin.cpp
521efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeEnum.cpp
522efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp
523efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypePointer.cpp
524efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeTypedef.cpp
525efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeUDT.cpp
526efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeVTShape.cpp
527050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBFile.cpp
528050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBFileBuilder.cpp
529b174acefSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBStringTable.cpp
530b174acefSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBStringTableBuilder.cpp
5313d54deb3SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PublicsStream.cpp
5323d54deb3SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/RawError.cpp
533efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/SymbolCache.cpp
534050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/SymbolStream.cpp
535050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/TpiHashing.cpp
536050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/TpiStream.cpp
537050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/TpiStreamBuilder.cpp
538986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDB.cpp
539986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBContext.cpp
540986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBExtras.cpp
541986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBInterfaceAnchors.cpp
542986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymDumper.cpp
543986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbol.cpp
544986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolAnnotation.cpp
545986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolBlock.cpp
546986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCompiland.cpp
547986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
548986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCompilandEnv.cpp
549986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCustom.cpp
550986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolData.cpp
551986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolExe.cpp
552986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolFunc.cpp
553986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
554986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
555986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolLabel.cpp
556986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
557986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolThunk.cpp
558986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeArray.cpp
559986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
560986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp
561986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeCustom.cpp
562986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeDimension.cpp
563986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeEnum.cpp
564986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeFriend.cpp
565986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
566986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
567986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeManaged.cpp
568986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypePointer.cpp
569986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
570986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeUDT.cpp
571986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeVTable.cpp
572986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp
573986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolUnknown.cpp
574986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolUsingNamespace.cpp
575050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/UDTLayout.cpp
5760db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/DIPrinter.cpp
57709bfd043SDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/SymbolizableObjectFile.cpp
57809bfd043SDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/Symbolize.cpp
5790db9a49eSDimitry AndricSRCS_MIW+=	Demangle/Demangle.cpp
58009bfd043SDimitry AndricSRCS_MIN+=	Demangle/ItaniumDemangle.cpp
5810db9a49eSDimitry AndricSRCS_MIW+=	Demangle/MicrosoftDemangle.cpp
5820db9a49eSDimitry AndricSRCS_MIW+=	Demangle/MicrosoftDemangleNodes.cpp
583986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/ExecutionEngine.cpp
584986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/ExecutionEngineBindings.cpp
585986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/GDBRegistrationListener.cpp
586986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/Interpreter/Execution.cpp
587986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/Interpreter/ExternalFunctions.cpp
588986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/Interpreter/Interpreter.cpp
589b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/EHFrameSupport.cpp
59048aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF.cpp
59148aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF_x86_64.cpp
592b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/JITLink.cpp
593b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/JITLinkGeneric.cpp
594b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/JITLinkMemoryManager.cpp
595b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/MachO.cpp
596b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp
597b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/MachO_arm64.cpp
598b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/MachO_x86_64.cpp
599986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/MCJIT/MCJIT.cpp
60067b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/CompileOnDemandLayer.cpp
60124b8043eSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/CompileUtils.cpp
60267b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Core.cpp
60348aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/DebugUtils.cpp
604986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ExecutionUtils.cpp
60567b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/IRCompileLayer.cpp
60667b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/IRTransformLayer.cpp
607986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/IndirectionUtils.cpp
608efa75597SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/JITTargetMachineBuilder.cpp
60967b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/LLJIT.cpp
61067b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Layer.cpp
611efa75597SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/LazyReexports.cpp
61267b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Legacy.cpp
61348aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/MachOPlatform.cpp
61448aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Mangling.cpp
615986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/NullResolver.cpp
616b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ObjectLinkingLayer.cpp
617b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ObjectTransformLayer.cpp
618986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/OrcABISupport.cpp
619986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/OrcCBindings.cpp
620986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/OrcMCJITReplacement.cpp
62167b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
622b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Speculation.cpp
623efa75597SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ThreadSafeModule.cpp
624b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/OrcError/OrcError.cpp
625b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/OrcError/RPCError.cpp
62609bfd043SDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/JITSymbol.cpp
627986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
628986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
629986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
630986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
631986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
632986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
63309bfd043SDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp
634986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/SectionMemoryManager.cpp
635986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/TargetSelect.cpp
63648aaf27bSDimitry AndricSRCS_MIN+=	Frontend/OpenMP/OMPContext.cpp
6379771cac2SDimitry AndricSRCS_MIN+=	Frontend/OpenMP/OMPIRBuilder.cpp
6384014a71fSDimitry AndricSRCS_MIN+=	IR/AbstractCallSite.cpp
639986e05bcSDimitry AndricSRCS_MIN+=	IR/AsmWriter.cpp
640986e05bcSDimitry AndricSRCS_MIN+=	IR/Attributes.cpp
641986e05bcSDimitry AndricSRCS_MIN+=	IR/AutoUpgrade.cpp
642986e05bcSDimitry AndricSRCS_MIN+=	IR/BasicBlock.cpp
643986e05bcSDimitry AndricSRCS_MIN+=	IR/Comdat.cpp
644986e05bcSDimitry AndricSRCS_MIN+=	IR/ConstantFold.cpp
645986e05bcSDimitry AndricSRCS_MIN+=	IR/ConstantRange.cpp
646986e05bcSDimitry AndricSRCS_MIN+=	IR/Constants.cpp
647986e05bcSDimitry AndricSRCS_MIN+=	IR/Core.cpp
648986e05bcSDimitry AndricSRCS_MIN+=	IR/DIBuilder.cpp
649986e05bcSDimitry AndricSRCS_MIN+=	IR/DataLayout.cpp
650986e05bcSDimitry AndricSRCS_MIN+=	IR/DebugInfo.cpp
651986e05bcSDimitry AndricSRCS_MIN+=	IR/DebugInfoMetadata.cpp
652986e05bcSDimitry AndricSRCS_MIN+=	IR/DebugLoc.cpp
65336cb3905SDimitry AndricSRCS_MIN+=	IR/DiagnosticHandler.cpp
654986e05bcSDimitry AndricSRCS_MIN+=	IR/DiagnosticInfo.cpp
655986e05bcSDimitry AndricSRCS_MIN+=	IR/DiagnosticPrinter.cpp
656986e05bcSDimitry AndricSRCS_MIN+=	IR/Dominators.cpp
6579771cac2SDimitry AndricSRCS_MIN+=	IR/FPEnv.cpp
658986e05bcSDimitry AndricSRCS_MIN+=	IR/Function.cpp
659986e05bcSDimitry AndricSRCS_MIN+=	IR/GVMaterializer.cpp
660986e05bcSDimitry AndricSRCS_MIN+=	IR/Globals.cpp
661986e05bcSDimitry AndricSRCS_MIN+=	IR/IRBuilder.cpp
662986e05bcSDimitry AndricSRCS_MIN+=	IR/IRPrintingPasses.cpp
663986e05bcSDimitry AndricSRCS_MIN+=	IR/InlineAsm.cpp
664986e05bcSDimitry AndricSRCS_MIN+=	IR/Instruction.cpp
665986e05bcSDimitry AndricSRCS_MIN+=	IR/Instructions.cpp
666986e05bcSDimitry AndricSRCS_MIN+=	IR/IntrinsicInst.cpp
667986e05bcSDimitry AndricSRCS_MIN+=	IR/LLVMContext.cpp
668986e05bcSDimitry AndricSRCS_MIN+=	IR/LLVMContextImpl.cpp
66948aaf27bSDimitry AndricSRCS_MIN+=	IR/LLVMRemarkStreamer.cpp
670986e05bcSDimitry AndricSRCS_MIN+=	IR/LegacyPassManager.cpp
671986e05bcSDimitry AndricSRCS_MIN+=	IR/MDBuilder.cpp
672986e05bcSDimitry AndricSRCS_MIN+=	IR/Mangler.cpp
673986e05bcSDimitry AndricSRCS_MIN+=	IR/Metadata.cpp
674986e05bcSDimitry AndricSRCS_MIN+=	IR/Module.cpp
675986e05bcSDimitry AndricSRCS_MIN+=	IR/ModuleSummaryIndex.cpp
676986e05bcSDimitry AndricSRCS_MIN+=	IR/Operator.cpp
677986e05bcSDimitry AndricSRCS_MIN+=	IR/OptBisect.cpp
678986e05bcSDimitry AndricSRCS_MIN+=	IR/Pass.cpp
6795e86819cSDimitry AndricSRCS_MIN+=	IR/PassInstrumentation.cpp
680986e05bcSDimitry AndricSRCS_MIN+=	IR/PassManager.cpp
681986e05bcSDimitry AndricSRCS_MIN+=	IR/PassRegistry.cpp
6825e86819cSDimitry AndricSRCS_MIN+=	IR/PassTimingInfo.cpp
683986e05bcSDimitry AndricSRCS_MIN+=	IR/ProfileSummary.cpp
684c4394386SDimitry AndricSRCS_MIN+=	IR/SafepointIRVerifier.cpp
685986e05bcSDimitry AndricSRCS_MIN+=	IR/Statepoint.cpp
686986e05bcSDimitry AndricSRCS_MIN+=	IR/Type.cpp
687986e05bcSDimitry AndricSRCS_MIN+=	IR/TypeFinder.cpp
688986e05bcSDimitry AndricSRCS_MIN+=	IR/Use.cpp
689986e05bcSDimitry AndricSRCS_MIN+=	IR/User.cpp
690986e05bcSDimitry AndricSRCS_MIN+=	IR/Value.cpp
691986e05bcSDimitry AndricSRCS_MIN+=	IR/ValueSymbolTable.cpp
692986e05bcSDimitry AndricSRCS_MIN+=	IR/Verifier.cpp
693986e05bcSDimitry AndricSRCS_MIN+=	IRReader/IRReader.cpp
69409bfd043SDimitry AndricSRCS_EXL+=	LTO/Caching.cpp
6955897d2f0SDimitry AndricSRCS_MIN+=	LTO/LTO.cpp
69609bfd043SDimitry AndricSRCS_MIN+=	LTO/LTOBackend.cpp
69775bc38b9SEd MasteSRCS_EXL+=	LTO/LTOCodeGenerator.cpp
69875bc38b9SEd MasteSRCS_EXL+=	LTO/LTOModule.cpp
699efa75597SDimitry AndricSRCS_EXL+=	LTO/SummaryBasedOptimizations.cpp
70075bc38b9SEd MasteSRCS_EXL+=	LTO/ThinLTOCodeGenerator.cpp
70109bfd043SDimitry AndricSRCS_MIN+=	LTO/UpdateCompilerUsed.cpp
702986e05bcSDimitry AndricSRCS_MIN+=	LineEditor/LineEditor.cpp
703986e05bcSDimitry AndricSRCS_MIN+=	Linker/IRMover.cpp
704986e05bcSDimitry AndricSRCS_MIN+=	Linker/LinkModules.cpp
705986e05bcSDimitry AndricSRCS_MIN+=	MC/ConstantPools.cpp
706986e05bcSDimitry AndricSRCS_MIN+=	MC/ELFObjectWriter.cpp
707986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmBackend.cpp
708986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfo.cpp
709986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoCOFF.cpp
710986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoDarwin.cpp
711986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoELF.cpp
7124014a71fSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoXCOFF.cpp
7139f6e9a9fSDimitry AndricSRCS_MIN+=	MC/MCAsmMacro.cpp
714986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmStreamer.cpp
715986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAssembler.cpp
716986e05bcSDimitry AndricSRCS_MIN+=	MC/MCCodeEmitter.cpp
717986e05bcSDimitry AndricSRCS_MIN+=	MC/MCCodeView.cpp
718986e05bcSDimitry AndricSRCS_MIN+=	MC/MCContext.cpp
71975bc38b9SEd MasteSRCS_XDL+=	MC/MCDisassembler/Disassembler.cpp
72030d4828eSDimitry AndricSRCS_XDW+=	MC/MCDisassembler/MCDisassembler.cpp
72130d4828eSDimitry AndricSRCS_XDW+=	MC/MCDisassembler/MCExternalSymbolizer.cpp
722986e05bcSDimitry AndricSRCS_MIN+=	MC/MCDisassembler/MCRelocationInfo.cpp
72330d4828eSDimitry AndricSRCS_XDW+=	MC/MCDisassembler/MCSymbolizer.cpp
724986e05bcSDimitry AndricSRCS_MIN+=	MC/MCDwarf.cpp
725986e05bcSDimitry AndricSRCS_MIN+=	MC/MCELFObjectTargetWriter.cpp
726986e05bcSDimitry AndricSRCS_MIN+=	MC/MCELFStreamer.cpp
727986e05bcSDimitry AndricSRCS_MIN+=	MC/MCExpr.cpp
728986e05bcSDimitry AndricSRCS_MIN+=	MC/MCFragment.cpp
729986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInst.cpp
730986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInstPrinter.cpp
731986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInstrAnalysis.cpp
732986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInstrDesc.cpp
73348aaf27bSDimitry AndricSRCS_MIN+=	MC/MCInstrInfo.cpp
734986e05bcSDimitry AndricSRCS_MIN+=	MC/MCLinkerOptimizationHint.cpp
735986e05bcSDimitry AndricSRCS_MIN+=	MC/MCMachOStreamer.cpp
736986e05bcSDimitry AndricSRCS_MIN+=	MC/MCMachObjectTargetWriter.cpp
737986e05bcSDimitry AndricSRCS_MIN+=	MC/MCNullStreamer.cpp
738986e05bcSDimitry AndricSRCS_MIN+=	MC/MCObjectFileInfo.cpp
739986e05bcSDimitry AndricSRCS_MIN+=	MC/MCObjectStreamer.cpp
740986e05bcSDimitry AndricSRCS_MIN+=	MC/MCObjectWriter.cpp
741986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/AsmLexer.cpp
742986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/AsmParser.cpp
743986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/COFFAsmParser.cpp
744986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/DarwinAsmParser.cpp
745986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/ELFAsmParser.cpp
746986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCAsmLexer.cpp
747986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCAsmParser.cpp
748986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCAsmParserExtension.cpp
749986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCTargetAsmParser.cpp
7505e86819cSDimitry AndricSRCS_MIN+=	MC/MCParser/WasmAsmParser.cpp
751986e05bcSDimitry AndricSRCS_MIN+=	MC/MCRegisterInfo.cpp
752986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSchedule.cpp
753986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSection.cpp
754986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSectionCOFF.cpp
755986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSectionELF.cpp
756986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSectionMachO.cpp
7575897d2f0SDimitry AndricSRCS_MIN+=	MC/MCSectionWasm.cpp
7584014a71fSDimitry AndricSRCS_MIN+=	MC/MCSectionXCOFF.cpp
759986e05bcSDimitry AndricSRCS_MIN+=	MC/MCStreamer.cpp
760986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSubtargetInfo.cpp
761986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSymbol.cpp
762986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSymbolELF.cpp
76348aaf27bSDimitry AndricSRCS_MIN+=	MC/MCSymbolXCOFF.cpp
764986e05bcSDimitry AndricSRCS_MIN+=	MC/MCTargetOptions.cpp
76548aaf27bSDimitry AndricSRCS_MIN+=	MC/MCTargetOptionsCommandFlags.cpp
766986e05bcSDimitry AndricSRCS_MIN+=	MC/MCValue.cpp
7675897d2f0SDimitry AndricSRCS_MIN+=	MC/MCWasmStreamer.cpp
768986e05bcSDimitry AndricSRCS_MIN+=	MC/MCWin64EH.cpp
769edd7eaddSDimitry AndricSRCS_MIN+=	MC/MCWinCOFFStreamer.cpp
770986e05bcSDimitry AndricSRCS_MIN+=	MC/MCWinEH.cpp
7714014a71fSDimitry AndricSRCS_MIN+=	MC/MCXCOFFStreamer.cpp
7724014a71fSDimitry AndricSRCS_MIN+=	MC/MCXCOFFObjectTargetWriter.cpp
773986e05bcSDimitry AndricSRCS_MIN+=	MC/MachObjectWriter.cpp
774986e05bcSDimitry AndricSRCS_MIN+=	MC/StringTableBuilder.cpp
775986e05bcSDimitry AndricSRCS_MIN+=	MC/SubtargetFeature.cpp
7769f6e9a9fSDimitry AndricSRCS_MIN+=	MC/WasmObjectWriter.cpp
777986e05bcSDimitry AndricSRCS_MIN+=	MC/WinCOFFObjectWriter.cpp
7784014a71fSDimitry AndricSRCS_MIN+=	MC/XCOFFObjectWriter.cpp
779b1ae9102SDimitry AndricSRCS_EXT+=	MCA/CodeEmitter.cpp
780efa75597SDimitry AndricSRCS_EXT+=	MCA/Context.cpp
781efa75597SDimitry AndricSRCS_EXT+=	MCA/HWEventListener.cpp
782efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/HardwareUnit.cpp
783efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/LSUnit.cpp
784efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/RegisterFile.cpp
785efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/ResourceManager.cpp
786efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/RetireControlUnit.cpp
787efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/Scheduler.cpp
788efa75597SDimitry AndricSRCS_EXT+=	MCA/InstrBuilder.cpp
789efa75597SDimitry AndricSRCS_EXT+=	MCA/Instruction.cpp
790efa75597SDimitry AndricSRCS_EXT+=	MCA/Pipeline.cpp
791efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/DispatchStage.cpp
792efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/EntryStage.cpp
793efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/ExecuteStage.cpp
794efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/InstructionTables.cpp
79524b8043eSDimitry AndricSRCS_EXT+=	MCA/Stages/MicroOpQueueStage.cpp
796efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/RetireStage.cpp
797efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/Stage.cpp
798efa75597SDimitry AndricSRCS_EXT+=	MCA/Support.cpp
799986e05bcSDimitry AndricSRCS_MIN+=	Object/Archive.cpp
800986e05bcSDimitry AndricSRCS_MIN+=	Object/ArchiveWriter.cpp
801986e05bcSDimitry AndricSRCS_MIN+=	Object/Binary.cpp
8029c954a48SEd MasteSRCS_MIN+=	Object/COFFImportFile.cpp
8030db9a49eSDimitry AndricSRCS_MIW+=	Object/COFFModuleDefinition.cpp
804986e05bcSDimitry AndricSRCS_MIN+=	Object/COFFObjectFile.cpp
805f1a29dd3SDimitry AndricSRCS_MIN+=	Object/Decompressor.cpp
806986e05bcSDimitry AndricSRCS_MIN+=	Object/ELF.cpp
807986e05bcSDimitry AndricSRCS_MIN+=	Object/ELFObjectFile.cpp
808986e05bcSDimitry AndricSRCS_MIN+=	Object/Error.cpp
809986e05bcSDimitry AndricSRCS_MIN+=	Object/IRObjectFile.cpp
8105897d2f0SDimitry AndricSRCS_MIN+=	Object/IRSymtab.cpp
811986e05bcSDimitry AndricSRCS_MIN+=	Object/MachOObjectFile.cpp
8120db9a49eSDimitry AndricSRCS_MIW+=	Object/MachOUniversal.cpp
8130db9a49eSDimitry AndricSRCS_MIW+=	Object/Minidump.cpp
81409bfd043SDimitry AndricSRCS_MIN+=	Object/ModuleSymbolTable.cpp
815986e05bcSDimitry AndricSRCS_EXT+=	Object/Object.cpp
816986e05bcSDimitry AndricSRCS_MIN+=	Object/ObjectFile.cpp
817986e05bcSDimitry AndricSRCS_MIN+=	Object/RecordStreamer.cpp
8180db9a49eSDimitry AndricSRCS_MIW+=	Object/RelocationResolver.cpp
8190db9a49eSDimitry AndricSRCS_MIW+=	Object/SymbolSize.cpp
820986e05bcSDimitry AndricSRCS_MIN+=	Object/SymbolicFile.cpp
82148aaf27bSDimitry AndricSRCS_MIW+=	Object/TapiFile.cpp
822d311d024SDimitry AndricSRCS_MIW+=	Object/TapiUniversal.cpp
82309bfd043SDimitry AndricSRCS_MIN+=	Object/WasmObjectFile.cpp
8240db9a49eSDimitry AndricSRCS_MIW+=	Object/WindowsMachineFlag.cpp
825bbd32193SDimitry AndricSRCS_MIN+=	Object/WindowsResource.cpp
8264014a71fSDimitry AndricSRCS_MIN+=	Object/XCOFFObjectFile.cpp
827986e05bcSDimitry AndricSRCS_MIN+=	ObjectYAML/COFFYAML.cpp
828f9448bf3SDimitry AndricSRCS_EXT+=	ObjectYAML/CodeViewYAMLDebugSections.cpp
829f9448bf3SDimitry AndricSRCS_EXT+=	ObjectYAML/CodeViewYAMLSymbols.cpp
830f9448bf3SDimitry AndricSRCS_EXT+=	ObjectYAML/CodeViewYAMLTypes.cpp
83109bfd043SDimitry AndricSRCS_MIN+=	ObjectYAML/DWARFYAML.cpp
832986e05bcSDimitry AndricSRCS_MIN+=	ObjectYAML/ELFYAML.cpp
833986e05bcSDimitry AndricSRCS_MIN+=	ObjectYAML/MachOYAML.cpp
83424d58133SDimitry AndricSRCS_EXT+=	ObjectYAML/YAML.cpp
835986e05bcSDimitry AndricSRCS_MIN+=	Option/Arg.cpp
836986e05bcSDimitry AndricSRCS_MIN+=	Option/ArgList.cpp
837986e05bcSDimitry AndricSRCS_MIN+=	Option/OptTable.cpp
838986e05bcSDimitry AndricSRCS_MIN+=	Option/Option.cpp
83909bfd043SDimitry AndricSRCS_MIN+=	Passes/PassBuilder.cpp
8404014a71fSDimitry AndricSRCS_MIN+=	Passes/PassPlugin.cpp
8419771cac2SDimitry AndricSRCS_MIN+=	Passes/StandardInstrumentations.cpp
842986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/Coverage/CoverageMapping.cpp
843986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/Coverage/CoverageMappingReader.cpp
844986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/Coverage/CoverageMappingWriter.cpp
8451b49115aSEd MasteSRCS_MIN+=	ProfileData/GCOV.cpp
846986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/InstrProf.cpp
847986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/InstrProfReader.cpp
848986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/InstrProfWriter.cpp
849986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/ProfileSummaryBuilder.cpp
850986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/SampleProf.cpp
851986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/SampleProfReader.cpp
852961eb443SEd MasteSRCS_MIN+=	ProfileData/SampleProfWriter.cpp
8539771cac2SDimitry AndricSRCS_MIN+=	Remarks/BitstreamRemarkSerializer.cpp
8544014a71fSDimitry AndricSRCS_MIN+=	Remarks/RemarkFormat.cpp
8559771cac2SDimitry AndricSRCS_MIN+=	Remarks/RemarkSerializer.cpp
85648aaf27bSDimitry AndricSRCS_MIN+=	Remarks/RemarkStreamer.cpp
8574014a71fSDimitry AndricSRCS_MIN+=	Remarks/RemarkStringTable.cpp
8584014a71fSDimitry AndricSRCS_MIN+=	Remarks/YAMLRemarkSerializer.cpp
8595e86819cSDimitry AndricSRCS_MIN+=	Support/AArch64TargetParser.cpp
860054f9817SDimitry AndricSRCS_MIN+=	Support/ABIBreak.cpp
861986e05bcSDimitry AndricSRCS_MIN+=	Support/APFloat.cpp
862986e05bcSDimitry AndricSRCS_MIN+=	Support/APInt.cpp
863986e05bcSDimitry AndricSRCS_MIN+=	Support/APSInt.cpp
8645897d2f0SDimitry AndricSRCS_MIN+=	Support/ARMAttributeParser.cpp
865986e05bcSDimitry AndricSRCS_MIN+=	Support/ARMBuildAttrs.cpp
8665e86819cSDimitry AndricSRCS_MIN+=	Support/ARMTargetParser.cpp
867986e05bcSDimitry AndricSRCS_MIN+=	Support/Allocator.cpp
8685897d2f0SDimitry AndricSRCS_MIN+=	Support/BinaryStreamError.cpp
8695897d2f0SDimitry AndricSRCS_MIN+=	Support/BinaryStreamReader.cpp
870d8866befSDimitry AndricSRCS_MIN+=	Support/BinaryStreamRef.cpp
8715897d2f0SDimitry AndricSRCS_MIN+=	Support/BinaryStreamWriter.cpp
872986e05bcSDimitry AndricSRCS_MIN+=	Support/BlockFrequency.cpp
873986e05bcSDimitry AndricSRCS_MIN+=	Support/BranchProbability.cpp
8745e86819cSDimitry AndricSRCS_MIN+=	Support/BuryPointer.cpp
875986e05bcSDimitry AndricSRCS_MIN+=	Support/CachePruning.cpp
8760db9a49eSDimitry AndricSRCS_MIW+=	Support/COM.cpp
8774d4aa256SDimitry AndricSRCS_MIN+=	Support/CRC.cpp
87809bfd043SDimitry AndricSRCS_MIN+=	Support/Chrono.cpp
87936cb3905SDimitry AndricSRCS_MIN+=	Support/CodeGenCoverage.cpp
880986e05bcSDimitry AndricSRCS_MIN+=	Support/CommandLine.cpp
881986e05bcSDimitry AndricSRCS_MIN+=	Support/Compression.cpp
88209bfd043SDimitry AndricSRCS_MIN+=	Support/ConvertUTF.cpp
883986e05bcSDimitry AndricSRCS_MIN+=	Support/ConvertUTFWrapper.cpp
884986e05bcSDimitry AndricSRCS_MIN+=	Support/CrashRecoveryContext.cpp
885986e05bcSDimitry AndricSRCS_MIN+=	Support/DAGDeltaAlgorithm.cpp
8869f6e9a9fSDimitry AndricSRCS_MIN+=	Support/DJB.cpp
887986e05bcSDimitry AndricSRCS_MIN+=	Support/DataExtractor.cpp
888986e05bcSDimitry AndricSRCS_MIN+=	Support/Debug.cpp
8895897d2f0SDimitry AndricSRCS_MIN+=	Support/DebugCounter.cpp
890986e05bcSDimitry AndricSRCS_MIN+=	Support/DeltaAlgorithm.cpp
891986e05bcSDimitry AndricSRCS_MIN+=	Support/DynamicLibrary.cpp
89248aaf27bSDimitry AndricSRCS_MIN+=	Support/ELFAttributeParser.cpp
89348aaf27bSDimitry AndricSRCS_MIN+=	Support/ELFAttributes.cpp
894986e05bcSDimitry AndricSRCS_MIN+=	Support/Errno.cpp
895986e05bcSDimitry AndricSRCS_MIN+=	Support/Error.cpp
896986e05bcSDimitry AndricSRCS_MIN+=	Support/ErrorHandling.cpp
897f46f1d28SDimitry AndricSRCS_XDB+=	Support/FileCollector.cpp
89875bc38b9SEd MasteSRCS_EXL+=	Support/FileOutputBuffer.cpp
8999771cac2SDimitry AndricSRCS_MIN+=	Support/FileUtilities.cpp
900986e05bcSDimitry AndricSRCS_MIN+=	Support/FoldingSet.cpp
90109bfd043SDimitry AndricSRCS_MIN+=	Support/FormatVariadic.cpp
902986e05bcSDimitry AndricSRCS_MIN+=	Support/FormattedStream.cpp
90309bfd043SDimitry AndricSRCS_MIN+=	Support/GlobPattern.cpp
904986e05bcSDimitry AndricSRCS_MIN+=	Support/GraphWriter.cpp
905986e05bcSDimitry AndricSRCS_MIN+=	Support/Hashing.cpp
906986e05bcSDimitry AndricSRCS_MIN+=	Support/Host.cpp
9079f6e9a9fSDimitry AndricSRCS_MIN+=	Support/InitLLVM.cpp
908986e05bcSDimitry AndricSRCS_MIN+=	Support/IntEqClasses.cpp
909986e05bcSDimitry AndricSRCS_MIN+=	Support/IntervalMap.cpp
9105e86819cSDimitry AndricSRCS_MIN+=	Support/ItaniumManglingCanonicalizer.cpp
9112d31b1b8SDimitry AndricSRCS_MIN+=	Support/JSON.cpp
91236cb3905SDimitry AndricSRCS_MIN+=	Support/KnownBits.cpp
913986e05bcSDimitry AndricSRCS_MIN+=	Support/LEB128.cpp
914986e05bcSDimitry AndricSRCS_MIN+=	Support/LineIterator.cpp
915986e05bcSDimitry AndricSRCS_MIN+=	Support/Locale.cpp
916986e05bcSDimitry AndricSRCS_MIN+=	Support/LockFileManager.cpp
9175897d2f0SDimitry AndricSRCS_MIN+=	Support/LowLevelType.cpp
918986e05bcSDimitry AndricSRCS_MIN+=	Support/MD5.cpp
919986e05bcSDimitry AndricSRCS_MIN+=	Support/ManagedStatic.cpp
920986e05bcSDimitry AndricSRCS_MIN+=	Support/MathExtras.cpp
92148aaf27bSDimitry AndricSRCS_MIN+=	Support/MemAlloc.cpp
9227bfc2d0fSDimitry AndricSRCS_XDL+=	Support/Memory.cpp
923986e05bcSDimitry AndricSRCS_MIN+=	Support/MemoryBuffer.cpp
92409bfd043SDimitry AndricSRCS_MIN+=	Support/NativeFormatting.cpp
92548aaf27bSDimitry AndricSRCS_MIN+=	Support/OptimizedStructLayout.cpp
9264014a71fSDimitry AndricSRCS_MIN+=	Support/Optional.cpp
927390be9fcSDimitry AndricSRCS_LLD+=	Support/Parallel.cpp
928986e05bcSDimitry AndricSRCS_MIN+=	Support/Path.cpp
929986e05bcSDimitry AndricSRCS_MIN+=	Support/PluginLoader.cpp
930986e05bcSDimitry AndricSRCS_MIN+=	Support/PrettyStackTrace.cpp
931986e05bcSDimitry AndricSRCS_MIN+=	Support/Process.cpp
932986e05bcSDimitry AndricSRCS_MIN+=	Support/Program.cpp
93348aaf27bSDimitry AndricSRCS_MIN+=	Support/RISCVAttributeParser.cpp
93448aaf27bSDimitry AndricSRCS_MIN+=	Support/RISCVAttributes.cpp
935986e05bcSDimitry AndricSRCS_MIN+=	Support/RWMutex.cpp
936986e05bcSDimitry AndricSRCS_MIN+=	Support/RandomNumberGenerator.cpp
937986e05bcSDimitry AndricSRCS_MIN+=	Support/Regex.cpp
938986e05bcSDimitry AndricSRCS_MIN+=	Support/SHA1.cpp
939986e05bcSDimitry AndricSRCS_MIN+=	Support/ScaledNumber.cpp
940986e05bcSDimitry AndricSRCS_MIN+=	Support/ScopedPrinter.cpp
941986e05bcSDimitry AndricSRCS_MIN+=	Support/Signals.cpp
9424014a71fSDimitry AndricSRCS_MIN+=	Support/Signposts.cpp
943986e05bcSDimitry AndricSRCS_MIN+=	Support/SmallPtrSet.cpp
944986e05bcSDimitry AndricSRCS_MIN+=	Support/SmallVector.cpp
945986e05bcSDimitry AndricSRCS_MIN+=	Support/SourceMgr.cpp
946986e05bcSDimitry AndricSRCS_MIN+=	Support/SpecialCaseList.cpp
947986e05bcSDimitry AndricSRCS_MIN+=	Support/Statistic.cpp
948986e05bcSDimitry AndricSRCS_MIN+=	Support/StringExtras.cpp
949986e05bcSDimitry AndricSRCS_MIN+=	Support/StringMap.cpp
950986e05bcSDimitry AndricSRCS_MIN+=	Support/StringRef.cpp
951986e05bcSDimitry AndricSRCS_MIN+=	Support/StringSaver.cpp
95248aaf27bSDimitry AndricSRCS_MIN+=	Support/SuffixTree.cpp
9535e86819cSDimitry AndricSRCS_MIN+=	Support/SymbolRemappingReader.cpp
954986e05bcSDimitry AndricSRCS_EXT+=	Support/SystemUtils.cpp
9551ae4f0f6SDimitry AndricSRCS_LLD+=	Support/TarWriter.cpp
956986e05bcSDimitry AndricSRCS_MIN+=	Support/TargetParser.cpp
957986e05bcSDimitry AndricSRCS_MIN+=	Support/TargetRegistry.cpp
958986e05bcSDimitry AndricSRCS_MIN+=	Support/ThreadLocal.cpp
9590db9a49eSDimitry AndricSRCS_MIW+=	Support/ThreadPool.cpp
960986e05bcSDimitry AndricSRCS_MIN+=	Support/Threading.cpp
9614014a71fSDimitry AndricSRCS_MIN+=	Support/TimeProfiler.cpp
962986e05bcSDimitry AndricSRCS_MIN+=	Support/Timer.cpp
963986e05bcSDimitry AndricSRCS_MIN+=	Support/ToolOutputFile.cpp
96409bfd043SDimitry AndricSRCS_MIN+=	Support/TrigramIndex.cpp
965986e05bcSDimitry AndricSRCS_MIN+=	Support/Triple.cpp
966986e05bcSDimitry AndricSRCS_MIN+=	Support/Twine.cpp
967986e05bcSDimitry AndricSRCS_MIN+=	Support/Unicode.cpp
9689f6e9a9fSDimitry AndricSRCS_MIN+=	Support/UnicodeCaseFold.cpp
969986e05bcSDimitry AndricSRCS_MIN+=	Support/Valgrind.cpp
9705e86819cSDimitry AndricSRCS_MIN+=	Support/VirtualFileSystem.cpp
9719f6e9a9fSDimitry AndricSRCS_MIN+=	Support/VersionTuple.cpp
9724014a71fSDimitry AndricSRCS_MIN+=	Support/Watchdog.cpp
97380a8c751SEd MasteSRCS_MIN+=	Support/WithColor.cpp
97448aaf27bSDimitry AndricSRCS_MIN+=	Support/X86TargetParser.cpp
975986e05bcSDimitry AndricSRCS_MIN+=	Support/YAMLParser.cpp
976986e05bcSDimitry AndricSRCS_MIN+=	Support/YAMLTraits.cpp
97723559b6aSDimitry AndricSRCS_FUL+=	Support/Z3Solver.cpp
978986e05bcSDimitry AndricSRCS_MIN+=	Support/circular_raw_ostream.cpp
979986e05bcSDimitry AndricSRCS_MIN+=	Support/raw_os_ostream.cpp
980986e05bcSDimitry AndricSRCS_MIN+=	Support/raw_ostream.cpp
981986e05bcSDimitry AndricSRCS_MIN+=	Support/regcomp.c
982986e05bcSDimitry AndricSRCS_MIN+=	Support/regerror.c
983986e05bcSDimitry AndricSRCS_MIN+=	Support/regexec.c
984986e05bcSDimitry AndricSRCS_MIN+=	Support/regfree.c
985986e05bcSDimitry AndricSRCS_MIN+=	Support/regstrlcpy.c
98680a8c751SEd MasteSRCS_MIN+=	Support/xxhash.cpp
987986e05bcSDimitry AndricSRCS_MIN+=	TableGen/Error.cpp
988d25b9f8fSDimitry AndricSRCS_MIN+=	TableGen/JSONBackend.cpp
989986e05bcSDimitry AndricSRCS_MIN+=	TableGen/Main.cpp
990986e05bcSDimitry AndricSRCS_MIN+=	TableGen/Record.cpp
991986e05bcSDimitry AndricSRCS_MIN+=	TableGen/SetTheory.cpp
992986e05bcSDimitry AndricSRCS_MIN+=	TableGen/StringMatcher.cpp
993986e05bcSDimitry AndricSRCS_MIN+=	TableGen/TGLexer.cpp
994986e05bcSDimitry AndricSRCS_MIN+=	TableGen/TGParser.cpp
995986e05bcSDimitry AndricSRCS_MIN+=	TableGen/TableGenBackend.cpp
996cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no"
997986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64A53Fix835769.cpp
998986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64A57FPLoadBalancing.cpp
999986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64AdvSIMDScalarPass.cpp
1000986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64AsmPrinter.cpp
10015e86819cSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64BranchTargets.cpp
10024014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CallingConvention.cpp
1003986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp
1004986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CollectLOH.cpp
10055e86819cSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CompressJumpTables.cpp
1006edd7eaddSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CondBrTuning.cpp
1007986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ConditionOptimizer.cpp
1008986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ConditionalCompares.cpp
1009986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
10104014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ExpandImm.cpp
1011986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ExpandPseudoInsts.cpp
1012b40b48b8SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64FalkorHWPFFix.cpp
1013986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64FastISel.cpp
1014986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64FrameLowering.cpp
1015986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ISelDAGToDAG.cpp
1016986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ISelLowering.cpp
1017986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64InstrInfo.cpp
1018986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64LoadStoreOptimizer.cpp
1019986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MCInstLower.cpp
102048aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MachineFunctionInfo.cpp
10215897d2f0SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MacroFusion.cpp
1022986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64PBQPRegAlloc.cpp
1023986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64PromoteConstant.cpp
1024986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64RedundantCopyElimination.cpp
1025986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64RegisterInfo.cpp
102636cb3905SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SIMDInstrOpt.cpp
102748aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SLSHardening.cpp
1028986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SelectionDAGInfo.cpp
10295e86819cSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SpeculationHardening.cpp
10304014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64StackTagging.cpp
10319771cac2SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64StackTaggingPreRA.cpp
1032986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64StorePairSuppress.cpp
1033986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64Subtarget.cpp
1034986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64TargetMachine.cpp
1035986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64TargetObjectFile.cpp
1036986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64TargetTransformInfo.cpp
1037986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AsmParser/AArch64AsmParser.cpp
103830d4828eSDimitry AndricSRCS_XDW+=	Target/AArch64/Disassembler/AArch64Disassembler.cpp
103930d4828eSDimitry AndricSRCS_XDW+=	Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp
104048aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64CallLowering.cpp
104148aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64InstructionSelector.cpp
104248aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64LegalizerInfo.cpp
104348aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64PreLegalizerCombiner.cpp
104448aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64PostLegalizerCombiner.cpp
104548aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64RegisterBankInfo.cpp
1046986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
1047986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
1048986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp
10494014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp
1050986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
1051986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
1052986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
1053986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
1054986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
1055986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp
1056a580b014SDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp
1057a580b014SDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp
105848aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/SVEIntrinsicOpts.cpp
1059986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
1060986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/Utils/AArch64BaseInfo.cpp
1061cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64
1062cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no"
1063986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/A15SDOptimizer.cpp
1064986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMAsmPrinter.cpp
1065986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMBaseInstrInfo.cpp
1066986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMBaseRegisterInfo.cpp
10674014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMBasicBlockInfo.cpp
10683d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMCallLowering.cpp
10694014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMCallingConv.cpp
1070986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMConstantIslandPass.cpp
1071986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMConstantPoolValue.cpp
1072986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMExpandPseudoInsts.cpp
1073986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMFastISel.cpp
1074986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMFrameLowering.cpp
1075986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMHazardRecognizer.cpp
1076986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMISelDAGToDAG.cpp
1077986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMISelLowering.cpp
1078986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMInstrInfo.cpp
10793d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMInstructionSelector.cpp
10803d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMLegalizerInfo.cpp
1081986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMLoadStoreOptimizer.cpp
10824014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMLowOverheadLoops.cpp
1083986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMMCInstLower.cpp
1084986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMMachineFunctionInfo.cpp
1085edd7eaddSDimitry AndricSRCS_MIN+=	Target/ARM/ARMMacroFusion.cpp
1086986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMOptimizeBarriersPass.cpp
10879f6e9a9fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMParallelDSP.cpp
10883d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMRegisterBankInfo.cpp
1089986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMRegisterInfo.cpp
1090986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMSelectionDAGInfo.cpp
1091986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMSubtarget.cpp
1092986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMTargetMachine.cpp
1093986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMTargetObjectFile.cpp
1094986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMTargetTransformInfo.cpp
1095986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/AsmParser/ARMAsmParser.cpp
1096986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Disassembler/ARMDisassembler.cpp
1097986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
1098986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
1099986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
11004014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMInstPrinter.cpp
1101986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp
1102986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
1103986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCExpr.cpp
1104986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
1105986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp
1106986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
1107986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
1108986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp
1109986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp
1110986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp
1111986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MLxExpansionPass.cpp
11129771cac2SDimitry AndricSRCS_MIN+=	Target/ARM/MVEGatherScatterLowering.cpp
11139771cac2SDimitry AndricSRCS_MIN+=	Target/ARM/MVETailPredication.cpp
11149771cac2SDimitry AndricSRCS_MIN+=	Target/ARM/MVEVPTBlockPass.cpp
111548aaf27bSDimitry AndricSRCS_MIN+=	Target/ARM/MVEVPTOptimisationsPass.cpp
1116986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/TargetInfo/ARMTargetInfo.cpp
1117986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb1FrameLowering.cpp
1118986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb1InstrInfo.cpp
1119986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb2ITBlockPass.cpp
1120986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb2InstrInfo.cpp
1121986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb2SizeReduction.cpp
1122986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ThumbRegisterInfo.cpp
112336cb3905SDimitry AndricSRCS_MIN+=	Target/ARM/Utils/ARMBaseInfo.cpp
1124cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM
112589edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no"
112689edb881SDimitry AndricSRCS_MIN+=	Target/BPF/AsmParser/BPFAsmParser.cpp
1127a9365f4aSDimitry AndricSRCS_MIN+=	Target/BPF/BPFAbstractMemberAccess.cpp
112889edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFAsmPrinter.cpp
112989edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFFrameLowering.cpp
113089edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFISelDAGToDAG.cpp
113189edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFISelLowering.cpp
113289edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFInstrInfo.cpp
113389edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFMCInstLower.cpp
11340a462115SDimitry AndricSRCS_MIN+=	Target/BPF/BPFMIChecking.cpp
1135f9c0a512SDimitry AndricSRCS_MIN+=	Target/BPF/BPFMIPeephole.cpp
1136a9365f4aSDimitry AndricSRCS_MIN+=	Target/BPF/BPFMISimplifyPatchable.cpp
1137*1c1ab429SDimitry AndricSRCS_MIN+=	Target/BPF/BPFPreserveDIType.cpp
113889edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFRegisterInfo.cpp
1139f9c0a512SDimitry AndricSRCS_MIN+=	Target/BPF/BPFSelectionDAGInfo.cpp
114089edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFSubtarget.cpp
114189edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFTargetMachine.cpp
11420a462115SDimitry AndricSRCS_MIN+=	Target/BPF/BTFDebug.cpp
114389edb881SDimitry AndricSRCS_MIN+=	Target/BPF/Disassembler/BPFDisassembler.cpp
114489edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFAsmBackend.cpp
114589edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
11464014a71fSDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFInstPrinter.cpp
114789edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp
114889edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp
114989edb881SDimitry AndricSRCS_MIN+=	Target/BPF/TargetInfo/BPFTargetInfo.cpp
115089edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF
1151cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no"
1152986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/AsmParser/MipsAsmParser.cpp
115330d4828eSDimitry AndricSRCS_XDW+=	Target/Mips/Disassembler/MipsDisassembler.cpp
1154986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp
1155986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsABIInfo.cpp
1156986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
1157986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
1158986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsELFStreamer.cpp
11594014a71fSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsInstPrinter.cpp
1160986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
1161986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
1162986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCExpr.cpp
1163986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
1164986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
1165986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsOptionRecord.cpp
1166986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
1167f37b6182SDimitry AndricSRCS_MIN+=	Target/Mips/MicroMipsSizeReduction.cpp
1168986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16FrameLowering.cpp
1169986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16HardFloat.cpp
1170986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16HardFloatInfo.cpp
1171986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16ISelDAGToDAG.cpp
1172986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16ISelLowering.cpp
1173986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16InstrInfo.cpp
1174986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16RegisterInfo.cpp
1175986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsAnalyzeImmediate.cpp
1176986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsAsmPrinter.cpp
11779f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsBranchExpansion.cpp
1178986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsCCState.cpp
11799f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsCallLowering.cpp
1180986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsConstantIslandPass.cpp
1181986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsDelaySlotFiller.cpp
11829f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsExpandPseudo.cpp
1183986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsFastISel.cpp
1184986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsFrameLowering.cpp
1185986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsISelDAGToDAG.cpp
1186986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsISelLowering.cpp
1187986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsInstrInfo.cpp
11889f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsInstructionSelector.cpp
11899f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsLegalizerInfo.cpp
1190986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsMCInstLower.cpp
1191986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsMachineFunction.cpp
1192986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsModuleISelDAGToDAG.cpp
1193986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsOptimizePICCall.cpp
1194986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsOs16.cpp
11955e86819cSDimitry AndricSRCS_MIN+=	Target/Mips/MipsPreLegalizerCombiner.cpp
11969f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsRegisterBankInfo.cpp
1197986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsRegisterInfo.cpp
1198986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEFrameLowering.cpp
1199986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEISelDAGToDAG.cpp
1200986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEISelLowering.cpp
1201986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEInstrInfo.cpp
1202986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSERegisterInfo.cpp
1203986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSubtarget.cpp
1204986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsTargetMachine.cpp
1205986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsTargetObjectFile.cpp
1206986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/TargetInfo/MipsTargetInfo.cpp
1207cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS
1208cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no"
1209986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/AsmParser/PPCAsmParser.cpp
1210986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/Disassembler/PPCDisassembler.cpp
1211986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp
1212986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
121348aaf27bSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCELFStreamer.cpp
12144014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCInstPrinter.cpp
1215986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
1216986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
1217986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
1218986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
1219986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCPredicates.cpp
12204014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCXCOFFObjectWriter.cpp
1221986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCAsmPrinter.cpp
1222986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCBoolRetToInt.cpp
122336cb3905SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCBranchCoalescing.cpp
1224986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCBranchSelector.cpp
1225986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCCCState.cpp
1226986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCCTRLoops.cpp
12274014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCCallingConv.cpp
1228986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCEarlyReturn.cpp
12295897d2f0SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCExpandISEL.cpp
1230986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCFastISel.cpp
1231986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCFrameLowering.cpp
1232986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCHazardRecognizers.cpp
1233986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCISelDAGToDAG.cpp
1234986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCISelLowering.cpp
1235986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCInstrInfo.cpp
12369771cac2SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCLoopInstrFormPrep.cpp
12379771cac2SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCLowerMASSVEntries.cpp
123848aaf27bSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMacroFusion.cpp
1239986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMCInstLower.cpp
1240986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMIPeephole.cpp
1241986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMachineFunctionInfo.cpp
12424014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMachineScheduler.cpp
124336cb3905SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCPreEmitPeephole.cpp
1244986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCQPXLoadSplat.cpp
124536cb3905SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCReduceCRLogicals.cpp
1246986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCRegisterInfo.cpp
1247986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCSubtarget.cpp
1248986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTLSDynamicCall.cpp
1249986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTOCRegDeps.cpp
1250986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTargetMachine.cpp
1251986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTargetObjectFile.cpp
1252986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTargetTransformInfo.cpp
1253986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCVSXCopy.cpp
1254986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCVSXFMAMutate.cpp
1255986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCVSXSwapRemoval.cpp
1256986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
1257cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC
1258b2689b12SMitchell Horne.if ${MK_LLVM_TARGET_RISCV} != "no"
1259b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/AsmParser/RISCVAsmParser.cpp
1260b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/Disassembler/RISCVDisassembler.cpp
1261b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
1262b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp
1263b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVELFStreamer.cpp
12644014a71fSDimitry AndricSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVInstPrinter.cpp
1265b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.cpp
1266b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp
1267b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp
1268b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp
1269b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVTargetStreamer.cpp
1270b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVAsmPrinter.cpp
12719771cac2SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVCallLowering.cpp
127248aaf27bSDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVExpandAtomicPseudoInsts.cpp
1273b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVExpandPseudoInsts.cpp
1274b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVFrameLowering.cpp
1275b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVInstrInfo.cpp
12769771cac2SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVInstructionSelector.cpp
1277b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVISelDAGToDAG.cpp
1278b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVISelLowering.cpp
12799771cac2SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVLegalizerInfo.cpp
1280b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVMCInstLower.cpp
1281b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVMergeBaseOffset.cpp
12829771cac2SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVRegisterBankInfo.cpp
1283b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVRegisterInfo.cpp
1284b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVSubtarget.cpp
1285b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVTargetMachine.cpp
1286b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVTargetObjectFile.cpp
1287869fe6d5SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVTargetTransformInfo.cpp
1288b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/TargetInfo/RISCVTargetInfo.cpp
1289b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/Utils/RISCVBaseInfo.cpp
1290b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/Utils/RISCVMatInt.cpp
1291b2689b12SMitchell Horne.endif # MK_LLVM_TARGET_RISCV
1292986e05bcSDimitry AndricSRCS_MIN+=	Target/Target.cpp
1293986e05bcSDimitry AndricSRCS_MIN+=	Target/TargetLoweringObjectFile.cpp
1294986e05bcSDimitry AndricSRCS_MIN+=	Target/TargetMachine.cpp
1295986e05bcSDimitry AndricSRCS_MIN+=	Target/TargetMachineC.cpp
1296cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no"
1297986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/AsmParser/X86AsmParser.cpp
129830d4828eSDimitry AndricSRCS_XDW+=	Target/X86/Disassembler/X86Disassembler.cpp
12994014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86ATTInstPrinter.cpp
1300986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86AsmBackend.cpp
1301986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp
13024014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86InstComments.cpp
13034014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86InstPrinterCommon.cpp
13044014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86IntelInstPrinter.cpp
1305986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
1306986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
1307986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
1308986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
130948aaf27bSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86ShuffleDecode.cpp
1310986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
1311986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
131236cb3905SDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp
1313986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/TargetInfo/X86TargetInfo.cpp
1314986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86AsmPrinter.cpp
13159f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86AvoidStoreForwardingBlocks.cpp
13169771cac2SDimitry AndricSRCS_MIN+=	Target/X86/X86AvoidTrailingCall.cpp
1317986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86CallFrameOptimization.cpp
13183d54deb3SDimitry AndricSRCS_MIN+=	Target/X86/X86CallLowering.cpp
131909bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86CallingConv.cpp
1320b40b48b8SDimitry AndricSRCS_MIN+=	Target/X86/X86CmovConversion.cpp
13215e86819cSDimitry AndricSRCS_MIN+=	Target/X86/X86CondBrFolding.cpp
13225e86819cSDimitry AndricSRCS_MIN+=	Target/X86/X86DiscriminateMemOps.cpp
132336cb3905SDimitry AndricSRCS_MIN+=	Target/X86/X86DomainReassignment.cpp
132409bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86EvexToVex.cpp
1325986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ExpandPseudo.cpp
1326986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FastISel.cpp
1327986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FixupBWInsts.cpp
1328986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FixupLEAs.cpp
1329986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FixupSetCC.cpp
13300556cfadSDimitry AndricSRCS_MIN+=	Target/X86/X86FlagsCopyLowering.cpp
1331986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FloatingPoint.cpp
1332986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FrameLowering.cpp
1333986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ISelDAGToDAG.cpp
1334986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ISelLowering.cpp
13359f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86IndirectBranchTracking.cpp
13360946e70aSDimitry AndricSRCS_MIN+=	Target/X86/X86IndirectThunks.cpp
13375e86819cSDimitry AndricSRCS_MIN+=	Target/X86/X86InsertPrefetch.cpp
133848aaf27bSDimitry AndricSRCS_MIN+=	Target/X86/X86InsertWait.cpp
133909bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86InstrFMA3Info.cpp
13409f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86InstrFoldTables.cpp
1341986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86InstrInfo.cpp
13423d54deb3SDimitry AndricSRCS_MIN+=	Target/X86/X86InstructionSelector.cpp
134309bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86InterleavedAccess.cpp
13443d54deb3SDimitry AndricSRCS_MIN+=	Target/X86/X86LegalizerInfo.cpp
13450946e70aSDimitry AndricSRCS_MIN+=	Target/X86/X86LoadValueInjectionLoadHardening.cpp
13460946e70aSDimitry AndricSRCS_MIN+=	Target/X86/X86LoadValueInjectionRetHardening.cpp
1347986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86MCInstLower.cpp
1348986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86MachineFunctionInfo.cpp
13495897d2f0SDimitry AndricSRCS_MIN+=	Target/X86/X86MacroFusion.cpp
1350986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86OptimizeLEAs.cpp
1351986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86PadShortFunction.cpp
135248aaf27bSDimitry AndricSRCS_MIN+=	Target/X86/X86PartialReduction.cpp
13533d54deb3SDimitry AndricSRCS_MIN+=	Target/X86/X86RegisterBankInfo.cpp
1354986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86RegisterInfo.cpp
1355986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86SelectionDAGInfo.cpp
1356986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ShuffleDecodeConstantPool.cpp
135748aaf27bSDimitry AndricSRCS_MIN+=	Target/X86/X86SpeculativeExecutionSideEffectSuppression.cpp
13589f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86SpeculativeLoadHardening.cpp
1359986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86Subtarget.cpp
1360986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86TargetMachine.cpp
1361986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86TargetObjectFile.cpp
1362986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86TargetTransformInfo.cpp
1363986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86VZeroUpper.cpp
1364986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86WinAllocaExpander.cpp
1365986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86WinEHState.cpp
1366cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86
1367d311d024SDimitry AndricSRCS_MIW+=	TextAPI/MachO/Architecture.cpp
1368d311d024SDimitry AndricSRCS_MIW+=	TextAPI/MachO/ArchitectureSet.cpp
1369d311d024SDimitry AndricSRCS_MIW+=	TextAPI/MachO/InterfaceFile.cpp
1370d311d024SDimitry AndricSRCS_MIW+=	TextAPI/MachO/PackedVersion.cpp
1371d311d024SDimitry AndricSRCS_MIW+=	TextAPI/MachO/Platform.cpp
1372d311d024SDimitry AndricSRCS_MIW+=	TextAPI/MachO/Target.cpp
1373d311d024SDimitry AndricSRCS_MIW+=	TextAPI/MachO/TextStub.cpp
1374d311d024SDimitry AndricSRCS_MIW+=	TextAPI/MachO/TextStubCommon.cpp
13759c954a48SEd MasteSRCS_MIN+=	ToolDrivers/llvm-dlltool/DlltoolDriver.cpp
13760db9a49eSDimitry AndricSRCS_MIW+=	ToolDrivers/llvm-lib/LibDriver.cpp
13779f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
13789f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/AggressiveInstCombine/TruncInstCombine.cpp
13799771cac2SDimitry AndricSRCS_MIN+=	Transforms/CFGuard/CFGuard.cpp
138009bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroCleanup.cpp
138109bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroEarly.cpp
138209bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroElide.cpp
138309bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroFrame.cpp
138409bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroSplit.cpp
138509bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/Coroutines.cpp
138609bfd043SDimitry AndricSRCS_MIN+=	Transforms/IPO/AlwaysInliner.cpp
1387986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ArgumentPromotion.cpp
13884014a71fSDimitry AndricSRCS_MIN+=	Transforms/IPO/Attributor.cpp
138948aaf27bSDimitry AndricSRCS_MIN+=	Transforms/IPO/AttributorAttributes.cpp
1390986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/BarrierNoopPass.cpp
139167b158f6SDimitry AndricSRCS_EXT+=	Transforms/IPO/BlockExtractor.cpp
139236cb3905SDimitry AndricSRCS_MIN+=	Transforms/IPO/CalledValuePropagation.cpp
1393986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ConstantMerge.cpp
1394986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/CrossDSOCFI.cpp
1395986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/DeadArgumentElimination.cpp
1396986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ElimAvailExtern.cpp
1397986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ExtractGV.cpp
1398986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ForceFunctionAttrs.cpp
1399986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/FunctionAttrs.cpp
1400986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/FunctionImport.cpp
1401986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/GlobalDCE.cpp
1402986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/GlobalOpt.cpp
140309bfd043SDimitry AndricSRCS_MIN+=	Transforms/IPO/GlobalSplit.cpp
14045e86819cSDimitry AndricSRCS_MIN+=	Transforms/IPO/HotColdSplitting.cpp
1405986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/IPConstantPropagation.cpp
1406986e05bcSDimitry AndricSRCS_EXT+=	Transforms/IPO/IPO.cpp
1407986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/InferFunctionAttrs.cpp
1408986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/InlineSimple.cpp
1409986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/Inliner.cpp
1410986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/Internalize.cpp
1411986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/LoopExtractor.cpp
1412986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/LowerTypeTests.cpp
1413986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/MergeFunctions.cpp
141448aaf27bSDimitry AndricSRCS_MIN+=	Transforms/IPO/OpenMPOpt.cpp
1415986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/PartialInlining.cpp
1416986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/PassManagerBuilder.cpp
1417986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/PruneEH.cpp
14189f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/IPO/SCCP.cpp
1419986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/SampleProfile.cpp
1420986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/StripDeadPrototypes.cpp
1421986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/StripSymbols.cpp
14229f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/IPO/SyntheticCountsPropagation.cpp
142309bfd043SDimitry AndricSRCS_MIN+=	Transforms/IPO/ThinLTOBitcodeWriter.cpp
1424986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/WholeProgramDevirt.cpp
1425986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineAddSub.cpp
1426986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineAndOrXor.cpp
14274014a71fSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineAtomicRMW.cpp
1428986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineCalls.cpp
1429986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineCasts.cpp
1430986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineCompares.cpp
1431986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
1432986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineMulDivRem.cpp
143348aaf27bSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineNegator.cpp
1434986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombinePHI.cpp
1435986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineSelect.cpp
1436986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineShifts.cpp
1437986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
1438986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineVectorOps.cpp
1439986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstructionCombining.cpp
1440986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/AddressSanitizer.cpp
1441986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/BoundsChecking.cpp
14429f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/CGProfile.cpp
14435e86819cSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/ControlHeightReduction.cpp
1444986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/DataFlowSanitizer.cpp
1445986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/GCOVProfiling.cpp
144636cb3905SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/HWAddressSanitizer.cpp
1447986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/IndirectCallPromotion.cpp
14484014a71fSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/InstrOrderFile.cpp
1449986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/InstrProfiling.cpp
1450986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/Instrumentation.cpp
1451986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/MemorySanitizer.cpp
1452986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PGOInstrumentation.cpp
145324d58133SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PGOMemOPSizeOpt.cpp
14544014a71fSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PoisonChecking.cpp
1455986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/SanitizerCoverage.cpp
1456986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/ThreadSanitizer.cpp
14579771cac2SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/ValueProfileCollector.cpp
1458986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/DependencyAnalysis.cpp
1459986e05bcSDimitry AndricSRCS_EXT+=	Transforms/ObjCARC/ObjCARC.cpp
1460986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCAPElim.cpp
1461986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCContract.cpp
1462986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCExpand.cpp
1463986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCOpts.cpp
1464986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ProvenanceAnalysis.cpp
1465986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp
1466986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/PtrState.cpp
1467986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/ADCE.cpp
1468986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/AlignmentFromAssumptions.cpp
1469986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/BDCE.cpp
147036cb3905SDimitry AndricSRCS_MIN+=	Transforms/Scalar/CallSiteSplitting.cpp
1471986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/ConstantHoisting.cpp
1472986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/ConstantProp.cpp
1473986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/CorrelatedValuePropagation.cpp
1474986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/DCE.cpp
1475986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/DeadStoreElimination.cpp
147636cb3905SDimitry AndricSRCS_MIN+=	Transforms/Scalar/DivRemPairs.cpp
1477986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/EarlyCSE.cpp
1478986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/FlattenCFGPass.cpp
1479986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Float2Int.cpp
1480986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GVN.cpp
1481986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GVNHoist.cpp
1482302affcbSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GVNSink.cpp
1483986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GuardWidening.cpp
1484f1a29dd3SDimitry AndricSRCS_MIN+=	Transforms/Scalar/IVUsersPrinter.cpp
1485986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/IndVarSimplify.cpp
1486986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/InductiveRangeCheckElimination.cpp
1487050e2df1SDimitry AndricSRCS_EXT+=	Transforms/Scalar/InferAddressSpaces.cpp
14889f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/InstSimplifyPass.cpp
1489986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/JumpThreading.cpp
1490986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LICM.cpp
1491f1a29dd3SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopAccessAnalysisPrinter.cpp
1492986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopDataPrefetch.cpp
1493986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopDeletion.cpp
1494986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopDistribute.cpp
14954014a71fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopFuse.cpp
1496986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopIdiomRecognize.cpp
149709bfd043SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopInstSimplify.cpp
1498986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopInterchange.cpp
1499986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopLoadElimination.cpp
1500f1a29dd3SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopPassManager.cpp
15015897d2f0SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopPredication.cpp
1502986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopRerollPass.cpp
1503986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopRotation.cpp
1504986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopSimplifyCFG.cpp
150509bfd043SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopSink.cpp
1506986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopStrengthReduce.cpp
1507986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopUnrollPass.cpp
15089f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopUnrollAndJamPass.cpp
1509986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopUnswitch.cpp
1510986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopVersioningLICM.cpp
1511986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerAtomic.cpp
15129771cac2SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerConstantIntrinsics.cpp
1513986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerExpectIntrinsic.cpp
1514986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerGuardIntrinsic.cpp
15159771cac2SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerMatrixIntrinsics.cpp
15164014a71fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerWidenableCondition.cpp
15175e86819cSDimitry AndricSRCS_MIN+=	Transforms/Scalar/MakeGuardsExplicit.cpp
1518986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/MemCpyOptimizer.cpp
151936cb3905SDimitry AndricSRCS_MIN+=	Transforms/Scalar/MergeICmps.cpp
1520986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/MergedLoadStoreMotion.cpp
1521986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/NaryReassociate.cpp
152209bfd043SDimitry AndricSRCS_MIN+=	Transforms/Scalar/NewGVN.cpp
1523986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/PartiallyInlineLibCalls.cpp
1524986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/PlaceSafepoints.cpp
1525986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Reassociate.cpp
1526986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Reg2Mem.cpp
1527986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/RewriteStatepointsForGC.cpp
1528986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SCCP.cpp
1529986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SROA.cpp
1530986e05bcSDimitry AndricSRCS_EXT+=	Transforms/Scalar/Scalar.cpp
1531986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Scalarizer.cpp
1532986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
1533f37b6182SDimitry AndricSRCS_MIN+=	Transforms/Scalar/SimpleLoopUnswitch.cpp
1534986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SimplifyCFGPass.cpp
1535986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Sink.cpp
153636cb3905SDimitry AndricSRCS_MIN+=	Transforms/Scalar/SpeculateAroundPHIs.cpp
1537986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SpeculativeExecution.cpp
1538986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/StraightLineStrengthReduce.cpp
1539986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/StructurizeCFG.cpp
1540986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/TailRecursionElimination.cpp
15415e86819cSDimitry AndricSRCS_MIN+=	Transforms/Scalar/WarnMissedTransforms.cpp
154248aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/AMDGPUEmitPrintf.cpp
1543986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/ASanStackFrameLayout.cpp
1544986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/AddDiscriminators.cpp
154548aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/AssumeBundleBuilder.cpp
1546986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BasicBlockUtils.cpp
1547986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BreakCriticalEdges.cpp
1548986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BuildLibCalls.cpp
1549986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BypassSlowDivision.cpp
155048aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/CallGraphUpdater.cpp
155136cb3905SDimitry AndricSRCS_MIN+=	Transforms/Utils/CallPromotionUtils.cpp
15525e86819cSDimitry AndricSRCS_MIN+=	Transforms/Utils/CanonicalizeAliases.cpp
155348aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/CanonicalizeFreezeInLoops.cpp
1554986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CloneFunction.cpp
1555986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CloneModule.cpp
1556986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CodeExtractor.cpp
15579771cac2SDimitry AndricSRCS_MIN+=	Transforms/Utils/CodeMoverUtils.cpp
1558986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CtorUtils.cpp
155948aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/Debugify.cpp
1560986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/DemoteRegToStack.cpp
156136cb3905SDimitry AndricSRCS_MIN+=	Transforms/Utils/EntryExitInstrumenter.cpp
156209bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/EscapeEnumerator.cpp
1563986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/Evaluator.cpp
156448aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/FixIrreducible.cpp
1565986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/FlattenCFG.cpp
156609bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/FunctionComparator.cpp
1567986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/FunctionImportUtils.cpp
1568986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/GlobalStatus.cpp
15695e86819cSDimitry AndricSRCS_MIN+=	Transforms/Utils/GuardUtils.cpp
157009bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
15719771cac2SDimitry AndricSRCS_MIN+=	Transforms/Utils/InjectTLIMappings.cpp
1572986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/InlineFunction.cpp
1573986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/InstructionNamer.cpp
1574986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/IntegerDivision.cpp
1575986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LCSSA.cpp
157609bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/LibCallsShrinkWrap.cpp
1577986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/Local.cpp
1578986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopSimplify.cpp
15799f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopRotationUtils.cpp
1580986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUnroll.cpp
15819f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUnrollAndJam.cpp
158209bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUnrollPeel.cpp
1583986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUnrollRuntime.cpp
1584986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUtils.cpp
1585986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopVersioning.cpp
1586986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerInvoke.cpp
1587986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerSwitch.cpp
1588986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/Mem2Reg.cpp
1589986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/MetaRenamer.cpp
15909771cac2SDimitry AndricSRCS_MIN+=	Transforms/Utils/MisExpect.cpp
1591986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/ModuleUtils.cpp
159209bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/NameAnonGlobals.cpp
15935897d2f0SDimitry AndricSRCS_MIN+=	Transforms/Utils/PredicateInfo.cpp
1594986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/PromoteMemoryToRegister.cpp
1595986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SSAUpdater.cpp
1596986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SanitizerStats.cpp
159748aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/ScalarEvolutionExpander.cpp
1598986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SimplifyCFG.cpp
1599986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SimplifyIndVar.cpp
1600986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SimplifyLibCalls.cpp
16014014a71fSDimitry AndricSRCS_MIN+=	Transforms/Utils/SizeOpts.cpp
1602986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SplitModule.cpp
160309bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/StripGCRelocates.cpp
160409bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/StripNonLineTableDebugInfo.cpp
1605986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SymbolRewriter.cpp
1606986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/UnifyFunctionExitNodes.cpp
160748aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/UnifyLoopExits.cpp
160848aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/UniqueInternalLinkageNames.cpp
1609986e05bcSDimitry AndricSRCS_EXT+=	Transforms/Utils/Utils.cpp
16105897d2f0SDimitry AndricSRCS_MIN+=	Transforms/Utils/VNCoercion.cpp
1611986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/ValueMapper.cpp
1612986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/LoadStoreVectorizer.cpp
16139f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/LoopVectorizationLegality.cpp
1614986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/LoopVectorize.cpp
1615986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/SLPVectorizer.cpp
161636cb3905SDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlan.cpp
16179f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanHCFGBuilder.cpp
16184014a71fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanPredicator.cpp
16199771cac2SDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanTransforms.cpp
16209f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanVerifier.cpp
162148aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VectorCombine.cpp
1622986e05bcSDimitry AndricSRCS_EXT+=	Transforms/Vectorize/Vectorize.cpp
1623efa75597SDimitry AndricSRCS_EXT+=	XRay/BlockIndexer.cpp
1624efa75597SDimitry AndricSRCS_EXT+=	XRay/BlockVerifier.cpp
1625efa75597SDimitry AndricSRCS_EXT+=	XRay/FDRRecordProducer.cpp
1626efa75597SDimitry AndricSRCS_EXT+=	XRay/FDRRecords.cpp
1627efa75597SDimitry AndricSRCS_EXT+=	XRay/FDRTraceExpander.cpp
1628efa75597SDimitry AndricSRCS_EXT+=	XRay/FileHeaderReader.cpp
1629050e2df1SDimitry AndricSRCS_EXT+=	XRay/InstrumentationMap.cpp
1630efa75597SDimitry AndricSRCS_EXT+=	XRay/LogBuilderConsumer.cpp
1631efa75597SDimitry AndricSRCS_EXT+=	XRay/RecordInitializer.cpp
163267b158f6SDimitry AndricSRCS_EXT+=	XRay/Trace.cpp
1633986e05bcSDimitry Andric
1634986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_MIN}
1635caf90252SBryan Drewery.if !defined(TOOLS_PREFIX) || ${MK_LLD_BOOTSTRAP} != "no"
163630d4828eSDimitry AndricSRCS_ALL+=	${SRCS_MIW}
163730d4828eSDimitry Andric.endif
1638986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no"
1639986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_EXT}
1640986e05bcSDimitry Andric.endif
1641986e05bcSDimitry Andric.if ${MK_CLANG_FULL} != "no"
1642986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_FUL}
1643986e05bcSDimitry Andric.endif
164478187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLD} != "no" || \
164578187278SBryan Drewery    (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no")
164675bc38b9SEd MasteSRCS_ALL+=	${SRCS_EXL}
164775bc38b9SEd Maste.endif
164878187278SBryan Drewery.if ${MK_LLD} != "no" || \
164978187278SBryan Drewery    (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no")
16500fc5d238SDimitry AndricSRCS_ALL+=	${SRCS_LLD}
16510fc5d238SDimitry Andric.endif
1652986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no"
1653986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_XDB}
1654986e05bcSDimitry Andric.endif
165578187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || ${MK_LLD} != "no" || \
165678187278SBryan Drewery    (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no")
165775bc38b9SEd MasteSRCS_ALL+=	${SRCS_XDL}
165875bc38b9SEd Maste.endif
165930d4828eSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || !defined(TOOLS_PREFIX)
166030d4828eSDimitry AndricSRCS_ALL+=	${SRCS_XDW}
166130d4828eSDimitry Andric.endif
166248aaf27bSDimitry AndricSRCS+=		${GENSRCS}
1663986e05bcSDimitry AndricSRCS+=		${SRCS_ALL:O}
1664986e05bcSDimitry Andric
166548aaf27bSDimitry Andricllvm/Frontend/OpenMP/OMP.h.inc: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
166648aaf27bSDimitry Andric	${LLVM_TBLGEN} --gen-directive-decl \
166748aaf27bSDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
166848aaf27bSDimitry Andric	    ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
166948aaf27bSDimitry AndricTGHDRS+=	llvm/Frontend/OpenMP/OMP.h.inc
167048aaf27bSDimitry Andric
167148aaf27bSDimitry Andricllvm/Frontend/OpenMP/OMP.cpp.inc: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
167248aaf27bSDimitry Andric	${LLVM_TBLGEN} --gen-directive-gen \
167348aaf27bSDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
167448aaf27bSDimitry Andric	    ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
167548aaf27bSDimitry AndricTGHDRS+=	llvm/Frontend/OpenMP/OMP.cpp.inc
167648aaf27bSDimitry Andric
167748aaf27bSDimitry AndricOMP.cpp: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
167848aaf27bSDimitry Andric	${LLVM_TBLGEN} --gen-directive-impl \
167948aaf27bSDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
168048aaf27bSDimitry Andric	    ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
168148aaf27bSDimitry AndricGENSRCS+=	OMP.cpp
168248aaf27bSDimitry Andric
16839f6e9a9fSDimitry Andricllvm/IR/Attributes.inc: ${LLVM_SRCS}/include/llvm/IR/Attributes.td
1684986e05bcSDimitry Andric	${LLVM_TBLGEN} -gen-attrs \
1685050e2df1SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
1686986e05bcSDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Attributes.td
16879f6e9a9fSDimitry AndricTGHDRS+=	llvm/IR/Attributes.inc
1688986e05bcSDimitry Andric
16899f6e9a9fSDimitry Andricllvm/IR/IntrinsicEnums.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
16909f6e9a9fSDimitry Andric	${LLVM_TBLGEN} -gen-intrinsic-enums \
1691050e2df1SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
1692986e05bcSDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
16939f6e9a9fSDimitry AndricTGHDRS+=	llvm/IR/IntrinsicEnums.inc
16949f6e9a9fSDimitry Andric
16959f6e9a9fSDimitry Andricllvm/IR/IntrinsicImpl.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
16969f6e9a9fSDimitry Andric	${LLVM_TBLGEN} -gen-intrinsic-impl \
16979f6e9a9fSDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
16989f6e9a9fSDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
16999f6e9a9fSDimitry AndricTGHDRS+=	llvm/IR/IntrinsicImpl.inc
1700986e05bcSDimitry Andric
17019771cac2SDimitry Andric.for arch in \
17029771cac2SDimitry Andric	AArch64/aarch64 AMDGPU/amdgcn ARM/arm BPF/bpf Hexagon/hexagon \
17039771cac2SDimitry Andric	Mips/mips NVPTX/nvvm PowerPC/ppc R600/r600 RISCV/riscv S390/s390 \
17049771cac2SDimitry Andric	WebAssembly/wasm X86/x86 XCore/xcore
17059771cac2SDimitry Andricllvm/IR/Intrinsics${arch:H}.h: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
17069771cac2SDimitry Andric	${LLVM_TBLGEN} -gen-intrinsic-enums -intrinsic-prefix=${arch:T} \
17079771cac2SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
17089771cac2SDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
17099771cac2SDimitry AndricTGHDRS+=	llvm/IR/Intrinsics${arch:H}.h
17109771cac2SDimitry Andric.endfor
17119771cac2SDimitry Andric
17129f6e9a9fSDimitry AndricInstCombineTables.inc: ${LLVM_SRCS}/lib/Transforms/InstCombine/InstCombineTables.td
17139f6e9a9fSDimitry Andric	${LLVM_TBLGEN} -gen-searchable-tables \
17149f6e9a9fSDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
17159f6e9a9fSDimitry Andric	    ${LLVM_SRCS}/lib/Transforms/InstCombine/InstCombineTables.td
17169f6e9a9fSDimitry AndricTGHDRS+=	InstCombineTables.inc
17179f6e9a9fSDimitry Andric
1718b40b48b8SDimitry Andricllvm-lib/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td
1719986e05bcSDimitry Andric	${LLVM_TBLGEN} -gen-opt-parser-defs \
1720050e2df1SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
17215517e702SDimitry Andric	    ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td
1722b40b48b8SDimitry AndricTGHDRS+=	llvm-lib/Options.inc
1723b40b48b8SDimitry AndricCFLAGS.LibDriver.cpp+=	-I${.OBJDIR}/llvm-lib
1724b40b48b8SDimitry Andric
1725b40b48b8SDimitry Andricllvm-dlltool/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td
1726b40b48b8SDimitry Andric	${LLVM_TBLGEN} -gen-opt-parser-defs \
1727b40b48b8SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
1728b40b48b8SDimitry Andric	    ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td
1729b40b48b8SDimitry AndricTGHDRS+=	llvm-dlltool/Options.inc
1730b40b48b8SDimitry AndricCFLAGS.DlltoolDriver.cpp+=	-I${.OBJDIR}/llvm-dlltool
1731986e05bcSDimitry Andric
1732cd283100SBryan Drewerybeforebuild:
1733cd283100SBryan Drewery# 20170724 remove stale Options.inc file, of which there are two different
173437cd60a3SDimitry Andric# versions after upstream r308421, one for llvm-lib, one for llvm-dlltool
1735cd283100SBryan Drewery.for f in Options.inc
1736cd283100SBryan Drewery.if exists(${f}) || exists(${f}.d)
1737cd283100SBryan Drewery	@echo Removing stale generated ${f} files
1738cd283100SBryan Drewery	@rm -f ${f} ${f}.d
1739cd283100SBryan Drewery.endif
1740cd283100SBryan Drewery.endfor
1741cd283100SBryan Drewery
1742986e05bcSDimitry Andric# Note: some rules are superfluous, not every combination is valid.
1743986e05bcSDimitry Andric.for arch in \
17443b7fd87cSWarner Losh	AArch64/AArch64 ARM/ARM BPF/BPF Mips/Mips PowerPC/PPC RISCV/RISCV \
17453b7fd87cSWarner Losh	X86/X86
1746986e05bcSDimitry Andric. for hdr in \
1747986e05bcSDimitry Andric	AsmMatcher/-gen-asm-matcher \
1748986e05bcSDimitry Andric	AsmWriter/-gen-asm-writer \
174948aaf27bSDimitry Andric	AsmWriter1/-gen-asm-writer,-asmwriternum=1 \
1750986e05bcSDimitry Andric	CallingConv/-gen-callingconv \
1751986e05bcSDimitry Andric	CodeEmitter/-gen-emitter \
1752b2689b12SMitchell Horne	CompressInstEmitter/-gen-compress-inst-emitter \
1753986e05bcSDimitry Andric	DAGISel/-gen-dag-isel \
1754986e05bcSDimitry Andric	DisassemblerTables/-gen-disassembler \
17555897d2f0SDimitry Andric	EVEX2VEXTables/-gen-x86-EVEX2VEX-tables \
1756986e05bcSDimitry Andric	FastISel/-gen-fast-isel \
17573d54deb3SDimitry Andric	GlobalISel/-gen-global-isel \
1758986e05bcSDimitry Andric	InstrInfo/-gen-instr-info \
1759986e05bcSDimitry Andric	MCCodeEmitter/-gen-emitter \
1760986e05bcSDimitry Andric	MCPseudoLowering/-gen-pseudo-lowering \
176148aaf27bSDimitry Andric	PostLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}PostLegalizerCombinerHelper \
176248aaf27bSDimitry Andric	PreLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}PreLegalizerCombinerHelper \
17635897d2f0SDimitry Andric	RegisterBank/-gen-register-bank \
1764986e05bcSDimitry Andric	RegisterInfo/-gen-register-info \
1765986e05bcSDimitry Andric	SubtargetInfo/-gen-subtarget \
176636cb3905SDimitry Andric	SystemOperands/-gen-searchable-tables \
176736cb3905SDimitry Andric	SystemRegister/-gen-searchable-tables
1768986e05bcSDimitry Andric${arch:T}Gen${hdr:H}.inc: ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td
1769986e05bcSDimitry Andric	${LLVM_TBLGEN} ${hdr:T:C/,/ /g} \
1770986e05bcSDimitry Andric	    -I ${LLVM_SRCS}/include -I ${LLVM_SRCS}/lib/Target/${arch:H} \
1771050e2df1SDimitry Andric	    -d ${.TARGET}.d -o ${.TARGET} \
1772986e05bcSDimitry Andric	    ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td
1773986e05bcSDimitry Andric. endfor
1774986e05bcSDimitry Andric.endfor
1775cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no"
1776986e05bcSDimitry AndricTGHDRS+=	AArch64GenAsmMatcher.inc
1777986e05bcSDimitry AndricTGHDRS+=	AArch64GenAsmWriter.inc
1778986e05bcSDimitry AndricTGHDRS+=	AArch64GenAsmWriter1.inc
1779986e05bcSDimitry AndricTGHDRS+=	AArch64GenCallingConv.inc
1780986e05bcSDimitry AndricTGHDRS+=	AArch64GenDAGISel.inc
1781986e05bcSDimitry AndricTGHDRS+=	AArch64GenDisassemblerTables.inc
1782986e05bcSDimitry AndricTGHDRS+=	AArch64GenFastISel.inc
17833d54deb3SDimitry AndricTGHDRS+=	AArch64GenGlobalISel.inc
1784986e05bcSDimitry AndricTGHDRS+=	AArch64GenInstrInfo.inc
1785986e05bcSDimitry AndricTGHDRS+=	AArch64GenMCCodeEmitter.inc
1786986e05bcSDimitry AndricTGHDRS+=	AArch64GenMCPseudoLowering.inc
178748aaf27bSDimitry AndricTGHDRS+=	AArch64GenPostLegalizeGICombiner.inc
178848aaf27bSDimitry AndricTGHDRS+=	AArch64GenPreLegalizeGICombiner.inc
17895897d2f0SDimitry AndricTGHDRS+=	AArch64GenRegisterBank.inc
1790986e05bcSDimitry AndricTGHDRS+=	AArch64GenRegisterInfo.inc
1791986e05bcSDimitry AndricTGHDRS+=	AArch64GenSubtargetInfo.inc
1792986e05bcSDimitry AndricTGHDRS+=	AArch64GenSystemOperands.inc
1793cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64
1794cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no"
1795986e05bcSDimitry AndricTGHDRS+=	ARMGenAsmMatcher.inc
1796986e05bcSDimitry AndricTGHDRS+=	ARMGenAsmWriter.inc
1797986e05bcSDimitry AndricTGHDRS+=	ARMGenCallingConv.inc
1798986e05bcSDimitry AndricTGHDRS+=	ARMGenDAGISel.inc
1799986e05bcSDimitry AndricTGHDRS+=	ARMGenDisassemblerTables.inc
1800986e05bcSDimitry AndricTGHDRS+=	ARMGenFastISel.inc
18013d54deb3SDimitry AndricTGHDRS+=	ARMGenGlobalISel.inc
1802986e05bcSDimitry AndricTGHDRS+=	ARMGenInstrInfo.inc
1803986e05bcSDimitry AndricTGHDRS+=	ARMGenMCCodeEmitter.inc
1804986e05bcSDimitry AndricTGHDRS+=	ARMGenMCPseudoLowering.inc
18055897d2f0SDimitry AndricTGHDRS+=	ARMGenRegisterBank.inc
1806986e05bcSDimitry AndricTGHDRS+=	ARMGenRegisterInfo.inc
1807986e05bcSDimitry AndricTGHDRS+=	ARMGenSubtargetInfo.inc
180836cb3905SDimitry AndricTGHDRS+=	ARMGenSystemRegister.inc
1809cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM
181089edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no"
181189edb881SDimitry AndricTGHDRS+=	BPFGenAsmMatcher.inc
181289edb881SDimitry AndricTGHDRS+=	BPFGenAsmWriter.inc
181389edb881SDimitry AndricTGHDRS+=	BPFGenCallingConv.inc
181489edb881SDimitry AndricTGHDRS+=	BPFGenDAGISel.inc
181589edb881SDimitry AndricTGHDRS+=	BPFGenDisassemblerTables.inc
181689edb881SDimitry AndricTGHDRS+=	BPFGenInstrInfo.inc
181789edb881SDimitry AndricTGHDRS+=	BPFGenMCCodeEmitter.inc
181889edb881SDimitry AndricTGHDRS+=	BPFGenRegisterInfo.inc
181989edb881SDimitry AndricTGHDRS+=	BPFGenSubtargetInfo.inc
182089edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF
1821cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no"
1822986e05bcSDimitry AndricTGHDRS+=	MipsGenAsmMatcher.inc
1823986e05bcSDimitry AndricTGHDRS+=	MipsGenAsmWriter.inc
1824986e05bcSDimitry AndricTGHDRS+=	MipsGenCallingConv.inc
1825986e05bcSDimitry AndricTGHDRS+=	MipsGenDAGISel.inc
1826986e05bcSDimitry AndricTGHDRS+=	MipsGenDisassemblerTables.inc
1827986e05bcSDimitry AndricTGHDRS+=	MipsGenFastISel.inc
18289f6e9a9fSDimitry AndricTGHDRS+=	MipsGenGlobalISel.inc
1829986e05bcSDimitry AndricTGHDRS+=	MipsGenInstrInfo.inc
1830986e05bcSDimitry AndricTGHDRS+=	MipsGenMCCodeEmitter.inc
1831986e05bcSDimitry AndricTGHDRS+=	MipsGenMCPseudoLowering.inc
18329f6e9a9fSDimitry AndricTGHDRS+=	MipsGenRegisterBank.inc
1833986e05bcSDimitry AndricTGHDRS+=	MipsGenRegisterInfo.inc
1834986e05bcSDimitry AndricTGHDRS+=	MipsGenSubtargetInfo.inc
1835cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS
1836cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no"
1837986e05bcSDimitry AndricTGHDRS+=	PPCGenAsmMatcher.inc
1838986e05bcSDimitry AndricTGHDRS+=	PPCGenAsmWriter.inc
1839986e05bcSDimitry AndricTGHDRS+=	PPCGenCallingConv.inc
1840986e05bcSDimitry AndricTGHDRS+=	PPCGenDAGISel.inc
1841986e05bcSDimitry AndricTGHDRS+=	PPCGenDisassemblerTables.inc
1842986e05bcSDimitry AndricTGHDRS+=	PPCGenFastISel.inc
1843986e05bcSDimitry AndricTGHDRS+=	PPCGenInstrInfo.inc
1844986e05bcSDimitry AndricTGHDRS+=	PPCGenMCCodeEmitter.inc
1845986e05bcSDimitry AndricTGHDRS+=	PPCGenRegisterInfo.inc
1846986e05bcSDimitry AndricTGHDRS+=	PPCGenSubtargetInfo.inc
1847cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC
1848b2689b12SMitchell Horne.if ${MK_LLVM_TARGET_RISCV} != "no"
1849b2689b12SMitchell HorneTGHDRS+=	RISCVGenAsmMatcher.inc
1850b2689b12SMitchell HorneTGHDRS+=	RISCVGenAsmWriter.inc
1851b2689b12SMitchell HorneTGHDRS+=	RISCVGenCallingConv.inc
1852b2689b12SMitchell HorneTGHDRS+=	RISCVGenCompressInstEmitter.inc
1853b2689b12SMitchell HorneTGHDRS+=	RISCVGenDAGISel.inc
1854b2689b12SMitchell HorneTGHDRS+=	RISCVGenDisassemblerTables.inc
1855b2689b12SMitchell HorneTGHDRS+=	RISCVGenDAGISel.inc
18569771cac2SDimitry AndricTGHDRS+=	RISCVGenGlobalISel.inc
1857b2689b12SMitchell HorneTGHDRS+=	RISCVGenInstrInfo.inc
1858b2689b12SMitchell HorneTGHDRS+=	RISCVGenMCCodeEmitter.inc
1859b2689b12SMitchell HorneTGHDRS+=	RISCVGenMCPseudoLowering.inc
18609771cac2SDimitry AndricTGHDRS+=	RISCVGenRegisterBank.inc
1861b2689b12SMitchell HorneTGHDRS+=	RISCVGenRegisterInfo.inc
1862b2689b12SMitchell HorneTGHDRS+=	RISCVGenSubtargetInfo.inc
1863b2689b12SMitchell HorneTGHDRS+=	RISCVGenSystemOperands.inc
1864b2689b12SMitchell Horne.endif # MK_LLVM_TARGET_RISCV
1865cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no"
1866986e05bcSDimitry AndricTGHDRS+=	X86GenAsmMatcher.inc
1867986e05bcSDimitry AndricTGHDRS+=	X86GenAsmWriter.inc
1868986e05bcSDimitry AndricTGHDRS+=	X86GenAsmWriter1.inc
1869986e05bcSDimitry AndricTGHDRS+=	X86GenCallingConv.inc
1870986e05bcSDimitry AndricTGHDRS+=	X86GenDAGISel.inc
1871986e05bcSDimitry AndricTGHDRS+=	X86GenDisassemblerTables.inc
18725897d2f0SDimitry AndricTGHDRS+=	X86GenEVEX2VEXTables.inc
1873986e05bcSDimitry AndricTGHDRS+=	X86GenFastISel.inc
18743d54deb3SDimitry AndricTGHDRS+=	X86GenGlobalISel.inc
1875986e05bcSDimitry AndricTGHDRS+=	X86GenInstrInfo.inc
18765897d2f0SDimitry AndricTGHDRS+=	X86GenRegisterBank.inc
1877986e05bcSDimitry AndricTGHDRS+=	X86GenRegisterInfo.inc
1878986e05bcSDimitry AndricTGHDRS+=	X86GenSubtargetInfo.inc
1879cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86
1880986e05bcSDimitry Andric
1881ddf95e2aSBryan DreweryDEPENDFILES+=	${TGHDRS:C/$/.d/}
1882986e05bcSDimitry AndricDPSRCS+=	${TGHDRS}
1883986e05bcSDimitry AndricCLEANFILES+=	${TGHDRS} ${TGHDRS:C/$/.d/}
188448aaf27bSDimitry AndricCLEANFILES+=	${GENSRCS} ${GENSRCS:C/$/.d/}
1885986e05bcSDimitry Andric
1886986e05bcSDimitry Andric.include "../llvm.build.mk"
1887986e05bcSDimitry Andric.include <bsd.lib.mk>
1888