xref: /freebsd/lib/clang/libllvm/Makefile (revision 0b57cec536236d46e3dba9bd041533462f33dbb7)
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" && \
14b2689b12SMitchell Horne    ${MK_LLVM_TARGET_SPARC} == "no" && ${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, \
17b2689b12SMitchell Horne MK_LLVM_TARGET_POWERPC, MK_LLVM_TARGET_RISCV, MK_LLVM_TARGET_SPARC, \
18b2689b12SMitchell Horne or MK_LLVM_TARGET_X86
19cbafd263SDimitry Andric.endif
20cbafd263SDimitry Andric
21b2689b12SMitchell Horne.for arch in AArch64 ARM BPF Mips PowerPC RISCV Sparc X86
22cbafd263SDimitry Andric. if ${MK_LLVM_TARGET_${arch:tu}} != "no"
23986e05bcSDimitry AndricCFLAGS+=	-I${LLVM_SRCS}/lib/Target/${arch}
24cbafd263SDimitry Andric. endif
25986e05bcSDimitry Andric.endfor
26986e05bcSDimitry Andric
27*0b57cec5SDimitry AndricSRCDIR=		llvm/lib
28986e05bcSDimitry Andric
29a1aaa66bSDimitry Andric# Explanation of different SRCS variants below:
30a1aaa66bSDimitry Andric# SRCS_MIN:	always required, even for bootstrap
31a1aaa66bSDimitry Andric# SRCS_MIW:	required for world stage (after cross-tools)
32a1aaa66bSDimitry Andric# SRCS_EXT:	required for MK_CLANG_EXTRAS
33a1aaa66bSDimitry Andric# SRCS_EXL:	required for MK_CLANG_EXTRAS and MK_LLD
34a1aaa66bSDimitry Andric# SRCS_FUL:	required for MK_CLANG_FULL
35a1aaa66bSDimitry Andric# SRCS_LLD:	required for MK_LLD
36a1aaa66bSDimitry Andric# SRCS_XDB:	required for MK_CLANG_EXTRAS and MK_LLDB
37a1aaa66bSDimitry Andric# SRCS_XDL:	required for MK_CLANG_EXTRAS, MK_LLD and MK_LLDB
38a1aaa66bSDimitry Andric# SRCS_XDW:	required for MK_CLANG_EXTRAS and MK_LLDB in world stage
39a1aaa66bSDimitry Andric
40986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AliasAnalysis.cpp
41986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AliasAnalysisEvaluator.cpp
42986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AliasAnalysisSummary.cpp
43986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AliasSetTracker.cpp
44986e05bcSDimitry AndricSRCS_EXT+=	Analysis/Analysis.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
63986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Delinearization.cpp
64986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DemandedBits.cpp
65986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DependenceAnalysis.cpp
66986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DivergenceAnalysis.cpp
67986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DomPrinter.cpp
684014a71fSDimitry AndricSRCS_MIN+=	Analysis/DomTreeUpdater.cpp
69986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DominanceFrontier.cpp
70986e05bcSDimitry AndricSRCS_MIN+=	Analysis/EHPersonalities.cpp
71986e05bcSDimitry AndricSRCS_MIN+=	Analysis/GlobalsModRef.cpp
725e86819cSDimitry AndricSRCS_MIN+=	Analysis/GuardUtils.cpp
735e86819cSDimitry AndricSRCS_MIN+=	Analysis/IVDescriptors.cpp
74986e05bcSDimitry AndricSRCS_MIN+=	Analysis/IVUsers.cpp
75986e05bcSDimitry AndricSRCS_MIN+=	Analysis/IndirectCallPromotionAnalysis.cpp
76986e05bcSDimitry AndricSRCS_MIN+=	Analysis/InlineCost.cpp
77986e05bcSDimitry AndricSRCS_MIN+=	Analysis/InstCount.cpp
785e86819cSDimitry AndricSRCS_MIN+=	Analysis/InstructionPrecedenceTracking.cpp
79986e05bcSDimitry AndricSRCS_MIN+=	Analysis/InstructionSimplify.cpp
80986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Interval.cpp
81986e05bcSDimitry AndricSRCS_MIN+=	Analysis/IntervalPartition.cpp
82986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LazyBlockFrequencyInfo.cpp
8309bfd043SDimitry AndricSRCS_MIN+=	Analysis/LazyBranchProbabilityInfo.cpp
84986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LazyCallGraph.cpp
85986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LazyValueInfo.cpp
865e86819cSDimitry AndricSRCS_MIN+=	Analysis/LegacyDivergenceAnalysis.cpp
87986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Lint.cpp
88986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Loads.cpp
89986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopAccessAnalysis.cpp
90f1a29dd3SDimitry AndricSRCS_MIN+=	Analysis/LoopAnalysisManager.cpp
91986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopInfo.cpp
92986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopPass.cpp
93986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopUnrollAnalyzer.cpp
94986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemDepPrinter.cpp
95986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemDerefPrinter.cpp
96986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemoryBuiltins.cpp
97986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemoryDependenceAnalysis.cpp
98986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemoryLocation.cpp
995897d2f0SDimitry AndricSRCS_MIN+=	Analysis/MemorySSA.cpp
1005897d2f0SDimitry AndricSRCS_MIN+=	Analysis/MemorySSAUpdater.cpp
101986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ModuleDebugInfoPrinter.cpp
102986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ModuleSummaryAnalysis.cpp
1039f6e9a9fSDimitry AndricSRCS_MIN+=	Analysis/MustExecute.cpp
104986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ObjCARCAliasAnalysis.cpp
105986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ObjCARCAnalysisUtils.cpp
106986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ObjCARCInstKind.cpp
10736cb3905SDimitry AndricSRCS_MIN+=	Analysis/OptimizationRemarkEmitter.cpp
108986e05bcSDimitry AndricSRCS_MIN+=	Analysis/OrderedBasicBlock.cpp
1095e86819cSDimitry AndricSRCS_MIN+=	Analysis/OrderedInstructions.cpp
110986e05bcSDimitry AndricSRCS_MIN+=	Analysis/PHITransAddr.cpp
1119f6e9a9fSDimitry AndricSRCS_MIN+=	Analysis/PhiValues.cpp
112986e05bcSDimitry AndricSRCS_MIN+=	Analysis/PostDominators.cpp
113986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ProfileSummaryInfo.cpp
114986e05bcSDimitry AndricSRCS_MIN+=	Analysis/PtrUseVisitor.cpp
115986e05bcSDimitry AndricSRCS_MIN+=	Analysis/RegionInfo.cpp
116986e05bcSDimitry AndricSRCS_MIN+=	Analysis/RegionPass.cpp
117986e05bcSDimitry AndricSRCS_MIN+=	Analysis/RegionPrinter.cpp
118986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolution.cpp
119986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolutionAliasAnalysis.cpp
120986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolutionExpander.cpp
121986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolutionNormalization.cpp
122986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScopedNoAliasAA.cpp
1235e86819cSDimitry AndricSRCS_MIN+=	Analysis/StackSafetyAnalysis.cpp
1245e86819cSDimitry AndricSRCS_MIN+=	Analysis/SyncDependenceAnalysis.cpp
1259f6e9a9fSDimitry AndricSRCS_MIN+=	Analysis/SyntheticCountsUtils.cpp
126986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TargetLibraryInfo.cpp
127986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TargetTransformInfo.cpp
128986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TypeBasedAliasAnalysis.cpp
129986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TypeMetadataUtils.cpp
13036cb3905SDimitry AndricSRCS_MIN+=	Analysis/ValueLattice.cpp
13136cb3905SDimitry AndricSRCS_MIN+=	Analysis/ValueLatticeUtils.cpp
132986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ValueTracking.cpp
133986e05bcSDimitry AndricSRCS_MIN+=	Analysis/VectorUtils.cpp
134986e05bcSDimitry AndricSRCS_MIN+=	AsmParser/LLLexer.cpp
135986e05bcSDimitry AndricSRCS_MIN+=	AsmParser/LLParser.cpp
136986e05bcSDimitry AndricSRCS_MIN+=	AsmParser/Parser.cpp
13744389c28SDimitry AndricSRCS_MIN+=	BinaryFormat/Dwarf.cpp
13844389c28SDimitry AndricSRCS_MIN+=	BinaryFormat/Magic.cpp
1399f6e9a9fSDimitry AndricSRCS_MIN+=	BinaryFormat/Wasm.cpp
14009bfd043SDimitry AndricSRCS_MIN+=	Bitcode/Reader/BitReader.cpp
14124b8043eSDimitry AndricSRCS_EXT+=	Bitcode/Reader/BitcodeAnalyzer.cpp
142986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Reader/BitcodeReader.cpp
14309bfd043SDimitry AndricSRCS_MIN+=	Bitcode/Reader/MetadataLoader.cpp
14409bfd043SDimitry AndricSRCS_MIN+=	Bitcode/Reader/ValueList.cpp
145986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Writer/BitcodeWriter.cpp
146986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Writer/BitcodeWriterPass.cpp
147986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Writer/ValueEnumerator.cpp
1484014a71fSDimitry AndricSRCS_MIN+=	Bitstream/Reader/BitstreamReader.cpp
149986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AggressiveAntiDepBreaker.cpp
150986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AllocationOrder.cpp
151986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/Analysis.cpp
152986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/ARMException.cpp
1539f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AccelTable.cpp
154986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AddressPool.cpp
155986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AsmPrinter.cpp
156986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
157986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
158986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/CodeViewDebug.cpp
159986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DIE.cpp
160986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DIEHash.cpp
1615e86819cSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp
162986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DebugHandlerBase.cpp
163986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DebugLocStream.cpp
164986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfCFIException.cpp
165986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfCompileUnit.cpp
166986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfDebug.cpp
167986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfExpression.cpp
168986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfFile.cpp
169986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfStringPool.cpp
170986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfUnit.cpp
171986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/EHStreamer.cpp
17224b8043eSDimitry AndricSRCS_EXT+=	CodeGen/AsmPrinter/ErlangGCPrinter.cpp
173986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/OcamlGCPrinter.cpp
1745e86819cSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/WasmException.cpp
1759f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/WinCFGuard.cpp
176986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/WinException.cpp
177986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AtomicExpandPass.cpp
178986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/BasicTargetTransformInfo.cpp
179986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/BranchFolding.cpp
18009bfd043SDimitry AndricSRCS_MIN+=	CodeGen/BranchRelaxation.cpp
1819f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/BreakFalseDeps.cpp
18224b8043eSDimitry AndricSRCS_EXT+=	CodeGen/BuiltinGCs.cpp
1839f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/CFIInstrInserter.cpp
184986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CalcSpillWeights.cpp
185986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CallingConvLower.cpp
186986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CodeGen.cpp
187986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CodeGenPrepare.cpp
188986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CriticalAntiDepBreaker.cpp
189986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DFAPacketizer.cpp
190986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DeadMachineInstructionElim.cpp
191986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DetectDeadLanes.cpp
192986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DwarfEHPrepare.cpp
193986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/EarlyIfConversion.cpp
194986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/EdgeBundles.cpp
1959f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/ExecutionDomainFix.cpp
19636cb3905SDimitry AndricSRCS_MIN+=	CodeGen/ExpandMemCmp.cpp
197986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ExpandPostRAPseudos.cpp
1985517e702SDimitry AndricSRCS_MIN+=	CodeGen/ExpandReductions.cpp
1995897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/FEntryInserter.cpp
200986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/FaultMaps.cpp
2014014a71fSDimitry AndricSRCS_MIN+=	CodeGen/FinalizeISel.cpp
202986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/FuncletLayout.cpp
203986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GCMetadata.cpp
20409bfd043SDimitry AndricSRCS_MIN+=	CodeGen/GCMetadataPrinter.cpp
205986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GCRootLowering.cpp
20609bfd043SDimitry AndricSRCS_MIN+=	CodeGen/GCStrategy.cpp
2075e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CSEInfo.cpp
2085e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CSEMIRBuilder.cpp
2095e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Combiner.cpp
2105e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CombinerHelper.cpp
2113d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CallLowering.cpp
2125e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/GISelChangeObserver.cpp
213986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/GlobalISel.cpp
2143d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/IRTranslator.cpp
2153d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/InstructionSelect.cpp
2163d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/InstructionSelector.cpp
2179f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalityPredicates.cpp
2189f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalizeMutations.cpp
2193d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Legalizer.cpp
2203d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalizerHelper.cpp
2213d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalizerInfo.cpp
222302affcbSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Localizer.cpp
2233d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/MachineIRBuilder.cpp
2243d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/RegBankSelect.cpp
2253d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/RegisterBank.cpp
2263d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/RegisterBankInfo.cpp
2273d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Utils.cpp
228986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GlobalMerge.cpp
2294014a71fSDimitry AndricSRCS_MIN+=	CodeGen/HardwareLoops.cpp
230986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/IfConversion.cpp
231986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ImplicitNullChecks.cpp
23207577dfeSDimitry AndricSRCS_MIN+=	CodeGen/IndirectBrExpandPass.cpp
233986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/InlineSpiller.cpp
234986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/InterferenceCache.cpp
235986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/InterleavedAccessPass.cpp
2365e86819cSDimitry AndricSRCS_MIN+=	CodeGen/InterleavedLoadCombinePass.cpp
237986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/IntrinsicLowering.cpp
238986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LLVMTargetMachine.cpp
239986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LatencyPriorityQueue.cpp
2405897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/LazyMachineBlockFrequencyInfo.cpp
241986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LexicalScopes.cpp
242986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveDebugValues.cpp
243986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveDebugVariables.cpp
244986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveInterval.cpp
245986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveIntervalUnion.cpp
24644389c28SDimitry AndricSRCS_MIN+=	CodeGen/LiveIntervals.cpp
247986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LivePhysRegs.cpp
248986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveRangeCalc.cpp
249986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveRangeEdit.cpp
250f9448bf3SDimitry AndricSRCS_MIN+=	CodeGen/LiveRangeShrink.cpp
251986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveRegMatrix.cpp
2525897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/LiveRegUnits.cpp
2532757ff7eSDimitry AndricSRCS_MIN+=	CodeGen/LiveStacks.cpp
254986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveVariables.cpp
255986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LocalStackSlotAllocation.cpp
2569f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/LoopTraversal.cpp
25709bfd043SDimitry AndricSRCS_MIN+=	CodeGen/LowLevelType.cpp
258986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LowerEmuTLS.cpp
25936cb3905SDimitry AndricSRCS_MIN+=	CodeGen/MIRCanonicalizerPass.cpp
260986e05bcSDimitry AndricSRCS_EXT+=	CodeGen/MIRParser/MILexer.cpp
261986e05bcSDimitry AndricSRCS_EXT+=	CodeGen/MIRParser/MIParser.cpp
262986e05bcSDimitry AndricSRCS_EXT+=	CodeGen/MIRParser/MIRParser.cpp
263986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MIRPrinter.cpp
264986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MIRPrintingPass.cpp
265986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBasicBlock.cpp
266986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBlockFrequencyInfo.cpp
267986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBlockPlacement.cpp
268986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBranchProbabilityInfo.cpp
269986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineCSE.cpp
270986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineCombiner.cpp
271986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineCopyPropagation.cpp
272986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineDominanceFrontier.cpp
273986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineDominators.cpp
274f37b6182SDimitry AndricSRCS_MIN+=	CodeGen/MachineFrameInfo.cpp
275986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineFunction.cpp
276986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineFunctionPass.cpp
277986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineFunctionPrinterPass.cpp
278986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineInstr.cpp
279986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineInstrBundle.cpp
280986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineLICM.cpp
281986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineLoopInfo.cpp
282986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineModuleInfo.cpp
283986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineModuleInfoImpls.cpp
28436cb3905SDimitry AndricSRCS_MIN+=	CodeGen/MachineOperand.cpp
2855897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/MachineOptimizationRemarkEmitter.cpp
2865897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/MachineOutliner.cpp
28709bfd043SDimitry AndricSRCS_MIN+=	CodeGen/MachinePipeliner.cpp
288986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachinePostDominators.cpp
289986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineRegionInfo.cpp
290986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineRegisterInfo.cpp
291986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineSSAUpdater.cpp
292986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineScheduler.cpp
293986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineSink.cpp
294986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineTraceMetrics.cpp
295986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineVerifier.cpp
296edd7eaddSDimitry AndricSRCS_MIN+=	CodeGen/MacroFusion.cpp
297986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/OptimizePHIs.cpp
298986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PHIElimination.cpp
299986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PHIEliminationUtils.cpp
300986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ParallelCG.cpp
301986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PatchableFunction.cpp
302986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PeepholeOptimizer.cpp
303986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PostRAHazardRecognizer.cpp
304986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PostRASchedulerList.cpp
305986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PreISelIntrinsicLowering.cpp
306986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ProcessImplicitDefs.cpp
307986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PrologEpilogInserter.cpp
308986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PseudoSourceValue.cpp
3099f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/ReachingDefAnalysis.cpp
310986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocBase.cpp
311986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocBasic.cpp
312986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocFast.cpp
313986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocGreedy.cpp
314986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocPBQP.cpp
315986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegUsageInfoCollector.cpp
316986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegUsageInfoPropagate.cpp
317986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterClassInfo.cpp
318986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterCoalescer.cpp
319986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterPressure.cpp
320986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterScavenging.cpp
321986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterUsageInfo.cpp
322986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RenameIndependentSubregs.cpp
32309bfd043SDimitry AndricSRCS_MIN+=	CodeGen/ResetMachineFunctionPass.cpp
324986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SafeStack.cpp
325986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SafeStackColoring.cpp
326986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SafeStackLayout.cpp
3275517e702SDimitry AndricSRCS_MIN+=	CodeGen/ScalarizeMaskedMemIntrin.cpp
328986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScheduleDAG.cpp
329986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScheduleDAGInstrs.cpp
330986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScheduleDAGPrinter.cpp
331986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScoreboardHazardRecognizer.cpp
332986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/DAGCombiner.cpp
333986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/FastISel.cpp
334986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
335986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/InstrEmitter.cpp
336986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeDAG.cpp
337986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
338986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
339986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeTypes.cpp
340986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
341986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeVectorOps.cpp
342986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
343986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ResourcePriorityQueue.cpp
344986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGFast.cpp
345986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
346986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
347986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
348986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAG.cpp
34944389c28SDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
350986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
351986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGDumper.cpp
352986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGISel.cpp
353986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
354986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp
355986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/StatepointLowering.cpp
356986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/TargetLowering.cpp
357986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ShadowStackGCLowering.cpp
358986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ShrinkWrap.cpp
359986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SjLjEHPrepare.cpp
360986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SlotIndexes.cpp
361986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SpillPlacement.cpp
362986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SplitKit.cpp
363986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackColoring.cpp
364986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackMapLivenessAnalysis.cpp
365986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackMaps.cpp
366986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackProtector.cpp
367986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackSlotColoring.cpp
3684014a71fSDimitry AndricSRCS_MIN+=	CodeGen/SwiftErrorValueTracking.cpp
3694014a71fSDimitry AndricSRCS_MIN+=	CodeGen/SwitchLoweringUtils.cpp
370986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TailDuplication.cpp
371986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TailDuplicator.cpp
372986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetFrameLoweringImpl.cpp
373986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetInstrInfo.cpp
374986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetLoweringBase.cpp
375986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetLoweringObjectFileImpl.cpp
376986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetOptionsImpl.cpp
377986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetPassConfig.cpp
378986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetRegisterInfo.cpp
379986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetSchedule.cpp
38009bfd043SDimitry AndricSRCS_MIN+=	CodeGen/TargetSubtargetInfo.cpp
381986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TwoAddressInstructionPass.cpp
382986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/UnreachableBlockElim.cpp
3839f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/ValueTypes.cpp
384986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/VirtRegMap.cpp
3859f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/WasmEHPrepare.cpp
386986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/WinEHPrepare.cpp
387986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/XRayInstrumentation.cpp
3883cd201a1SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/AppendingTypeTableBuilder.cpp
38909bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CVSymbolVisitor.cpp
390986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CVTypeVisitor.cpp
391986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CodeViewError.cpp
39209bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CodeViewRecordIO.cpp
39336cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/ContinuationRecordBuilder.cpp
39489cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugChecksumsSubsection.cpp
395db17bf38SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugCrossExSubsection.cpp
396db17bf38SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugCrossImpSubsection.cpp
39789cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugFrameDataSubsection.cpp
39889cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp
39989cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugLinesSubsection.cpp
40089cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugStringTableSubsection.cpp
40189cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugSubsection.cpp
40289cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugSubsectionRecord.cpp
40389cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugSubsectionVisitor.cpp
404db17bf38SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugSymbolRVASubsection.cpp
40589cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugSymbolsSubsection.cpp
4065e86819cSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/EnumTables.cpp
4075897d2f0SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/Formatters.cpp
40836cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/GlobalTypeTableBuilder.cpp
4092a1b82cfSDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/LazyRandomTypeCollection.cpp
410986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/Line.cpp
4113cd201a1SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/MergingTypeTableBuilder.cpp
41236cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/RecordName.cpp
413986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/RecordSerialization.cpp
41436cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SimpleTypeSerializer.cpp
41524d58133SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/StringsAndChecksums.cpp
416986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SymbolDumper.cpp
41709bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SymbolRecordMapping.cpp
418050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/SymbolSerializer.cpp
419f1a29dd3SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeDumpVisitor.cpp
42036cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeHashing.cpp
421d8866befSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeIndex.cpp
42206230659SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeIndexDiscovery.cpp
423efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/TypeRecordHelpers.cpp
42409bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeRecordMapping.cpp
425986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeStreamMerger.cpp
426d8866befSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeTableCollection.cpp
427caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
428caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFAcceleratorTable.cpp
4290db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFAddressRange.cpp
430caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFCompileUnit.cpp
431caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFContext.cpp
4320db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDataExtractor.cpp
433caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugAbbrev.cpp
43499be4f2aSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDebugAddr.cpp
4350db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDebugArangeSet.cpp
436caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugAranges.cpp
437caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugFrame.cpp
4380db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDebugInfoEntry.cpp
439caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugLine.cpp
440caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugLoc.cpp
4410db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDebugMacro.cpp
442caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugPubTable.cpp
443caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugRangeList.cpp
44467b158f6SDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDebugRnglists.cpp
445caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDie.cpp
446e89f883aSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFExpression.cpp
447caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFFormValue.cpp
448caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFGdbIndex.cpp
44967b158f6SDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFListTable.cpp
450caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFTypeUnit.cpp
451caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFUnit.cpp
452caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFUnitIndex.cpp
453caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFVerifier.cpp
45409bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/MSF/MSFBuilder.cpp
45509bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/MSF/MSFCommon.cpp
45624b8043eSDimitry AndricSRCS_EXT+=	DebugInfo/MSF/MSFError.cpp
45709bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/MSF/MappedBlockStream.cpp
458986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/GenericError.cpp
45909bfd043SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/IPDBSourceFile.cpp
460f37b6182SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiModuleDescriptor.cpp
461f37b6182SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp
4620f5676f4SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiModuleList.cpp
463050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiStream.cpp
464050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiStreamBuilder.cpp
465050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/EnumTables.cpp
4663cd201a1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/GSIStreamBuilder.cpp
467050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/GlobalsStream.cpp
468050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/Hash.cpp
469050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/HashTable.cpp
470050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/InfoStream.cpp
471050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/InfoStreamBuilder.cpp
47224b8043eSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/InjectedSourceStream.cpp
473f37b6182SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/ModuleDebugStream.cpp
474050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NamedStreamMap.cpp
475050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeCompilandSymbol.cpp
476efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumGlobals.cpp
47724b8043eSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumInjectedSources.cpp
478050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumModules.cpp
47944389c28SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumTypes.cpp
480050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeExeSymbol.cpp
481050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeRawSymbol.cpp
482050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeSession.cpp
483efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeSymbolEnumerator.cpp
484efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeArray.cpp
485efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeBuiltin.cpp
486efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeEnum.cpp
487efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp
488efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypePointer.cpp
489efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeTypedef.cpp
490efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeUDT.cpp
491efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeVTShape.cpp
492050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBFile.cpp
493050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBFileBuilder.cpp
494b174acefSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBStringTable.cpp
495b174acefSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBStringTableBuilder.cpp
4963d54deb3SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PublicsStream.cpp
4973d54deb3SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/RawError.cpp
498efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/SymbolCache.cpp
499050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/SymbolStream.cpp
500050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/TpiHashing.cpp
501050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/TpiStream.cpp
502050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/TpiStreamBuilder.cpp
503986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDB.cpp
504986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBContext.cpp
505986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBExtras.cpp
506986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBInterfaceAnchors.cpp
507986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymDumper.cpp
508986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbol.cpp
509986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolAnnotation.cpp
510986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolBlock.cpp
511986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCompiland.cpp
512986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
513986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCompilandEnv.cpp
514986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCustom.cpp
515986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolData.cpp
516986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolExe.cpp
517986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolFunc.cpp
518986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
519986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
520986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolLabel.cpp
521986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
522986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolThunk.cpp
523986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeArray.cpp
524986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
525986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp
526986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeCustom.cpp
527986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeDimension.cpp
528986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeEnum.cpp
529986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeFriend.cpp
530986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
531986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
532986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeManaged.cpp
533986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypePointer.cpp
534986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
535986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeUDT.cpp
536986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeVTable.cpp
537986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp
538986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolUnknown.cpp
539986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolUsingNamespace.cpp
540050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/UDTLayout.cpp
5410db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/DIPrinter.cpp
54209bfd043SDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/SymbolizableObjectFile.cpp
54309bfd043SDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/Symbolize.cpp
5440db9a49eSDimitry AndricSRCS_MIW+=	Demangle/Demangle.cpp
54509bfd043SDimitry AndricSRCS_MIN+=	Demangle/ItaniumDemangle.cpp
5460db9a49eSDimitry AndricSRCS_MIW+=	Demangle/MicrosoftDemangle.cpp
5470db9a49eSDimitry AndricSRCS_MIW+=	Demangle/MicrosoftDemangleNodes.cpp
548986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/ExecutionEngine.cpp
549986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/ExecutionEngineBindings.cpp
550986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/GDBRegistrationListener.cpp
551986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/Interpreter/Execution.cpp
552986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/Interpreter/ExternalFunctions.cpp
553986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/Interpreter/Interpreter.cpp
554986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/MCJIT/MCJIT.cpp
55567b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/CompileOnDemandLayer.cpp
55624b8043eSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/CompileUtils.cpp
55767b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Core.cpp
558986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ExecutionUtils.cpp
55967b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/IRCompileLayer.cpp
56067b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/IRTransformLayer.cpp
561986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/IndirectionUtils.cpp
562efa75597SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/JITTargetMachineBuilder.cpp
56367b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/LLJIT.cpp
56467b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Layer.cpp
565efa75597SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/LazyReexports.cpp
56667b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Legacy.cpp
567986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/NullResolver.cpp
568986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/OrcABISupport.cpp
569986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/OrcCBindings.cpp
570986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/OrcError.cpp
571986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/OrcMCJITReplacement.cpp
572050e2df1SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/RPCUtils.cpp
57367b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
574efa75597SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ThreadSafeModule.cpp
57509bfd043SDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/JITSymbol.cpp
576986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
577986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
578986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
579986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
580986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
581986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
58209bfd043SDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp
583986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/SectionMemoryManager.cpp
584986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/TargetSelect.cpp
5854014a71fSDimitry AndricSRCS_MIN+=	IR/AbstractCallSite.cpp
586986e05bcSDimitry AndricSRCS_MIN+=	IR/AsmWriter.cpp
587986e05bcSDimitry AndricSRCS_MIN+=	IR/Attributes.cpp
588986e05bcSDimitry AndricSRCS_MIN+=	IR/AutoUpgrade.cpp
589986e05bcSDimitry AndricSRCS_MIN+=	IR/BasicBlock.cpp
590986e05bcSDimitry AndricSRCS_MIN+=	IR/Comdat.cpp
591986e05bcSDimitry AndricSRCS_MIN+=	IR/ConstantFold.cpp
592986e05bcSDimitry AndricSRCS_MIN+=	IR/ConstantRange.cpp
593986e05bcSDimitry AndricSRCS_MIN+=	IR/Constants.cpp
594986e05bcSDimitry AndricSRCS_MIN+=	IR/Core.cpp
595986e05bcSDimitry AndricSRCS_MIN+=	IR/DIBuilder.cpp
596986e05bcSDimitry AndricSRCS_MIN+=	IR/DataLayout.cpp
597986e05bcSDimitry AndricSRCS_MIN+=	IR/DebugInfo.cpp
598986e05bcSDimitry AndricSRCS_MIN+=	IR/DebugInfoMetadata.cpp
599986e05bcSDimitry AndricSRCS_MIN+=	IR/DebugLoc.cpp
60036cb3905SDimitry AndricSRCS_MIN+=	IR/DiagnosticHandler.cpp
601986e05bcSDimitry AndricSRCS_MIN+=	IR/DiagnosticInfo.cpp
602986e05bcSDimitry AndricSRCS_MIN+=	IR/DiagnosticPrinter.cpp
603986e05bcSDimitry AndricSRCS_MIN+=	IR/Dominators.cpp
604986e05bcSDimitry AndricSRCS_MIN+=	IR/Function.cpp
605986e05bcSDimitry AndricSRCS_MIN+=	IR/GVMaterializer.cpp
606986e05bcSDimitry AndricSRCS_MIN+=	IR/Globals.cpp
607986e05bcSDimitry AndricSRCS_MIN+=	IR/IRBuilder.cpp
608986e05bcSDimitry AndricSRCS_MIN+=	IR/IRPrintingPasses.cpp
609986e05bcSDimitry AndricSRCS_MIN+=	IR/InlineAsm.cpp
610986e05bcSDimitry AndricSRCS_MIN+=	IR/Instruction.cpp
611986e05bcSDimitry AndricSRCS_MIN+=	IR/Instructions.cpp
612986e05bcSDimitry AndricSRCS_MIN+=	IR/IntrinsicInst.cpp
613986e05bcSDimitry AndricSRCS_MIN+=	IR/LLVMContext.cpp
614986e05bcSDimitry AndricSRCS_MIN+=	IR/LLVMContextImpl.cpp
615986e05bcSDimitry AndricSRCS_MIN+=	IR/LegacyPassManager.cpp
616986e05bcSDimitry AndricSRCS_MIN+=	IR/MDBuilder.cpp
617986e05bcSDimitry AndricSRCS_MIN+=	IR/Mangler.cpp
618986e05bcSDimitry AndricSRCS_MIN+=	IR/Metadata.cpp
619986e05bcSDimitry AndricSRCS_MIN+=	IR/Module.cpp
620986e05bcSDimitry AndricSRCS_MIN+=	IR/ModuleSummaryIndex.cpp
621986e05bcSDimitry AndricSRCS_MIN+=	IR/Operator.cpp
622986e05bcSDimitry AndricSRCS_MIN+=	IR/OptBisect.cpp
623986e05bcSDimitry AndricSRCS_MIN+=	IR/Pass.cpp
6245e86819cSDimitry AndricSRCS_MIN+=	IR/PassInstrumentation.cpp
625986e05bcSDimitry AndricSRCS_MIN+=	IR/PassManager.cpp
626986e05bcSDimitry AndricSRCS_MIN+=	IR/PassRegistry.cpp
6275e86819cSDimitry AndricSRCS_MIN+=	IR/PassTimingInfo.cpp
628986e05bcSDimitry AndricSRCS_MIN+=	IR/ProfileSummary.cpp
6294014a71fSDimitry AndricSRCS_MIN+=	IR/RemarkStreamer.cpp
630c4394386SDimitry AndricSRCS_MIN+=	IR/SafepointIRVerifier.cpp
631986e05bcSDimitry AndricSRCS_MIN+=	IR/Statepoint.cpp
632986e05bcSDimitry AndricSRCS_MIN+=	IR/Type.cpp
633986e05bcSDimitry AndricSRCS_MIN+=	IR/TypeFinder.cpp
634986e05bcSDimitry AndricSRCS_MIN+=	IR/Use.cpp
635986e05bcSDimitry AndricSRCS_MIN+=	IR/User.cpp
636986e05bcSDimitry AndricSRCS_MIN+=	IR/Value.cpp
637986e05bcSDimitry AndricSRCS_MIN+=	IR/ValueSymbolTable.cpp
638986e05bcSDimitry AndricSRCS_MIN+=	IR/Verifier.cpp
639986e05bcSDimitry AndricSRCS_MIN+=	IRReader/IRReader.cpp
64009bfd043SDimitry AndricSRCS_EXL+=	LTO/Caching.cpp
6415897d2f0SDimitry AndricSRCS_MIN+=	LTO/LTO.cpp
64209bfd043SDimitry AndricSRCS_MIN+=	LTO/LTOBackend.cpp
64375bc38b9SEd MasteSRCS_EXL+=	LTO/LTOCodeGenerator.cpp
64475bc38b9SEd MasteSRCS_EXL+=	LTO/LTOModule.cpp
645efa75597SDimitry AndricSRCS_EXL+=	LTO/SummaryBasedOptimizations.cpp
64675bc38b9SEd MasteSRCS_EXL+=	LTO/ThinLTOCodeGenerator.cpp
64709bfd043SDimitry AndricSRCS_MIN+=	LTO/UpdateCompilerUsed.cpp
648986e05bcSDimitry AndricSRCS_MIN+=	LineEditor/LineEditor.cpp
649986e05bcSDimitry AndricSRCS_MIN+=	Linker/IRMover.cpp
650986e05bcSDimitry AndricSRCS_MIN+=	Linker/LinkModules.cpp
651986e05bcSDimitry AndricSRCS_MIN+=	MC/ConstantPools.cpp
652986e05bcSDimitry AndricSRCS_MIN+=	MC/ELFObjectWriter.cpp
653986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmBackend.cpp
654986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfo.cpp
655986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoCOFF.cpp
656986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoDarwin.cpp
657986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoELF.cpp
6584014a71fSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoXCOFF.cpp
6599f6e9a9fSDimitry AndricSRCS_MIN+=	MC/MCAsmMacro.cpp
660986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmStreamer.cpp
661986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAssembler.cpp
662986e05bcSDimitry AndricSRCS_MIN+=	MC/MCCodeEmitter.cpp
66336cb3905SDimitry AndricSRCS_MIN+=	MC/MCCodePadder.cpp
664986e05bcSDimitry AndricSRCS_MIN+=	MC/MCCodeView.cpp
665986e05bcSDimitry AndricSRCS_MIN+=	MC/MCContext.cpp
66675bc38b9SEd MasteSRCS_XDL+=	MC/MCDisassembler/Disassembler.cpp
66730d4828eSDimitry AndricSRCS_XDW+=	MC/MCDisassembler/MCDisassembler.cpp
66830d4828eSDimitry AndricSRCS_XDW+=	MC/MCDisassembler/MCExternalSymbolizer.cpp
669986e05bcSDimitry AndricSRCS_MIN+=	MC/MCDisassembler/MCRelocationInfo.cpp
67030d4828eSDimitry AndricSRCS_XDW+=	MC/MCDisassembler/MCSymbolizer.cpp
671986e05bcSDimitry AndricSRCS_MIN+=	MC/MCDwarf.cpp
672986e05bcSDimitry AndricSRCS_MIN+=	MC/MCELFObjectTargetWriter.cpp
673986e05bcSDimitry AndricSRCS_MIN+=	MC/MCELFStreamer.cpp
674986e05bcSDimitry AndricSRCS_MIN+=	MC/MCExpr.cpp
675986e05bcSDimitry AndricSRCS_MIN+=	MC/MCFragment.cpp
676986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInst.cpp
677986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInstPrinter.cpp
678986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInstrAnalysis.cpp
679986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInstrDesc.cpp
680986e05bcSDimitry AndricSRCS_MIN+=	MC/MCLinkerOptimizationHint.cpp
681986e05bcSDimitry AndricSRCS_MIN+=	MC/MCMachOStreamer.cpp
682986e05bcSDimitry AndricSRCS_MIN+=	MC/MCMachObjectTargetWriter.cpp
683986e05bcSDimitry AndricSRCS_MIN+=	MC/MCNullStreamer.cpp
684986e05bcSDimitry AndricSRCS_MIN+=	MC/MCObjectFileInfo.cpp
685986e05bcSDimitry AndricSRCS_MIN+=	MC/MCObjectStreamer.cpp
686986e05bcSDimitry AndricSRCS_MIN+=	MC/MCObjectWriter.cpp
687986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/AsmLexer.cpp
688986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/AsmParser.cpp
689986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/COFFAsmParser.cpp
690986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/DarwinAsmParser.cpp
691986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/ELFAsmParser.cpp
692986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCAsmLexer.cpp
693986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCAsmParser.cpp
694986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCAsmParserExtension.cpp
695986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCTargetAsmParser.cpp
6965e86819cSDimitry AndricSRCS_MIN+=	MC/MCParser/WasmAsmParser.cpp
697986e05bcSDimitry AndricSRCS_MIN+=	MC/MCRegisterInfo.cpp
698986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSchedule.cpp
699986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSection.cpp
700986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSectionCOFF.cpp
701986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSectionELF.cpp
702986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSectionMachO.cpp
7035897d2f0SDimitry AndricSRCS_MIN+=	MC/MCSectionWasm.cpp
7044014a71fSDimitry AndricSRCS_MIN+=	MC/MCSectionXCOFF.cpp
705986e05bcSDimitry AndricSRCS_MIN+=	MC/MCStreamer.cpp
706986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSubtargetInfo.cpp
707986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSymbol.cpp
708986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSymbolELF.cpp
709986e05bcSDimitry AndricSRCS_MIN+=	MC/MCTargetOptions.cpp
710986e05bcSDimitry AndricSRCS_MIN+=	MC/MCValue.cpp
7115897d2f0SDimitry AndricSRCS_MIN+=	MC/MCWasmStreamer.cpp
712986e05bcSDimitry AndricSRCS_MIN+=	MC/MCWin64EH.cpp
713edd7eaddSDimitry AndricSRCS_MIN+=	MC/MCWinCOFFStreamer.cpp
714986e05bcSDimitry AndricSRCS_MIN+=	MC/MCWinEH.cpp
7154014a71fSDimitry AndricSRCS_MIN+=	MC/MCXCOFFStreamer.cpp
7164014a71fSDimitry AndricSRCS_MIN+=	MC/MCXCOFFObjectTargetWriter.cpp
717986e05bcSDimitry AndricSRCS_MIN+=	MC/MachObjectWriter.cpp
718986e05bcSDimitry AndricSRCS_MIN+=	MC/StringTableBuilder.cpp
719986e05bcSDimitry AndricSRCS_MIN+=	MC/SubtargetFeature.cpp
7209f6e9a9fSDimitry AndricSRCS_MIN+=	MC/WasmObjectWriter.cpp
721986e05bcSDimitry AndricSRCS_MIN+=	MC/WinCOFFObjectWriter.cpp
7224014a71fSDimitry AndricSRCS_MIN+=	MC/XCOFFObjectWriter.cpp
723efa75597SDimitry AndricSRCS_EXT+=	MCA/Context.cpp
724efa75597SDimitry AndricSRCS_EXT+=	MCA/HWEventListener.cpp
725efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/HardwareUnit.cpp
726efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/LSUnit.cpp
727efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/RegisterFile.cpp
728efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/ResourceManager.cpp
729efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/RetireControlUnit.cpp
730efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/Scheduler.cpp
731efa75597SDimitry AndricSRCS_EXT+=	MCA/InstrBuilder.cpp
732efa75597SDimitry AndricSRCS_EXT+=	MCA/Instruction.cpp
733efa75597SDimitry AndricSRCS_EXT+=	MCA/Pipeline.cpp
734efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/DispatchStage.cpp
735efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/EntryStage.cpp
736efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/ExecuteStage.cpp
737efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/InstructionTables.cpp
73824b8043eSDimitry AndricSRCS_EXT+=	MCA/Stages/MicroOpQueueStage.cpp
739efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/RetireStage.cpp
740efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/Stage.cpp
741efa75597SDimitry AndricSRCS_EXT+=	MCA/Support.cpp
742986e05bcSDimitry AndricSRCS_MIN+=	Object/Archive.cpp
743986e05bcSDimitry AndricSRCS_MIN+=	Object/ArchiveWriter.cpp
744986e05bcSDimitry AndricSRCS_MIN+=	Object/Binary.cpp
7459c954a48SEd MasteSRCS_MIN+=	Object/COFFImportFile.cpp
7460db9a49eSDimitry AndricSRCS_MIW+=	Object/COFFModuleDefinition.cpp
747986e05bcSDimitry AndricSRCS_MIN+=	Object/COFFObjectFile.cpp
748f1a29dd3SDimitry AndricSRCS_MIN+=	Object/Decompressor.cpp
749986e05bcSDimitry AndricSRCS_MIN+=	Object/ELF.cpp
750986e05bcSDimitry AndricSRCS_MIN+=	Object/ELFObjectFile.cpp
751986e05bcSDimitry AndricSRCS_MIN+=	Object/Error.cpp
752986e05bcSDimitry AndricSRCS_MIN+=	Object/IRObjectFile.cpp
7535897d2f0SDimitry AndricSRCS_MIN+=	Object/IRSymtab.cpp
754986e05bcSDimitry AndricSRCS_MIN+=	Object/MachOObjectFile.cpp
7550db9a49eSDimitry AndricSRCS_MIW+=	Object/MachOUniversal.cpp
7560db9a49eSDimitry AndricSRCS_MIW+=	Object/Minidump.cpp
75709bfd043SDimitry AndricSRCS_MIN+=	Object/ModuleSymbolTable.cpp
758986e05bcSDimitry AndricSRCS_EXT+=	Object/Object.cpp
759986e05bcSDimitry AndricSRCS_MIN+=	Object/ObjectFile.cpp
760986e05bcSDimitry AndricSRCS_MIN+=	Object/RecordStreamer.cpp
7610db9a49eSDimitry AndricSRCS_MIW+=	Object/RelocationResolver.cpp
7620db9a49eSDimitry AndricSRCS_MIW+=	Object/SymbolSize.cpp
763986e05bcSDimitry AndricSRCS_MIN+=	Object/SymbolicFile.cpp
76409bfd043SDimitry AndricSRCS_MIN+=	Object/WasmObjectFile.cpp
7650db9a49eSDimitry AndricSRCS_MIW+=	Object/WindowsMachineFlag.cpp
766bbd32193SDimitry AndricSRCS_MIN+=	Object/WindowsResource.cpp
7674014a71fSDimitry AndricSRCS_MIN+=	Object/XCOFFObjectFile.cpp
768986e05bcSDimitry AndricSRCS_MIN+=	ObjectYAML/COFFYAML.cpp
769f9448bf3SDimitry AndricSRCS_EXT+=	ObjectYAML/CodeViewYAMLDebugSections.cpp
770f9448bf3SDimitry AndricSRCS_EXT+=	ObjectYAML/CodeViewYAMLSymbols.cpp
771f9448bf3SDimitry AndricSRCS_EXT+=	ObjectYAML/CodeViewYAMLTypes.cpp
77209bfd043SDimitry AndricSRCS_MIN+=	ObjectYAML/DWARFYAML.cpp
773986e05bcSDimitry AndricSRCS_MIN+=	ObjectYAML/ELFYAML.cpp
774986e05bcSDimitry AndricSRCS_MIN+=	ObjectYAML/MachOYAML.cpp
77524d58133SDimitry AndricSRCS_EXT+=	ObjectYAML/YAML.cpp
776986e05bcSDimitry AndricSRCS_MIN+=	Option/Arg.cpp
777986e05bcSDimitry AndricSRCS_MIN+=	Option/ArgList.cpp
778986e05bcSDimitry AndricSRCS_MIN+=	Option/OptTable.cpp
779986e05bcSDimitry AndricSRCS_MIN+=	Option/Option.cpp
78009bfd043SDimitry AndricSRCS_MIN+=	Passes/PassBuilder.cpp
7814014a71fSDimitry AndricSRCS_MIN+=	Passes/PassPlugin.cpp
782efa75597SDimitry AndricSRCS_EXT+=	Passes/StandardInstrumentations.cpp
783986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/Coverage/CoverageMapping.cpp
784986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/Coverage/CoverageMappingReader.cpp
785986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/Coverage/CoverageMappingWriter.cpp
7861b49115aSEd MasteSRCS_MIN+=	ProfileData/GCOV.cpp
787986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/InstrProf.cpp
788986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/InstrProfReader.cpp
789986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/InstrProfWriter.cpp
790986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/ProfileSummaryBuilder.cpp
791986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/SampleProf.cpp
792986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/SampleProfReader.cpp
793961eb443SEd MasteSRCS_MIN+=	ProfileData/SampleProfWriter.cpp
7944014a71fSDimitry AndricSRCS_MIN+=	Remarks/RemarkFormat.cpp
7954014a71fSDimitry AndricSRCS_MIN+=	Remarks/RemarkStringTable.cpp
7964014a71fSDimitry AndricSRCS_MIN+=	Remarks/YAMLRemarkSerializer.cpp
7975e86819cSDimitry AndricSRCS_MIN+=	Support/AArch64TargetParser.cpp
798986e05bcSDimitry AndricSRCS_MIN+=	Support/APFloat.cpp
799986e05bcSDimitry AndricSRCS_MIN+=	Support/APInt.cpp
800986e05bcSDimitry AndricSRCS_MIN+=	Support/APSInt.cpp
8015897d2f0SDimitry AndricSRCS_MIN+=	Support/ARMAttributeParser.cpp
802986e05bcSDimitry AndricSRCS_MIN+=	Support/ARMBuildAttrs.cpp
8035e86819cSDimitry AndricSRCS_MIN+=	Support/ARMTargetParser.cpp
804986e05bcSDimitry AndricSRCS_MIN+=	Support/Allocator.cpp
8055897d2f0SDimitry AndricSRCS_MIN+=	Support/BinaryStreamError.cpp
8065897d2f0SDimitry AndricSRCS_MIN+=	Support/BinaryStreamReader.cpp
807d8866befSDimitry AndricSRCS_MIN+=	Support/BinaryStreamRef.cpp
8085897d2f0SDimitry AndricSRCS_MIN+=	Support/BinaryStreamWriter.cpp
809986e05bcSDimitry AndricSRCS_MIN+=	Support/BlockFrequency.cpp
810986e05bcSDimitry AndricSRCS_MIN+=	Support/BranchProbability.cpp
8115e86819cSDimitry AndricSRCS_MIN+=	Support/BuryPointer.cpp
812986e05bcSDimitry AndricSRCS_MIN+=	Support/CachePruning.cpp
8130db9a49eSDimitry AndricSRCS_MIW+=	Support/COM.cpp
8140db9a49eSDimitry AndricSRCS_MIW+=	Support/CRC.cpp
81509bfd043SDimitry AndricSRCS_MIN+=	Support/Chrono.cpp
81636cb3905SDimitry AndricSRCS_MIN+=	Support/CodeGenCoverage.cpp
817986e05bcSDimitry AndricSRCS_MIN+=	Support/CommandLine.cpp
818986e05bcSDimitry AndricSRCS_MIN+=	Support/Compression.cpp
81909bfd043SDimitry AndricSRCS_MIN+=	Support/ConvertUTF.cpp
820986e05bcSDimitry AndricSRCS_MIN+=	Support/ConvertUTFWrapper.cpp
821986e05bcSDimitry AndricSRCS_MIN+=	Support/CrashRecoveryContext.cpp
822986e05bcSDimitry AndricSRCS_MIN+=	Support/DAGDeltaAlgorithm.cpp
8239f6e9a9fSDimitry AndricSRCS_MIN+=	Support/DJB.cpp
824986e05bcSDimitry AndricSRCS_MIN+=	Support/DataExtractor.cpp
825986e05bcSDimitry AndricSRCS_MIN+=	Support/Debug.cpp
8265897d2f0SDimitry AndricSRCS_MIN+=	Support/DebugCounter.cpp
827986e05bcSDimitry AndricSRCS_MIN+=	Support/DeltaAlgorithm.cpp
828986e05bcSDimitry AndricSRCS_MIN+=	Support/DynamicLibrary.cpp
829986e05bcSDimitry AndricSRCS_MIN+=	Support/Errno.cpp
830986e05bcSDimitry AndricSRCS_MIN+=	Support/Error.cpp
831986e05bcSDimitry AndricSRCS_MIN+=	Support/ErrorHandling.cpp
83275bc38b9SEd MasteSRCS_EXL+=	Support/FileOutputBuffer.cpp
833986e05bcSDimitry AndricSRCS_EXT+=	Support/FileUtilities.cpp
834986e05bcSDimitry AndricSRCS_MIN+=	Support/FoldingSet.cpp
83509bfd043SDimitry AndricSRCS_MIN+=	Support/FormatVariadic.cpp
836986e05bcSDimitry AndricSRCS_MIN+=	Support/FormattedStream.cpp
83709bfd043SDimitry AndricSRCS_MIN+=	Support/GlobPattern.cpp
838986e05bcSDimitry AndricSRCS_MIN+=	Support/GraphWriter.cpp
839986e05bcSDimitry AndricSRCS_MIN+=	Support/Hashing.cpp
840986e05bcSDimitry AndricSRCS_MIN+=	Support/Host.cpp
8419f6e9a9fSDimitry AndricSRCS_MIN+=	Support/InitLLVM.cpp
842986e05bcSDimitry AndricSRCS_MIN+=	Support/IntEqClasses.cpp
843986e05bcSDimitry AndricSRCS_MIN+=	Support/IntervalMap.cpp
8445e86819cSDimitry AndricSRCS_MIN+=	Support/ItaniumManglingCanonicalizer.cpp
8452d31b1b8SDimitry AndricSRCS_MIN+=	Support/JSON.cpp
846986e05bcSDimitry AndricSRCS_MIN+=	Support/JamCRC.cpp
84736cb3905SDimitry AndricSRCS_MIN+=	Support/KnownBits.cpp
848986e05bcSDimitry AndricSRCS_MIN+=	Support/LEB128.cpp
849986e05bcSDimitry AndricSRCS_MIN+=	Support/LineIterator.cpp
850986e05bcSDimitry AndricSRCS_MIN+=	Support/Locale.cpp
851986e05bcSDimitry AndricSRCS_MIN+=	Support/LockFileManager.cpp
8525897d2f0SDimitry AndricSRCS_MIN+=	Support/LowLevelType.cpp
853986e05bcSDimitry AndricSRCS_MIN+=	Support/MD5.cpp
854986e05bcSDimitry AndricSRCS_MIN+=	Support/ManagedStatic.cpp
855986e05bcSDimitry AndricSRCS_MIN+=	Support/MathExtras.cpp
8567bfc2d0fSDimitry AndricSRCS_XDL+=	Support/Memory.cpp
857986e05bcSDimitry AndricSRCS_MIN+=	Support/MemoryBuffer.cpp
858986e05bcSDimitry AndricSRCS_MIN+=	Support/Mutex.cpp
85909bfd043SDimitry AndricSRCS_MIN+=	Support/NativeFormatting.cpp
8604014a71fSDimitry AndricSRCS_MIN+=	Support/Optional.cpp
861390be9fcSDimitry AndricSRCS_LLD+=	Support/Parallel.cpp
862986e05bcSDimitry AndricSRCS_MIN+=	Support/Path.cpp
863986e05bcSDimitry AndricSRCS_MIN+=	Support/PluginLoader.cpp
864986e05bcSDimitry AndricSRCS_MIN+=	Support/PrettyStackTrace.cpp
865986e05bcSDimitry AndricSRCS_MIN+=	Support/Process.cpp
866986e05bcSDimitry AndricSRCS_MIN+=	Support/Program.cpp
867986e05bcSDimitry AndricSRCS_MIN+=	Support/RWMutex.cpp
868986e05bcSDimitry AndricSRCS_MIN+=	Support/RandomNumberGenerator.cpp
869986e05bcSDimitry AndricSRCS_MIN+=	Support/Regex.cpp
870986e05bcSDimitry AndricSRCS_MIN+=	Support/SHA1.cpp
871986e05bcSDimitry AndricSRCS_MIN+=	Support/ScaledNumber.cpp
872986e05bcSDimitry AndricSRCS_MIN+=	Support/ScopedPrinter.cpp
873986e05bcSDimitry AndricSRCS_MIN+=	Support/Signals.cpp
8744014a71fSDimitry AndricSRCS_MIN+=	Support/Signposts.cpp
875986e05bcSDimitry AndricSRCS_MIN+=	Support/SmallPtrSet.cpp
876986e05bcSDimitry AndricSRCS_MIN+=	Support/SmallVector.cpp
877986e05bcSDimitry AndricSRCS_MIN+=	Support/SourceMgr.cpp
878986e05bcSDimitry AndricSRCS_MIN+=	Support/SpecialCaseList.cpp
879986e05bcSDimitry AndricSRCS_MIN+=	Support/Statistic.cpp
880986e05bcSDimitry AndricSRCS_MIN+=	Support/StringExtras.cpp
881986e05bcSDimitry AndricSRCS_MIN+=	Support/StringMap.cpp
882986e05bcSDimitry AndricSRCS_MIN+=	Support/StringRef.cpp
883986e05bcSDimitry AndricSRCS_MIN+=	Support/StringSaver.cpp
8845e86819cSDimitry AndricSRCS_MIN+=	Support/SymbolRemappingReader.cpp
885986e05bcSDimitry AndricSRCS_EXT+=	Support/SystemUtils.cpp
8861ae4f0f6SDimitry AndricSRCS_LLD+=	Support/TarWriter.cpp
887986e05bcSDimitry AndricSRCS_MIN+=	Support/TargetParser.cpp
888986e05bcSDimitry AndricSRCS_MIN+=	Support/TargetRegistry.cpp
889986e05bcSDimitry AndricSRCS_MIN+=	Support/ThreadLocal.cpp
8900db9a49eSDimitry AndricSRCS_MIW+=	Support/ThreadPool.cpp
891986e05bcSDimitry AndricSRCS_MIN+=	Support/Threading.cpp
8924014a71fSDimitry AndricSRCS_MIN+=	Support/TimeProfiler.cpp
893986e05bcSDimitry AndricSRCS_MIN+=	Support/Timer.cpp
894986e05bcSDimitry AndricSRCS_MIN+=	Support/ToolOutputFile.cpp
89509bfd043SDimitry AndricSRCS_MIN+=	Support/TrigramIndex.cpp
896986e05bcSDimitry AndricSRCS_MIN+=	Support/Triple.cpp
897986e05bcSDimitry AndricSRCS_MIN+=	Support/Twine.cpp
898986e05bcSDimitry AndricSRCS_MIN+=	Support/Unicode.cpp
8999f6e9a9fSDimitry AndricSRCS_MIN+=	Support/UnicodeCaseFold.cpp
900986e05bcSDimitry AndricSRCS_MIN+=	Support/Valgrind.cpp
9015e86819cSDimitry AndricSRCS_MIN+=	Support/VirtualFileSystem.cpp
9029f6e9a9fSDimitry AndricSRCS_MIN+=	Support/VersionTuple.cpp
9034014a71fSDimitry AndricSRCS_MIN+=	Support/Watchdog.cpp
90480a8c751SEd MasteSRCS_MIN+=	Support/WithColor.cpp
905986e05bcSDimitry AndricSRCS_MIN+=	Support/YAMLParser.cpp
906986e05bcSDimitry AndricSRCS_MIN+=	Support/YAMLTraits.cpp
90723559b6aSDimitry AndricSRCS_FUL+=	Support/Z3Solver.cpp
908986e05bcSDimitry AndricSRCS_MIN+=	Support/circular_raw_ostream.cpp
909986e05bcSDimitry AndricSRCS_MIN+=	Support/raw_os_ostream.cpp
910986e05bcSDimitry AndricSRCS_MIN+=	Support/raw_ostream.cpp
911986e05bcSDimitry AndricSRCS_MIN+=	Support/regcomp.c
912986e05bcSDimitry AndricSRCS_MIN+=	Support/regerror.c
913986e05bcSDimitry AndricSRCS_MIN+=	Support/regexec.c
914986e05bcSDimitry AndricSRCS_MIN+=	Support/regfree.c
915986e05bcSDimitry AndricSRCS_MIN+=	Support/regstrlcpy.c
91680a8c751SEd MasteSRCS_MIN+=	Support/xxhash.cpp
917986e05bcSDimitry AndricSRCS_MIN+=	TableGen/Error.cpp
918d25b9f8fSDimitry AndricSRCS_MIN+=	TableGen/JSONBackend.cpp
919986e05bcSDimitry AndricSRCS_MIN+=	TableGen/Main.cpp
920986e05bcSDimitry AndricSRCS_MIN+=	TableGen/Record.cpp
921986e05bcSDimitry AndricSRCS_MIN+=	TableGen/SetTheory.cpp
922986e05bcSDimitry AndricSRCS_MIN+=	TableGen/StringMatcher.cpp
923986e05bcSDimitry AndricSRCS_MIN+=	TableGen/TGLexer.cpp
924986e05bcSDimitry AndricSRCS_MIN+=	TableGen/TGParser.cpp
925986e05bcSDimitry AndricSRCS_MIN+=	TableGen/TableGenBackend.cpp
926cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no"
927986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64A53Fix835769.cpp
928986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64A57FPLoadBalancing.cpp
929986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64AdvSIMDScalarPass.cpp
930986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64AsmPrinter.cpp
9315e86819cSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64BranchTargets.cpp
9323d54deb3SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CallLowering.cpp
9334014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CallingConvention.cpp
934986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp
935986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CollectLOH.cpp
9365e86819cSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CompressJumpTables.cpp
937edd7eaddSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CondBrTuning.cpp
938986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ConditionOptimizer.cpp
939986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ConditionalCompares.cpp
940986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
9414014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ExpandImm.cpp
942986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ExpandPseudoInsts.cpp
943b40b48b8SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64FalkorHWPFFix.cpp
944986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64FastISel.cpp
945986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64FrameLowering.cpp
946986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ISelDAGToDAG.cpp
947986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ISelLowering.cpp
948986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64InstrInfo.cpp
9493d54deb3SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64InstructionSelector.cpp
9503d54deb3SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64LegalizerInfo.cpp
951986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64LoadStoreOptimizer.cpp
952986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MCInstLower.cpp
9535897d2f0SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MacroFusion.cpp
954986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64PBQPRegAlloc.cpp
9555e86819cSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64PreLegalizerCombiner.cpp
956986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64PromoteConstant.cpp
957986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64RedundantCopyElimination.cpp
9583d54deb3SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64RegisterBankInfo.cpp
959986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64RegisterInfo.cpp
96036cb3905SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SIMDInstrOpt.cpp
961986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SelectionDAGInfo.cpp
9625e86819cSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SpeculationHardening.cpp
9634014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64StackTagging.cpp
964986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64StorePairSuppress.cpp
965986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64Subtarget.cpp
966986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64TargetMachine.cpp
967986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64TargetObjectFile.cpp
968986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64TargetTransformInfo.cpp
969986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AsmParser/AArch64AsmParser.cpp
97030d4828eSDimitry AndricSRCS_XDW+=	Target/AArch64/Disassembler/AArch64Disassembler.cpp
97130d4828eSDimitry AndricSRCS_XDW+=	Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp
972986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
973986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
974986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp
9754014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp
976986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
977986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
978986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
979986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
980986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
981986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp
982a580b014SDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp
983a580b014SDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp
984986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
985986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/Utils/AArch64BaseInfo.cpp
986cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64
987cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no"
988986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/A15SDOptimizer.cpp
989986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMAsmPrinter.cpp
990986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMBaseInstrInfo.cpp
991986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMBaseRegisterInfo.cpp
9924014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMBasicBlockInfo.cpp
9933d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMCallLowering.cpp
9944014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMCallingConv.cpp
9959f6e9a9fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMCodeGenPrepare.cpp
996986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMConstantIslandPass.cpp
997986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMConstantPoolValue.cpp
998986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMExpandPseudoInsts.cpp
999986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMFastISel.cpp
1000986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMFrameLowering.cpp
1001986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMHazardRecognizer.cpp
1002986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMISelDAGToDAG.cpp
1003986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMISelLowering.cpp
1004986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMInstrInfo.cpp
10053d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMInstructionSelector.cpp
10063d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMLegalizerInfo.cpp
1007986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMLoadStoreOptimizer.cpp
10084014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMLowOverheadLoops.cpp
1009986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMMCInstLower.cpp
1010986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMMachineFunctionInfo.cpp
1011edd7eaddSDimitry AndricSRCS_MIN+=	Target/ARM/ARMMacroFusion.cpp
1012986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMOptimizeBarriersPass.cpp
10139f6e9a9fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMParallelDSP.cpp
10143d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMRegisterBankInfo.cpp
1015986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMRegisterInfo.cpp
1016986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMSelectionDAGInfo.cpp
1017986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMSubtarget.cpp
1018986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMTargetMachine.cpp
1019986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMTargetObjectFile.cpp
1020986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMTargetTransformInfo.cpp
1021986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/AsmParser/ARMAsmParser.cpp
1022986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Disassembler/ARMDisassembler.cpp
1023986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
1024986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
1025986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
10264014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMInstPrinter.cpp
1027986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp
1028986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
1029986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCExpr.cpp
1030986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
1031986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp
1032986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
1033986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
1034986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp
1035986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp
1036986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp
1037986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MLxExpansionPass.cpp
1038986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/TargetInfo/ARMTargetInfo.cpp
1039986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb1FrameLowering.cpp
1040986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb1InstrInfo.cpp
1041986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb2ITBlockPass.cpp
1042986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb2InstrInfo.cpp
1043986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb2SizeReduction.cpp
1044986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ThumbRegisterInfo.cpp
104536cb3905SDimitry AndricSRCS_MIN+=	Target/ARM/Utils/ARMBaseInfo.cpp
1046cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM
104789edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no"
104889edb881SDimitry AndricSRCS_MIN+=	Target/BPF/AsmParser/BPFAsmParser.cpp
1049a9365f4aSDimitry AndricSRCS_MIN+=	Target/BPF/BPFAbstractMemberAccess.cpp
105089edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFAsmPrinter.cpp
105189edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFFrameLowering.cpp
105289edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFISelDAGToDAG.cpp
105389edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFISelLowering.cpp
105489edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFInstrInfo.cpp
105589edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFMCInstLower.cpp
10560a462115SDimitry AndricSRCS_MIN+=	Target/BPF/BPFMIChecking.cpp
1057f9c0a512SDimitry AndricSRCS_MIN+=	Target/BPF/BPFMIPeephole.cpp
1058a9365f4aSDimitry AndricSRCS_MIN+=	Target/BPF/BPFMISimplifyPatchable.cpp
105989edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFRegisterInfo.cpp
1060f9c0a512SDimitry AndricSRCS_MIN+=	Target/BPF/BPFSelectionDAGInfo.cpp
106189edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFSubtarget.cpp
106289edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFTargetMachine.cpp
10630a462115SDimitry AndricSRCS_MIN+=	Target/BPF/BTFDebug.cpp
106489edb881SDimitry AndricSRCS_MIN+=	Target/BPF/Disassembler/BPFDisassembler.cpp
106589edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFAsmBackend.cpp
106689edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
10674014a71fSDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFInstPrinter.cpp
106889edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp
106989edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp
107089edb881SDimitry AndricSRCS_MIN+=	Target/BPF/TargetInfo/BPFTargetInfo.cpp
107189edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF
1072cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no"
1073986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/AsmParser/MipsAsmParser.cpp
107430d4828eSDimitry AndricSRCS_XDW+=	Target/Mips/Disassembler/MipsDisassembler.cpp
1075986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp
1076986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsABIInfo.cpp
1077986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
1078986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
1079986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsELFStreamer.cpp
10804014a71fSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsInstPrinter.cpp
1081986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
1082986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
1083986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCExpr.cpp
1084986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
1085986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
1086986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsOptionRecord.cpp
1087986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
1088f37b6182SDimitry AndricSRCS_MIN+=	Target/Mips/MicroMipsSizeReduction.cpp
1089986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16FrameLowering.cpp
1090986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16HardFloat.cpp
1091986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16HardFloatInfo.cpp
1092986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16ISelDAGToDAG.cpp
1093986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16ISelLowering.cpp
1094986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16InstrInfo.cpp
1095986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16RegisterInfo.cpp
1096986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsAnalyzeImmediate.cpp
1097986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsAsmPrinter.cpp
10989f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsBranchExpansion.cpp
1099986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsCCState.cpp
11009f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsCallLowering.cpp
1101986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsConstantIslandPass.cpp
1102986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsDelaySlotFiller.cpp
11039f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsExpandPseudo.cpp
1104986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsFastISel.cpp
1105986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsFrameLowering.cpp
1106986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsISelDAGToDAG.cpp
1107986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsISelLowering.cpp
1108986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsInstrInfo.cpp
11099f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsInstructionSelector.cpp
11109f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsLegalizerInfo.cpp
1111986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsMCInstLower.cpp
1112986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsMachineFunction.cpp
1113986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsModuleISelDAGToDAG.cpp
1114986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsOptimizePICCall.cpp
1115986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsOs16.cpp
11165e86819cSDimitry AndricSRCS_MIN+=	Target/Mips/MipsPreLegalizerCombiner.cpp
11179f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsRegisterBankInfo.cpp
1118986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsRegisterInfo.cpp
1119986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEFrameLowering.cpp
1120986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEISelDAGToDAG.cpp
1121986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEISelLowering.cpp
1122986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEInstrInfo.cpp
1123986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSERegisterInfo.cpp
1124986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSubtarget.cpp
1125986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsTargetMachine.cpp
1126986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsTargetObjectFile.cpp
1127986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/TargetInfo/MipsTargetInfo.cpp
1128cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS
1129cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no"
1130986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/AsmParser/PPCAsmParser.cpp
1131986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/Disassembler/PPCDisassembler.cpp
1132986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp
1133986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
11344014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCInstPrinter.cpp
1135986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
1136986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
1137986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
1138986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
1139986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp
1140986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCPredicates.cpp
11414014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCXCOFFObjectWriter.cpp
1142986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCAsmPrinter.cpp
1143986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCBoolRetToInt.cpp
114436cb3905SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCBranchCoalescing.cpp
1145986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCBranchSelector.cpp
1146986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCCCState.cpp
1147986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCCTRLoops.cpp
11484014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCCallingConv.cpp
1149986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCEarlyReturn.cpp
11505897d2f0SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCExpandISEL.cpp
1151986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCFastISel.cpp
1152986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCFrameLowering.cpp
1153986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCHazardRecognizers.cpp
1154986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCISelDAGToDAG.cpp
1155986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCISelLowering.cpp
1156986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCInstrInfo.cpp
1157986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCLoopPreIncPrep.cpp
1158986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMCInstLower.cpp
1159986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMIPeephole.cpp
1160986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMachineFunctionInfo.cpp
11614014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMachineScheduler.cpp
116236cb3905SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCPreEmitPeephole.cpp
1163986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCQPXLoadSplat.cpp
116436cb3905SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCReduceCRLogicals.cpp
1165986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCRegisterInfo.cpp
1166986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCSubtarget.cpp
1167986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTLSDynamicCall.cpp
1168986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTOCRegDeps.cpp
1169986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTargetMachine.cpp
1170986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTargetObjectFile.cpp
1171986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTargetTransformInfo.cpp
1172986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCVSXCopy.cpp
1173986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCVSXFMAMutate.cpp
1174986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCVSXSwapRemoval.cpp
1175986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
1176cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC
1177b2689b12SMitchell Horne.if ${MK_LLVM_TARGET_RISCV} != "no"
1178b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/AsmParser/RISCVAsmParser.cpp
1179b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/Disassembler/RISCVDisassembler.cpp
1180b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
1181b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp
1182b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVELFStreamer.cpp
11834014a71fSDimitry AndricSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVInstPrinter.cpp
1184b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.cpp
1185b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp
1186b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp
1187b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp
1188b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVTargetStreamer.cpp
1189b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVAsmPrinter.cpp
1190b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVExpandPseudoInsts.cpp
1191b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVFrameLowering.cpp
1192b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVInstrInfo.cpp
1193b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVISelDAGToDAG.cpp
1194b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVISelLowering.cpp
1195b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVMCInstLower.cpp
1196b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVMergeBaseOffset.cpp
1197b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVRegisterInfo.cpp
1198b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVSubtarget.cpp
1199b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVTargetMachine.cpp
1200b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVTargetObjectFile.cpp
1201869fe6d5SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVTargetTransformInfo.cpp
1202b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/TargetInfo/RISCVTargetInfo.cpp
1203b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/Utils/RISCVBaseInfo.cpp
1204b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/Utils/RISCVMatInt.cpp
1205b2689b12SMitchell Horne.endif # MK_LLVM_TARGET_RISCV
1206cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_SPARC} != "no"
1207986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/AsmParser/SparcAsmParser.cpp
1208986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/DelaySlotFiller.cpp
120930d4828eSDimitry AndricSRCS_XDW+=	Target/Sparc/Disassembler/SparcDisassembler.cpp
1210986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/LeonPasses.cpp
1211986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp
1212986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp
12134014a71fSDimitry AndricSRCS_MIN+=	Target/Sparc/MCTargetDesc/SparcInstPrinter.cpp
1214986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp
1215986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/MCTargetDesc/SparcMCCodeEmitter.cpp
1216986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/MCTargetDesc/SparcMCExpr.cpp
1217986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp
1218986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/MCTargetDesc/SparcTargetStreamer.cpp
1219986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/SparcAsmPrinter.cpp
1220986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/SparcFrameLowering.cpp
1221986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/SparcISelDAGToDAG.cpp
1222986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/SparcISelLowering.cpp
1223986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/SparcInstrInfo.cpp
1224986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/SparcMCInstLower.cpp
1225986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/SparcMachineFunctionInfo.cpp
1226986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/SparcRegisterInfo.cpp
1227986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/SparcSubtarget.cpp
1228986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/SparcTargetMachine.cpp
1229986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/SparcTargetObjectFile.cpp
1230986e05bcSDimitry AndricSRCS_MIN+=	Target/Sparc/TargetInfo/SparcTargetInfo.cpp
1231cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_SPARC
1232986e05bcSDimitry AndricSRCS_MIN+=	Target/Target.cpp
1233986e05bcSDimitry AndricSRCS_MIN+=	Target/TargetLoweringObjectFile.cpp
1234986e05bcSDimitry AndricSRCS_MIN+=	Target/TargetMachine.cpp
1235986e05bcSDimitry AndricSRCS_MIN+=	Target/TargetMachineC.cpp
1236cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no"
1237986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/AsmParser/X86AsmParser.cpp
123830d4828eSDimitry AndricSRCS_XDW+=	Target/X86/Disassembler/X86Disassembler.cpp
123930d4828eSDimitry AndricSRCS_XDW+=	Target/X86/Disassembler/X86DisassemblerDecoder.cpp
12404014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86ATTInstPrinter.cpp
1241986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86AsmBackend.cpp
1242986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp
12434014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86InstComments.cpp
12444014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86InstPrinterCommon.cpp
12454014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86IntelInstPrinter.cpp
1246986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
1247986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
1248986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
1249986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
1250986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
1251986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
125236cb3905SDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp
1253986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/TargetInfo/X86TargetInfo.cpp
1254986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/Utils/X86ShuffleDecode.cpp
1255986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86AsmPrinter.cpp
12569f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86AvoidStoreForwardingBlocks.cpp
1257986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86CallFrameOptimization.cpp
12583d54deb3SDimitry AndricSRCS_MIN+=	Target/X86/X86CallLowering.cpp
125909bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86CallingConv.cpp
1260b40b48b8SDimitry AndricSRCS_MIN+=	Target/X86/X86CmovConversion.cpp
12615e86819cSDimitry AndricSRCS_MIN+=	Target/X86/X86CondBrFolding.cpp
12625e86819cSDimitry AndricSRCS_MIN+=	Target/X86/X86DiscriminateMemOps.cpp
126336cb3905SDimitry AndricSRCS_MIN+=	Target/X86/X86DomainReassignment.cpp
126409bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86EvexToVex.cpp
1265986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ExpandPseudo.cpp
1266986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FastISel.cpp
1267986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FixupBWInsts.cpp
1268986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FixupLEAs.cpp
1269986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FixupSetCC.cpp
12700556cfadSDimitry AndricSRCS_MIN+=	Target/X86/X86FlagsCopyLowering.cpp
1271986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FloatingPoint.cpp
1272986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FrameLowering.cpp
1273986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ISelDAGToDAG.cpp
1274986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ISelLowering.cpp
12759f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86IndirectBranchTracking.cpp
12765e86819cSDimitry AndricSRCS_MIN+=	Target/X86/X86InsertPrefetch.cpp
127709bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86InstrFMA3Info.cpp
12789f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86InstrFoldTables.cpp
1279986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86InstrInfo.cpp
12803d54deb3SDimitry AndricSRCS_MIN+=	Target/X86/X86InstructionSelector.cpp
128109bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86InterleavedAccess.cpp
12823d54deb3SDimitry AndricSRCS_MIN+=	Target/X86/X86LegalizerInfo.cpp
1283986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86MCInstLower.cpp
1284986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86MachineFunctionInfo.cpp
12855897d2f0SDimitry AndricSRCS_MIN+=	Target/X86/X86MacroFusion.cpp
1286986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86OptimizeLEAs.cpp
1287986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86PadShortFunction.cpp
12883d54deb3SDimitry AndricSRCS_MIN+=	Target/X86/X86RegisterBankInfo.cpp
1289986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86RegisterInfo.cpp
129007577dfeSDimitry AndricSRCS_MIN+=	Target/X86/X86RetpolineThunks.cpp
1291986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86SelectionDAGInfo.cpp
1292986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ShuffleDecodeConstantPool.cpp
12939f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86SpeculativeLoadHardening.cpp
1294986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86Subtarget.cpp
1295986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86TargetMachine.cpp
1296986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86TargetObjectFile.cpp
1297986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86TargetTransformInfo.cpp
1298986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86VZeroUpper.cpp
1299986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86WinAllocaExpander.cpp
1300986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86WinEHState.cpp
1301cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86
13029c954a48SEd MasteSRCS_MIN+=	ToolDrivers/llvm-dlltool/DlltoolDriver.cpp
13030db9a49eSDimitry AndricSRCS_MIW+=	ToolDrivers/llvm-lib/LibDriver.cpp
13049f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
13059f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/AggressiveInstCombine/TruncInstCombine.cpp
130609bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroCleanup.cpp
130709bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroEarly.cpp
130809bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroElide.cpp
130909bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroFrame.cpp
131009bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroSplit.cpp
131109bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/Coroutines.cpp
131209bfd043SDimitry AndricSRCS_MIN+=	Transforms/IPO/AlwaysInliner.cpp
1313986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ArgumentPromotion.cpp
13144014a71fSDimitry AndricSRCS_MIN+=	Transforms/IPO/Attributor.cpp
1315986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/BarrierNoopPass.cpp
131667b158f6SDimitry AndricSRCS_EXT+=	Transforms/IPO/BlockExtractor.cpp
131736cb3905SDimitry AndricSRCS_MIN+=	Transforms/IPO/CalledValuePropagation.cpp
1318986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ConstantMerge.cpp
1319986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/CrossDSOCFI.cpp
1320986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/DeadArgumentElimination.cpp
1321986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ElimAvailExtern.cpp
1322986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ExtractGV.cpp
1323986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ForceFunctionAttrs.cpp
1324986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/FunctionAttrs.cpp
1325986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/FunctionImport.cpp
1326986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/GlobalDCE.cpp
1327986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/GlobalOpt.cpp
132809bfd043SDimitry AndricSRCS_MIN+=	Transforms/IPO/GlobalSplit.cpp
13295e86819cSDimitry AndricSRCS_MIN+=	Transforms/IPO/HotColdSplitting.cpp
1330986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/IPConstantPropagation.cpp
1331986e05bcSDimitry AndricSRCS_EXT+=	Transforms/IPO/IPO.cpp
1332986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/InferFunctionAttrs.cpp
1333986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/InlineSimple.cpp
1334986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/Inliner.cpp
1335986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/Internalize.cpp
1336986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/LoopExtractor.cpp
1337986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/LowerTypeTests.cpp
1338986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/MergeFunctions.cpp
1339986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/PartialInlining.cpp
1340986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/PassManagerBuilder.cpp
1341986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/PruneEH.cpp
13429f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/IPO/SCCP.cpp
1343986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/SampleProfile.cpp
1344986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/StripDeadPrototypes.cpp
1345986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/StripSymbols.cpp
13469f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/IPO/SyntheticCountsPropagation.cpp
134709bfd043SDimitry AndricSRCS_MIN+=	Transforms/IPO/ThinLTOBitcodeWriter.cpp
1348986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/WholeProgramDevirt.cpp
1349986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineAddSub.cpp
1350986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineAndOrXor.cpp
13514014a71fSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineAtomicRMW.cpp
1352986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineCalls.cpp
1353986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineCasts.cpp
1354986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineCompares.cpp
1355986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
1356986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineMulDivRem.cpp
1357986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombinePHI.cpp
1358986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineSelect.cpp
1359986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineShifts.cpp
1360986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
1361986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineVectorOps.cpp
1362986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstructionCombining.cpp
1363986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/AddressSanitizer.cpp
1364986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/BoundsChecking.cpp
13659f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/CGProfile.cpp
13665e86819cSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/ControlHeightReduction.cpp
1367986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/DataFlowSanitizer.cpp
1368986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/GCOVProfiling.cpp
136936cb3905SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/HWAddressSanitizer.cpp
1370986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/IndirectCallPromotion.cpp
13714014a71fSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/InstrOrderFile.cpp
1372986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/InstrProfiling.cpp
1373986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/Instrumentation.cpp
1374986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/MemorySanitizer.cpp
1375986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PGOInstrumentation.cpp
137624d58133SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PGOMemOPSizeOpt.cpp
13774014a71fSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PoisonChecking.cpp
1378986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/SanitizerCoverage.cpp
1379986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/ThreadSanitizer.cpp
1380986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/DependencyAnalysis.cpp
1381986e05bcSDimitry AndricSRCS_EXT+=	Transforms/ObjCARC/ObjCARC.cpp
1382986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCAPElim.cpp
1383986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCContract.cpp
1384986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCExpand.cpp
1385986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCOpts.cpp
1386986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ProvenanceAnalysis.cpp
1387986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp
1388986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/PtrState.cpp
1389986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/ADCE.cpp
1390986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/AlignmentFromAssumptions.cpp
1391986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/BDCE.cpp
139236cb3905SDimitry AndricSRCS_MIN+=	Transforms/Scalar/CallSiteSplitting.cpp
1393986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/ConstantHoisting.cpp
1394986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/ConstantProp.cpp
1395986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/CorrelatedValuePropagation.cpp
1396986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/DCE.cpp
1397986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/DeadStoreElimination.cpp
139836cb3905SDimitry AndricSRCS_MIN+=	Transforms/Scalar/DivRemPairs.cpp
1399986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/EarlyCSE.cpp
1400986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/FlattenCFGPass.cpp
1401986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Float2Int.cpp
1402986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GVN.cpp
1403986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GVNHoist.cpp
1404302affcbSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GVNSink.cpp
1405986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GuardWidening.cpp
1406f1a29dd3SDimitry AndricSRCS_MIN+=	Transforms/Scalar/IVUsersPrinter.cpp
1407986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/IndVarSimplify.cpp
1408986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/InductiveRangeCheckElimination.cpp
1409050e2df1SDimitry AndricSRCS_EXT+=	Transforms/Scalar/InferAddressSpaces.cpp
14109f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/InstSimplifyPass.cpp
1411986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/JumpThreading.cpp
1412986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LICM.cpp
1413f1a29dd3SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopAccessAnalysisPrinter.cpp
1414986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopDataPrefetch.cpp
1415986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopDeletion.cpp
1416986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopDistribute.cpp
14174014a71fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopFuse.cpp
1418986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopIdiomRecognize.cpp
141909bfd043SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopInstSimplify.cpp
1420986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopInterchange.cpp
1421986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopLoadElimination.cpp
1422f1a29dd3SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopPassManager.cpp
14235897d2f0SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopPredication.cpp
1424986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopRerollPass.cpp
1425986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopRotation.cpp
1426986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopSimplifyCFG.cpp
142709bfd043SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopSink.cpp
1428986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopStrengthReduce.cpp
1429986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopUnrollPass.cpp
14309f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopUnrollAndJamPass.cpp
1431986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopUnswitch.cpp
1432986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopVersioningLICM.cpp
1433986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerAtomic.cpp
1434986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerExpectIntrinsic.cpp
1435986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerGuardIntrinsic.cpp
14364014a71fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerWidenableCondition.cpp
14375e86819cSDimitry AndricSRCS_MIN+=	Transforms/Scalar/MakeGuardsExplicit.cpp
1438986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/MemCpyOptimizer.cpp
143936cb3905SDimitry AndricSRCS_MIN+=	Transforms/Scalar/MergeICmps.cpp
1440986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/MergedLoadStoreMotion.cpp
1441986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/NaryReassociate.cpp
144209bfd043SDimitry AndricSRCS_MIN+=	Transforms/Scalar/NewGVN.cpp
1443986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/PartiallyInlineLibCalls.cpp
1444986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/PlaceSafepoints.cpp
1445986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Reassociate.cpp
1446986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Reg2Mem.cpp
1447986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/RewriteStatepointsForGC.cpp
1448986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SCCP.cpp
1449986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SROA.cpp
1450986e05bcSDimitry AndricSRCS_EXT+=	Transforms/Scalar/Scalar.cpp
1451986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Scalarizer.cpp
1452986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
1453f37b6182SDimitry AndricSRCS_MIN+=	Transforms/Scalar/SimpleLoopUnswitch.cpp
1454986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SimplifyCFGPass.cpp
1455986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Sink.cpp
145636cb3905SDimitry AndricSRCS_MIN+=	Transforms/Scalar/SpeculateAroundPHIs.cpp
1457986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SpeculativeExecution.cpp
1458986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/StraightLineStrengthReduce.cpp
1459986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/StructurizeCFG.cpp
1460986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/TailRecursionElimination.cpp
14615e86819cSDimitry AndricSRCS_MIN+=	Transforms/Scalar/WarnMissedTransforms.cpp
1462986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/ASanStackFrameLayout.cpp
1463986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/AddDiscriminators.cpp
1464986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BasicBlockUtils.cpp
1465986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BreakCriticalEdges.cpp
1466986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BuildLibCalls.cpp
1467986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BypassSlowDivision.cpp
146836cb3905SDimitry AndricSRCS_MIN+=	Transforms/Utils/CallPromotionUtils.cpp
14695e86819cSDimitry AndricSRCS_MIN+=	Transforms/Utils/CanonicalizeAliases.cpp
1470986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CloneFunction.cpp
1471986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CloneModule.cpp
1472986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CodeExtractor.cpp
1473986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CtorUtils.cpp
1474986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/DemoteRegToStack.cpp
147536cb3905SDimitry AndricSRCS_MIN+=	Transforms/Utils/EntryExitInstrumenter.cpp
147609bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/EscapeEnumerator.cpp
1477986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/Evaluator.cpp
1478986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/FlattenCFG.cpp
147909bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/FunctionComparator.cpp
1480986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/FunctionImportUtils.cpp
1481986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/GlobalStatus.cpp
14825e86819cSDimitry AndricSRCS_MIN+=	Transforms/Utils/GuardUtils.cpp
148309bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
1484986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/InlineFunction.cpp
1485986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/InstructionNamer.cpp
1486986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/IntegerDivision.cpp
1487986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LCSSA.cpp
148809bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/LibCallsShrinkWrap.cpp
1489986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/Local.cpp
1490986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopSimplify.cpp
14919f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopRotationUtils.cpp
1492986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUnroll.cpp
14939f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUnrollAndJam.cpp
149409bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUnrollPeel.cpp
1495986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUnrollRuntime.cpp
1496986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUtils.cpp
1497986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopVersioning.cpp
1498986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerInvoke.cpp
1499986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerSwitch.cpp
1500986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/Mem2Reg.cpp
1501986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/MetaRenamer.cpp
1502986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/ModuleUtils.cpp
150309bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/NameAnonGlobals.cpp
15045897d2f0SDimitry AndricSRCS_MIN+=	Transforms/Utils/PredicateInfo.cpp
1505986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/PromoteMemoryToRegister.cpp
1506986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SSAUpdater.cpp
1507986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SanitizerStats.cpp
1508986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SimplifyCFG.cpp
1509986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SimplifyIndVar.cpp
1510986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SimplifyLibCalls.cpp
15114014a71fSDimitry AndricSRCS_MIN+=	Transforms/Utils/SizeOpts.cpp
1512986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SplitModule.cpp
151309bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/StripGCRelocates.cpp
151409bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/StripNonLineTableDebugInfo.cpp
1515986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SymbolRewriter.cpp
1516986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/UnifyFunctionExitNodes.cpp
1517986e05bcSDimitry AndricSRCS_EXT+=	Transforms/Utils/Utils.cpp
15185897d2f0SDimitry AndricSRCS_MIN+=	Transforms/Utils/VNCoercion.cpp
1519986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/ValueMapper.cpp
1520986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/LoadStoreVectorizer.cpp
15219f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/LoopVectorizationLegality.cpp
1522986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/LoopVectorize.cpp
1523986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/SLPVectorizer.cpp
152436cb3905SDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlan.cpp
15259f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanHCFGBuilder.cpp
15265e86819cSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanHCFGTransforms.cpp
15274014a71fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanPredicator.cpp
15289f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanVerifier.cpp
1529986e05bcSDimitry AndricSRCS_EXT+=	Transforms/Vectorize/Vectorize.cpp
1530efa75597SDimitry AndricSRCS_EXT+=	XRay/BlockIndexer.cpp
1531efa75597SDimitry AndricSRCS_EXT+=	XRay/BlockVerifier.cpp
1532efa75597SDimitry AndricSRCS_EXT+=	XRay/FDRRecordProducer.cpp
1533efa75597SDimitry AndricSRCS_EXT+=	XRay/FDRRecords.cpp
1534efa75597SDimitry AndricSRCS_EXT+=	XRay/FDRTraceExpander.cpp
1535efa75597SDimitry AndricSRCS_EXT+=	XRay/FileHeaderReader.cpp
1536050e2df1SDimitry AndricSRCS_EXT+=	XRay/InstrumentationMap.cpp
1537efa75597SDimitry AndricSRCS_EXT+=	XRay/LogBuilderConsumer.cpp
1538efa75597SDimitry AndricSRCS_EXT+=	XRay/RecordInitializer.cpp
153967b158f6SDimitry AndricSRCS_EXT+=	XRay/Trace.cpp
1540986e05bcSDimitry Andric
1541986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_MIN}
1542caf90252SBryan Drewery.if !defined(TOOLS_PREFIX) || ${MK_LLD_BOOTSTRAP} != "no"
154330d4828eSDimitry AndricSRCS_ALL+=	${SRCS_MIW}
154430d4828eSDimitry Andric.endif
1545986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no"
1546986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_EXT}
1547986e05bcSDimitry Andric.endif
1548986e05bcSDimitry Andric.if ${MK_CLANG_FULL} != "no"
1549986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_FUL}
1550986e05bcSDimitry Andric.endif
155178187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLD} != "no" || \
155278187278SBryan Drewery    (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no")
155375bc38b9SEd MasteSRCS_ALL+=	${SRCS_EXL}
155475bc38b9SEd Maste.endif
155578187278SBryan Drewery.if ${MK_LLD} != "no" || \
155678187278SBryan Drewery    (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no")
15570fc5d238SDimitry AndricSRCS_ALL+=	${SRCS_LLD}
15580fc5d238SDimitry Andric.endif
1559986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no"
1560986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_XDB}
1561986e05bcSDimitry Andric.endif
156278187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || ${MK_LLD} != "no" || \
156378187278SBryan Drewery    (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no")
156475bc38b9SEd MasteSRCS_ALL+=	${SRCS_XDL}
156575bc38b9SEd Maste.endif
156630d4828eSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || !defined(TOOLS_PREFIX)
156730d4828eSDimitry AndricSRCS_ALL+=	${SRCS_XDW}
156830d4828eSDimitry Andric.endif
1569986e05bcSDimitry AndricSRCS+=		${SRCS_ALL:O}
1570986e05bcSDimitry Andric
15719f6e9a9fSDimitry Andricllvm/IR/Attributes.inc: ${LLVM_SRCS}/include/llvm/IR/Attributes.td
1572986e05bcSDimitry Andric	${LLVM_TBLGEN} -gen-attrs \
1573050e2df1SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
1574986e05bcSDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Attributes.td
15759f6e9a9fSDimitry AndricTGHDRS+=	llvm/IR/Attributes.inc
1576986e05bcSDimitry Andric
15779f6e9a9fSDimitry Andricllvm/IR/IntrinsicEnums.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
15789f6e9a9fSDimitry Andric	${LLVM_TBLGEN} -gen-intrinsic-enums \
1579050e2df1SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
1580986e05bcSDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
15819f6e9a9fSDimitry AndricTGHDRS+=	llvm/IR/IntrinsicEnums.inc
15829f6e9a9fSDimitry Andric
15839f6e9a9fSDimitry Andricllvm/IR/IntrinsicImpl.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
15849f6e9a9fSDimitry Andric	${LLVM_TBLGEN} -gen-intrinsic-impl \
15859f6e9a9fSDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
15869f6e9a9fSDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
15879f6e9a9fSDimitry AndricTGHDRS+=	llvm/IR/IntrinsicImpl.inc
1588986e05bcSDimitry Andric
1589986e05bcSDimitry AndricAttributesCompatFunc.inc: ${LLVM_SRCS}/lib/IR/AttributesCompatFunc.td
1590986e05bcSDimitry Andric	${LLVM_TBLGEN} -gen-attrs \
1591050e2df1SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
1592986e05bcSDimitry Andric	    ${LLVM_SRCS}/lib/IR/AttributesCompatFunc.td
1593986e05bcSDimitry AndricTGHDRS+=	AttributesCompatFunc.inc
1594986e05bcSDimitry Andric
15959f6e9a9fSDimitry AndricInstCombineTables.inc: ${LLVM_SRCS}/lib/Transforms/InstCombine/InstCombineTables.td
15969f6e9a9fSDimitry Andric	${LLVM_TBLGEN} -gen-searchable-tables \
15979f6e9a9fSDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
15989f6e9a9fSDimitry Andric	    ${LLVM_SRCS}/lib/Transforms/InstCombine/InstCombineTables.td
15999f6e9a9fSDimitry AndricTGHDRS+=	InstCombineTables.inc
16009f6e9a9fSDimitry Andric
1601b40b48b8SDimitry Andricllvm-lib/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td
1602986e05bcSDimitry Andric	${LLVM_TBLGEN} -gen-opt-parser-defs \
1603050e2df1SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
16045517e702SDimitry Andric	    ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td
1605b40b48b8SDimitry AndricTGHDRS+=	llvm-lib/Options.inc
1606b40b48b8SDimitry AndricCFLAGS.LibDriver.cpp+=	-I${.OBJDIR}/llvm-lib
1607b40b48b8SDimitry Andric
1608b40b48b8SDimitry Andricllvm-dlltool/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td
1609b40b48b8SDimitry Andric	${LLVM_TBLGEN} -gen-opt-parser-defs \
1610b40b48b8SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
1611b40b48b8SDimitry Andric	    ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td
1612b40b48b8SDimitry AndricTGHDRS+=	llvm-dlltool/Options.inc
1613b40b48b8SDimitry AndricCFLAGS.DlltoolDriver.cpp+=	-I${.OBJDIR}/llvm-dlltool
1614986e05bcSDimitry Andric
1615cd283100SBryan Drewerybeforebuild:
1616cd283100SBryan Drewery# 20170724 remove stale Options.inc file, of which there are two different
161737cd60a3SDimitry Andric# versions after upstream r308421, one for llvm-lib, one for llvm-dlltool
1618cd283100SBryan Drewery.for f in Options.inc
1619cd283100SBryan Drewery.if exists(${f}) || exists(${f}.d)
1620cd283100SBryan Drewery	@echo Removing stale generated ${f} files
1621cd283100SBryan Drewery	@rm -f ${f} ${f}.d
1622cd283100SBryan Drewery.endif
1623cd283100SBryan Drewery.endfor
1624cd283100SBryan Drewery
1625986e05bcSDimitry Andric# Note: some rules are superfluous, not every combination is valid.
1626986e05bcSDimitry Andric.for arch in \
1627b2689b12SMitchell Horne	AArch64/AArch64 ARM/ARM BPF/BPF Mips/Mips PowerPC/PPC Sparc/Sparc \
1628b2689b12SMitchell Horne	RISCV/RISCV X86/X86
1629986e05bcSDimitry Andric. for hdr in \
1630986e05bcSDimitry Andric	AsmMatcher/-gen-asm-matcher \
1631986e05bcSDimitry Andric	AsmWriter1/-gen-asm-writer,-asmwriternum=1 \
1632986e05bcSDimitry Andric	AsmWriter/-gen-asm-writer \
1633986e05bcSDimitry Andric	CallingConv/-gen-callingconv \
1634986e05bcSDimitry Andric	CodeEmitter/-gen-emitter \
1635b2689b12SMitchell Horne	CompressInstEmitter/-gen-compress-inst-emitter \
1636986e05bcSDimitry Andric	DAGISel/-gen-dag-isel \
1637986e05bcSDimitry Andric	DisassemblerTables/-gen-disassembler \
16385897d2f0SDimitry Andric	EVEX2VEXTables/-gen-x86-EVEX2VEX-tables \
1639986e05bcSDimitry Andric	FastISel/-gen-fast-isel \
16403d54deb3SDimitry Andric	GlobalISel/-gen-global-isel \
1641986e05bcSDimitry Andric	InstrInfo/-gen-instr-info \
1642986e05bcSDimitry Andric	MCCodeEmitter/-gen-emitter \
1643986e05bcSDimitry Andric	MCPseudoLowering/-gen-pseudo-lowering \
16445897d2f0SDimitry Andric	RegisterBank/-gen-register-bank \
1645986e05bcSDimitry Andric	RegisterInfo/-gen-register-info \
1646986e05bcSDimitry Andric	SubtargetInfo/-gen-subtarget \
164736cb3905SDimitry Andric	SystemOperands/-gen-searchable-tables \
164836cb3905SDimitry Andric	SystemRegister/-gen-searchable-tables
1649986e05bcSDimitry Andric${arch:T}Gen${hdr:H}.inc: ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td
1650986e05bcSDimitry Andric	${LLVM_TBLGEN} ${hdr:T:C/,/ /g} \
1651986e05bcSDimitry Andric	    -I ${LLVM_SRCS}/include -I ${LLVM_SRCS}/lib/Target/${arch:H} \
1652050e2df1SDimitry Andric	    -d ${.TARGET}.d -o ${.TARGET} \
1653986e05bcSDimitry Andric	    ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td
1654986e05bcSDimitry Andric. endfor
1655986e05bcSDimitry Andric.endfor
1656cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no"
1657986e05bcSDimitry AndricTGHDRS+=	AArch64GenAsmMatcher.inc
1658986e05bcSDimitry AndricTGHDRS+=	AArch64GenAsmWriter.inc
1659986e05bcSDimitry AndricTGHDRS+=	AArch64GenAsmWriter1.inc
1660986e05bcSDimitry AndricTGHDRS+=	AArch64GenCallingConv.inc
1661986e05bcSDimitry AndricTGHDRS+=	AArch64GenDAGISel.inc
1662986e05bcSDimitry AndricTGHDRS+=	AArch64GenDisassemblerTables.inc
1663986e05bcSDimitry AndricTGHDRS+=	AArch64GenFastISel.inc
16643d54deb3SDimitry AndricTGHDRS+=	AArch64GenGlobalISel.inc
1665986e05bcSDimitry AndricTGHDRS+=	AArch64GenInstrInfo.inc
1666986e05bcSDimitry AndricTGHDRS+=	AArch64GenMCCodeEmitter.inc
1667986e05bcSDimitry AndricTGHDRS+=	AArch64GenMCPseudoLowering.inc
16685897d2f0SDimitry AndricTGHDRS+=	AArch64GenRegisterBank.inc
1669986e05bcSDimitry AndricTGHDRS+=	AArch64GenRegisterInfo.inc
1670986e05bcSDimitry AndricTGHDRS+=	AArch64GenSubtargetInfo.inc
1671986e05bcSDimitry AndricTGHDRS+=	AArch64GenSystemOperands.inc
1672cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64
1673cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no"
1674986e05bcSDimitry AndricTGHDRS+=	ARMGenAsmMatcher.inc
1675986e05bcSDimitry AndricTGHDRS+=	ARMGenAsmWriter.inc
1676986e05bcSDimitry AndricTGHDRS+=	ARMGenCallingConv.inc
1677986e05bcSDimitry AndricTGHDRS+=	ARMGenDAGISel.inc
1678986e05bcSDimitry AndricTGHDRS+=	ARMGenDisassemblerTables.inc
1679986e05bcSDimitry AndricTGHDRS+=	ARMGenFastISel.inc
16803d54deb3SDimitry AndricTGHDRS+=	ARMGenGlobalISel.inc
1681986e05bcSDimitry AndricTGHDRS+=	ARMGenInstrInfo.inc
1682986e05bcSDimitry AndricTGHDRS+=	ARMGenMCCodeEmitter.inc
1683986e05bcSDimitry AndricTGHDRS+=	ARMGenMCPseudoLowering.inc
16845897d2f0SDimitry AndricTGHDRS+=	ARMGenRegisterBank.inc
1685986e05bcSDimitry AndricTGHDRS+=	ARMGenRegisterInfo.inc
1686986e05bcSDimitry AndricTGHDRS+=	ARMGenSubtargetInfo.inc
168736cb3905SDimitry AndricTGHDRS+=	ARMGenSystemRegister.inc
1688cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM
168989edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no"
169089edb881SDimitry AndricTGHDRS+=	BPFGenAsmMatcher.inc
169189edb881SDimitry AndricTGHDRS+=	BPFGenAsmWriter.inc
169289edb881SDimitry AndricTGHDRS+=	BPFGenCallingConv.inc
169389edb881SDimitry AndricTGHDRS+=	BPFGenDAGISel.inc
169489edb881SDimitry AndricTGHDRS+=	BPFGenDisassemblerTables.inc
169589edb881SDimitry AndricTGHDRS+=	BPFGenInstrInfo.inc
169689edb881SDimitry AndricTGHDRS+=	BPFGenMCCodeEmitter.inc
169789edb881SDimitry AndricTGHDRS+=	BPFGenRegisterInfo.inc
169889edb881SDimitry AndricTGHDRS+=	BPFGenSubtargetInfo.inc
169989edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF
1700cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no"
1701986e05bcSDimitry AndricTGHDRS+=	MipsGenAsmMatcher.inc
1702986e05bcSDimitry AndricTGHDRS+=	MipsGenAsmWriter.inc
1703986e05bcSDimitry AndricTGHDRS+=	MipsGenCallingConv.inc
1704986e05bcSDimitry AndricTGHDRS+=	MipsGenDAGISel.inc
1705986e05bcSDimitry AndricTGHDRS+=	MipsGenDisassemblerTables.inc
1706986e05bcSDimitry AndricTGHDRS+=	MipsGenFastISel.inc
17079f6e9a9fSDimitry AndricTGHDRS+=	MipsGenGlobalISel.inc
1708986e05bcSDimitry AndricTGHDRS+=	MipsGenInstrInfo.inc
1709986e05bcSDimitry AndricTGHDRS+=	MipsGenMCCodeEmitter.inc
1710986e05bcSDimitry AndricTGHDRS+=	MipsGenMCPseudoLowering.inc
17119f6e9a9fSDimitry AndricTGHDRS+=	MipsGenRegisterBank.inc
1712986e05bcSDimitry AndricTGHDRS+=	MipsGenRegisterInfo.inc
1713986e05bcSDimitry AndricTGHDRS+=	MipsGenSubtargetInfo.inc
1714cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS
1715cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no"
1716986e05bcSDimitry AndricTGHDRS+=	PPCGenAsmMatcher.inc
1717986e05bcSDimitry AndricTGHDRS+=	PPCGenAsmWriter.inc
1718986e05bcSDimitry AndricTGHDRS+=	PPCGenCallingConv.inc
1719986e05bcSDimitry AndricTGHDRS+=	PPCGenDAGISel.inc
1720986e05bcSDimitry AndricTGHDRS+=	PPCGenDisassemblerTables.inc
1721986e05bcSDimitry AndricTGHDRS+=	PPCGenFastISel.inc
1722986e05bcSDimitry AndricTGHDRS+=	PPCGenInstrInfo.inc
1723986e05bcSDimitry AndricTGHDRS+=	PPCGenMCCodeEmitter.inc
1724986e05bcSDimitry AndricTGHDRS+=	PPCGenRegisterInfo.inc
1725986e05bcSDimitry AndricTGHDRS+=	PPCGenSubtargetInfo.inc
1726cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC
1727b2689b12SMitchell Horne.if ${MK_LLVM_TARGET_RISCV} != "no"
1728b2689b12SMitchell HorneTGHDRS+=	RISCVGenAsmMatcher.inc
1729b2689b12SMitchell HorneTGHDRS+=	RISCVGenAsmWriter.inc
1730b2689b12SMitchell HorneTGHDRS+=	RISCVGenCallingConv.inc
1731b2689b12SMitchell HorneTGHDRS+=	RISCVGenCompressInstEmitter.inc
1732b2689b12SMitchell HorneTGHDRS+=	RISCVGenDAGISel.inc
1733b2689b12SMitchell HorneTGHDRS+=	RISCVGenDisassemblerTables.inc
1734b2689b12SMitchell HorneTGHDRS+=	RISCVGenDAGISel.inc
1735b2689b12SMitchell HorneTGHDRS+=	RISCVGenInstrInfo.inc
1736b2689b12SMitchell HorneTGHDRS+=	RISCVGenMCCodeEmitter.inc
1737b2689b12SMitchell HorneTGHDRS+=	RISCVGenMCPseudoLowering.inc
1738b2689b12SMitchell HorneTGHDRS+=	RISCVGenRegisterInfo.inc
1739b2689b12SMitchell HorneTGHDRS+=	RISCVGenSubtargetInfo.inc
1740b2689b12SMitchell HorneTGHDRS+=	RISCVGenSystemOperands.inc
1741b2689b12SMitchell Horne.endif # MK_LLVM_TARGET_RISCV
1742cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_SPARC} != "no"
1743986e05bcSDimitry AndricTGHDRS+=	SparcGenAsmMatcher.inc
1744986e05bcSDimitry AndricTGHDRS+=	SparcGenAsmWriter.inc
1745986e05bcSDimitry AndricTGHDRS+=	SparcGenCallingConv.inc
1746986e05bcSDimitry AndricTGHDRS+=	SparcGenDAGISel.inc
1747986e05bcSDimitry AndricTGHDRS+=	SparcGenDisassemblerTables.inc
1748986e05bcSDimitry AndricTGHDRS+=	SparcGenInstrInfo.inc
1749986e05bcSDimitry AndricTGHDRS+=	SparcGenMCCodeEmitter.inc
1750986e05bcSDimitry AndricTGHDRS+=	SparcGenRegisterInfo.inc
1751986e05bcSDimitry AndricTGHDRS+=	SparcGenSubtargetInfo.inc
1752cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_SPARC
1753cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no"
1754986e05bcSDimitry AndricTGHDRS+=	X86GenAsmMatcher.inc
1755986e05bcSDimitry AndricTGHDRS+=	X86GenAsmWriter.inc
1756986e05bcSDimitry AndricTGHDRS+=	X86GenAsmWriter1.inc
1757986e05bcSDimitry AndricTGHDRS+=	X86GenCallingConv.inc
1758986e05bcSDimitry AndricTGHDRS+=	X86GenDAGISel.inc
1759986e05bcSDimitry AndricTGHDRS+=	X86GenDisassemblerTables.inc
17605897d2f0SDimitry AndricTGHDRS+=	X86GenEVEX2VEXTables.inc
1761986e05bcSDimitry AndricTGHDRS+=	X86GenFastISel.inc
17623d54deb3SDimitry AndricTGHDRS+=	X86GenGlobalISel.inc
1763986e05bcSDimitry AndricTGHDRS+=	X86GenInstrInfo.inc
17645897d2f0SDimitry AndricTGHDRS+=	X86GenRegisterBank.inc
1765986e05bcSDimitry AndricTGHDRS+=	X86GenRegisterInfo.inc
1766986e05bcSDimitry AndricTGHDRS+=	X86GenSubtargetInfo.inc
1767cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86
1768986e05bcSDimitry Andric
1769ddf95e2aSBryan DreweryDEPENDFILES+=	${TGHDRS:C/$/.d/}
1770986e05bcSDimitry AndricDPSRCS+=	${TGHDRS}
1771986e05bcSDimitry AndricCLEANFILES+=	${TGHDRS} ${TGHDRS:C/$/.d/}
1772986e05bcSDimitry Andric
1773986e05bcSDimitry Andric.include "../llvm.build.mk"
1774986e05bcSDimitry Andric.include <bsd.lib.mk>
1775