xref: /freebsd/lib/clang/libllvm/Makefile (revision 61cfbce3347e4372143bcabf7b197577b9f3958a)
1986e05bcSDimitry Andric# $FreeBSD$
2986e05bcSDimitry Andric
3986e05bcSDimitry Andric.include <src.opts.mk>
4986e05bcSDimitry Andric.include "../llvm.pre.mk"
5986e05bcSDimitry Andric
6986e05bcSDimitry AndricLIB=		llvm
7986e05bcSDimitry AndricINTERNALLIB=
8986e05bcSDimitry Andric
9986e05bcSDimitry AndricCFLAGS+=	-I${.OBJDIR}
10cbafd263SDimitry Andric
11cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} == "no" && ${MK_LLVM_TARGET_ARM} == "no" && \
1289edb881SDimitry Andric    ${MK_LLVM_TARGET_BPF} == "no" && ${MK_LLVM_TARGET_MIPS} == "no" && \
13b2689b12SMitchell Horne    ${MK_LLVM_TARGET_POWERPC} == "no" && ${MK_LLVM_TARGET_RISCV} == "no" && \
143b7fd87cSWarner Losh    ${MK_LLVM_TARGET_X86} == "no"
15cbafd263SDimitry Andric.error Please enable at least one of: MK_LLVM_TARGET_AARCH64,\
1689edb881SDimitry Andric MK_LLVM_TARGET_ARM, MK_LLVM_TARGET_BPF, MK_LLVM_TARGET_MIPS, \
173b7fd87cSWarner Losh MK_LLVM_TARGET_POWERPC, MK_LLVM_TARGET_RISCV, or MK_LLVM_TARGET_X86
18cbafd263SDimitry Andric.endif
19cbafd263SDimitry Andric
203b7fd87cSWarner Losh.for arch in AArch64 ARM BPF Mips PowerPC RISCV X86
21cbafd263SDimitry Andric. if ${MK_LLVM_TARGET_${arch:tu}} != "no"
22986e05bcSDimitry AndricCFLAGS+=	-I${LLVM_SRCS}/lib/Target/${arch}
23cbafd263SDimitry Andric. endif
24986e05bcSDimitry Andric.endfor
25986e05bcSDimitry Andric
2681ad6265SDimitry AndricCFLAGS+=	-I${LLVM_SRCS}/lib/ObjCopy
2781ad6265SDimitry Andric
28*61cfbce3SDimitry AndricTARGET_ARCH?=	${MACHINE_ARCH}
29*61cfbce3SDimitry Andric
30fcaf7f86SDimitry Andric.if ${TARGET_ARCH} != "amd64"
31fcaf7f86SDimitry AndricCFLAGS+=	-DBLAKE3_NO_AVX512 -DBLAKE3_NO_AVX2 -DBLAKE3_NO_SSE41 \
32fcaf7f86SDimitry Andric		-DBLAKE3_NO_SSE2
33fcaf7f86SDimitry Andric.endif
34fcaf7f86SDimitry Andric
350b57cec5SDimitry AndricSRCDIR=		llvm/lib
36986e05bcSDimitry Andric
37a1aaa66bSDimitry Andric# Explanation of different SRCS variants below:
38a1aaa66bSDimitry Andric# SRCS_MIN:	always required, even for bootstrap
39a1aaa66bSDimitry Andric# SRCS_MIW:	required for world stage (after cross-tools)
40a1aaa66bSDimitry Andric# SRCS_EXT:	required for MK_CLANG_EXTRAS
41a1aaa66bSDimitry Andric# SRCS_EXL:	required for MK_CLANG_EXTRAS and MK_LLD
42a1aaa66bSDimitry Andric# SRCS_FUL:	required for MK_CLANG_FULL
43a1aaa66bSDimitry Andric# SRCS_LLD:	required for MK_LLD
44a1aaa66bSDimitry Andric# SRCS_XDB:	required for MK_CLANG_EXTRAS and MK_LLDB
45a1aaa66bSDimitry Andric# SRCS_XDL:	required for MK_CLANG_EXTRAS, MK_LLD and MK_LLDB
46a1aaa66bSDimitry Andric# SRCS_XDW:	required for MK_CLANG_EXTRAS and MK_LLDB in world stage
47a1aaa66bSDimitry Andric
48986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AliasAnalysis.cpp
49986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AliasAnalysisEvaluator.cpp
50986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AliasAnalysisSummary.cpp
51986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AliasSetTracker.cpp
52986e05bcSDimitry AndricSRCS_EXT+=	Analysis/Analysis.cpp
5348aaf27bSDimitry AndricSRCS_MIN+=	Analysis/AssumeBundleQueries.cpp
54986e05bcSDimitry AndricSRCS_MIN+=	Analysis/AssumptionCache.cpp
55986e05bcSDimitry AndricSRCS_MIN+=	Analysis/BasicAliasAnalysis.cpp
56986e05bcSDimitry AndricSRCS_MIN+=	Analysis/BlockFrequencyInfo.cpp
57986e05bcSDimitry AndricSRCS_MIN+=	Analysis/BlockFrequencyInfoImpl.cpp
58986e05bcSDimitry AndricSRCS_MIN+=	Analysis/BranchProbabilityInfo.cpp
59986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CFG.cpp
60986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CFGPrinter.cpp
61986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CFLAndersAliasAnalysis.cpp
62986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CFLSteensAliasAnalysis.cpp
63986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CGSCCPassManager.cpp
64986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CallGraph.cpp
65986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CallGraphSCCPass.cpp
66986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CallPrinter.cpp
67986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CaptureTracking.cpp
6836cb3905SDimitry AndricSRCS_MIN+=	Analysis/CmpInstAnalysis.cpp
69986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CodeMetrics.cpp
70986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ConstantFolding.cpp
71e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/ConstraintSystem.cpp
72986e05bcSDimitry AndricSRCS_MIN+=	Analysis/CostModel.cpp
7304eeddc0SDimitry AndricSRCS_MIN+=	Analysis/CycleAnalysis.cpp
749771cac2SDimitry AndricSRCS_MIN+=	Analysis/DDG.cpp
75e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/DDGPrinter.cpp
76986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Delinearization.cpp
77986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DemandedBits.cpp
78986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DependenceAnalysis.cpp
799771cac2SDimitry AndricSRCS_MIN+=	Analysis/DependenceGraphBuilder.cpp
80986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DivergenceAnalysis.cpp
81986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DomPrinter.cpp
824014a71fSDimitry AndricSRCS_MIN+=	Analysis/DomTreeUpdater.cpp
83986e05bcSDimitry AndricSRCS_MIN+=	Analysis/DominanceFrontier.cpp
84986e05bcSDimitry AndricSRCS_MIN+=	Analysis/EHPersonalities.cpp
85e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/FunctionPropertiesAnalysis.cpp
86986e05bcSDimitry AndricSRCS_MIN+=	Analysis/GlobalsModRef.cpp
875e86819cSDimitry AndricSRCS_MIN+=	Analysis/GuardUtils.cpp
8848aaf27bSDimitry AndricSRCS_MIN+=	Analysis/HeatUtils.cpp
89e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/IRSimilarityIdentifier.cpp
905e86819cSDimitry AndricSRCS_MIN+=	Analysis/IVDescriptors.cpp
91986e05bcSDimitry AndricSRCS_MIN+=	Analysis/IVUsers.cpp
92e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/ImportedFunctionsInliningStatistics.cpp
93986e05bcSDimitry AndricSRCS_MIN+=	Analysis/IndirectCallPromotionAnalysis.cpp
9448aaf27bSDimitry AndricSRCS_MIN+=	Analysis/InlineAdvisor.cpp
95986e05bcSDimitry AndricSRCS_MIN+=	Analysis/InlineCost.cpp
9648aaf27bSDimitry AndricSRCS_MIN+=	Analysis/InlineSizeEstimatorAnalysis.cpp
97986e05bcSDimitry AndricSRCS_MIN+=	Analysis/InstCount.cpp
985e86819cSDimitry AndricSRCS_MIN+=	Analysis/InstructionPrecedenceTracking.cpp
99986e05bcSDimitry AndricSRCS_MIN+=	Analysis/InstructionSimplify.cpp
100986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Interval.cpp
101986e05bcSDimitry AndricSRCS_MIN+=	Analysis/IntervalPartition.cpp
102986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LazyBlockFrequencyInfo.cpp
10309bfd043SDimitry AndricSRCS_MIN+=	Analysis/LazyBranchProbabilityInfo.cpp
104986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LazyCallGraph.cpp
105986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LazyValueInfo.cpp
1065e86819cSDimitry AndricSRCS_MIN+=	Analysis/LegacyDivergenceAnalysis.cpp
107986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Lint.cpp
108986e05bcSDimitry AndricSRCS_MIN+=	Analysis/Loads.cpp
109986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopAccessAnalysis.cpp
110f1a29dd3SDimitry AndricSRCS_MIN+=	Analysis/LoopAnalysisManager.cpp
1119771cac2SDimitry AndricSRCS_MIN+=	Analysis/LoopCacheAnalysis.cpp
112986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopInfo.cpp
11348aaf27bSDimitry AndricSRCS_MIN+=	Analysis/LoopNestAnalysis.cpp
114986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopPass.cpp
115986e05bcSDimitry AndricSRCS_MIN+=	Analysis/LoopUnrollAnalyzer.cpp
116986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemDepPrinter.cpp
117986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemDerefPrinter.cpp
118986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemoryBuiltins.cpp
119986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemoryDependenceAnalysis.cpp
120986e05bcSDimitry AndricSRCS_MIN+=	Analysis/MemoryLocation.cpp
1215897d2f0SDimitry AndricSRCS_MIN+=	Analysis/MemorySSA.cpp
1225897d2f0SDimitry AndricSRCS_MIN+=	Analysis/MemorySSAUpdater.cpp
123986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ModuleDebugInfoPrinter.cpp
124986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ModuleSummaryAnalysis.cpp
1259f6e9a9fSDimitry AndricSRCS_MIN+=	Analysis/MustExecute.cpp
126986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ObjCARCAliasAnalysis.cpp
127986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ObjCARCAnalysisUtils.cpp
128986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ObjCARCInstKind.cpp
12936cb3905SDimitry AndricSRCS_MIN+=	Analysis/OptimizationRemarkEmitter.cpp
130fe6060f1SDimitry AndricSRCS_MIN+=	Analysis/OverflowInstAnalysis.cpp
131986e05bcSDimitry AndricSRCS_MIN+=	Analysis/PHITransAddr.cpp
1329f6e9a9fSDimitry AndricSRCS_MIN+=	Analysis/PhiValues.cpp
133986e05bcSDimitry AndricSRCS_MIN+=	Analysis/PostDominators.cpp
134986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ProfileSummaryInfo.cpp
135986e05bcSDimitry AndricSRCS_MIN+=	Analysis/PtrUseVisitor.cpp
136986e05bcSDimitry AndricSRCS_MIN+=	Analysis/RegionInfo.cpp
137986e05bcSDimitry AndricSRCS_MIN+=	Analysis/RegionPass.cpp
138986e05bcSDimitry AndricSRCS_MIN+=	Analysis/RegionPrinter.cpp
139e8d8bef9SDimitry AndricSRCS_MIN+=	Analysis/ReplayInlineAdvisor.cpp
140986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolution.cpp
14148aaf27bSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolution.cpp
142986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolutionAliasAnalysis.cpp
14348aaf27bSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolutionDivision.cpp
144986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScalarEvolutionNormalization.cpp
145986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ScopedNoAliasAA.cpp
14648aaf27bSDimitry AndricSRCS_MIN+=	Analysis/StackLifetime.cpp
1475e86819cSDimitry AndricSRCS_MIN+=	Analysis/StackSafetyAnalysis.cpp
1485e86819cSDimitry AndricSRCS_MIN+=	Analysis/SyncDependenceAnalysis.cpp
1499f6e9a9fSDimitry AndricSRCS_MIN+=	Analysis/SyntheticCountsUtils.cpp
150986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TargetLibraryInfo.cpp
151986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TargetTransformInfo.cpp
15281ad6265SDimitry AndricSRCS_MIN+=	Analysis/TensorSpec.cpp
153986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TypeBasedAliasAnalysis.cpp
154986e05bcSDimitry AndricSRCS_MIN+=	Analysis/TypeMetadataUtils.cpp
1559771cac2SDimitry AndricSRCS_MIN+=	Analysis/VFABIDemangling.cpp
15636cb3905SDimitry AndricSRCS_MIN+=	Analysis/ValueLattice.cpp
15736cb3905SDimitry AndricSRCS_MIN+=	Analysis/ValueLatticeUtils.cpp
158986e05bcSDimitry AndricSRCS_MIN+=	Analysis/ValueTracking.cpp
159986e05bcSDimitry AndricSRCS_MIN+=	Analysis/VectorUtils.cpp
160986e05bcSDimitry AndricSRCS_MIN+=	AsmParser/LLLexer.cpp
161986e05bcSDimitry AndricSRCS_MIN+=	AsmParser/LLParser.cpp
162986e05bcSDimitry AndricSRCS_MIN+=	AsmParser/Parser.cpp
1631b85b68dSCameron KatriSRCS_MIN+=	BinaryFormat/AMDGPUMetadataVerifier.cpp
164d781ede6SDimitry AndricSRCS_MIN+=	BinaryFormat/COFF.cpp
16544389c28SDimitry AndricSRCS_MIN+=	BinaryFormat/Dwarf.cpp
16644389c28SDimitry AndricSRCS_MIN+=	BinaryFormat/Magic.cpp
16748aaf27bSDimitry AndricSRCS_MIN+=	BinaryFormat/MachO.cpp
1681b85b68dSCameron KatriSRCS_MIN+=	BinaryFormat/MsgPackDocument.cpp
1691b85b68dSCameron KatriSRCS_MIN+=	BinaryFormat/MsgPackDocumentYAML.cpp
1701b85b68dSCameron KatriSRCS_MIN+=	BinaryFormat/MsgPackReader.cpp
17179239b5bSDimitry AndricSRCS_MIN+=	BinaryFormat/MsgPackWriter.cpp
1729f6e9a9fSDimitry AndricSRCS_MIN+=	BinaryFormat/Wasm.cpp
1739771cac2SDimitry AndricSRCS_MIN+=	BinaryFormat/XCOFF.cpp
17409bfd043SDimitry AndricSRCS_MIN+=	Bitcode/Reader/BitReader.cpp
17524b8043eSDimitry AndricSRCS_EXT+=	Bitcode/Reader/BitcodeAnalyzer.cpp
176986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Reader/BitcodeReader.cpp
17709bfd043SDimitry AndricSRCS_MIN+=	Bitcode/Reader/MetadataLoader.cpp
17809bfd043SDimitry AndricSRCS_MIN+=	Bitcode/Reader/ValueList.cpp
179986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Writer/BitcodeWriter.cpp
180986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Writer/BitcodeWriterPass.cpp
181986e05bcSDimitry AndricSRCS_MIN+=	Bitcode/Writer/ValueEnumerator.cpp
1824014a71fSDimitry AndricSRCS_MIN+=	Bitstream/Reader/BitstreamReader.cpp
183986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AggressiveAntiDepBreaker.cpp
184986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AllocationOrder.cpp
185986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/Analysis.cpp
186e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AIXException.cpp
187986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/ARMException.cpp
1889f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AccelTable.cpp
189986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AddressPool.cpp
190986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AsmPrinter.cpp
191986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
192986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
193986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/CodeViewDebug.cpp
194986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DIE.cpp
195986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DIEHash.cpp
1965e86819cSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp
197986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DebugHandlerBase.cpp
198986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DebugLocStream.cpp
199986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfCFIException.cpp
200986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfCompileUnit.cpp
201986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfDebug.cpp
202986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfExpression.cpp
203986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfFile.cpp
204986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfStringPool.cpp
205986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/DwarfUnit.cpp
206986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/EHStreamer.cpp
20724b8043eSDimitry AndricSRCS_EXT+=	CodeGen/AsmPrinter/ErlangGCPrinter.cpp
208986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/OcamlGCPrinter.cpp
209e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/PseudoProbePrinter.cpp
2105e86819cSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/WasmException.cpp
2119f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/WinCFGuard.cpp
212986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AsmPrinter/WinException.cpp
213986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/AtomicExpandPass.cpp
214e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/BasicBlockSections.cpp
21581ad6265SDimitry AndricSRCS_MIN+=	CodeGen/BasicBlockSectionsProfileReader.cpp
216986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/BasicTargetTransformInfo.cpp
217986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/BranchFolding.cpp
21809bfd043SDimitry AndricSRCS_MIN+=	CodeGen/BranchRelaxation.cpp
2199f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/BreakFalseDeps.cpp
2209771cac2SDimitry AndricSRCS_MIN+=	CodeGen/CFGuardLongjmp.cpp
22181ad6265SDimitry AndricSRCS_MIN+=	CodeGen/CFIFixup.cpp
2229f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/CFIInstrInserter.cpp
223986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CalcSpillWeights.cpp
224986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CallingConvLower.cpp
225986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CodeGen.cpp
2265e801ac6SDimitry AndricSRCS_MIN+=	CodeGen/CodeGenCommonISel.cpp
227986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CodeGenPrepare.cpp
22848aaf27bSDimitry AndricSRCS_EXL+=	CodeGen/CommandFlags.cpp
229986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/CriticalAntiDepBreaker.cpp
230986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DFAPacketizer.cpp
231986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DeadMachineInstructionElim.cpp
232986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DetectDeadLanes.cpp
233986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/DwarfEHPrepare.cpp
234fe6060f1SDimitry AndricSRCS_MIN+=	CodeGen/EHContGuardCatchret.cpp
235986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/EarlyIfConversion.cpp
236986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/EdgeBundles.cpp
2379f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/ExecutionDomainFix.cpp
23836cb3905SDimitry AndricSRCS_MIN+=	CodeGen/ExpandMemCmp.cpp
239986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ExpandPostRAPseudos.cpp
2405517e702SDimitry AndricSRCS_MIN+=	CodeGen/ExpandReductions.cpp
241fe6060f1SDimitry AndricSRCS_MIN+=	CodeGen/ExpandVectorPredication.cpp
2425897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/FEntryInserter.cpp
243986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/FaultMaps.cpp
2444014a71fSDimitry AndricSRCS_MIN+=	CodeGen/FinalizeISel.cpp
24548aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/FixupStatepointCallerSaved.cpp
246986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/FuncletLayout.cpp
247986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GCMetadata.cpp
24809bfd043SDimitry AndricSRCS_MIN+=	CodeGen/GCMetadataPrinter.cpp
249986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GCRootLowering.cpp
2505e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CSEInfo.cpp
2515e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CSEMIRBuilder.cpp
2525e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Combiner.cpp
2535e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CombinerHelper.cpp
2543d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/CallLowering.cpp
2555e86819cSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/GISelChangeObserver.cpp
2569771cac2SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/GISelKnownBits.cpp
257986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/GlobalISel.cpp
2583d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/IRTranslator.cpp
25948aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/InlineAsmLowering.cpp
2603d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/InstructionSelect.cpp
2613d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/InstructionSelector.cpp
262fe6060f1SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegacyLegalizerInfo.cpp
2639f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalityPredicates.cpp
2649f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalizeMutations.cpp
2653d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Legalizer.cpp
2663d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalizerHelper.cpp
2673d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LegalizerInfo.cpp
2685e801ac6SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LoadStoreOpt.cpp
269302affcbSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Localizer.cpp
27048aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/LostDebugLocObserver.cpp
2713d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/MachineIRBuilder.cpp
2723d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/RegBankSelect.cpp
2733d54deb3SDimitry AndricSRCS_MIN+=	CodeGen/GlobalISel/Utils.cpp
274986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/GlobalMerge.cpp
2754014a71fSDimitry AndricSRCS_MIN+=	CodeGen/HardwareLoops.cpp
276986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/IfConversion.cpp
277986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ImplicitNullChecks.cpp
27807577dfeSDimitry AndricSRCS_MIN+=	CodeGen/IndirectBrExpandPass.cpp
279986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/InlineSpiller.cpp
280986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/InterferenceCache.cpp
281986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/InterleavedAccessPass.cpp
2825e86819cSDimitry AndricSRCS_MIN+=	CodeGen/InterleavedLoadCombinePass.cpp
283986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/IntrinsicLowering.cpp
28481ad6265SDimitry AndricSRCS_MIN+=	CodeGen/JMCInstrumenter.cpp
285986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LLVMTargetMachine.cpp
286986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LatencyPriorityQueue.cpp
2875897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/LazyMachineBlockFrequencyInfo.cpp
288986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LexicalScopes.cpp
289e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/LiveDebugValues/InstrRefBasedImpl.cpp
290e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/LiveDebugValues/LiveDebugValues.cpp
291e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/LiveDebugValues/VarLocBasedImpl.cpp
292986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveDebugVariables.cpp
293986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveInterval.cpp
29448aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/LiveIntervalCalc.cpp
295986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveIntervalUnion.cpp
29644389c28SDimitry AndricSRCS_MIN+=	CodeGen/LiveIntervals.cpp
297986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LivePhysRegs.cpp
298986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveRangeCalc.cpp
299986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveRangeEdit.cpp
300f9448bf3SDimitry AndricSRCS_MIN+=	CodeGen/LiveRangeShrink.cpp
301986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveRegMatrix.cpp
3025897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/LiveRegUnits.cpp
3032757ff7eSDimitry AndricSRCS_MIN+=	CodeGen/LiveStacks.cpp
304986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LiveVariables.cpp
305986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LocalStackSlotAllocation.cpp
3069f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/LoopTraversal.cpp
30709bfd043SDimitry AndricSRCS_MIN+=	CodeGen/LowLevelType.cpp
308986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/LowerEmuTLS.cpp
30948aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/MBFIWrapper.cpp
31036cb3905SDimitry AndricSRCS_MIN+=	CodeGen/MIRCanonicalizerPass.cpp
311fe6060f1SDimitry AndricSRCS_MIN+=	CodeGen/MIRFSDiscriminator.cpp
3129771cac2SDimitry AndricSRCS_MIN+=	CodeGen/MIRNamerPass.cpp
313986e05bcSDimitry AndricSRCS_EXT+=	CodeGen/MIRParser/MILexer.cpp
314986e05bcSDimitry AndricSRCS_EXT+=	CodeGen/MIRParser/MIParser.cpp
315986e05bcSDimitry AndricSRCS_EXT+=	CodeGen/MIRParser/MIRParser.cpp
316986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MIRPrinter.cpp
317986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MIRPrintingPass.cpp
3185e801ac6SDimitry AndricSRCS_MIN+=	CodeGen/MIRSampleProfile.cpp
3199771cac2SDimitry AndricSRCS_MIN+=	CodeGen/MIRVRegNamerUtils.cpp
32004eeddc0SDimitry AndricSRCS_MIN+=	CodeGen/MLRegallocEvictAdvisor.cpp
321986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBasicBlock.cpp
322986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBlockFrequencyInfo.cpp
323986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBlockPlacement.cpp
324986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineBranchProbabilityInfo.cpp
325986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineCSE.cpp
326e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/MachineCheckDebugify.cpp
327986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineCombiner.cpp
328986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineCopyPropagation.cpp
32904eeddc0SDimitry AndricSRCS_MIN+=	CodeGen/MachineCycleAnalysis.cpp
33048aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/MachineDebugify.cpp
331986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineDominanceFrontier.cpp
332986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineDominators.cpp
333f37b6182SDimitry AndricSRCS_MIN+=	CodeGen/MachineFrameInfo.cpp
334986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineFunction.cpp
335986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineFunctionPass.cpp
336986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineFunctionPrinterPass.cpp
337e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/MachineFunctionSplitter.cpp
338986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineInstr.cpp
339986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineInstrBundle.cpp
340986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineLICM.cpp
341986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineLoopInfo.cpp
3429771cac2SDimitry AndricSRCS_MIN+=	CodeGen/MachineLoopUtils.cpp
343986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineModuleInfo.cpp
344986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineModuleInfoImpls.cpp
345fe6060f1SDimitry AndricSRCS_MIN+=	CodeGen/MachineModuleSlotTracker.cpp
34636cb3905SDimitry AndricSRCS_MIN+=	CodeGen/MachineOperand.cpp
3475897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/MachineOptimizationRemarkEmitter.cpp
3485897d2f0SDimitry AndricSRCS_MIN+=	CodeGen/MachineOutliner.cpp
34909bfd043SDimitry AndricSRCS_MIN+=	CodeGen/MachinePipeliner.cpp
350986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachinePostDominators.cpp
351986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineRegionInfo.cpp
352986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineRegisterInfo.cpp
35304eeddc0SDimitry AndricSRCS_MIN+=	CodeGen/MachineSSAContext.cpp
354986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineSSAUpdater.cpp
355986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineScheduler.cpp
356986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineSink.cpp
3579771cac2SDimitry AndricSRCS_MIN+=	CodeGen/MachineSizeOpts.cpp
358e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/MachineStableHash.cpp
35948aaf27bSDimitry AndricSRCS_MIN+=	CodeGen/MachineStripDebug.cpp
360986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineTraceMetrics.cpp
361986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/MachineVerifier.cpp
362edd7eaddSDimitry AndricSRCS_MIN+=	CodeGen/MacroFusion.cpp
3639771cac2SDimitry AndricSRCS_MIN+=	CodeGen/ModuloSchedule.cpp
364e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/MultiHazardRecognizer.cpp
365fcaf7f86SDimitry AndricSRCS_EXT+=	CodeGen/NonRelocatableStringpool.cpp
366986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/OptimizePHIs.cpp
367986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PHIElimination.cpp
368986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PHIEliminationUtils.cpp
369986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ParallelCG.cpp
370986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PatchableFunction.cpp
371986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PeepholeOptimizer.cpp
372986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PostRAHazardRecognizer.cpp
373986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PostRASchedulerList.cpp
374986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PreISelIntrinsicLowering.cpp
375986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ProcessImplicitDefs.cpp
376986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PrologEpilogInserter.cpp
377e8d8bef9SDimitry AndricSRCS_MIN+=	CodeGen/PseudoProbeInserter.cpp
378986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/PseudoSourceValue.cpp
3799f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/ReachingDefAnalysis.cpp
380fe6060f1SDimitry AndricSRCS_MIN+=	CodeGen/ReplaceWithVeclib.cpp
3810946e70aSDimitry AndricSRCS_MIN+=	CodeGen/RDFGraph.cpp
3820946e70aSDimitry AndricSRCS_MIN+=	CodeGen/RDFLiveness.cpp
3830946e70aSDimitry AndricSRCS_MIN+=	CodeGen/RDFRegisters.cpp
384986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocBase.cpp
385986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocBasic.cpp
38604eeddc0SDimitry AndricSRCS_MIN+=	CodeGen/RegAllocEvictionAdvisor.cpp
387986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocFast.cpp
388986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocGreedy.cpp
389986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegAllocPBQP.cpp
390986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegUsageInfoCollector.cpp
391986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegUsageInfoPropagate.cpp
39281ad6265SDimitry AndricSRCS_MIN+=	CodeGen/RegisterBank.cpp
39381ad6265SDimitry AndricSRCS_MIN+=	CodeGen/RegisterBankInfo.cpp
394986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterClassInfo.cpp
395986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterCoalescer.cpp
396986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterPressure.cpp
397986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterScavenging.cpp
398986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RegisterUsageInfo.cpp
399fe6060f1SDimitry AndricSRCS_MIN+=	CodeGen/RemoveRedundantDebugValues.cpp
400986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/RenameIndependentSubregs.cpp
40109bfd043SDimitry AndricSRCS_MIN+=	CodeGen/ResetMachineFunctionPass.cpp
402986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SafeStack.cpp
403986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SafeStackLayout.cpp
404986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScheduleDAG.cpp
405986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScheduleDAGInstrs.cpp
406986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScheduleDAGPrinter.cpp
407986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ScoreboardHazardRecognizer.cpp
40881ad6265SDimitry AndricSRCS_MIN+=	CodeGen/SelectOptimize.cpp
409986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/DAGCombiner.cpp
410986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/FastISel.cpp
411986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
412986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/InstrEmitter.cpp
413986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeDAG.cpp
414986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
415986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
416986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeTypes.cpp
417986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
418986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeVectorOps.cpp
419986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
420986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ResourcePriorityQueue.cpp
421986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGFast.cpp
422986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
423986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
424986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
425986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAG.cpp
42644389c28SDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
427986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
428986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGDumper.cpp
429986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGISel.cpp
430986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
431986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp
432986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/StatepointLowering.cpp
433986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SelectionDAG/TargetLowering.cpp
434986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ShadowStackGCLowering.cpp
435986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/ShrinkWrap.cpp
436986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SjLjEHPrepare.cpp
437986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SlotIndexes.cpp
438986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SpillPlacement.cpp
439986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/SplitKit.cpp
440986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackColoring.cpp
441986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackMapLivenessAnalysis.cpp
442986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackMaps.cpp
443986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackProtector.cpp
444986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/StackSlotColoring.cpp
4454014a71fSDimitry AndricSRCS_MIN+=	CodeGen/SwiftErrorValueTracking.cpp
4464014a71fSDimitry AndricSRCS_MIN+=	CodeGen/SwitchLoweringUtils.cpp
447986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TailDuplication.cpp
448986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TailDuplicator.cpp
449986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetFrameLoweringImpl.cpp
450986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetInstrInfo.cpp
451986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetLoweringBase.cpp
452986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetLoweringObjectFileImpl.cpp
453986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetOptionsImpl.cpp
454986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetPassConfig.cpp
455986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetRegisterInfo.cpp
456986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TargetSchedule.cpp
45709bfd043SDimitry AndricSRCS_MIN+=	CodeGen/TargetSubtargetInfo.cpp
458986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/TwoAddressInstructionPass.cpp
4599771cac2SDimitry AndricSRCS_MIN+=	CodeGen/TypePromotion.cpp
460986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/UnreachableBlockElim.cpp
4619f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/ValueTypes.cpp
462986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/VirtRegMap.cpp
4639f6e9a9fSDimitry AndricSRCS_MIN+=	CodeGen/WasmEHPrepare.cpp
464986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/WinEHPrepare.cpp
465986e05bcSDimitry AndricSRCS_MIN+=	CodeGen/XRayInstrumentation.cpp
466fcaf7f86SDimitry AndricSRCS_EXT+=	DWARFLinker/DWARFLinker.cpp
467fcaf7f86SDimitry AndricSRCS_EXT+=	DWARFLinker/DWARFLinkerCompileUnit.cpp
468fcaf7f86SDimitry AndricSRCS_EXT+=	DWARFLinker/DWARFLinkerDeclContext.cpp
469fcaf7f86SDimitry AndricSRCS_EXT+=	DWARFLinker/DWARFStreamer.cpp
470fe6060f1SDimitry AndricSRCS_EXT+=	DWP/DWP.cpp
471fe6060f1SDimitry AndricSRCS_EXT+=	DWP/DWPError.cpp
4723cd201a1SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/AppendingTypeTableBuilder.cpp
47309bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CVSymbolVisitor.cpp
474986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CVTypeVisitor.cpp
475986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CodeViewError.cpp
47609bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/CodeViewRecordIO.cpp
47736cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/ContinuationRecordBuilder.cpp
4781b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/DebugChecksumsSubsection.cpp
479db17bf38SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugCrossExSubsection.cpp
480db17bf38SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugCrossImpSubsection.cpp
4811b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/DebugFrameDataSubsection.cpp
4821b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp
4831b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/DebugLinesSubsection.cpp
4841b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/DebugStringTableSubsection.cpp
4855e801ac6SDimitry AndricSRCS_MIW+=	DebugInfo/CodeView/DebugSubsection.cpp
48689cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugSubsectionRecord.cpp
48789cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugSubsectionVisitor.cpp
488db17bf38SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugSymbolRVASubsection.cpp
48989cb50c9SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/DebugSymbolsSubsection.cpp
4905e86819cSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/EnumTables.cpp
4915897d2f0SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/Formatters.cpp
49236cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/GlobalTypeTableBuilder.cpp
4931b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/LazyRandomTypeCollection.cpp
494986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/Line.cpp
4951b85b68dSCameron KatriSRCS_MIN+=	DebugInfo/CodeView/MergingTypeTableBuilder.cpp
49636cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/RecordName.cpp
497986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/RecordSerialization.cpp
49836cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SimpleTypeSerializer.cpp
49924d58133SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/StringsAndChecksums.cpp
500986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SymbolDumper.cpp
501*61cfbce3SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SymbolRecordHelpers.cpp
50209bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/SymbolRecordMapping.cpp
503050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/SymbolSerializer.cpp
504f1a29dd3SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeDumpVisitor.cpp
50536cb3905SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeHashing.cpp
506d8866befSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeIndex.cpp
50706230659SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeIndexDiscovery.cpp
508efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/CodeView/TypeRecordHelpers.cpp
50909bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeRecordMapping.cpp
510986e05bcSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeStreamMerger.cpp
511d8866befSDimitry AndricSRCS_MIN+=	DebugInfo/CodeView/TypeTableCollection.cpp
512caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
513caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFAcceleratorTable.cpp
5140db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFAddressRange.cpp
515caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFCompileUnit.cpp
516caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFContext.cpp
5170db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDataExtractor.cpp
518caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugAbbrev.cpp
51999be4f2aSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDebugAddr.cpp
5200db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDebugArangeSet.cpp
521caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugAranges.cpp
522caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugFrame.cpp
5230db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDebugInfoEntry.cpp
524caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugLine.cpp
525caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugLoc.cpp
5260db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDebugMacro.cpp
527caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugPubTable.cpp
528caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDebugRangeList.cpp
52967b158f6SDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFDebugRnglists.cpp
530caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFDie.cpp
531e89f883aSDimitry AndricSRCS_MIN+=	DebugInfo/DWARF/DWARFExpression.cpp
532caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFFormValue.cpp
533caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFGdbIndex.cpp
53467b158f6SDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFListTable.cpp
53581ad6265SDimitry AndricSRCS_MIW+=	DebugInfo/DWARF/DWARFTypePrinter.cpp
536caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFTypeUnit.cpp
537caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFUnit.cpp
538caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFUnitIndex.cpp
539caf90252SBryan DrewerySRCS_MIW+=	DebugInfo/DWARF/DWARFVerifier.cpp
54009bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/MSF/MSFBuilder.cpp
54109bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/MSF/MSFCommon.cpp
54224b8043eSDimitry AndricSRCS_EXT+=	DebugInfo/MSF/MSFError.cpp
54309bfd043SDimitry AndricSRCS_MIN+=	DebugInfo/MSF/MappedBlockStream.cpp
544986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/GenericError.cpp
54509bfd043SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/IPDBSourceFile.cpp
546f37b6182SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiModuleDescriptor.cpp
547f37b6182SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp
5480f5676f4SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiModuleList.cpp
549050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiStream.cpp
550050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/DbiStreamBuilder.cpp
551050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/EnumTables.cpp
55281ad6265SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/FormatUtil.cpp
5533cd201a1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/GSIStreamBuilder.cpp
554050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/GlobalsStream.cpp
555050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/Hash.cpp
556050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/HashTable.cpp
557050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/InfoStream.cpp
558050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/InfoStreamBuilder.cpp
55924b8043eSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/InjectedSourceStream.cpp
56081ad6265SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/InputFile.cpp
56181ad6265SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/LinePrinter.cpp
562f37b6182SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/ModuleDebugStream.cpp
563050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NamedStreamMap.cpp
564050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeCompilandSymbol.cpp
565efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumGlobals.cpp
56624b8043eSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumInjectedSources.cpp
56748aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumLineNumbers.cpp
568050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumModules.cpp
569e8d8bef9SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumSymbols.cpp
57044389c28SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeEnumTypes.cpp
571050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeExeSymbol.cpp
57248aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeFunctionSymbol.cpp
573e8d8bef9SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeInlineSiteSymbol.cpp
57448aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeLineNumber.cpp
57548aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativePublicSymbol.cpp
576050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeRawSymbol.cpp
577050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeSession.cpp
57848aaf27bSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeSourceFile.cpp
579efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeSymbolEnumerator.cpp
580efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeArray.cpp
581efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeBuiltin.cpp
582efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeEnum.cpp
583efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp
584efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypePointer.cpp
585efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeTypedef.cpp
586efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeUDT.cpp
587efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/NativeTypeVTShape.cpp
588050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBFile.cpp
589050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBFileBuilder.cpp
590b174acefSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBStringTable.cpp
591b174acefSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PDBStringTableBuilder.cpp
5923d54deb3SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/PublicsStream.cpp
5933d54deb3SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/RawError.cpp
594efa75597SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/SymbolCache.cpp
595050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/SymbolStream.cpp
596050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/TpiHashing.cpp
597050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/TpiStream.cpp
598050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/Native/TpiStreamBuilder.cpp
599986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDB.cpp
600986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBContext.cpp
601986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBExtras.cpp
602986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBInterfaceAnchors.cpp
603986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymDumper.cpp
604986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbol.cpp
605986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolAnnotation.cpp
606986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolBlock.cpp
607986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCompiland.cpp
608986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
609986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCompilandEnv.cpp
610986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolCustom.cpp
611986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolData.cpp
612986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolExe.cpp
613986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolFunc.cpp
614986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
615986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
616986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolLabel.cpp
617986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
618986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolThunk.cpp
619986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeArray.cpp
620986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
621986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp
622986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeCustom.cpp
623986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeDimension.cpp
624986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeEnum.cpp
625986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeFriend.cpp
626986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
627986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
628986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeManaged.cpp
629986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypePointer.cpp
630986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
631986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeUDT.cpp
632986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeVTable.cpp
633986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp
634986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolUnknown.cpp
635986e05bcSDimitry AndricSRCS_EXT+=	DebugInfo/PDB/PDBSymbolUsingNamespace.cpp
636050e2df1SDimitry AndricSRCS_EXT+=	DebugInfo/PDB/UDTLayout.cpp
637d56accc7SDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/DIFetcher.cpp
6380db9a49eSDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/DIPrinter.cpp
63981ad6265SDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/Markup.cpp
64081ad6265SDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/MarkupFilter.cpp
64109bfd043SDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/SymbolizableObjectFile.cpp
64209bfd043SDimitry AndricSRCS_MIW+=	DebugInfo/Symbolize/Symbolize.cpp
643d56accc7SDimitry AndricSRCS_MIW+=	Debuginfod/DIFetcher.cpp
64404eeddc0SDimitry AndricSRCS_MIW+=	Debuginfod/Debuginfod.cpp
64504eeddc0SDimitry AndricSRCS_MIW+=	Debuginfod/HTTPClient.cpp
6465e801ac6SDimitry AndricSRCS_MIN+=	Demangle/DLangDemangle.cpp
6475e801ac6SDimitry AndricSRCS_MIN+=	Demangle/Demangle.cpp
64809bfd043SDimitry AndricSRCS_MIN+=	Demangle/ItaniumDemangle.cpp
6495e801ac6SDimitry AndricSRCS_MIN+=	Demangle/MicrosoftDemangle.cpp
6505e801ac6SDimitry AndricSRCS_MIN+=	Demangle/MicrosoftDemangleNodes.cpp
6515e801ac6SDimitry AndricSRCS_MIN+=	Demangle/RustDemangle.cpp
652986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/ExecutionEngine.cpp
653986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/ExecutionEngineBindings.cpp
654986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/GDBRegistrationListener.cpp
655986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/Interpreter/Execution.cpp
656986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/Interpreter/ExternalFunctions.cpp
657986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/Interpreter/Interpreter.cpp
658753f127fSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/COFF.cpp
659753f127fSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/COFF_x86_64.cpp
660753f127fSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/COFFLinkGraphBuilder.cpp
66181ad6265SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/DWARFRecordSectionSplitter.cpp
662b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/EHFrameSupport.cpp
66348aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF.cpp
6645e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF_aarch64.cpp
665fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF_riscv.cpp
66648aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELF_x86_64.cpp
667fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/ELFLinkGraphBuilder.cpp
668b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/JITLink.cpp
669b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/JITLinkGeneric.cpp
670b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/JITLinkMemoryManager.cpp
671b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/MachO.cpp
672b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp
673b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/MachO_arm64.cpp
674b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/MachO_x86_64.cpp
6755e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/MemoryFlags.cpp
6765e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/aarch64.cpp
677fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/riscv.cpp
678fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/JITLink/x86_64.cpp
679986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/MCJIT/MCJIT.cpp
68067b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/CompileOnDemandLayer.cpp
68124b8043eSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/CompileUtils.cpp
68267b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Core.cpp
683fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/DebugObjectManagerPlugin.cpp
68448aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/DebugUtils.cpp
6855e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ELFNixPlatform.cpp
686fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/EPCDebugObjectRegistrar.cpp
687fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/EPCEHFrameRegistrar.cpp
6885e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/EPCGenericDylibManager.cpp
6895e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/EPCGenericJITLinkMemoryManager.cpp
6905e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/EPCGenericRTDyldMemoryManager.cpp
691986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ExecutionUtils.cpp
692fe6060f1SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ExecutorProcessControl.cpp
69367b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/IRCompileLayer.cpp
69467b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/IRTransformLayer.cpp
695986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/IndirectionUtils.cpp
696efa75597SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/JITTargetMachineBuilder.cpp
69767b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/LLJIT.cpp
69867b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Layer.cpp
699efa75597SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/LazyReexports.cpp
70081ad6265SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/LookupAndRecordAddrs.cpp
70148aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/MachOPlatform.cpp
70248aaf27bSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Mangling.cpp
70304eeddc0SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ObjectFileInterface.cpp
704b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ObjectLinkingLayer.cpp
705b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ObjectTransformLayer.cpp
706986e05bcSDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/OrcABISupport.cpp
70767b158f6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
70804eeddc0SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Shared/AllocationActions.cpp
709e8d8bef9SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Shared/OrcError.cpp
7105e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Shared/OrcRTBridge.cpp
7115e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Shared/SimpleRemoteEPCUtils.cpp
7125e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/SimpleRemoteEPC.cpp
713b1ae9102SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/Speculation.cpp
714fe6060f1SDimitry AndricSRCS_XDB+=	ExecutionEngine/Orc/TargetProcess/JITLoaderGDB.cpp
715e8d8bef9SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/TargetProcess/RegisterEHFrames.cpp
716e8d8bef9SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/TargetProcess/TargetExecutionUtils.cpp
7175e801ac6SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/TaskDispatch.cpp
718efa75597SDimitry AndricSRCS_EXT+=	ExecutionEngine/Orc/ThreadSafeModule.cpp
71909bfd043SDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/JITSymbol.cpp
720986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
721986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
722986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
723986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
724986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
725986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
72609bfd043SDimitry AndricSRCS_XDB+=	ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp
727986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/SectionMemoryManager.cpp
728986e05bcSDimitry AndricSRCS_XDB+=	ExecutionEngine/TargetSelect.cpp
729fe6060f1SDimitry AndricSRCS_MIN+=	Frontend/OpenMP/OMP.cpp
73048aaf27bSDimitry AndricSRCS_MIN+=	Frontend/OpenMP/OMPContext.cpp
7319771cac2SDimitry AndricSRCS_MIN+=	Frontend/OpenMP/OMPIRBuilder.cpp
7324014a71fSDimitry AndricSRCS_MIN+=	IR/AbstractCallSite.cpp
733986e05bcSDimitry AndricSRCS_MIN+=	IR/AsmWriter.cpp
734e8d8bef9SDimitry AndricSRCS_MIN+=	IR/Assumptions.cpp
735986e05bcSDimitry AndricSRCS_MIN+=	IR/Attributes.cpp
736986e05bcSDimitry AndricSRCS_MIN+=	IR/AutoUpgrade.cpp
737986e05bcSDimitry AndricSRCS_MIN+=	IR/BasicBlock.cpp
738fe6060f1SDimitry AndricSRCS_EXT+=	IR/BuiltinGCs.cpp
739986e05bcSDimitry AndricSRCS_MIN+=	IR/Comdat.cpp
740986e05bcSDimitry AndricSRCS_MIN+=	IR/ConstantFold.cpp
741986e05bcSDimitry AndricSRCS_MIN+=	IR/ConstantRange.cpp
742986e05bcSDimitry AndricSRCS_MIN+=	IR/Constants.cpp
743986e05bcSDimitry AndricSRCS_MIN+=	IR/Core.cpp
744986e05bcSDimitry AndricSRCS_MIN+=	IR/DIBuilder.cpp
745986e05bcSDimitry AndricSRCS_MIN+=	IR/DataLayout.cpp
746986e05bcSDimitry AndricSRCS_MIN+=	IR/DebugInfo.cpp
747986e05bcSDimitry AndricSRCS_MIN+=	IR/DebugInfoMetadata.cpp
748986e05bcSDimitry AndricSRCS_MIN+=	IR/DebugLoc.cpp
74936cb3905SDimitry AndricSRCS_MIN+=	IR/DiagnosticHandler.cpp
750986e05bcSDimitry AndricSRCS_MIN+=	IR/DiagnosticInfo.cpp
751986e05bcSDimitry AndricSRCS_MIN+=	IR/DiagnosticPrinter.cpp
752986e05bcSDimitry AndricSRCS_MIN+=	IR/Dominators.cpp
7539771cac2SDimitry AndricSRCS_MIN+=	IR/FPEnv.cpp
754986e05bcSDimitry AndricSRCS_MIN+=	IR/Function.cpp
755fe6060f1SDimitry AndricSRCS_MIN+=	IR/GCStrategy.cpp
756986e05bcSDimitry AndricSRCS_MIN+=	IR/GVMaterializer.cpp
757986e05bcSDimitry AndricSRCS_MIN+=	IR/Globals.cpp
758986e05bcSDimitry AndricSRCS_MIN+=	IR/IRBuilder.cpp
759986e05bcSDimitry AndricSRCS_MIN+=	IR/IRPrintingPasses.cpp
760986e05bcSDimitry AndricSRCS_MIN+=	IR/InlineAsm.cpp
761986e05bcSDimitry AndricSRCS_MIN+=	IR/Instruction.cpp
762986e05bcSDimitry AndricSRCS_MIN+=	IR/Instructions.cpp
763986e05bcSDimitry AndricSRCS_MIN+=	IR/IntrinsicInst.cpp
764986e05bcSDimitry AndricSRCS_MIN+=	IR/LLVMContext.cpp
765986e05bcSDimitry AndricSRCS_MIN+=	IR/LLVMContextImpl.cpp
76648aaf27bSDimitry AndricSRCS_MIN+=	IR/LLVMRemarkStreamer.cpp
767986e05bcSDimitry AndricSRCS_MIN+=	IR/LegacyPassManager.cpp
768986e05bcSDimitry AndricSRCS_MIN+=	IR/MDBuilder.cpp
769986e05bcSDimitry AndricSRCS_MIN+=	IR/Mangler.cpp
770986e05bcSDimitry AndricSRCS_MIN+=	IR/Metadata.cpp
771986e05bcSDimitry AndricSRCS_MIN+=	IR/Module.cpp
772986e05bcSDimitry AndricSRCS_MIN+=	IR/ModuleSummaryIndex.cpp
773986e05bcSDimitry AndricSRCS_MIN+=	IR/Operator.cpp
774986e05bcSDimitry AndricSRCS_MIN+=	IR/OptBisect.cpp
775986e05bcSDimitry AndricSRCS_MIN+=	IR/Pass.cpp
7765e86819cSDimitry AndricSRCS_MIN+=	IR/PassInstrumentation.cpp
777986e05bcSDimitry AndricSRCS_MIN+=	IR/PassManager.cpp
778986e05bcSDimitry AndricSRCS_MIN+=	IR/PassRegistry.cpp
7795e86819cSDimitry AndricSRCS_MIN+=	IR/PassTimingInfo.cpp
780e8d8bef9SDimitry AndricSRCS_MIN+=	IR/PrintPasses.cpp
781986e05bcSDimitry AndricSRCS_MIN+=	IR/ProfileSummary.cpp
782e8d8bef9SDimitry AndricSRCS_MIN+=	IR/PseudoProbe.cpp
783e8d8bef9SDimitry AndricSRCS_MIN+=	IR/ReplaceConstant.cpp
78404eeddc0SDimitry AndricSRCS_MIN+=	IR/SSAContext.cpp
785c4394386SDimitry AndricSRCS_MIN+=	IR/SafepointIRVerifier.cpp
786986e05bcSDimitry AndricSRCS_MIN+=	IR/Statepoint.cpp
787986e05bcSDimitry AndricSRCS_MIN+=	IR/Type.cpp
788986e05bcSDimitry AndricSRCS_MIN+=	IR/TypeFinder.cpp
789986e05bcSDimitry AndricSRCS_MIN+=	IR/Use.cpp
790986e05bcSDimitry AndricSRCS_MIN+=	IR/User.cpp
791986e05bcSDimitry AndricSRCS_MIN+=	IR/Value.cpp
792986e05bcSDimitry AndricSRCS_MIN+=	IR/ValueSymbolTable.cpp
793986e05bcSDimitry AndricSRCS_MIN+=	IR/Verifier.cpp
794986e05bcSDimitry AndricSRCS_MIN+=	IRReader/IRReader.cpp
7955897d2f0SDimitry AndricSRCS_MIN+=	LTO/LTO.cpp
79609bfd043SDimitry AndricSRCS_MIN+=	LTO/LTOBackend.cpp
79775bc38b9SEd MasteSRCS_EXL+=	LTO/LTOCodeGenerator.cpp
79875bc38b9SEd MasteSRCS_EXL+=	LTO/LTOModule.cpp
799efa75597SDimitry AndricSRCS_EXL+=	LTO/SummaryBasedOptimizations.cpp
80075bc38b9SEd MasteSRCS_EXL+=	LTO/ThinLTOCodeGenerator.cpp
80109bfd043SDimitry AndricSRCS_MIN+=	LTO/UpdateCompilerUsed.cpp
80231ba4ce8SAlex Richardson# Only needed for clangd/clang-query, uncomment once we build those.
80331ba4ce8SAlex Richardson# SRCS_XDW+=	LineEditor/LineEditor.cpp
804986e05bcSDimitry AndricSRCS_MIN+=	Linker/IRMover.cpp
805986e05bcSDimitry AndricSRCS_MIN+=	Linker/LinkModules.cpp
806986e05bcSDimitry AndricSRCS_MIN+=	MC/ConstantPools.cpp
807986e05bcSDimitry AndricSRCS_MIN+=	MC/ELFObjectWriter.cpp
808986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmBackend.cpp
809986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfo.cpp
810986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoCOFF.cpp
811986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoDarwin.cpp
812986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoELF.cpp
8134014a71fSDimitry AndricSRCS_MIN+=	MC/MCAsmInfoXCOFF.cpp
8149f6e9a9fSDimitry AndricSRCS_MIN+=	MC/MCAsmMacro.cpp
815986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAsmStreamer.cpp
816986e05bcSDimitry AndricSRCS_MIN+=	MC/MCAssembler.cpp
817986e05bcSDimitry AndricSRCS_MIN+=	MC/MCCodeEmitter.cpp
818986e05bcSDimitry AndricSRCS_MIN+=	MC/MCCodeView.cpp
819986e05bcSDimitry AndricSRCS_MIN+=	MC/MCContext.cpp
82081ad6265SDimitry AndricSRCS_MIN+=	MC/MCDXContainerStreamer.cpp
82181ad6265SDimitry AndricSRCS_MIN+=	MC/MCDXContainerWriter.cpp
82275bc38b9SEd MasteSRCS_XDL+=	MC/MCDisassembler/Disassembler.cpp
82330d4828eSDimitry AndricSRCS_XDW+=	MC/MCDisassembler/MCDisassembler.cpp
82430d4828eSDimitry AndricSRCS_XDW+=	MC/MCDisassembler/MCExternalSymbolizer.cpp
825986e05bcSDimitry AndricSRCS_MIN+=	MC/MCDisassembler/MCRelocationInfo.cpp
82630d4828eSDimitry AndricSRCS_XDW+=	MC/MCDisassembler/MCSymbolizer.cpp
827986e05bcSDimitry AndricSRCS_MIN+=	MC/MCDwarf.cpp
828986e05bcSDimitry AndricSRCS_MIN+=	MC/MCELFObjectTargetWriter.cpp
829986e05bcSDimitry AndricSRCS_MIN+=	MC/MCELFStreamer.cpp
830986e05bcSDimitry AndricSRCS_MIN+=	MC/MCExpr.cpp
831986e05bcSDimitry AndricSRCS_MIN+=	MC/MCFragment.cpp
832986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInst.cpp
833986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInstPrinter.cpp
834986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInstrAnalysis.cpp
835986e05bcSDimitry AndricSRCS_MIN+=	MC/MCInstrDesc.cpp
83648aaf27bSDimitry AndricSRCS_MIN+=	MC/MCInstrInfo.cpp
837986e05bcSDimitry AndricSRCS_MIN+=	MC/MCLinkerOptimizationHint.cpp
838986e05bcSDimitry AndricSRCS_MIN+=	MC/MCMachOStreamer.cpp
839986e05bcSDimitry AndricSRCS_MIN+=	MC/MCMachObjectTargetWriter.cpp
840986e05bcSDimitry AndricSRCS_MIN+=	MC/MCNullStreamer.cpp
841986e05bcSDimitry AndricSRCS_MIN+=	MC/MCObjectFileInfo.cpp
842986e05bcSDimitry AndricSRCS_MIN+=	MC/MCObjectStreamer.cpp
843986e05bcSDimitry AndricSRCS_MIN+=	MC/MCObjectWriter.cpp
844986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/AsmLexer.cpp
845986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/AsmParser.cpp
846986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/COFFAsmParser.cpp
847986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/DarwinAsmParser.cpp
848986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/ELFAsmParser.cpp
8495e801ac6SDimitry AndricSRCS_MIN+=	MC/MCParser/GOFFAsmParser.cpp
850986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCAsmLexer.cpp
851986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCAsmParser.cpp
852986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCAsmParserExtension.cpp
853986e05bcSDimitry AndricSRCS_MIN+=	MC/MCParser/MCTargetAsmParser.cpp
8545e86819cSDimitry AndricSRCS_MIN+=	MC/MCParser/WasmAsmParser.cpp
855fe6060f1SDimitry AndricSRCS_MIN+=	MC/MCParser/XCOFFAsmParser.cpp
856e8d8bef9SDimitry AndricSRCS_MIN+=	MC/MCPseudoProbe.cpp
857986e05bcSDimitry AndricSRCS_MIN+=	MC/MCRegisterInfo.cpp
85881ad6265SDimitry AndricSRCS_MIN+=	MC/MCSPIRVStreamer.cpp
859986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSchedule.cpp
860986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSection.cpp
861986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSectionCOFF.cpp
86281ad6265SDimitry AndricSRCS_MIN+=	MC/MCSectionDXContainer.cpp
863986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSectionELF.cpp
864986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSectionMachO.cpp
8655897d2f0SDimitry AndricSRCS_MIN+=	MC/MCSectionWasm.cpp
8664014a71fSDimitry AndricSRCS_MIN+=	MC/MCSectionXCOFF.cpp
867986e05bcSDimitry AndricSRCS_MIN+=	MC/MCStreamer.cpp
868986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSubtargetInfo.cpp
869986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSymbol.cpp
870986e05bcSDimitry AndricSRCS_MIN+=	MC/MCSymbolELF.cpp
87148aaf27bSDimitry AndricSRCS_MIN+=	MC/MCSymbolXCOFF.cpp
872986e05bcSDimitry AndricSRCS_MIN+=	MC/MCTargetOptions.cpp
87348aaf27bSDimitry AndricSRCS_MIN+=	MC/MCTargetOptionsCommandFlags.cpp
874986e05bcSDimitry AndricSRCS_MIN+=	MC/MCValue.cpp
8755897d2f0SDimitry AndricSRCS_MIN+=	MC/MCWasmStreamer.cpp
876986e05bcSDimitry AndricSRCS_MIN+=	MC/MCWin64EH.cpp
877edd7eaddSDimitry AndricSRCS_MIN+=	MC/MCWinCOFFStreamer.cpp
878986e05bcSDimitry AndricSRCS_MIN+=	MC/MCWinEH.cpp
8794014a71fSDimitry AndricSRCS_MIN+=	MC/MCXCOFFStreamer.cpp
8804014a71fSDimitry AndricSRCS_MIN+=	MC/MCXCOFFObjectTargetWriter.cpp
881986e05bcSDimitry AndricSRCS_MIN+=	MC/MachObjectWriter.cpp
88281ad6265SDimitry AndricSRCS_MIN+=	MC/SPIRVObjectWriter.cpp
883986e05bcSDimitry AndricSRCS_MIN+=	MC/StringTableBuilder.cpp
884986e05bcSDimitry AndricSRCS_MIN+=	MC/SubtargetFeature.cpp
8855e801ac6SDimitry AndricSRCS_MIN+=	MC/TargetRegistry.cpp
8869f6e9a9fSDimitry AndricSRCS_MIN+=	MC/WasmObjectWriter.cpp
887986e05bcSDimitry AndricSRCS_MIN+=	MC/WinCOFFObjectWriter.cpp
8884014a71fSDimitry AndricSRCS_MIN+=	MC/XCOFFObjectWriter.cpp
889b1ae9102SDimitry AndricSRCS_EXT+=	MCA/CodeEmitter.cpp
890efa75597SDimitry AndricSRCS_EXT+=	MCA/Context.cpp
891fe6060f1SDimitry AndricSRCS_EXT+=	MCA/CustomBehaviour.cpp
892efa75597SDimitry AndricSRCS_EXT+=	MCA/HWEventListener.cpp
893efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/HardwareUnit.cpp
894efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/LSUnit.cpp
895efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/RegisterFile.cpp
896efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/ResourceManager.cpp
897efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/RetireControlUnit.cpp
898efa75597SDimitry AndricSRCS_EXT+=	MCA/HardwareUnits/Scheduler.cpp
899efa75597SDimitry AndricSRCS_EXT+=	MCA/InstrBuilder.cpp
900efa75597SDimitry AndricSRCS_EXT+=	MCA/Instruction.cpp
901efa75597SDimitry AndricSRCS_EXT+=	MCA/Pipeline.cpp
902efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/DispatchStage.cpp
903efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/EntryStage.cpp
904efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/ExecuteStage.cpp
905fe6060f1SDimitry AndricSRCS_EXT+=	MCA/Stages/InOrderIssueStage.cpp
906efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/InstructionTables.cpp
90724b8043eSDimitry AndricSRCS_EXT+=	MCA/Stages/MicroOpQueueStage.cpp
908efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/RetireStage.cpp
909efa75597SDimitry AndricSRCS_EXT+=	MCA/Stages/Stage.cpp
910efa75597SDimitry AndricSRCS_EXT+=	MCA/Support.cpp
9115e801ac6SDimitry AndricSRCS_EXT+=	MCA/View.cpp
91281ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/Archive.cpp
91381ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/COFF/COFFObjcopy.cpp
91481ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/COFF/COFFObject.cpp
91581ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/COFF/COFFReader.cpp
91681ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/COFF/COFFWriter.cpp
91781ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/CommonConfig.cpp
91881ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/ConfigManager.cpp
91981ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/ELF/ELFObjcopy.cpp
92081ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/ELF/ELFObject.cpp
92181ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/MachO/MachOLayoutBuilder.cpp
92281ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/MachO/MachOObjcopy.cpp
92381ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/MachO/MachOObject.cpp
92481ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/MachO/MachOReader.cpp
92581ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/MachO/MachOWriter.cpp
92681ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/ObjCopy.cpp
92781ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/XCOFF/XCOFFObjcopy.cpp
92881ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/XCOFF/XCOFFReader.cpp
92981ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/XCOFF/XCOFFWriter.cpp
93081ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/wasm/WasmObjcopy.cpp
93181ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/wasm/WasmObject.cpp
93281ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/wasm/WasmReader.cpp
93381ad6265SDimitry AndricSRCS_MIW+=	ObjCopy/wasm/WasmWriter.cpp
934986e05bcSDimitry AndricSRCS_MIN+=	Object/Archive.cpp
935986e05bcSDimitry AndricSRCS_MIN+=	Object/ArchiveWriter.cpp
936986e05bcSDimitry AndricSRCS_MIN+=	Object/Binary.cpp
9379c954a48SEd MasteSRCS_MIN+=	Object/COFFImportFile.cpp
9380db9a49eSDimitry AndricSRCS_MIW+=	Object/COFFModuleDefinition.cpp
939986e05bcSDimitry AndricSRCS_MIN+=	Object/COFFObjectFile.cpp
940f1a29dd3SDimitry AndricSRCS_MIN+=	Object/Decompressor.cpp
941986e05bcSDimitry AndricSRCS_MIN+=	Object/ELF.cpp
942986e05bcSDimitry AndricSRCS_MIN+=	Object/ELFObjectFile.cpp
943986e05bcSDimitry AndricSRCS_MIN+=	Object/Error.cpp
944fe6060f1SDimitry AndricSRCS_MIW+=	Object/FaultMapParser.cpp
945986e05bcSDimitry AndricSRCS_MIN+=	Object/IRObjectFile.cpp
9465897d2f0SDimitry AndricSRCS_MIN+=	Object/IRSymtab.cpp
947986e05bcSDimitry AndricSRCS_MIN+=	Object/MachOObjectFile.cpp
9480db9a49eSDimitry AndricSRCS_MIW+=	Object/MachOUniversal.cpp
949021385abSAlex RichardsonSRCS_MIW+=	Object/MachOUniversalWriter.cpp
9500db9a49eSDimitry AndricSRCS_MIW+=	Object/Minidump.cpp
95109bfd043SDimitry AndricSRCS_MIN+=	Object/ModuleSymbolTable.cpp
952986e05bcSDimitry AndricSRCS_EXT+=	Object/Object.cpp
953986e05bcSDimitry AndricSRCS_MIN+=	Object/ObjectFile.cpp
95481ad6265SDimitry AndricSRCS_MIW+=	Object/OffloadBinary.cpp
955986e05bcSDimitry AndricSRCS_MIN+=	Object/RecordStreamer.cpp
9560db9a49eSDimitry AndricSRCS_MIW+=	Object/RelocationResolver.cpp
9570db9a49eSDimitry AndricSRCS_MIW+=	Object/SymbolSize.cpp
958986e05bcSDimitry AndricSRCS_MIN+=	Object/SymbolicFile.cpp
95948aaf27bSDimitry AndricSRCS_MIW+=	Object/TapiFile.cpp
960d311d024SDimitry AndricSRCS_MIW+=	Object/TapiUniversal.cpp
96109bfd043SDimitry AndricSRCS_MIN+=	Object/WasmObjectFile.cpp
9620db9a49eSDimitry AndricSRCS_MIW+=	Object/WindowsMachineFlag.cpp
963bbd32193SDimitry AndricSRCS_MIN+=	Object/WindowsResource.cpp
9644014a71fSDimitry AndricSRCS_MIN+=	Object/XCOFFObjectFile.cpp
965986e05bcSDimitry AndricSRCS_MIN+=	ObjectYAML/COFFYAML.cpp
966f9448bf3SDimitry AndricSRCS_EXT+=	ObjectYAML/CodeViewYAMLDebugSections.cpp
967f9448bf3SDimitry AndricSRCS_EXT+=	ObjectYAML/CodeViewYAMLSymbols.cpp
968f9448bf3SDimitry AndricSRCS_EXT+=	ObjectYAML/CodeViewYAMLTypes.cpp
96909bfd043SDimitry AndricSRCS_MIN+=	ObjectYAML/DWARFYAML.cpp
970986e05bcSDimitry AndricSRCS_MIN+=	ObjectYAML/ELFYAML.cpp
971986e05bcSDimitry AndricSRCS_MIN+=	ObjectYAML/MachOYAML.cpp
97224d58133SDimitry AndricSRCS_EXT+=	ObjectYAML/YAML.cpp
973986e05bcSDimitry AndricSRCS_MIN+=	Option/Arg.cpp
974986e05bcSDimitry AndricSRCS_MIN+=	Option/ArgList.cpp
975986e05bcSDimitry AndricSRCS_MIN+=	Option/OptTable.cpp
976986e05bcSDimitry AndricSRCS_MIN+=	Option/Option.cpp
9775e801ac6SDimitry AndricSRCS_MIN+=	Passes/OptimizationLevel.cpp
97809bfd043SDimitry AndricSRCS_MIN+=	Passes/PassBuilder.cpp
9795e801ac6SDimitry AndricSRCS_MIN+=	Passes/PassBuilderPipelines.cpp
9804014a71fSDimitry AndricSRCS_MIN+=	Passes/PassPlugin.cpp
9819771cac2SDimitry AndricSRCS_MIN+=	Passes/StandardInstrumentations.cpp
982986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/Coverage/CoverageMapping.cpp
983986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/Coverage/CoverageMappingReader.cpp
984986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/Coverage/CoverageMappingWriter.cpp
9851b49115aSEd MasteSRCS_MIN+=	ProfileData/GCOV.cpp
986986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/InstrProf.cpp
98704eeddc0SDimitry AndricSRCS_MIN+=	ProfileData/InstrProfCorrelator.cpp
988986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/InstrProfReader.cpp
989986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/InstrProfWriter.cpp
99081ad6265SDimitry AndricSRCS_MIN+=	ProfileData/MemProf.cpp
991986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/ProfileSummaryBuilder.cpp
9921838bd0fSDimitry AndricSRCS_MIW+=	ProfileData/RawMemProfReader.cpp
993986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/SampleProf.cpp
994986e05bcSDimitry AndricSRCS_MIN+=	ProfileData/SampleProfReader.cpp
995961eb443SEd MasteSRCS_MIN+=	ProfileData/SampleProfWriter.cpp
996a2a9ef4bSDimitry AndricSRCS_MIN+=	Remarks/BitstreamRemarkParser.cpp
9979771cac2SDimitry AndricSRCS_MIN+=	Remarks/BitstreamRemarkSerializer.cpp
9984014a71fSDimitry AndricSRCS_MIN+=	Remarks/RemarkFormat.cpp
999a2a9ef4bSDimitry AndricSRCS_MIN+=	Remarks/RemarkParser.cpp
10009771cac2SDimitry AndricSRCS_MIN+=	Remarks/RemarkSerializer.cpp
100148aaf27bSDimitry AndricSRCS_MIN+=	Remarks/RemarkStreamer.cpp
10024014a71fSDimitry AndricSRCS_MIN+=	Remarks/RemarkStringTable.cpp
1003a2a9ef4bSDimitry AndricSRCS_MIN+=	Remarks/YAMLRemarkParser.cpp
10044014a71fSDimitry AndricSRCS_MIN+=	Remarks/YAMLRemarkSerializer.cpp
10055e86819cSDimitry AndricSRCS_MIN+=	Support/AArch64TargetParser.cpp
1006054f9817SDimitry AndricSRCS_MIN+=	Support/ABIBreak.cpp
1007e8d8bef9SDimitry AndricSRCS_MIN+=	Support/APFixedPoint.cpp
1008986e05bcSDimitry AndricSRCS_MIN+=	Support/APFloat.cpp
1009986e05bcSDimitry AndricSRCS_MIN+=	Support/APInt.cpp
1010986e05bcSDimitry AndricSRCS_MIN+=	Support/APSInt.cpp
10115897d2f0SDimitry AndricSRCS_MIN+=	Support/ARMAttributeParser.cpp
1012986e05bcSDimitry AndricSRCS_MIN+=	Support/ARMBuildAttrs.cpp
10135e86819cSDimitry AndricSRCS_MIN+=	Support/ARMTargetParser.cpp
10141b85b68dSCameron KatriSRCS_MIN+=	Support/ARMWinEH.cpp
1015fcaf7f86SDimitry AndricSRCS_EXT+=	Support/AddressRanges.cpp
1016986e05bcSDimitry AndricSRCS_MIN+=	Support/Allocator.cpp
101781ad6265SDimitry AndricSRCS_LLD+=	Support/BLAKE3/blake3.c
101881ad6265SDimitry AndricSRCS_LLD+=	Support/BLAKE3/blake3_dispatch.c
1019fcaf7f86SDimitry Andric.if ${TARGET_ARCH} == "aarch64"
102081ad6265SDimitry AndricSRCS_LLD+=	Support/BLAKE3/blake3_neon.c
1021fcaf7f86SDimitry Andric.endif
102281ad6265SDimitry AndricSRCS_LLD+=	Support/BLAKE3/blake3_portable.c
1023fcaf7f86SDimitry Andric.if ${TARGET_ARCH} == "amd64"
102481ad6265SDimitry AndricSRCS_LLD+=	Support/BLAKE3/blake3_avx2_x86-64_unix.S
102581ad6265SDimitry AndricSRCS_LLD+=	Support/BLAKE3/blake3_sse2_x86-64_unix.S
102681ad6265SDimitry AndricSRCS_LLD+=	Support/BLAKE3/blake3_sse41_x86-64_unix.S
102781ad6265SDimitry AndricSRCS_LLD+=	Support/BLAKE3/blake3_avx512_x86-64_unix.S
1028fcaf7f86SDimitry Andric.endif
10295897d2f0SDimitry AndricSRCS_MIN+=	Support/BinaryStreamError.cpp
10305897d2f0SDimitry AndricSRCS_MIN+=	Support/BinaryStreamReader.cpp
1031d8866befSDimitry AndricSRCS_MIN+=	Support/BinaryStreamRef.cpp
10325897d2f0SDimitry AndricSRCS_MIN+=	Support/BinaryStreamWriter.cpp
1033986e05bcSDimitry AndricSRCS_MIN+=	Support/BlockFrequency.cpp
1034986e05bcSDimitry AndricSRCS_MIN+=	Support/BranchProbability.cpp
10355e86819cSDimitry AndricSRCS_MIN+=	Support/BuryPointer.cpp
10360db9a49eSDimitry AndricSRCS_MIW+=	Support/COM.cpp
10374d4aa256SDimitry AndricSRCS_MIN+=	Support/CRC.cpp
103881ad6265SDimitry AndricSRCS_MIN+=	Support/CSKYTargetParser.cpp
103981ad6265SDimitry AndricSRCS_MIN+=	Support/CachePruning.cpp
104081ad6265SDimitry AndricSRCS_MIW+=	Support/Caching.cpp
104109bfd043SDimitry AndricSRCS_MIN+=	Support/Chrono.cpp
104236cb3905SDimitry AndricSRCS_MIN+=	Support/CodeGenCoverage.cpp
1043986e05bcSDimitry AndricSRCS_MIN+=	Support/CommandLine.cpp
1044986e05bcSDimitry AndricSRCS_MIN+=	Support/Compression.cpp
104509bfd043SDimitry AndricSRCS_MIN+=	Support/ConvertUTF.cpp
1046986e05bcSDimitry AndricSRCS_MIN+=	Support/ConvertUTFWrapper.cpp
1047986e05bcSDimitry AndricSRCS_MIN+=	Support/CrashRecoveryContext.cpp
1048986e05bcSDimitry AndricSRCS_MIN+=	Support/DAGDeltaAlgorithm.cpp
10499f6e9a9fSDimitry AndricSRCS_MIN+=	Support/DJB.cpp
1050986e05bcSDimitry AndricSRCS_MIN+=	Support/DataExtractor.cpp
1051986e05bcSDimitry AndricSRCS_MIN+=	Support/Debug.cpp
10525897d2f0SDimitry AndricSRCS_MIN+=	Support/DebugCounter.cpp
1053986e05bcSDimitry AndricSRCS_MIN+=	Support/DeltaAlgorithm.cpp
10545e801ac6SDimitry AndricSRCS_MIN+=	Support/DivisionByConstantInfo.cpp
1055986e05bcSDimitry AndricSRCS_MIN+=	Support/DynamicLibrary.cpp
105648aaf27bSDimitry AndricSRCS_MIN+=	Support/ELFAttributeParser.cpp
105748aaf27bSDimitry AndricSRCS_MIN+=	Support/ELFAttributes.cpp
1058986e05bcSDimitry AndricSRCS_MIN+=	Support/Errno.cpp
1059986e05bcSDimitry AndricSRCS_MIN+=	Support/Error.cpp
1060986e05bcSDimitry AndricSRCS_MIN+=	Support/ErrorHandling.cpp
1061fe6060f1SDimitry AndricSRCS_MIN+=	Support/ExtensibleRTTI.cpp
1062e8d8bef9SDimitry AndricSRCS_MIN+=	Support/FileCollector.cpp
1063021385abSAlex RichardsonSRCS_MIW+=	Support/FileOutputBuffer.cpp
10649771cac2SDimitry AndricSRCS_MIN+=	Support/FileUtilities.cpp
1065986e05bcSDimitry AndricSRCS_MIN+=	Support/FoldingSet.cpp
106609bfd043SDimitry AndricSRCS_MIN+=	Support/FormatVariadic.cpp
1067986e05bcSDimitry AndricSRCS_MIN+=	Support/FormattedStream.cpp
106809bfd043SDimitry AndricSRCS_MIN+=	Support/GlobPattern.cpp
1069986e05bcSDimitry AndricSRCS_MIN+=	Support/GraphWriter.cpp
1070986e05bcSDimitry AndricSRCS_MIN+=	Support/Hashing.cpp
1071986e05bcSDimitry AndricSRCS_MIN+=	Support/Host.cpp
10729f6e9a9fSDimitry AndricSRCS_MIN+=	Support/InitLLVM.cpp
1073e8d8bef9SDimitry AndricSRCS_MIN+=	Support/InstructionCost.cpp
1074986e05bcSDimitry AndricSRCS_MIN+=	Support/IntEqClasses.cpp
1075986e05bcSDimitry AndricSRCS_MIN+=	Support/IntervalMap.cpp
10765e86819cSDimitry AndricSRCS_MIN+=	Support/ItaniumManglingCanonicalizer.cpp
10772d31b1b8SDimitry AndricSRCS_MIN+=	Support/JSON.cpp
107836cb3905SDimitry AndricSRCS_MIN+=	Support/KnownBits.cpp
1079986e05bcSDimitry AndricSRCS_MIN+=	Support/LEB128.cpp
1080986e05bcSDimitry AndricSRCS_MIN+=	Support/LineIterator.cpp
1081986e05bcSDimitry AndricSRCS_MIN+=	Support/Locale.cpp
1082986e05bcSDimitry AndricSRCS_MIN+=	Support/LockFileManager.cpp
10835897d2f0SDimitry AndricSRCS_MIN+=	Support/LowLevelType.cpp
1084986e05bcSDimitry AndricSRCS_MIN+=	Support/MD5.cpp
10855e801ac6SDimitry AndricSRCS_MIW+=	Support/MSP430AttributeParser.cpp
10865e801ac6SDimitry AndricSRCS_MIW+=	Support/MSP430Attributes.cpp
1087986e05bcSDimitry AndricSRCS_MIN+=	Support/ManagedStatic.cpp
1088986e05bcSDimitry AndricSRCS_MIN+=	Support/MathExtras.cpp
108948aaf27bSDimitry AndricSRCS_MIN+=	Support/MemAlloc.cpp
1090021385abSAlex RichardsonSRCS_MIW+=	Support/Memory.cpp
1091986e05bcSDimitry AndricSRCS_MIN+=	Support/MemoryBuffer.cpp
1092e8d8bef9SDimitry AndricSRCS_MIN+=	Support/MemoryBufferRef.cpp
109309bfd043SDimitry AndricSRCS_MIN+=	Support/NativeFormatting.cpp
109448aaf27bSDimitry AndricSRCS_MIN+=	Support/OptimizedStructLayout.cpp
10954014a71fSDimitry AndricSRCS_MIN+=	Support/Optional.cpp
1096e8d8bef9SDimitry AndricSRCS_EXL+=	Support/Parallel.cpp
1097986e05bcSDimitry AndricSRCS_MIN+=	Support/Path.cpp
1098986e05bcSDimitry AndricSRCS_MIN+=	Support/PluginLoader.cpp
1099986e05bcSDimitry AndricSRCS_MIN+=	Support/PrettyStackTrace.cpp
1100986e05bcSDimitry AndricSRCS_MIN+=	Support/Process.cpp
1101986e05bcSDimitry AndricSRCS_MIN+=	Support/Program.cpp
110248aaf27bSDimitry AndricSRCS_MIN+=	Support/RISCVAttributeParser.cpp
110348aaf27bSDimitry AndricSRCS_MIN+=	Support/RISCVAttributes.cpp
11045e801ac6SDimitry AndricSRCS_MIN+=	Support/RISCVISAInfo.cpp
1105986e05bcSDimitry AndricSRCS_MIN+=	Support/RWMutex.cpp
1106986e05bcSDimitry AndricSRCS_MIN+=	Support/RandomNumberGenerator.cpp
1107986e05bcSDimitry AndricSRCS_MIN+=	Support/Regex.cpp
1108986e05bcSDimitry AndricSRCS_MIN+=	Support/SHA1.cpp
11095e801ac6SDimitry AndricSRCS_MIN+=	Support/SHA256.cpp
1110986e05bcSDimitry AndricSRCS_MIN+=	Support/ScaledNumber.cpp
1111986e05bcSDimitry AndricSRCS_MIN+=	Support/ScopedPrinter.cpp
1112986e05bcSDimitry AndricSRCS_MIN+=	Support/Signals.cpp
11134014a71fSDimitry AndricSRCS_MIN+=	Support/Signposts.cpp
1114986e05bcSDimitry AndricSRCS_MIN+=	Support/SmallPtrSet.cpp
1115986e05bcSDimitry AndricSRCS_MIN+=	Support/SmallVector.cpp
1116986e05bcSDimitry AndricSRCS_MIN+=	Support/SourceMgr.cpp
1117986e05bcSDimitry AndricSRCS_MIN+=	Support/SpecialCaseList.cpp
1118986e05bcSDimitry AndricSRCS_MIN+=	Support/Statistic.cpp
1119986e05bcSDimitry AndricSRCS_MIN+=	Support/StringExtras.cpp
1120986e05bcSDimitry AndricSRCS_MIN+=	Support/StringMap.cpp
1121986e05bcSDimitry AndricSRCS_MIN+=	Support/StringRef.cpp
1122986e05bcSDimitry AndricSRCS_MIN+=	Support/StringSaver.cpp
112348aaf27bSDimitry AndricSRCS_MIN+=	Support/SuffixTree.cpp
11245e86819cSDimitry AndricSRCS_MIN+=	Support/SymbolRemappingReader.cpp
1125986e05bcSDimitry AndricSRCS_EXT+=	Support/SystemUtils.cpp
11261ae4f0f6SDimitry AndricSRCS_LLD+=	Support/TarWriter.cpp
1127986e05bcSDimitry AndricSRCS_MIN+=	Support/TargetParser.cpp
1128986e05bcSDimitry AndricSRCS_MIN+=	Support/ThreadLocal.cpp
11290db9a49eSDimitry AndricSRCS_MIW+=	Support/ThreadPool.cpp
1130986e05bcSDimitry AndricSRCS_MIN+=	Support/Threading.cpp
11314014a71fSDimitry AndricSRCS_MIN+=	Support/TimeProfiler.cpp
1132986e05bcSDimitry AndricSRCS_MIN+=	Support/Timer.cpp
1133986e05bcSDimitry AndricSRCS_MIN+=	Support/ToolOutputFile.cpp
113409bfd043SDimitry AndricSRCS_MIN+=	Support/TrigramIndex.cpp
1135986e05bcSDimitry AndricSRCS_MIN+=	Support/Triple.cpp
1136986e05bcSDimitry AndricSRCS_MIN+=	Support/Twine.cpp
1137fe6060f1SDimitry AndricSRCS_MIN+=	Support/TypeSize.cpp
1138986e05bcSDimitry AndricSRCS_MIN+=	Support/Unicode.cpp
11399f6e9a9fSDimitry AndricSRCS_MIN+=	Support/UnicodeCaseFold.cpp
114081ad6265SDimitry AndricSRCS_MIN+=	Support/UnicodeNameToCodepoint.cpp
114181ad6265SDimitry AndricSRCS_MIN+=	Support/UnicodeNameToCodepointGenerated.cpp
1142986e05bcSDimitry AndricSRCS_MIN+=	Support/Valgrind.cpp
11435e86819cSDimitry AndricSRCS_MIN+=	Support/VirtualFileSystem.cpp
11449f6e9a9fSDimitry AndricSRCS_MIN+=	Support/VersionTuple.cpp
11454014a71fSDimitry AndricSRCS_MIN+=	Support/Watchdog.cpp
114680a8c751SEd MasteSRCS_MIN+=	Support/WithColor.cpp
114748aaf27bSDimitry AndricSRCS_MIN+=	Support/X86TargetParser.cpp
1148986e05bcSDimitry AndricSRCS_MIN+=	Support/YAMLParser.cpp
1149986e05bcSDimitry AndricSRCS_MIN+=	Support/YAMLTraits.cpp
115023559b6aSDimitry AndricSRCS_FUL+=	Support/Z3Solver.cpp
1151986e05bcSDimitry AndricSRCS_MIN+=	Support/circular_raw_ostream.cpp
1152986e05bcSDimitry AndricSRCS_MIN+=	Support/raw_os_ostream.cpp
1153986e05bcSDimitry AndricSRCS_MIN+=	Support/raw_ostream.cpp
1154986e05bcSDimitry AndricSRCS_MIN+=	Support/regcomp.c
1155986e05bcSDimitry AndricSRCS_MIN+=	Support/regerror.c
1156986e05bcSDimitry AndricSRCS_MIN+=	Support/regexec.c
1157986e05bcSDimitry AndricSRCS_MIN+=	Support/regfree.c
1158986e05bcSDimitry AndricSRCS_MIN+=	Support/regstrlcpy.c
115980a8c751SEd MasteSRCS_MIN+=	Support/xxhash.cpp
1160d409305fSDimitry AndricSRCS_MIN+=	TableGen/DetailedRecordsBackend.cpp
1161986e05bcSDimitry AndricSRCS_MIN+=	TableGen/Error.cpp
1162d25b9f8fSDimitry AndricSRCS_MIN+=	TableGen/JSONBackend.cpp
1163986e05bcSDimitry AndricSRCS_MIN+=	TableGen/Main.cpp
1164986e05bcSDimitry AndricSRCS_MIN+=	TableGen/Record.cpp
1165986e05bcSDimitry AndricSRCS_MIN+=	TableGen/SetTheory.cpp
1166986e05bcSDimitry AndricSRCS_MIN+=	TableGen/StringMatcher.cpp
1167986e05bcSDimitry AndricSRCS_MIN+=	TableGen/TGLexer.cpp
1168986e05bcSDimitry AndricSRCS_MIN+=	TableGen/TGParser.cpp
1169986e05bcSDimitry AndricSRCS_MIN+=	TableGen/TableGenBackend.cpp
1170cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no"
1171986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64A53Fix835769.cpp
1172986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64A57FPLoadBalancing.cpp
1173986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64AdvSIMDScalarPass.cpp
1174986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64AsmPrinter.cpp
11755e86819cSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64BranchTargets.cpp
11764014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CallingConvention.cpp
1177986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp
1178986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CollectLOH.cpp
11795e86819cSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CompressJumpTables.cpp
1180edd7eaddSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64CondBrTuning.cpp
1181986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ConditionOptimizer.cpp
1182986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ConditionalCompares.cpp
1183986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
11844014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ExpandImm.cpp
1185986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ExpandPseudoInsts.cpp
1186b40b48b8SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64FalkorHWPFFix.cpp
1187986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64FastISel.cpp
1188986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64FrameLowering.cpp
1189986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ISelDAGToDAG.cpp
1190986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64ISelLowering.cpp
1191986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64InstrInfo.cpp
1192986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64LoadStoreOptimizer.cpp
1193fe6060f1SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64LowerHomogeneousPrologEpilog.cpp
1194986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MCInstLower.cpp
11955e801ac6SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MIPeepholeOpt.cpp
119648aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MachineFunctionInfo.cpp
119781ad6265SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MachineScheduler.cpp
11985897d2f0SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64MacroFusion.cpp
1199986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64PBQPRegAlloc.cpp
1200986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64PromoteConstant.cpp
1201986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64RedundantCopyElimination.cpp
1202986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64RegisterInfo.cpp
120336cb3905SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SIMDInstrOpt.cpp
120448aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SLSHardening.cpp
1205986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SelectionDAGInfo.cpp
12065e86819cSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64SpeculationHardening.cpp
12074014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64StackTagging.cpp
12089771cac2SDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64StackTaggingPreRA.cpp
1209986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64StorePairSuppress.cpp
1210986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64Subtarget.cpp
1211986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64TargetMachine.cpp
1212986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64TargetObjectFile.cpp
1213986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AArch64TargetTransformInfo.cpp
1214986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/AsmParser/AArch64AsmParser.cpp
121530d4828eSDimitry AndricSRCS_XDW+=	Target/AArch64/Disassembler/AArch64Disassembler.cpp
121630d4828eSDimitry AndricSRCS_XDW+=	Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp
121748aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64CallLowering.cpp
1218fe6060f1SDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64GlobalISelUtils.cpp
121948aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64InstructionSelector.cpp
122048aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64LegalizerInfo.cpp
1221fe6060f1SDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64O0PreLegalizerCombiner.cpp
122248aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64PreLegalizerCombiner.cpp
122348aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64PostLegalizerCombiner.cpp
1224e8d8bef9SDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64PostLegalizerLowering.cpp
1225e8d8bef9SDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64PostSelectOptimize.cpp
122648aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/GISel/AArch64RegisterBankInfo.cpp
1227986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
1228986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
1229986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp
12304014a71fSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp
1231986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
1232986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
1233986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
1234986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
1235986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
1236986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp
1237a580b014SDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp
1238a580b014SDimitry AndricSRCS_MIN+=	Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp
123948aaf27bSDimitry AndricSRCS_MIN+=	Target/AArch64/SVEIntrinsicOpts.cpp
1240986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
1241986e05bcSDimitry AndricSRCS_MIN+=	Target/AArch64/Utils/AArch64BaseInfo.cpp
1242cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64
1243cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no"
1244986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/A15SDOptimizer.cpp
1245986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMAsmPrinter.cpp
1246986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMBaseInstrInfo.cpp
1247986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMBaseRegisterInfo.cpp
12484014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMBasicBlockInfo.cpp
1249e8d8bef9SDimitry AndricSRCS_MIN+=	Target/ARM/ARMBlockPlacement.cpp
12504824e7fdSDimitry AndricSRCS_MIN+=	Target/ARM/ARMBranchTargets.cpp
12513d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMCallLowering.cpp
12524014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMCallingConv.cpp
1253986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMConstantIslandPass.cpp
1254986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMConstantPoolValue.cpp
1255986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMExpandPseudoInsts.cpp
1256986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMFastISel.cpp
125781ad6265SDimitry AndricSRCS_MIN+=	Target/ARM/ARMFixCortexA57AES1742098Pass.cpp
1258986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMFrameLowering.cpp
1259986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMHazardRecognizer.cpp
1260986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMISelDAGToDAG.cpp
1261986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMISelLowering.cpp
1262986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMInstrInfo.cpp
12633d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMInstructionSelector.cpp
12643d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMLegalizerInfo.cpp
1265986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMLoadStoreOptimizer.cpp
12664014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMLowOverheadLoops.cpp
1267986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMMCInstLower.cpp
1268986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMMachineFunctionInfo.cpp
1269edd7eaddSDimitry AndricSRCS_MIN+=	Target/ARM/ARMMacroFusion.cpp
1270986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMOptimizeBarriersPass.cpp
12719f6e9a9fSDimitry AndricSRCS_MIN+=	Target/ARM/ARMParallelDSP.cpp
12723d54deb3SDimitry AndricSRCS_MIN+=	Target/ARM/ARMRegisterBankInfo.cpp
1273986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMRegisterInfo.cpp
1274e8d8bef9SDimitry AndricSRCS_MIN+=	Target/ARM/ARMSLSHardening.cpp
1275986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMSelectionDAGInfo.cpp
1276986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMSubtarget.cpp
1277986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMTargetMachine.cpp
1278986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMTargetObjectFile.cpp
1279986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ARMTargetTransformInfo.cpp
1280986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/AsmParser/ARMAsmParser.cpp
1281986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Disassembler/ARMDisassembler.cpp
1282986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
1283986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
1284986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
12854014a71fSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMInstPrinter.cpp
1286986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp
1287986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
1288986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCExpr.cpp
1289986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
1290986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp
1291986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
1292986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
1293986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp
1294986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp
1295986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp
1296986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/MLxExpansionPass.cpp
12979771cac2SDimitry AndricSRCS_MIN+=	Target/ARM/MVEGatherScatterLowering.cpp
1298fe6060f1SDimitry AndricSRCS_MIN+=	Target/ARM/MVELaneInterleavingPass.cpp
1299fe6060f1SDimitry AndricSRCS_MIN+=	Target/ARM/MVETPAndVPTOptimisationsPass.cpp
13009771cac2SDimitry AndricSRCS_MIN+=	Target/ARM/MVETailPredication.cpp
13019771cac2SDimitry AndricSRCS_MIN+=	Target/ARM/MVEVPTBlockPass.cpp
1302986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/TargetInfo/ARMTargetInfo.cpp
1303986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb1FrameLowering.cpp
1304986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb1InstrInfo.cpp
1305986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb2ITBlockPass.cpp
1306986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb2InstrInfo.cpp
1307986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/Thumb2SizeReduction.cpp
1308986e05bcSDimitry AndricSRCS_MIN+=	Target/ARM/ThumbRegisterInfo.cpp
130936cb3905SDimitry AndricSRCS_MIN+=	Target/ARM/Utils/ARMBaseInfo.cpp
1310cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM
131189edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no"
131289edb881SDimitry AndricSRCS_MIN+=	Target/BPF/AsmParser/BPFAsmParser.cpp
1313a9365f4aSDimitry AndricSRCS_MIN+=	Target/BPF/BPFAbstractMemberAccess.cpp
1314d30dc78fSDimitry AndricSRCS_MIN+=	Target/BPF/BPFAdjustOpt.cpp
131589edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFAsmPrinter.cpp
1316d30dc78fSDimitry AndricSRCS_MIN+=	Target/BPF/BPFCheckAndAdjustIR.cpp
131789edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFFrameLowering.cpp
13185e801ac6SDimitry AndricSRCS_MIN+=	Target/BPF/BPFIRPeephole.cpp
131989edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFISelDAGToDAG.cpp
132089edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFISelLowering.cpp
132189edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFInstrInfo.cpp
132289edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFMCInstLower.cpp
13230a462115SDimitry AndricSRCS_MIN+=	Target/BPF/BPFMIChecking.cpp
1324f9c0a512SDimitry AndricSRCS_MIN+=	Target/BPF/BPFMIPeephole.cpp
1325a9365f4aSDimitry AndricSRCS_MIN+=	Target/BPF/BPFMISimplifyPatchable.cpp
13261c1ab429SDimitry AndricSRCS_MIN+=	Target/BPF/BPFPreserveDIType.cpp
132789edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFRegisterInfo.cpp
1328f9c0a512SDimitry AndricSRCS_MIN+=	Target/BPF/BPFSelectionDAGInfo.cpp
132989edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFSubtarget.cpp
133089edb881SDimitry AndricSRCS_MIN+=	Target/BPF/BPFTargetMachine.cpp
13310a462115SDimitry AndricSRCS_MIN+=	Target/BPF/BTFDebug.cpp
133289edb881SDimitry AndricSRCS_MIN+=	Target/BPF/Disassembler/BPFDisassembler.cpp
133389edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFAsmBackend.cpp
133489edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
13354014a71fSDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFInstPrinter.cpp
133689edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp
133789edb881SDimitry AndricSRCS_MIN+=	Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp
133889edb881SDimitry AndricSRCS_MIN+=	Target/BPF/TargetInfo/BPFTargetInfo.cpp
133989edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF
1340cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no"
1341986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/AsmParser/MipsAsmParser.cpp
134230d4828eSDimitry AndricSRCS_XDW+=	Target/Mips/Disassembler/MipsDisassembler.cpp
1343986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp
1344986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsABIInfo.cpp
1345986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
1346986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
1347986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsELFStreamer.cpp
13484014a71fSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsInstPrinter.cpp
1349986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
1350986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
1351986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCExpr.cpp
1352986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
1353986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
1354986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsOptionRecord.cpp
1355986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
1356f37b6182SDimitry AndricSRCS_MIN+=	Target/Mips/MicroMipsSizeReduction.cpp
1357986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16FrameLowering.cpp
1358986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16HardFloat.cpp
1359986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16HardFloatInfo.cpp
1360986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16ISelDAGToDAG.cpp
1361986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16ISelLowering.cpp
1362986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16InstrInfo.cpp
1363986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/Mips16RegisterInfo.cpp
1364986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsAnalyzeImmediate.cpp
1365986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsAsmPrinter.cpp
13669f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsBranchExpansion.cpp
1367986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsCCState.cpp
13689f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsCallLowering.cpp
1369986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsConstantIslandPass.cpp
1370986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsDelaySlotFiller.cpp
13719f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsExpandPseudo.cpp
1372986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsFastISel.cpp
1373986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsFrameLowering.cpp
1374986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsISelDAGToDAG.cpp
1375986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsISelLowering.cpp
1376986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsInstrInfo.cpp
13779f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsInstructionSelector.cpp
13789f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsLegalizerInfo.cpp
1379986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsMCInstLower.cpp
1380986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsMachineFunction.cpp
1381986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsModuleISelDAGToDAG.cpp
13824b1174e2SDimitry AndricSRCS_MIN+=	Target/Mips/MipsMulMulBugPass.cpp
1383986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsOptimizePICCall.cpp
1384986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsOs16.cpp
13855e86819cSDimitry AndricSRCS_MIN+=	Target/Mips/MipsPreLegalizerCombiner.cpp
138681ad6265SDimitry AndricSRCS_MIN+=	Target/Mips/MipsPostLegalizerCombiner.cpp
13879f6e9a9fSDimitry AndricSRCS_MIN+=	Target/Mips/MipsRegisterBankInfo.cpp
1388986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsRegisterInfo.cpp
1389986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEFrameLowering.cpp
1390986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEISelDAGToDAG.cpp
1391986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEISelLowering.cpp
1392986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSEInstrInfo.cpp
1393986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSERegisterInfo.cpp
1394986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsSubtarget.cpp
1395986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsTargetMachine.cpp
1396986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/MipsTargetObjectFile.cpp
139781ad6265SDimitry AndricSRCS_MIN+=	Target/Mips/MipsTargetTransformInfo.cpp
1398986e05bcSDimitry AndricSRCS_MIN+=	Target/Mips/TargetInfo/MipsTargetInfo.cpp
1399cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS
1400cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no"
1401986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/AsmParser/PPCAsmParser.cpp
1402986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/Disassembler/PPCDisassembler.cpp
1403e8d8bef9SDimitry AndricSRCS_MIN+=	Target/PowerPC/GISel/PPCCallLowering.cpp
1404e8d8bef9SDimitry AndricSRCS_MIN+=	Target/PowerPC/GISel/PPCInstructionSelector.cpp
1405e8d8bef9SDimitry AndricSRCS_MIN+=	Target/PowerPC/GISel/PPCLegalizerInfo.cpp
1406e8d8bef9SDimitry AndricSRCS_MIN+=	Target/PowerPC/GISel/PPCRegisterBankInfo.cpp
1407986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp
1408986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
140948aaf27bSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCELFStreamer.cpp
14104014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCInstPrinter.cpp
1411986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
1412986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
1413986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
1414986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
1415986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCPredicates.cpp
14164014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCXCOFFObjectWriter.cpp
1417fe6060f1SDimitry AndricSRCS_MIN+=	Target/PowerPC/MCTargetDesc/PPCXCOFFStreamer.cpp
1418986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCAsmPrinter.cpp
1419986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCBoolRetToInt.cpp
142036cb3905SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCBranchCoalescing.cpp
1421986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCBranchSelector.cpp
1422986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCCCState.cpp
1423986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCCTRLoops.cpp
142481ad6265SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCCTRLoopsVerify.cpp
14254014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCCallingConv.cpp
1426986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCEarlyReturn.cpp
1427fe6060f1SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCExpandAtomicPseudoInsts.cpp
14285897d2f0SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCExpandISEL.cpp
1429986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCFastISel.cpp
1430986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCFrameLowering.cpp
143181ad6265SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCGenScalarMASSEntries.cpp
1432986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCHazardRecognizers.cpp
1433986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCISelDAGToDAG.cpp
1434986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCISelLowering.cpp
1435986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCInstrInfo.cpp
14369771cac2SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCLoopInstrFormPrep.cpp
14379771cac2SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCLowerMASSVEntries.cpp
143848aaf27bSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMacroFusion.cpp
1439986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMCInstLower.cpp
1440986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMIPeephole.cpp
1441986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMachineFunctionInfo.cpp
14424014a71fSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCMachineScheduler.cpp
144336cb3905SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCPreEmitPeephole.cpp
144436cb3905SDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCReduceCRLogicals.cpp
1445986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCRegisterInfo.cpp
1446986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCSubtarget.cpp
1447986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTLSDynamicCall.cpp
1448986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTOCRegDeps.cpp
1449986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTargetMachine.cpp
1450986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTargetObjectFile.cpp
1451986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCTargetTransformInfo.cpp
1452986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCVSXCopy.cpp
1453986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCVSXFMAMutate.cpp
1454986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/PPCVSXSwapRemoval.cpp
1455986e05bcSDimitry AndricSRCS_MIN+=	Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
1456cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC
1457b2689b12SMitchell Horne.if ${MK_LLVM_TARGET_RISCV} != "no"
1458b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/AsmParser/RISCVAsmParser.cpp
1459b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/Disassembler/RISCVDisassembler.cpp
1460b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
1461e8d8bef9SDimitry AndricSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVBaseInfo.cpp
1462b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp
1463b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVELFStreamer.cpp
14644014a71fSDimitry AndricSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVInstPrinter.cpp
1465e8d8bef9SDimitry AndricSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMatInt.cpp
1466b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.cpp
1467b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp
1468b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp
14695e801ac6SDimitry AndricSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCObjectFileInfo.cpp
1470b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp
1471b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/MCTargetDesc/RISCVTargetStreamer.cpp
1472b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVAsmPrinter.cpp
14739771cac2SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVCallLowering.cpp
1474fcaf7f86SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVCodeGenPrepare.cpp
147548aaf27bSDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVExpandAtomicPseudoInsts.cpp
1476b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVExpandPseudoInsts.cpp
1477b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVFrameLowering.cpp
14785e801ac6SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVGatherScatterLowering.cpp
1479fe6060f1SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVInsertVSETVLI.cpp
1480b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVInstrInfo.cpp
14819771cac2SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVInstructionSelector.cpp
1482b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVISelDAGToDAG.cpp
1483b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVISelLowering.cpp
14849771cac2SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVLegalizerInfo.cpp
1485b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVMCInstLower.cpp
14863a9a9c0cSDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVMachineFunctionInfo.cpp
148781ad6265SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVMacroFusion.cpp
148881ad6265SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVMakeCompressible.cpp
1489b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVMergeBaseOffset.cpp
149081ad6265SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVRedundantCopyElimination.cpp
14919771cac2SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVRegisterBankInfo.cpp
1492b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVRegisterInfo.cpp
149304eeddc0SDimitry AndricSRCS_MIN+=	Target/RISCV/RISCVSExtWRemoval.cpp
1494b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVSubtarget.cpp
1495b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVTargetMachine.cpp
1496b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVTargetObjectFile.cpp
1497869fe6d5SMitchell HorneSRCS_MIN+=	Target/RISCV/RISCVTargetTransformInfo.cpp
1498b2689b12SMitchell HorneSRCS_MIN+=	Target/RISCV/TargetInfo/RISCVTargetInfo.cpp
1499b2689b12SMitchell Horne.endif # MK_LLVM_TARGET_RISCV
1500986e05bcSDimitry AndricSRCS_MIN+=	Target/Target.cpp
1501986e05bcSDimitry AndricSRCS_MIN+=	Target/TargetLoweringObjectFile.cpp
1502986e05bcSDimitry AndricSRCS_MIN+=	Target/TargetMachine.cpp
1503986e05bcSDimitry AndricSRCS_MIN+=	Target/TargetMachineC.cpp
1504cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no"
1505986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/AsmParser/X86AsmParser.cpp
150630d4828eSDimitry AndricSRCS_XDW+=	Target/X86/Disassembler/X86Disassembler.cpp
15073a9a9c0cSDimitry AndricSRCS_EXT+=	Target/X86/MCA/X86CustomBehaviour.cpp
15084014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86ATTInstPrinter.cpp
1509986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86AsmBackend.cpp
1510986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp
15114014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86InstComments.cpp
15124014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86InstPrinterCommon.cpp
151381ad6265SDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86InstrRelaxTables.cpp
15144014a71fSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86IntelInstPrinter.cpp
1515986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
1516986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
1517986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
1518986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
151981ad6265SDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86MnemonicTables.cpp
152048aaf27bSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86ShuffleDecode.cpp
1521986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
1522986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
152336cb3905SDimitry AndricSRCS_MIN+=	Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp
1524986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/TargetInfo/X86TargetInfo.cpp
1525986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86AsmPrinter.cpp
15269f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86AvoidStoreForwardingBlocks.cpp
15279771cac2SDimitry AndricSRCS_MIN+=	Target/X86/X86AvoidTrailingCall.cpp
1528986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86CallFrameOptimization.cpp
15293d54deb3SDimitry AndricSRCS_MIN+=	Target/X86/X86CallLowering.cpp
153009bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86CallingConv.cpp
1531b40b48b8SDimitry AndricSRCS_MIN+=	Target/X86/X86CmovConversion.cpp
15325e86819cSDimitry AndricSRCS_MIN+=	Target/X86/X86DiscriminateMemOps.cpp
153336cb3905SDimitry AndricSRCS_MIN+=	Target/X86/X86DomainReassignment.cpp
15345e801ac6SDimitry AndricSRCS_MIN+=	Target/X86/X86DynAllocaExpander.cpp
153509bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86EvexToVex.cpp
1536986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ExpandPseudo.cpp
1537986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FastISel.cpp
153881ad6265SDimitry AndricSRCS_MIN+=	Target/X86/X86FastPreTileConfig.cpp
1539fe6060f1SDimitry AndricSRCS_MIN+=	Target/X86/X86FastTileConfig.cpp
1540986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FixupBWInsts.cpp
1541986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FixupLEAs.cpp
1542986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FixupSetCC.cpp
15430556cfadSDimitry AndricSRCS_MIN+=	Target/X86/X86FlagsCopyLowering.cpp
1544986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FloatingPoint.cpp
1545986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86FrameLowering.cpp
1546986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ISelDAGToDAG.cpp
1547986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ISelLowering.cpp
15489f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86IndirectBranchTracking.cpp
15490946e70aSDimitry AndricSRCS_MIN+=	Target/X86/X86IndirectThunks.cpp
15505e86819cSDimitry AndricSRCS_MIN+=	Target/X86/X86InsertPrefetch.cpp
155148aaf27bSDimitry AndricSRCS_MIN+=	Target/X86/X86InsertWait.cpp
1552e8d8bef9SDimitry AndricSRCS_MIN+=	Target/X86/X86InstCombineIntrinsic.cpp
155309bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86InstrFMA3Info.cpp
15549f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86InstrFoldTables.cpp
1555986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86InstrInfo.cpp
15563d54deb3SDimitry AndricSRCS_MIN+=	Target/X86/X86InstructionSelector.cpp
155709bfd043SDimitry AndricSRCS_MIN+=	Target/X86/X86InterleavedAccess.cpp
15583d54deb3SDimitry AndricSRCS_MIN+=	Target/X86/X86LegalizerInfo.cpp
15590946e70aSDimitry AndricSRCS_MIN+=	Target/X86/X86LoadValueInjectionLoadHardening.cpp
15600946e70aSDimitry AndricSRCS_MIN+=	Target/X86/X86LoadValueInjectionRetHardening.cpp
1561fe6060f1SDimitry AndricSRCS_MIN+=	Target/X86/X86LowerAMXIntrinsics.cpp
1562e8d8bef9SDimitry AndricSRCS_MIN+=	Target/X86/X86LowerAMXType.cpp
1563fe6060f1SDimitry AndricSRCS_MIN+=	Target/X86/X86LowerTileCopy.cpp
1564986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86MCInstLower.cpp
1565986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86MachineFunctionInfo.cpp
15665897d2f0SDimitry AndricSRCS_MIN+=	Target/X86/X86MacroFusion.cpp
1567986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86OptimizeLEAs.cpp
1568986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86PadShortFunction.cpp
156948aaf27bSDimitry AndricSRCS_MIN+=	Target/X86/X86PartialReduction.cpp
1570fe6060f1SDimitry AndricSRCS_MIN+=	Target/X86/X86PreAMXConfig.cpp
1571e8d8bef9SDimitry AndricSRCS_MIN+=	Target/X86/X86PreTileConfig.cpp
15723d54deb3SDimitry AndricSRCS_MIN+=	Target/X86/X86RegisterBankInfo.cpp
1573986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86RegisterInfo.cpp
1574753f127fSDimitry AndricSRCS_MIN+=	Target/X86/X86ReturnThunks.cpp
1575986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86SelectionDAGInfo.cpp
1576986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86ShuffleDecodeConstantPool.cpp
157748aaf27bSDimitry AndricSRCS_MIN+=	Target/X86/X86SpeculativeExecutionSideEffectSuppression.cpp
15789f6e9a9fSDimitry AndricSRCS_MIN+=	Target/X86/X86SpeculativeLoadHardening.cpp
1579986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86Subtarget.cpp
1580986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86TargetMachine.cpp
1581986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86TargetObjectFile.cpp
1582986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86TargetTransformInfo.cpp
1583e8d8bef9SDimitry AndricSRCS_MIN+=	Target/X86/X86TileConfig.cpp
1584986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86VZeroUpper.cpp
1585986e05bcSDimitry AndricSRCS_MIN+=	Target/X86/X86WinEHState.cpp
1586cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86
1587fe6060f1SDimitry AndricSRCS_MIW+=	TextAPI/Architecture.cpp
1588fe6060f1SDimitry AndricSRCS_MIW+=	TextAPI/ArchitectureSet.cpp
1589fe6060f1SDimitry AndricSRCS_MIW+=	TextAPI/InterfaceFile.cpp
1590fe6060f1SDimitry AndricSRCS_MIW+=	TextAPI/PackedVersion.cpp
1591fe6060f1SDimitry AndricSRCS_MIW+=	TextAPI/Platform.cpp
1592fe6060f1SDimitry AndricSRCS_MIW+=	TextAPI/Target.cpp
1593fe6060f1SDimitry AndricSRCS_MIW+=	TextAPI/TextStub.cpp
1594fe6060f1SDimitry AndricSRCS_MIW+=	TextAPI/TextStubCommon.cpp
15959c954a48SEd MasteSRCS_MIN+=	ToolDrivers/llvm-dlltool/DlltoolDriver.cpp
15960db9a49eSDimitry AndricSRCS_MIW+=	ToolDrivers/llvm-lib/LibDriver.cpp
15979f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
15989f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/AggressiveInstCombine/TruncInstCombine.cpp
15999771cac2SDimitry AndricSRCS_MIN+=	Transforms/CFGuard/CFGuard.cpp
160009bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroCleanup.cpp
160181ad6265SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroConditionalWrapper.cpp
160209bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroEarly.cpp
160309bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroElide.cpp
160409bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroFrame.cpp
160509bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/CoroSplit.cpp
160609bfd043SDimitry AndricSRCS_MIN+=	Transforms/Coroutines/Coroutines.cpp
160709bfd043SDimitry AndricSRCS_MIN+=	Transforms/IPO/AlwaysInliner.cpp
1608e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/IPO/Annotation2Metadata.cpp
1609986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ArgumentPromotion.cpp
16104014a71fSDimitry AndricSRCS_MIN+=	Transforms/IPO/Attributor.cpp
161148aaf27bSDimitry AndricSRCS_MIN+=	Transforms/IPO/AttributorAttributes.cpp
1612986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/BarrierNoopPass.cpp
1613e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/IPO/BlockExtractor.cpp
161436cb3905SDimitry AndricSRCS_MIN+=	Transforms/IPO/CalledValuePropagation.cpp
1615986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ConstantMerge.cpp
1616986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/CrossDSOCFI.cpp
1617986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/DeadArgumentElimination.cpp
1618986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ElimAvailExtern.cpp
1619986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ExtractGV.cpp
1620986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/ForceFunctionAttrs.cpp
1621986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/FunctionAttrs.cpp
1622986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/FunctionImport.cpp
1623fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/IPO/FunctionSpecialization.cpp
1624986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/GlobalDCE.cpp
1625986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/GlobalOpt.cpp
162609bfd043SDimitry AndricSRCS_MIN+=	Transforms/IPO/GlobalSplit.cpp
16275e86819cSDimitry AndricSRCS_MIN+=	Transforms/IPO/HotColdSplitting.cpp
1628986e05bcSDimitry AndricSRCS_EXT+=	Transforms/IPO/IPO.cpp
1629e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/IPO/IROutliner.cpp
1630986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/InferFunctionAttrs.cpp
1631986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/InlineSimple.cpp
1632986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/Inliner.cpp
1633986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/Internalize.cpp
1634986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/LoopExtractor.cpp
1635986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/LowerTypeTests.cpp
1636986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/MergeFunctions.cpp
16375e801ac6SDimitry AndricSRCS_MIN+=	Transforms/IPO/ModuleInliner.cpp
163848aaf27bSDimitry AndricSRCS_MIN+=	Transforms/IPO/OpenMPOpt.cpp
1639986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/PartialInlining.cpp
1640986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/PassManagerBuilder.cpp
1641986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/PruneEH.cpp
16429f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/IPO/SCCP.cpp
1643e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/IPO/SampleContextTracker.cpp
1644986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/SampleProfile.cpp
1645e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/IPO/SampleProfileProbe.cpp
1646986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/StripDeadPrototypes.cpp
1647986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/StripSymbols.cpp
16489f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/IPO/SyntheticCountsPropagation.cpp
164909bfd043SDimitry AndricSRCS_MIN+=	Transforms/IPO/ThinLTOBitcodeWriter.cpp
1650986e05bcSDimitry AndricSRCS_MIN+=	Transforms/IPO/WholeProgramDevirt.cpp
1651986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineAddSub.cpp
1652986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineAndOrXor.cpp
16534014a71fSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineAtomicRMW.cpp
1654986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineCalls.cpp
1655986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineCasts.cpp
1656986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineCompares.cpp
1657986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
1658986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineMulDivRem.cpp
165948aaf27bSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineNegator.cpp
1660986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombinePHI.cpp
1661986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineSelect.cpp
1662986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineShifts.cpp
1663986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
1664986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstCombineVectorOps.cpp
1665986e05bcSDimitry AndricSRCS_MIN+=	Transforms/InstCombine/InstructionCombining.cpp
1666986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/AddressSanitizer.cpp
1667986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/BoundsChecking.cpp
16689f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/CGProfile.cpp
16695e86819cSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/ControlHeightReduction.cpp
1670986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/DataFlowSanitizer.cpp
1671986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/GCOVProfiling.cpp
167236cb3905SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/HWAddressSanitizer.cpp
1673986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/IndirectCallPromotion.cpp
16744014a71fSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/InstrOrderFile.cpp
1675986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/InstrProfiling.cpp
1676986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/Instrumentation.cpp
1677e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/MemProfiler.cpp
1678986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/MemorySanitizer.cpp
1679986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PGOInstrumentation.cpp
168024d58133SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PGOMemOPSizeOpt.cpp
16814014a71fSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/PoisonChecking.cpp
1682986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/SanitizerCoverage.cpp
1683986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/ThreadSanitizer.cpp
16849771cac2SDimitry AndricSRCS_MIN+=	Transforms/Instrumentation/ValueProfileCollector.cpp
1685986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/DependencyAnalysis.cpp
1686fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARC.cpp
1687986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCAPElim.cpp
1688986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCContract.cpp
1689986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCExpand.cpp
1690986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ObjCARCOpts.cpp
1691986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ProvenanceAnalysis.cpp
1692986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp
1693986e05bcSDimitry AndricSRCS_MIN+=	Transforms/ObjCARC/PtrState.cpp
1694986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/ADCE.cpp
1695986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/AlignmentFromAssumptions.cpp
1696e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Scalar/AnnotationRemarks.cpp
1697986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/BDCE.cpp
169836cb3905SDimitry AndricSRCS_MIN+=	Transforms/Scalar/CallSiteSplitting.cpp
1699986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/ConstantHoisting.cpp
1700e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Scalar/ConstraintElimination.cpp
1701986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/CorrelatedValuePropagation.cpp
1702986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/DCE.cpp
1703fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Scalar/DFAJumpThreading.cpp
1704986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/DeadStoreElimination.cpp
170536cb3905SDimitry AndricSRCS_MIN+=	Transforms/Scalar/DivRemPairs.cpp
1706986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/EarlyCSE.cpp
1707986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/FlattenCFGPass.cpp
1708986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Float2Int.cpp
1709986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GVN.cpp
1710986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GVNHoist.cpp
1711302affcbSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GVNSink.cpp
1712986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/GuardWidening.cpp
1713f1a29dd3SDimitry AndricSRCS_MIN+=	Transforms/Scalar/IVUsersPrinter.cpp
1714986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/IndVarSimplify.cpp
1715986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/InductiveRangeCheckElimination.cpp
1716e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Scalar/InferAddressSpaces.cpp
17179f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/InstSimplifyPass.cpp
1718986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/JumpThreading.cpp
1719986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LICM.cpp
1720f1a29dd3SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopAccessAnalysisPrinter.cpp
1721fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopBoundSplit.cpp
1722986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopDataPrefetch.cpp
1723986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopDeletion.cpp
1724986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopDistribute.cpp
1725e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopFlatten.cpp
17264014a71fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopFuse.cpp
1727986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopIdiomRecognize.cpp
172809bfd043SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopInstSimplify.cpp
1729986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopInterchange.cpp
1730986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopLoadElimination.cpp
1731f1a29dd3SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopPassManager.cpp
17325897d2f0SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopPredication.cpp
1733986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopRerollPass.cpp
1734986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopRotation.cpp
1735986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopSimplifyCFG.cpp
173609bfd043SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopSink.cpp
1737986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopStrengthReduce.cpp
1738986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopUnrollPass.cpp
17399f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopUnrollAndJamPass.cpp
1740986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LoopVersioningLICM.cpp
174181ad6265SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerAtomicPass.cpp
17429771cac2SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerConstantIntrinsics.cpp
1743986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerExpectIntrinsic.cpp
1744986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerGuardIntrinsic.cpp
17459771cac2SDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerMatrixIntrinsics.cpp
17464014a71fSDimitry AndricSRCS_MIN+=	Transforms/Scalar/LowerWidenableCondition.cpp
17475e86819cSDimitry AndricSRCS_MIN+=	Transforms/Scalar/MakeGuardsExplicit.cpp
1748986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/MemCpyOptimizer.cpp
174936cb3905SDimitry AndricSRCS_MIN+=	Transforms/Scalar/MergeICmps.cpp
1750986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/MergedLoadStoreMotion.cpp
1751986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/NaryReassociate.cpp
175209bfd043SDimitry AndricSRCS_MIN+=	Transforms/Scalar/NewGVN.cpp
1753986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/PartiallyInlineLibCalls.cpp
1754986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/PlaceSafepoints.cpp
1755986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Reassociate.cpp
1756986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Reg2Mem.cpp
1757986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/RewriteStatepointsForGC.cpp
1758986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SCCP.cpp
1759986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SROA.cpp
1760986e05bcSDimitry AndricSRCS_EXT+=	Transforms/Scalar/Scalar.cpp
1761e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Scalar/ScalarizeMaskedMemIntrin.cpp
1762986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Scalarizer.cpp
1763986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
1764f37b6182SDimitry AndricSRCS_MIN+=	Transforms/Scalar/SimpleLoopUnswitch.cpp
1765986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SimplifyCFGPass.cpp
1766986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/Sink.cpp
1767986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/SpeculativeExecution.cpp
1768986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/StraightLineStrengthReduce.cpp
1769986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/StructurizeCFG.cpp
177081ad6265SDimitry AndricSRCS_MIN+=	Transforms/Scalar/TLSVariableHoist.cpp
1771986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Scalar/TailRecursionElimination.cpp
17725e86819cSDimitry AndricSRCS_MIN+=	Transforms/Scalar/WarnMissedTransforms.cpp
177348aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/AMDGPUEmitPrintf.cpp
1774986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/ASanStackFrameLayout.cpp
1775986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/AddDiscriminators.cpp
177648aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/AssumeBundleBuilder.cpp
1777986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BasicBlockUtils.cpp
1778986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BreakCriticalEdges.cpp
1779986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BuildLibCalls.cpp
1780986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/BypassSlowDivision.cpp
178148aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/CallGraphUpdater.cpp
178236cb3905SDimitry AndricSRCS_MIN+=	Transforms/Utils/CallPromotionUtils.cpp
17835e86819cSDimitry AndricSRCS_MIN+=	Transforms/Utils/CanonicalizeAliases.cpp
178448aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/CanonicalizeFreezeInLoops.cpp
1785986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CloneFunction.cpp
1786986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CloneModule.cpp
1787986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CodeExtractor.cpp
178804eeddc0SDimitry AndricSRCS_MIN+=	Transforms/Utils/CodeLayout.cpp
17899771cac2SDimitry AndricSRCS_MIN+=	Transforms/Utils/CodeMoverUtils.cpp
1790986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/CtorUtils.cpp
179148aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/Debugify.cpp
1792986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/DemoteRegToStack.cpp
179336cb3905SDimitry AndricSRCS_MIN+=	Transforms/Utils/EntryExitInstrumenter.cpp
179409bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/EscapeEnumerator.cpp
1795986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/Evaluator.cpp
179648aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/FixIrreducible.cpp
1797986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/FlattenCFG.cpp
179809bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/FunctionComparator.cpp
1799986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/FunctionImportUtils.cpp
1800986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/GlobalStatus.cpp
18015e86819cSDimitry AndricSRCS_MIN+=	Transforms/Utils/GuardUtils.cpp
1802fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Utils/HelloWorld.cpp
18039771cac2SDimitry AndricSRCS_MIN+=	Transforms/Utils/InjectTLIMappings.cpp
1804986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/InlineFunction.cpp
1805986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/InstructionNamer.cpp
1806986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/IntegerDivision.cpp
1807986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LCSSA.cpp
180809bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/LibCallsShrinkWrap.cpp
1809986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/Local.cpp
1810e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopPeel.cpp
1811986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopSimplify.cpp
18129f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopRotationUtils.cpp
1813986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUnroll.cpp
18149f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUnrollAndJam.cpp
1815986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUnrollRuntime.cpp
1816986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopUtils.cpp
1817986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LoopVersioning.cpp
181881ad6265SDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerAtomic.cpp
181981ad6265SDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerGlobalDtors.cpp
1820986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerInvoke.cpp
1821986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/LowerSwitch.cpp
1822e8d8bef9SDimitry AndricSRCS_MIN+=	Transforms/Utils/MatrixUtils.cpp
1823986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/Mem2Reg.cpp
1824986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/MetaRenamer.cpp
1825fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Utils/MemoryOpRemark.cpp
182681ad6265SDimitry AndricSRCS_MIN+=	Transforms/Utils/MemoryTaggingSupport.cpp
182781ad6265SDimitry AndricSRCS_MIN+=	Transforms/Utils/MisExpect.cpp
1828986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/ModuleUtils.cpp
182909bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/NameAnonGlobals.cpp
18305897d2f0SDimitry AndricSRCS_MIN+=	Transforms/Utils/PredicateInfo.cpp
1831986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/PromoteMemoryToRegister.cpp
1832fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Utils/RelLookupTableConverter.cpp
1833fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Utils/SCCPSolver.cpp
1834986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SSAUpdater.cpp
1835fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Utils/SSAUpdaterBulk.cpp
1836986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SanitizerStats.cpp
183748aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/ScalarEvolutionExpander.cpp
18384824e7fdSDimitry AndricSRCS_MIN+=	Transforms/Utils/SampleProfileInference.cpp
1839fe6060f1SDimitry AndricSRCS_MIN+=	Transforms/Utils/SampleProfileLoaderBaseUtil.cpp
1840986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SimplifyCFG.cpp
1841986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SimplifyIndVar.cpp
1842986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SimplifyLibCalls.cpp
18434014a71fSDimitry AndricSRCS_MIN+=	Transforms/Utils/SizeOpts.cpp
1844986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SplitModule.cpp
184509bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/StripGCRelocates.cpp
184609bfd043SDimitry AndricSRCS_MIN+=	Transforms/Utils/StripNonLineTableDebugInfo.cpp
1847986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/SymbolRewriter.cpp
1848986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/UnifyFunctionExitNodes.cpp
184948aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Utils/UnifyLoopExits.cpp
1850986e05bcSDimitry AndricSRCS_EXT+=	Transforms/Utils/Utils.cpp
18515897d2f0SDimitry AndricSRCS_MIN+=	Transforms/Utils/VNCoercion.cpp
1852986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Utils/ValueMapper.cpp
1853986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/LoadStoreVectorizer.cpp
18549f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/LoopVectorizationLegality.cpp
1855986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/LoopVectorize.cpp
1856986e05bcSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/SLPVectorizer.cpp
185736cb3905SDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlan.cpp
18589f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanHCFGBuilder.cpp
185981ad6265SDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanRecipes.cpp
18609771cac2SDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanTransforms.cpp
18619f6e9a9fSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VPlanVerifier.cpp
186248aaf27bSDimitry AndricSRCS_MIN+=	Transforms/Vectorize/VectorCombine.cpp
1863986e05bcSDimitry AndricSRCS_EXT+=	Transforms/Vectorize/Vectorize.cpp
186481ad6265SDimitry AndricSRCS_MIN+=	WindowsDriver/MSVCPaths.cpp
1865efa75597SDimitry AndricSRCS_EXT+=	XRay/BlockIndexer.cpp
1866efa75597SDimitry AndricSRCS_EXT+=	XRay/BlockVerifier.cpp
1867efa75597SDimitry AndricSRCS_EXT+=	XRay/FDRRecordProducer.cpp
1868efa75597SDimitry AndricSRCS_EXT+=	XRay/FDRRecords.cpp
1869efa75597SDimitry AndricSRCS_EXT+=	XRay/FDRTraceExpander.cpp
1870efa75597SDimitry AndricSRCS_EXT+=	XRay/FileHeaderReader.cpp
1871050e2df1SDimitry AndricSRCS_EXT+=	XRay/InstrumentationMap.cpp
1872efa75597SDimitry AndricSRCS_EXT+=	XRay/LogBuilderConsumer.cpp
1873efa75597SDimitry AndricSRCS_EXT+=	XRay/RecordInitializer.cpp
187467b158f6SDimitry AndricSRCS_EXT+=	XRay/Trace.cpp
1875986e05bcSDimitry Andric
1876986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_MIN}
1877caf90252SBryan Drewery.if !defined(TOOLS_PREFIX) || ${MK_LLD_BOOTSTRAP} != "no"
187830d4828eSDimitry AndricSRCS_ALL+=	${SRCS_MIW}
187930d4828eSDimitry Andric.endif
1880986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no"
1881986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_EXT}
1882986e05bcSDimitry Andric.endif
1883986e05bcSDimitry Andric.if ${MK_CLANG_FULL} != "no"
1884986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_FUL}
1885986e05bcSDimitry Andric.endif
188678187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLD} != "no" || \
188778187278SBryan Drewery    (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no")
188875bc38b9SEd MasteSRCS_ALL+=	${SRCS_EXL}
188975bc38b9SEd Maste.endif
189078187278SBryan Drewery.if ${MK_LLD} != "no" || \
189178187278SBryan Drewery    (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no")
18920fc5d238SDimitry AndricSRCS_ALL+=	${SRCS_LLD}
18930fc5d238SDimitry Andric.endif
1894986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no"
1895986e05bcSDimitry AndricSRCS_ALL+=	${SRCS_XDB}
1896986e05bcSDimitry Andric.endif
189778187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || ${MK_LLD} != "no" || \
189878187278SBryan Drewery    (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no")
189975bc38b9SEd MasteSRCS_ALL+=	${SRCS_XDL}
190075bc38b9SEd Maste.endif
190130d4828eSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || !defined(TOOLS_PREFIX)
190230d4828eSDimitry AndricSRCS_ALL+=	${SRCS_XDW}
190330d4828eSDimitry Andric.endif
190448aaf27bSDimitry AndricSRCS+=		${GENSRCS}
1905986e05bcSDimitry AndricSRCS+=		${SRCS_ALL:O}
1906986e05bcSDimitry Andric
190748aaf27bSDimitry Andricllvm/Frontend/OpenMP/OMP.h.inc: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
190848aaf27bSDimitry Andric	${LLVM_TBLGEN} --gen-directive-decl \
190948aaf27bSDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
191048aaf27bSDimitry Andric	    ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
191148aaf27bSDimitry AndricTGHDRS+=	llvm/Frontend/OpenMP/OMP.h.inc
191248aaf27bSDimitry Andric
1913e8d8bef9SDimitry Andricllvm/Frontend/OpenMP/OMP.inc: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
1914fe6060f1SDimitry Andric	${LLVM_TBLGEN} --gen-directive-impl \
191548aaf27bSDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
191648aaf27bSDimitry Andric	    ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
1917e8d8bef9SDimitry AndricTGHDRS+=	llvm/Frontend/OpenMP/OMP.inc
191848aaf27bSDimitry Andric
191948aaf27bSDimitry AndricOMP.cpp: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
192048aaf27bSDimitry Andric	${LLVM_TBLGEN} --gen-directive-impl \
192148aaf27bSDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
192248aaf27bSDimitry Andric	    ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td
192348aaf27bSDimitry AndricGENSRCS+=	OMP.cpp
192448aaf27bSDimitry Andric
19259f6e9a9fSDimitry Andricllvm/IR/Attributes.inc: ${LLVM_SRCS}/include/llvm/IR/Attributes.td
1926986e05bcSDimitry Andric	${LLVM_TBLGEN} -gen-attrs \
1927050e2df1SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
1928986e05bcSDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Attributes.td
19299f6e9a9fSDimitry AndricTGHDRS+=	llvm/IR/Attributes.inc
1930986e05bcSDimitry Andric
19319f6e9a9fSDimitry Andricllvm/IR/IntrinsicEnums.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
19329f6e9a9fSDimitry Andric	${LLVM_TBLGEN} -gen-intrinsic-enums \
1933050e2df1SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
1934986e05bcSDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
19359f6e9a9fSDimitry AndricTGHDRS+=	llvm/IR/IntrinsicEnums.inc
19369f6e9a9fSDimitry Andric
19379f6e9a9fSDimitry Andricllvm/IR/IntrinsicImpl.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
19389f6e9a9fSDimitry Andric	${LLVM_TBLGEN} -gen-intrinsic-impl \
19399f6e9a9fSDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
19409f6e9a9fSDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
19419f6e9a9fSDimitry AndricTGHDRS+=	llvm/IR/IntrinsicImpl.inc
1942986e05bcSDimitry Andric
19439771cac2SDimitry Andric.for arch in \
1944753f127fSDimitry Andric	AArch64/aarch64 AMDGPU/amdgcn ARM/arm BPF/bpf DirectX/dx \
194581ad6265SDimitry Andric	Hexagon/hexagon Mips/mips NVPTX/nvvm PowerPC/ppc R600/r600 RISCV/riscv \
194681ad6265SDimitry Andric	S390/s390 VE/ve WebAssembly/wasm X86/x86 XCore/xcore
19479771cac2SDimitry Andricllvm/IR/Intrinsics${arch:H}.h: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
19489771cac2SDimitry Andric	${LLVM_TBLGEN} -gen-intrinsic-enums -intrinsic-prefix=${arch:T} \
19499771cac2SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
19509771cac2SDimitry Andric	    ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
19519771cac2SDimitry AndricTGHDRS+=	llvm/IR/Intrinsics${arch:H}.h
19529771cac2SDimitry Andric.endfor
19539771cac2SDimitry Andric
1954b40b48b8SDimitry Andricllvm-lib/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td
1955986e05bcSDimitry Andric	${LLVM_TBLGEN} -gen-opt-parser-defs \
1956050e2df1SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
19575517e702SDimitry Andric	    ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td
1958b40b48b8SDimitry AndricTGHDRS+=	llvm-lib/Options.inc
1959b40b48b8SDimitry AndricCFLAGS.LibDriver.cpp+=	-I${.OBJDIR}/llvm-lib
1960b40b48b8SDimitry Andric
1961b40b48b8SDimitry Andricllvm-dlltool/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td
1962b40b48b8SDimitry Andric	${LLVM_TBLGEN} -gen-opt-parser-defs \
1963b40b48b8SDimitry Andric	    -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
1964b40b48b8SDimitry Andric	    ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td
1965b40b48b8SDimitry AndricTGHDRS+=	llvm-dlltool/Options.inc
1966b40b48b8SDimitry AndricCFLAGS.DlltoolDriver.cpp+=	-I${.OBJDIR}/llvm-dlltool
1967986e05bcSDimitry Andric
1968cd283100SBryan Drewerybeforebuild:
1969cd283100SBryan Drewery# 20170724 remove stale Options.inc file, of which there are two different
197037cd60a3SDimitry Andric# versions after upstream r308421, one for llvm-lib, one for llvm-dlltool
1971cd283100SBryan Drewery.for f in Options.inc
1972cd283100SBryan Drewery.if exists(${f}) || exists(${f}.d)
1973cd283100SBryan Drewery	@echo Removing stale generated ${f} files
1974cd283100SBryan Drewery	@rm -f ${f} ${f}.d
1975cd283100SBryan Drewery.endif
1976cd283100SBryan Drewery.endfor
1977cd283100SBryan Drewery
1978986e05bcSDimitry Andric# Note: some rules are superfluous, not every combination is valid.
1979986e05bcSDimitry Andric.for arch in \
19803b7fd87cSWarner Losh	AArch64/AArch64 ARM/ARM BPF/BPF Mips/Mips PowerPC/PPC RISCV/RISCV \
19813b7fd87cSWarner Losh	X86/X86
1982986e05bcSDimitry Andric. for hdr in \
1983986e05bcSDimitry Andric	AsmMatcher/-gen-asm-matcher \
1984986e05bcSDimitry Andric	AsmWriter/-gen-asm-writer \
198548aaf27bSDimitry Andric	AsmWriter1/-gen-asm-writer,-asmwriternum=1 \
1986986e05bcSDimitry Andric	CallingConv/-gen-callingconv \
1987986e05bcSDimitry Andric	CodeEmitter/-gen-emitter \
1988b2689b12SMitchell Horne	CompressInstEmitter/-gen-compress-inst-emitter \
1989986e05bcSDimitry Andric	DAGISel/-gen-dag-isel \
1990986e05bcSDimitry Andric	DisassemblerTables/-gen-disassembler \
19915897d2f0SDimitry Andric	EVEX2VEXTables/-gen-x86-EVEX2VEX-tables \
1992986e05bcSDimitry Andric	FastISel/-gen-fast-isel \
19933d54deb3SDimitry Andric	GlobalISel/-gen-global-isel \
199481ad6265SDimitry Andric	InstrInfo/-gen-instr-info${arch:MX86/X86:C/X86\/X86/,-instr-info-expand-mi-operand-info=0/} \
1995986e05bcSDimitry Andric	MCCodeEmitter/-gen-emitter \
1996986e05bcSDimitry Andric	MCPseudoLowering/-gen-pseudo-lowering \
199781ad6265SDimitry Andric	MnemonicTables/-gen-x86-mnemonic-tables,-asmwriternum=1 \
1998fe6060f1SDimitry Andric	O0PreLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}O0PreLegalizerCombinerHelper \
199948aaf27bSDimitry Andric	PostLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}PostLegalizerCombinerHelper \
2000e8d8bef9SDimitry Andric	PostLegalizeGILowering/-gen-global-isel-combiner,-combiners=${arch:H}PostLegalizerLoweringHelper \
200148aaf27bSDimitry Andric	PreLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}PreLegalizerCombinerHelper \
20025897d2f0SDimitry Andric	RegisterBank/-gen-register-bank \
2003986e05bcSDimitry Andric	RegisterInfo/-gen-register-info \
2004e8d8bef9SDimitry Andric	SearchableTables/-gen-searchable-tables \
2005986e05bcSDimitry Andric	SubtargetInfo/-gen-subtarget \
200636cb3905SDimitry Andric	SystemOperands/-gen-searchable-tables \
200736cb3905SDimitry Andric	SystemRegister/-gen-searchable-tables
2008986e05bcSDimitry Andric${arch:T}Gen${hdr:H}.inc: ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td
2009986e05bcSDimitry Andric	${LLVM_TBLGEN} ${hdr:T:C/,/ /g} \
2010986e05bcSDimitry Andric	    -I ${LLVM_SRCS}/include -I ${LLVM_SRCS}/lib/Target/${arch:H} \
2011050e2df1SDimitry Andric	    -d ${.TARGET}.d -o ${.TARGET} \
2012986e05bcSDimitry Andric	    ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td
2013986e05bcSDimitry Andric. endfor
2014986e05bcSDimitry Andric.endfor
2015cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no"
2016986e05bcSDimitry AndricTGHDRS+=	AArch64GenAsmMatcher.inc
2017986e05bcSDimitry AndricTGHDRS+=	AArch64GenAsmWriter.inc
2018986e05bcSDimitry AndricTGHDRS+=	AArch64GenAsmWriter1.inc
2019986e05bcSDimitry AndricTGHDRS+=	AArch64GenCallingConv.inc
2020986e05bcSDimitry AndricTGHDRS+=	AArch64GenDAGISel.inc
2021986e05bcSDimitry AndricTGHDRS+=	AArch64GenDisassemblerTables.inc
2022986e05bcSDimitry AndricTGHDRS+=	AArch64GenFastISel.inc
20233d54deb3SDimitry AndricTGHDRS+=	AArch64GenGlobalISel.inc
2024986e05bcSDimitry AndricTGHDRS+=	AArch64GenInstrInfo.inc
2025986e05bcSDimitry AndricTGHDRS+=	AArch64GenMCCodeEmitter.inc
2026986e05bcSDimitry AndricTGHDRS+=	AArch64GenMCPseudoLowering.inc
2027fe6060f1SDimitry AndricTGHDRS+=	AArch64GenO0PreLegalizeGICombiner.inc
202848aaf27bSDimitry AndricTGHDRS+=	AArch64GenPostLegalizeGICombiner.inc
2029e8d8bef9SDimitry AndricTGHDRS+=	AArch64GenPostLegalizeGILowering.inc
203048aaf27bSDimitry AndricTGHDRS+=	AArch64GenPreLegalizeGICombiner.inc
20315897d2f0SDimitry AndricTGHDRS+=	AArch64GenRegisterBank.inc
2032986e05bcSDimitry AndricTGHDRS+=	AArch64GenRegisterInfo.inc
2033986e05bcSDimitry AndricTGHDRS+=	AArch64GenSubtargetInfo.inc
2034986e05bcSDimitry AndricTGHDRS+=	AArch64GenSystemOperands.inc
2035cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64
2036cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no"
2037986e05bcSDimitry AndricTGHDRS+=	ARMGenAsmMatcher.inc
2038986e05bcSDimitry AndricTGHDRS+=	ARMGenAsmWriter.inc
2039986e05bcSDimitry AndricTGHDRS+=	ARMGenCallingConv.inc
2040986e05bcSDimitry AndricTGHDRS+=	ARMGenDAGISel.inc
2041986e05bcSDimitry AndricTGHDRS+=	ARMGenDisassemblerTables.inc
2042986e05bcSDimitry AndricTGHDRS+=	ARMGenFastISel.inc
20433d54deb3SDimitry AndricTGHDRS+=	ARMGenGlobalISel.inc
2044986e05bcSDimitry AndricTGHDRS+=	ARMGenInstrInfo.inc
2045986e05bcSDimitry AndricTGHDRS+=	ARMGenMCCodeEmitter.inc
2046986e05bcSDimitry AndricTGHDRS+=	ARMGenMCPseudoLowering.inc
20475897d2f0SDimitry AndricTGHDRS+=	ARMGenRegisterBank.inc
2048986e05bcSDimitry AndricTGHDRS+=	ARMGenRegisterInfo.inc
2049986e05bcSDimitry AndricTGHDRS+=	ARMGenSubtargetInfo.inc
205036cb3905SDimitry AndricTGHDRS+=	ARMGenSystemRegister.inc
2051cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM
205289edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no"
205389edb881SDimitry AndricTGHDRS+=	BPFGenAsmMatcher.inc
205489edb881SDimitry AndricTGHDRS+=	BPFGenAsmWriter.inc
205589edb881SDimitry AndricTGHDRS+=	BPFGenCallingConv.inc
205689edb881SDimitry AndricTGHDRS+=	BPFGenDAGISel.inc
205789edb881SDimitry AndricTGHDRS+=	BPFGenDisassemblerTables.inc
205889edb881SDimitry AndricTGHDRS+=	BPFGenInstrInfo.inc
205989edb881SDimitry AndricTGHDRS+=	BPFGenMCCodeEmitter.inc
206089edb881SDimitry AndricTGHDRS+=	BPFGenRegisterInfo.inc
206189edb881SDimitry AndricTGHDRS+=	BPFGenSubtargetInfo.inc
206289edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF
2063cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no"
2064986e05bcSDimitry AndricTGHDRS+=	MipsGenAsmMatcher.inc
2065986e05bcSDimitry AndricTGHDRS+=	MipsGenAsmWriter.inc
2066986e05bcSDimitry AndricTGHDRS+=	MipsGenCallingConv.inc
2067986e05bcSDimitry AndricTGHDRS+=	MipsGenDAGISel.inc
2068986e05bcSDimitry AndricTGHDRS+=	MipsGenDisassemblerTables.inc
2069986e05bcSDimitry AndricTGHDRS+=	MipsGenFastISel.inc
20709f6e9a9fSDimitry AndricTGHDRS+=	MipsGenGlobalISel.inc
2071986e05bcSDimitry AndricTGHDRS+=	MipsGenInstrInfo.inc
2072986e05bcSDimitry AndricTGHDRS+=	MipsGenMCCodeEmitter.inc
2073986e05bcSDimitry AndricTGHDRS+=	MipsGenMCPseudoLowering.inc
207481ad6265SDimitry AndricTGHDRS+=	MipsGenPostLegalizeGICombiner.inc
20759f6e9a9fSDimitry AndricTGHDRS+=	MipsGenRegisterBank.inc
2076986e05bcSDimitry AndricTGHDRS+=	MipsGenRegisterInfo.inc
2077986e05bcSDimitry AndricTGHDRS+=	MipsGenSubtargetInfo.inc
2078cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS
2079cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no"
2080986e05bcSDimitry AndricTGHDRS+=	PPCGenAsmMatcher.inc
2081986e05bcSDimitry AndricTGHDRS+=	PPCGenAsmWriter.inc
2082986e05bcSDimitry AndricTGHDRS+=	PPCGenCallingConv.inc
2083986e05bcSDimitry AndricTGHDRS+=	PPCGenDAGISel.inc
2084986e05bcSDimitry AndricTGHDRS+=	PPCGenDisassemblerTables.inc
2085986e05bcSDimitry AndricTGHDRS+=	PPCGenFastISel.inc
2086e8d8bef9SDimitry AndricTGHDRS+=	PPCGenGlobalISel.inc
2087986e05bcSDimitry AndricTGHDRS+=	PPCGenInstrInfo.inc
2088986e05bcSDimitry AndricTGHDRS+=	PPCGenMCCodeEmitter.inc
2089e8d8bef9SDimitry AndricTGHDRS+=	PPCGenRegisterBank.inc
2090986e05bcSDimitry AndricTGHDRS+=	PPCGenRegisterInfo.inc
2091986e05bcSDimitry AndricTGHDRS+=	PPCGenSubtargetInfo.inc
2092cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC
2093b2689b12SMitchell Horne.if ${MK_LLVM_TARGET_RISCV} != "no"
2094b2689b12SMitchell HorneTGHDRS+=	RISCVGenAsmMatcher.inc
2095b2689b12SMitchell HorneTGHDRS+=	RISCVGenAsmWriter.inc
2096b2689b12SMitchell HorneTGHDRS+=	RISCVGenCallingConv.inc
2097b2689b12SMitchell HorneTGHDRS+=	RISCVGenCompressInstEmitter.inc
2098b2689b12SMitchell HorneTGHDRS+=	RISCVGenDAGISel.inc
2099b2689b12SMitchell HorneTGHDRS+=	RISCVGenDisassemblerTables.inc
2100b2689b12SMitchell HorneTGHDRS+=	RISCVGenDAGISel.inc
21019771cac2SDimitry AndricTGHDRS+=	RISCVGenGlobalISel.inc
2102b2689b12SMitchell HorneTGHDRS+=	RISCVGenInstrInfo.inc
2103b2689b12SMitchell HorneTGHDRS+=	RISCVGenMCCodeEmitter.inc
2104b2689b12SMitchell HorneTGHDRS+=	RISCVGenMCPseudoLowering.inc
21059771cac2SDimitry AndricTGHDRS+=	RISCVGenRegisterBank.inc
2106b2689b12SMitchell HorneTGHDRS+=	RISCVGenRegisterInfo.inc
2107e8d8bef9SDimitry AndricTGHDRS+=	RISCVGenSearchableTables.inc
2108b2689b12SMitchell HorneTGHDRS+=	RISCVGenSubtargetInfo.inc
2109b2689b12SMitchell HorneTGHDRS+=	RISCVGenSystemOperands.inc
2110b2689b12SMitchell Horne.endif # MK_LLVM_TARGET_RISCV
2111cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no"
2112986e05bcSDimitry AndricTGHDRS+=	X86GenAsmMatcher.inc
2113986e05bcSDimitry AndricTGHDRS+=	X86GenAsmWriter.inc
2114986e05bcSDimitry AndricTGHDRS+=	X86GenAsmWriter1.inc
2115986e05bcSDimitry AndricTGHDRS+=	X86GenCallingConv.inc
2116986e05bcSDimitry AndricTGHDRS+=	X86GenDAGISel.inc
2117986e05bcSDimitry AndricTGHDRS+=	X86GenDisassemblerTables.inc
21185897d2f0SDimitry AndricTGHDRS+=	X86GenEVEX2VEXTables.inc
2119986e05bcSDimitry AndricTGHDRS+=	X86GenFastISel.inc
21203d54deb3SDimitry AndricTGHDRS+=	X86GenGlobalISel.inc
2121986e05bcSDimitry AndricTGHDRS+=	X86GenInstrInfo.inc
212281ad6265SDimitry AndricTGHDRS+=	X86GenMnemonicTables.inc
21235897d2f0SDimitry AndricTGHDRS+=	X86GenRegisterBank.inc
2124986e05bcSDimitry AndricTGHDRS+=	X86GenRegisterInfo.inc
2125986e05bcSDimitry AndricTGHDRS+=	X86GenSubtargetInfo.inc
2126cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86
2127986e05bcSDimitry Andric
2128ddf95e2aSBryan DreweryDEPENDFILES+=	${TGHDRS:C/$/.d/}
2129986e05bcSDimitry AndricDPSRCS+=	${TGHDRS}
2130986e05bcSDimitry AndricCLEANFILES+=	${TGHDRS} ${TGHDRS:C/$/.d/}
213148aaf27bSDimitry AndricCLEANFILES+=	${GENSRCS} ${GENSRCS:C/$/.d/}
2132986e05bcSDimitry Andric
2133986e05bcSDimitry Andric.include "../llvm.build.mk"
2134986e05bcSDimitry Andric.include <bsd.lib.mk>
2135