]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/clang/libllvm/Makefile
Merge compiler-rt trunk r338150, and resolve conflicts.
[FreeBSD/FreeBSD.git] / lib / clang / libllvm / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4 .include "../llvm.pre.mk"
5
6 LIB=            llvm
7 INTERNALLIB=
8
9 CFLAGS+=        -I${.OBJDIR}
10
11 .if ${MK_LLVM_TARGET_AARCH64} == "no" && ${MK_LLVM_TARGET_ARM} == "no" && \
12     ${MK_LLVM_TARGET_MIPS} == "no" && ${MK_LLVM_TARGET_POWERPC} == "no" && \
13     ${MK_LLVM_TARGET_SPARC} == "no" && ${MK_LLVM_TARGET_X86} == "no"
14 .error Please enable at least one of: MK_LLVM_TARGET_AARCH64,\
15  MK_LLVM_TARGET_ARM, MK_LLVM_TARGET_MIPS, MK_LLVM_TARGET_POWERPC,\
16  MK_LLVM_TARGET_SPARC, or MK_LLVM_TARGET_X86
17 .endif
18
19 .for arch in AArch64 ARM Mips PowerPC Sparc X86
20 . if ${MK_LLVM_TARGET_${arch:tu}} != "no"
21 CFLAGS+=        -I${LLVM_SRCS}/lib/Target/${arch}
22 . endif
23 .endfor
24
25 SRCDIR=         lib
26
27 SRCS_MIN+=      Analysis/AliasAnalysis.cpp
28 SRCS_MIN+=      Analysis/AliasAnalysisEvaluator.cpp
29 SRCS_MIN+=      Analysis/AliasAnalysisSummary.cpp
30 SRCS_MIN+=      Analysis/AliasSetTracker.cpp
31 SRCS_EXT+=      Analysis/Analysis.cpp
32 SRCS_MIN+=      Analysis/AssumptionCache.cpp
33 SRCS_MIN+=      Analysis/BasicAliasAnalysis.cpp
34 SRCS_MIN+=      Analysis/BlockFrequencyInfo.cpp
35 SRCS_MIN+=      Analysis/BlockFrequencyInfoImpl.cpp
36 SRCS_MIN+=      Analysis/BranchProbabilityInfo.cpp
37 SRCS_MIN+=      Analysis/CFG.cpp
38 SRCS_MIN+=      Analysis/CFGPrinter.cpp
39 SRCS_MIN+=      Analysis/CFLAndersAliasAnalysis.cpp
40 SRCS_MIN+=      Analysis/CFLSteensAliasAnalysis.cpp
41 SRCS_MIN+=      Analysis/CGSCCPassManager.cpp
42 SRCS_MIN+=      Analysis/CallGraph.cpp
43 SRCS_MIN+=      Analysis/CallGraphSCCPass.cpp
44 SRCS_MIN+=      Analysis/CallPrinter.cpp
45 SRCS_MIN+=      Analysis/CaptureTracking.cpp
46 SRCS_MIN+=      Analysis/CmpInstAnalysis.cpp
47 SRCS_MIN+=      Analysis/CodeMetrics.cpp
48 SRCS_MIN+=      Analysis/ConstantFolding.cpp
49 SRCS_MIN+=      Analysis/CostModel.cpp
50 SRCS_MIN+=      Analysis/Delinearization.cpp
51 SRCS_MIN+=      Analysis/DemandedBits.cpp
52 SRCS_MIN+=      Analysis/DependenceAnalysis.cpp
53 SRCS_MIN+=      Analysis/DivergenceAnalysis.cpp
54 SRCS_MIN+=      Analysis/DomPrinter.cpp
55 SRCS_MIN+=      Analysis/DominanceFrontier.cpp
56 SRCS_MIN+=      Analysis/EHPersonalities.cpp
57 SRCS_MIN+=      Analysis/GlobalsModRef.cpp
58 SRCS_MIN+=      Analysis/IVUsers.cpp
59 SRCS_MIN+=      Analysis/IndirectCallPromotionAnalysis.cpp
60 SRCS_MIN+=      Analysis/InlineCost.cpp
61 SRCS_MIN+=      Analysis/InstCount.cpp
62 SRCS_MIN+=      Analysis/InstructionSimplify.cpp
63 SRCS_MIN+=      Analysis/Interval.cpp
64 SRCS_MIN+=      Analysis/IntervalPartition.cpp
65 SRCS_MIN+=      Analysis/IteratedDominanceFrontier.cpp
66 SRCS_MIN+=      Analysis/LazyBlockFrequencyInfo.cpp
67 SRCS_MIN+=      Analysis/LazyBranchProbabilityInfo.cpp
68 SRCS_MIN+=      Analysis/LazyCallGraph.cpp
69 SRCS_MIN+=      Analysis/LazyValueInfo.cpp
70 SRCS_MIN+=      Analysis/Lint.cpp
71 SRCS_MIN+=      Analysis/Loads.cpp
72 SRCS_MIN+=      Analysis/LoopAccessAnalysis.cpp
73 SRCS_MIN+=      Analysis/LoopAnalysisManager.cpp
74 SRCS_MIN+=      Analysis/LoopInfo.cpp
75 SRCS_MIN+=      Analysis/LoopPass.cpp
76 SRCS_MIN+=      Analysis/LoopUnrollAnalyzer.cpp
77 SRCS_MIN+=      Analysis/MemDepPrinter.cpp
78 SRCS_MIN+=      Analysis/MemDerefPrinter.cpp
79 SRCS_MIN+=      Analysis/MemoryBuiltins.cpp
80 SRCS_MIN+=      Analysis/MemoryDependenceAnalysis.cpp
81 SRCS_MIN+=      Analysis/MemoryLocation.cpp
82 SRCS_MIN+=      Analysis/MemorySSA.cpp
83 SRCS_MIN+=      Analysis/MemorySSAUpdater.cpp
84 SRCS_MIN+=      Analysis/ModuleDebugInfoPrinter.cpp
85 SRCS_MIN+=      Analysis/ModuleSummaryAnalysis.cpp
86 SRCS_MIN+=      Analysis/MustExecute.cpp
87 SRCS_MIN+=      Analysis/ObjCARCAliasAnalysis.cpp
88 SRCS_MIN+=      Analysis/ObjCARCAnalysisUtils.cpp
89 SRCS_MIN+=      Analysis/ObjCARCInstKind.cpp
90 SRCS_MIN+=      Analysis/OptimizationRemarkEmitter.cpp
91 SRCS_MIN+=      Analysis/OrderedBasicBlock.cpp
92 SRCS_MIN+=      Analysis/PHITransAddr.cpp
93 SRCS_MIN+=      Analysis/PhiValues.cpp
94 SRCS_MIN+=      Analysis/PostDominators.cpp
95 SRCS_MIN+=      Analysis/ProfileSummaryInfo.cpp
96 SRCS_MIN+=      Analysis/PtrUseVisitor.cpp
97 SRCS_MIN+=      Analysis/RegionInfo.cpp
98 SRCS_MIN+=      Analysis/RegionPass.cpp
99 SRCS_MIN+=      Analysis/RegionPrinter.cpp
100 SRCS_MIN+=      Analysis/ScalarEvolution.cpp
101 SRCS_MIN+=      Analysis/ScalarEvolutionAliasAnalysis.cpp
102 SRCS_MIN+=      Analysis/ScalarEvolutionExpander.cpp
103 SRCS_MIN+=      Analysis/ScalarEvolutionNormalization.cpp
104 SRCS_MIN+=      Analysis/ScopedNoAliasAA.cpp
105 SRCS_MIN+=      Analysis/SyntheticCountsUtils.cpp
106 SRCS_MIN+=      Analysis/TargetLibraryInfo.cpp
107 SRCS_MIN+=      Analysis/TargetTransformInfo.cpp
108 SRCS_MIN+=      Analysis/Trace.cpp
109 SRCS_MIN+=      Analysis/TypeBasedAliasAnalysis.cpp
110 SRCS_MIN+=      Analysis/TypeMetadataUtils.cpp
111 SRCS_MIN+=      Analysis/ValueLattice.cpp
112 SRCS_MIN+=      Analysis/ValueLatticeUtils.cpp
113 SRCS_MIN+=      Analysis/ValueTracking.cpp
114 SRCS_MIN+=      Analysis/VectorUtils.cpp
115 SRCS_MIN+=      AsmParser/LLLexer.cpp
116 SRCS_MIN+=      AsmParser/LLParser.cpp
117 SRCS_MIN+=      AsmParser/Parser.cpp
118 SRCS_MIN+=      BinaryFormat/Dwarf.cpp
119 SRCS_MIN+=      BinaryFormat/Magic.cpp
120 SRCS_MIN+=      BinaryFormat/Wasm.cpp
121 SRCS_MIN+=      Bitcode/Reader/BitReader.cpp
122 SRCS_MIN+=      Bitcode/Reader/BitcodeReader.cpp
123 SRCS_MIN+=      Bitcode/Reader/BitstreamReader.cpp
124 SRCS_MIN+=      Bitcode/Reader/MetadataLoader.cpp
125 SRCS_MIN+=      Bitcode/Reader/ValueList.cpp
126 SRCS_MIN+=      Bitcode/Writer/BitWriter.cpp
127 SRCS_MIN+=      Bitcode/Writer/BitcodeWriter.cpp
128 SRCS_MIN+=      Bitcode/Writer/BitcodeWriterPass.cpp
129 SRCS_MIN+=      Bitcode/Writer/ValueEnumerator.cpp
130 SRCS_MIN+=      CodeGen/AggressiveAntiDepBreaker.cpp
131 SRCS_MIN+=      CodeGen/AllocationOrder.cpp
132 SRCS_MIN+=      CodeGen/Analysis.cpp
133 SRCS_MIN+=      CodeGen/AsmPrinter/ARMException.cpp
134 SRCS_MIN+=      CodeGen/AsmPrinter/AccelTable.cpp
135 SRCS_MIN+=      CodeGen/AsmPrinter/AddressPool.cpp
136 SRCS_MIN+=      CodeGen/AsmPrinter/AsmPrinter.cpp
137 SRCS_MIN+=      CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
138 SRCS_MIN+=      CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
139 SRCS_MIN+=      CodeGen/AsmPrinter/CodeViewDebug.cpp
140 SRCS_MIN+=      CodeGen/AsmPrinter/DIE.cpp
141 SRCS_MIN+=      CodeGen/AsmPrinter/DIEHash.cpp
142 SRCS_MIN+=      CodeGen/AsmPrinter/DbgValueHistoryCalculator.cpp
143 SRCS_MIN+=      CodeGen/AsmPrinter/DebugHandlerBase.cpp
144 SRCS_MIN+=      CodeGen/AsmPrinter/DebugLocStream.cpp
145 SRCS_MIN+=      CodeGen/AsmPrinter/DwarfCFIException.cpp
146 SRCS_MIN+=      CodeGen/AsmPrinter/DwarfCompileUnit.cpp
147 SRCS_MIN+=      CodeGen/AsmPrinter/DwarfDebug.cpp
148 SRCS_MIN+=      CodeGen/AsmPrinter/DwarfExpression.cpp
149 SRCS_MIN+=      CodeGen/AsmPrinter/DwarfFile.cpp
150 SRCS_MIN+=      CodeGen/AsmPrinter/DwarfStringPool.cpp
151 SRCS_MIN+=      CodeGen/AsmPrinter/DwarfUnit.cpp
152 SRCS_MIN+=      CodeGen/AsmPrinter/EHStreamer.cpp
153 SRCS_MIN+=      CodeGen/AsmPrinter/ErlangGCPrinter.cpp
154 SRCS_MIN+=      CodeGen/AsmPrinter/OcamlGCPrinter.cpp
155 SRCS_MIN+=      CodeGen/AsmPrinter/WinCFGuard.cpp
156 SRCS_MIN+=      CodeGen/AsmPrinter/WinException.cpp
157 SRCS_MIN+=      CodeGen/AtomicExpandPass.cpp
158 SRCS_MIN+=      CodeGen/BasicTargetTransformInfo.cpp
159 SRCS_MIN+=      CodeGen/BranchFolding.cpp
160 SRCS_MIN+=      CodeGen/BranchRelaxation.cpp
161 SRCS_MIN+=      CodeGen/BreakFalseDeps.cpp
162 SRCS_MIN+=      CodeGen/BuiltinGCs.cpp
163 SRCS_MIN+=      CodeGen/CFIInstrInserter.cpp
164 SRCS_MIN+=      CodeGen/CalcSpillWeights.cpp
165 SRCS_MIN+=      CodeGen/CallingConvLower.cpp
166 SRCS_MIN+=      CodeGen/CodeGen.cpp
167 SRCS_MIN+=      CodeGen/CodeGenPrepare.cpp
168 SRCS_MIN+=      CodeGen/CriticalAntiDepBreaker.cpp
169 SRCS_MIN+=      CodeGen/DFAPacketizer.cpp
170 SRCS_MIN+=      CodeGen/DeadMachineInstructionElim.cpp
171 SRCS_MIN+=      CodeGen/DetectDeadLanes.cpp
172 SRCS_MIN+=      CodeGen/DwarfEHPrepare.cpp
173 SRCS_MIN+=      CodeGen/EarlyIfConversion.cpp
174 SRCS_MIN+=      CodeGen/EdgeBundles.cpp
175 SRCS_MIN+=      CodeGen/ExecutionDomainFix.cpp
176 SRCS_MIN+=      CodeGen/ExpandISelPseudos.cpp
177 SRCS_MIN+=      CodeGen/ExpandMemCmp.cpp
178 SRCS_MIN+=      CodeGen/ExpandPostRAPseudos.cpp
179 SRCS_MIN+=      CodeGen/ExpandReductions.cpp
180 SRCS_MIN+=      CodeGen/FEntryInserter.cpp
181 SRCS_MIN+=      CodeGen/FaultMaps.cpp
182 SRCS_MIN+=      CodeGen/FuncletLayout.cpp
183 SRCS_MIN+=      CodeGen/GCMetadata.cpp
184 SRCS_MIN+=      CodeGen/GCMetadataPrinter.cpp
185 SRCS_MIN+=      CodeGen/GCRootLowering.cpp
186 SRCS_MIN+=      CodeGen/GCStrategy.cpp
187 SRCS_MIN+=      CodeGen/GlobalISel/CallLowering.cpp
188 SRCS_MIN+=      CodeGen/GlobalISel/GlobalISel.cpp
189 SRCS_MIN+=      CodeGen/GlobalISel/IRTranslator.cpp
190 SRCS_MIN+=      CodeGen/GlobalISel/InstructionSelect.cpp
191 SRCS_MIN+=      CodeGen/GlobalISel/InstructionSelector.cpp
192 SRCS_MIN+=      CodeGen/GlobalISel/LegalityPredicates.cpp
193 SRCS_MIN+=      CodeGen/GlobalISel/LegalizeMutations.cpp
194 SRCS_MIN+=      CodeGen/GlobalISel/Legalizer.cpp
195 SRCS_MIN+=      CodeGen/GlobalISel/LegalizerHelper.cpp
196 SRCS_MIN+=      CodeGen/GlobalISel/LegalizerInfo.cpp
197 SRCS_MIN+=      CodeGen/GlobalISel/Localizer.cpp
198 SRCS_MIN+=      CodeGen/GlobalISel/MachineIRBuilder.cpp
199 SRCS_MIN+=      CodeGen/GlobalISel/RegBankSelect.cpp
200 SRCS_MIN+=      CodeGen/GlobalISel/RegisterBank.cpp
201 SRCS_MIN+=      CodeGen/GlobalISel/RegisterBankInfo.cpp
202 SRCS_MIN+=      CodeGen/GlobalISel/Utils.cpp
203 SRCS_MIN+=      CodeGen/GlobalMerge.cpp
204 SRCS_MIN+=      CodeGen/IfConversion.cpp
205 SRCS_MIN+=      CodeGen/ImplicitNullChecks.cpp
206 SRCS_MIN+=      CodeGen/IndirectBrExpandPass.cpp
207 SRCS_MIN+=      CodeGen/InlineSpiller.cpp
208 SRCS_MIN+=      CodeGen/InterferenceCache.cpp
209 SRCS_MIN+=      CodeGen/InterleavedAccessPass.cpp
210 SRCS_MIN+=      CodeGen/IntrinsicLowering.cpp
211 SRCS_MIN+=      CodeGen/LLVMTargetMachine.cpp
212 SRCS_MIN+=      CodeGen/LatencyPriorityQueue.cpp
213 SRCS_MIN+=      CodeGen/LazyMachineBlockFrequencyInfo.cpp
214 SRCS_MIN+=      CodeGen/LexicalScopes.cpp
215 SRCS_MIN+=      CodeGen/LiveDebugValues.cpp
216 SRCS_MIN+=      CodeGen/LiveDebugVariables.cpp
217 SRCS_MIN+=      CodeGen/LiveInterval.cpp
218 SRCS_MIN+=      CodeGen/LiveIntervalUnion.cpp
219 SRCS_MIN+=      CodeGen/LiveIntervals.cpp
220 SRCS_MIN+=      CodeGen/LivePhysRegs.cpp
221 SRCS_MIN+=      CodeGen/LiveRangeCalc.cpp
222 SRCS_MIN+=      CodeGen/LiveRangeEdit.cpp
223 SRCS_MIN+=      CodeGen/LiveRangeShrink.cpp
224 SRCS_MIN+=      CodeGen/LiveRegMatrix.cpp
225 SRCS_MIN+=      CodeGen/LiveRegUnits.cpp
226 SRCS_MIN+=      CodeGen/LiveStacks.cpp
227 SRCS_MIN+=      CodeGen/LiveVariables.cpp
228 SRCS_MIN+=      CodeGen/LocalStackSlotAllocation.cpp
229 SRCS_MIN+=      CodeGen/LoopTraversal.cpp
230 SRCS_MIN+=      CodeGen/LowLevelType.cpp
231 SRCS_MIN+=      CodeGen/LowerEmuTLS.cpp
232 SRCS_MIN+=      CodeGen/MIRCanonicalizerPass.cpp
233 SRCS_EXT+=      CodeGen/MIRParser/MILexer.cpp
234 SRCS_EXT+=      CodeGen/MIRParser/MIParser.cpp
235 SRCS_EXT+=      CodeGen/MIRParser/MIRParser.cpp
236 SRCS_MIN+=      CodeGen/MIRPrinter.cpp
237 SRCS_MIN+=      CodeGen/MIRPrintingPass.cpp
238 SRCS_MIN+=      CodeGen/MachineBasicBlock.cpp
239 SRCS_MIN+=      CodeGen/MachineBlockFrequencyInfo.cpp
240 SRCS_MIN+=      CodeGen/MachineBlockPlacement.cpp
241 SRCS_MIN+=      CodeGen/MachineBranchProbabilityInfo.cpp
242 SRCS_MIN+=      CodeGen/MachineCSE.cpp
243 SRCS_MIN+=      CodeGen/MachineCombiner.cpp
244 SRCS_MIN+=      CodeGen/MachineCopyPropagation.cpp
245 SRCS_MIN+=      CodeGen/MachineDominanceFrontier.cpp
246 SRCS_MIN+=      CodeGen/MachineDominators.cpp
247 SRCS_MIN+=      CodeGen/MachineFrameInfo.cpp
248 SRCS_MIN+=      CodeGen/MachineFunction.cpp
249 SRCS_MIN+=      CodeGen/MachineFunctionPass.cpp
250 SRCS_MIN+=      CodeGen/MachineFunctionPrinterPass.cpp
251 SRCS_MIN+=      CodeGen/MachineInstr.cpp
252 SRCS_MIN+=      CodeGen/MachineInstrBundle.cpp
253 SRCS_MIN+=      CodeGen/MachineLICM.cpp
254 SRCS_MIN+=      CodeGen/MachineLoopInfo.cpp
255 SRCS_MIN+=      CodeGen/MachineModuleInfo.cpp
256 SRCS_MIN+=      CodeGen/MachineModuleInfoImpls.cpp
257 SRCS_MIN+=      CodeGen/MachineOperand.cpp
258 SRCS_MIN+=      CodeGen/MachineOptimizationRemarkEmitter.cpp
259 SRCS_MIN+=      CodeGen/MachineOutliner.cpp
260 SRCS_MIN+=      CodeGen/MachinePassRegistry.cpp
261 SRCS_MIN+=      CodeGen/MachinePipeliner.cpp
262 SRCS_MIN+=      CodeGen/MachinePostDominators.cpp
263 SRCS_MIN+=      CodeGen/MachineRegionInfo.cpp
264 SRCS_MIN+=      CodeGen/MachineRegisterInfo.cpp
265 SRCS_MIN+=      CodeGen/MachineSSAUpdater.cpp
266 SRCS_MIN+=      CodeGen/MachineScheduler.cpp
267 SRCS_MIN+=      CodeGen/MachineSink.cpp
268 SRCS_MIN+=      CodeGen/MachineTraceMetrics.cpp
269 SRCS_MIN+=      CodeGen/MachineVerifier.cpp
270 SRCS_MIN+=      CodeGen/MacroFusion.cpp
271 SRCS_MIN+=      CodeGen/OptimizePHIs.cpp
272 SRCS_MIN+=      CodeGen/PHIElimination.cpp
273 SRCS_MIN+=      CodeGen/PHIEliminationUtils.cpp
274 SRCS_MIN+=      CodeGen/ParallelCG.cpp
275 SRCS_MIN+=      CodeGen/PatchableFunction.cpp
276 SRCS_MIN+=      CodeGen/PeepholeOptimizer.cpp
277 SRCS_MIN+=      CodeGen/PostRAHazardRecognizer.cpp
278 SRCS_MIN+=      CodeGen/PostRASchedulerList.cpp
279 SRCS_MIN+=      CodeGen/PreISelIntrinsicLowering.cpp
280 SRCS_MIN+=      CodeGen/ProcessImplicitDefs.cpp
281 SRCS_MIN+=      CodeGen/PrologEpilogInserter.cpp
282 SRCS_MIN+=      CodeGen/PseudoSourceValue.cpp
283 SRCS_MIN+=      CodeGen/ReachingDefAnalysis.cpp
284 SRCS_MIN+=      CodeGen/RegAllocBase.cpp
285 SRCS_MIN+=      CodeGen/RegAllocBasic.cpp
286 SRCS_MIN+=      CodeGen/RegAllocFast.cpp
287 SRCS_MIN+=      CodeGen/RegAllocGreedy.cpp
288 SRCS_MIN+=      CodeGen/RegAllocPBQP.cpp
289 SRCS_MIN+=      CodeGen/RegUsageInfoCollector.cpp
290 SRCS_MIN+=      CodeGen/RegUsageInfoPropagate.cpp
291 SRCS_MIN+=      CodeGen/RegisterClassInfo.cpp
292 SRCS_MIN+=      CodeGen/RegisterCoalescer.cpp
293 SRCS_MIN+=      CodeGen/RegisterPressure.cpp
294 SRCS_MIN+=      CodeGen/RegisterScavenging.cpp
295 SRCS_MIN+=      CodeGen/RegisterUsageInfo.cpp
296 SRCS_MIN+=      CodeGen/RenameIndependentSubregs.cpp
297 SRCS_MIN+=      CodeGen/ResetMachineFunctionPass.cpp
298 SRCS_MIN+=      CodeGen/SafeStack.cpp
299 SRCS_MIN+=      CodeGen/SafeStackColoring.cpp
300 SRCS_MIN+=      CodeGen/SafeStackLayout.cpp
301 SRCS_MIN+=      CodeGen/ScalarizeMaskedMemIntrin.cpp
302 SRCS_MIN+=      CodeGen/ScheduleDAG.cpp
303 SRCS_MIN+=      CodeGen/ScheduleDAGInstrs.cpp
304 SRCS_MIN+=      CodeGen/ScheduleDAGPrinter.cpp
305 SRCS_MIN+=      CodeGen/ScoreboardHazardRecognizer.cpp
306 SRCS_MIN+=      CodeGen/SelectionDAG/DAGCombiner.cpp
307 SRCS_MIN+=      CodeGen/SelectionDAG/FastISel.cpp
308 SRCS_MIN+=      CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
309 SRCS_MIN+=      CodeGen/SelectionDAG/InstrEmitter.cpp
310 SRCS_MIN+=      CodeGen/SelectionDAG/LegalizeDAG.cpp
311 SRCS_MIN+=      CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
312 SRCS_MIN+=      CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
313 SRCS_MIN+=      CodeGen/SelectionDAG/LegalizeTypes.cpp
314 SRCS_MIN+=      CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
315 SRCS_MIN+=      CodeGen/SelectionDAG/LegalizeVectorOps.cpp
316 SRCS_MIN+=      CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
317 SRCS_MIN+=      CodeGen/SelectionDAG/ResourcePriorityQueue.cpp
318 SRCS_MIN+=      CodeGen/SelectionDAG/ScheduleDAGFast.cpp
319 SRCS_MIN+=      CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
320 SRCS_MIN+=      CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
321 SRCS_MIN+=      CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
322 SRCS_MIN+=      CodeGen/SelectionDAG/SelectionDAG.cpp
323 SRCS_MIN+=      CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
324 SRCS_MIN+=      CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
325 SRCS_MIN+=      CodeGen/SelectionDAG/SelectionDAGDumper.cpp
326 SRCS_MIN+=      CodeGen/SelectionDAG/SelectionDAGISel.cpp
327 SRCS_MIN+=      CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
328 SRCS_MIN+=      CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp
329 SRCS_MIN+=      CodeGen/SelectionDAG/StatepointLowering.cpp
330 SRCS_MIN+=      CodeGen/SelectionDAG/TargetLowering.cpp
331 SRCS_MIN+=      CodeGen/ShadowStackGCLowering.cpp
332 SRCS_MIN+=      CodeGen/ShrinkWrap.cpp
333 SRCS_MIN+=      CodeGen/SjLjEHPrepare.cpp
334 SRCS_MIN+=      CodeGen/SlotIndexes.cpp
335 SRCS_MIN+=      CodeGen/SpillPlacement.cpp
336 SRCS_MIN+=      CodeGen/SplitKit.cpp
337 SRCS_MIN+=      CodeGen/StackColoring.cpp
338 SRCS_MIN+=      CodeGen/StackMapLivenessAnalysis.cpp
339 SRCS_MIN+=      CodeGen/StackMaps.cpp
340 SRCS_MIN+=      CodeGen/StackProtector.cpp
341 SRCS_MIN+=      CodeGen/StackSlotColoring.cpp
342 SRCS_MIN+=      CodeGen/TailDuplication.cpp
343 SRCS_MIN+=      CodeGen/TailDuplicator.cpp
344 SRCS_MIN+=      CodeGen/TargetFrameLoweringImpl.cpp
345 SRCS_MIN+=      CodeGen/TargetInstrInfo.cpp
346 SRCS_MIN+=      CodeGen/TargetLoweringBase.cpp
347 SRCS_MIN+=      CodeGen/TargetLoweringObjectFileImpl.cpp
348 SRCS_MIN+=      CodeGen/TargetOptionsImpl.cpp
349 SRCS_MIN+=      CodeGen/TargetPassConfig.cpp
350 SRCS_MIN+=      CodeGen/TargetRegisterInfo.cpp
351 SRCS_MIN+=      CodeGen/TargetSchedule.cpp
352 SRCS_MIN+=      CodeGen/TargetSubtargetInfo.cpp
353 SRCS_MIN+=      CodeGen/TwoAddressInstructionPass.cpp
354 SRCS_MIN+=      CodeGen/UnreachableBlockElim.cpp
355 SRCS_MIN+=      CodeGen/ValueTypes.cpp
356 SRCS_MIN+=      CodeGen/VirtRegMap.cpp
357 SRCS_MIN+=      CodeGen/WasmEHPrepare.cpp
358 SRCS_MIN+=      CodeGen/WinEHPrepare.cpp
359 SRCS_MIN+=      CodeGen/XRayInstrumentation.cpp
360 SRCS_EXT+=      DebugInfo/CodeView/AppendingTypeTableBuilder.cpp
361 SRCS_MIN+=      DebugInfo/CodeView/CVSymbolVisitor.cpp
362 SRCS_MIN+=      DebugInfo/CodeView/CVTypeVisitor.cpp
363 SRCS_MIN+=      DebugInfo/CodeView/CodeViewError.cpp
364 SRCS_MIN+=      DebugInfo/CodeView/CodeViewRecordIO.cpp
365 SRCS_MIN+=      DebugInfo/CodeView/ContinuationRecordBuilder.cpp
366 SRCS_EXT+=      DebugInfo/CodeView/DebugChecksumsSubsection.cpp
367 SRCS_EXT+=      DebugInfo/CodeView/DebugCrossExSubsection.cpp
368 SRCS_EXT+=      DebugInfo/CodeView/DebugCrossImpSubsection.cpp
369 SRCS_EXT+=      DebugInfo/CodeView/DebugFrameDataSubsection.cpp
370 SRCS_EXT+=      DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp
371 SRCS_EXT+=      DebugInfo/CodeView/DebugLinesSubsection.cpp
372 SRCS_EXT+=      DebugInfo/CodeView/DebugStringTableSubsection.cpp
373 SRCS_EXT+=      DebugInfo/CodeView/DebugSubsection.cpp
374 SRCS_EXT+=      DebugInfo/CodeView/DebugSubsectionRecord.cpp
375 SRCS_EXT+=      DebugInfo/CodeView/DebugSubsectionVisitor.cpp
376 SRCS_EXT+=      DebugInfo/CodeView/DebugSymbolRVASubsection.cpp
377 SRCS_EXT+=      DebugInfo/CodeView/DebugSymbolsSubsection.cpp
378 SRCS_EXT+=      DebugInfo/CodeView/EnumTables.cpp
379 SRCS_MIN+=      DebugInfo/CodeView/Formatters.cpp
380 SRCS_MIN+=      DebugInfo/CodeView/GlobalTypeTableBuilder.cpp
381 SRCS_EXT+=      DebugInfo/CodeView/LazyRandomTypeCollection.cpp
382 SRCS_MIN+=      DebugInfo/CodeView/Line.cpp
383 SRCS_EXT+=      DebugInfo/CodeView/MergingTypeTableBuilder.cpp
384 SRCS_MIN+=      DebugInfo/CodeView/RecordName.cpp
385 SRCS_MIN+=      DebugInfo/CodeView/RecordSerialization.cpp
386 SRCS_MIN+=      DebugInfo/CodeView/SimpleTypeSerializer.cpp
387 SRCS_EXT+=      DebugInfo/CodeView/StringsAndChecksums.cpp
388 SRCS_MIN+=      DebugInfo/CodeView/SymbolDumper.cpp
389 SRCS_MIN+=      DebugInfo/CodeView/SymbolRecordMapping.cpp
390 SRCS_EXT+=      DebugInfo/CodeView/SymbolSerializer.cpp
391 SRCS_MIN+=      DebugInfo/CodeView/TypeDumpVisitor.cpp
392 SRCS_MIN+=      DebugInfo/CodeView/TypeHashing.cpp
393 SRCS_MIN+=      DebugInfo/CodeView/TypeIndex.cpp
394 SRCS_MIN+=      DebugInfo/CodeView/TypeIndexDiscovery.cpp
395 SRCS_MIN+=      DebugInfo/CodeView/TypeRecordMapping.cpp
396 SRCS_MIN+=      DebugInfo/CodeView/TypeStreamMerger.cpp
397 SRCS_MIN+=      DebugInfo/CodeView/TypeTableCollection.cpp
398 SRCS_MIW+=      DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
399 SRCS_MIW+=      DebugInfo/DWARF/DWARFAcceleratorTable.cpp
400 SRCS_MIW+=      DebugInfo/DWARF/DWARFAddressRange.cpp
401 SRCS_MIW+=      DebugInfo/DWARF/DWARFCompileUnit.cpp
402 SRCS_MIW+=      DebugInfo/DWARF/DWARFContext.cpp
403 SRCS_MIW+=      DebugInfo/DWARF/DWARFDataExtractor.cpp
404 SRCS_MIW+=      DebugInfo/DWARF/DWARFDebugAbbrev.cpp
405 SRCS_MIW+=      DebugInfo/DWARF/DWARFDebugArangeSet.cpp
406 SRCS_MIW+=      DebugInfo/DWARF/DWARFDebugAranges.cpp
407 SRCS_MIW+=      DebugInfo/DWARF/DWARFDebugFrame.cpp
408 SRCS_MIW+=      DebugInfo/DWARF/DWARFDebugInfoEntry.cpp
409 SRCS_MIW+=      DebugInfo/DWARF/DWARFDebugLine.cpp
410 SRCS_MIW+=      DebugInfo/DWARF/DWARFDebugLoc.cpp
411 SRCS_MIW+=      DebugInfo/DWARF/DWARFDebugMacro.cpp
412 SRCS_MIW+=      DebugInfo/DWARF/DWARFDebugPubTable.cpp
413 SRCS_MIW+=      DebugInfo/DWARF/DWARFDebugRangeList.cpp
414 SRCS_MIW+=      DebugInfo/DWARF/DWARFDebugRnglists.cpp
415 SRCS_MIW+=      DebugInfo/DWARF/DWARFDie.cpp
416 SRCS_MIW+=      DebugInfo/DWARF/DWARFExpression.cpp
417 SRCS_MIW+=      DebugInfo/DWARF/DWARFFormValue.cpp
418 SRCS_MIW+=      DebugInfo/DWARF/DWARFGdbIndex.cpp
419 SRCS_MIW+=      DebugInfo/DWARF/DWARFListTable.cpp
420 SRCS_MIW+=      DebugInfo/DWARF/DWARFTypeUnit.cpp
421 SRCS_MIW+=      DebugInfo/DWARF/DWARFUnit.cpp
422 SRCS_MIW+=      DebugInfo/DWARF/DWARFUnitIndex.cpp
423 SRCS_MIW+=      DebugInfo/DWARF/DWARFVerifier.cpp
424 SRCS_MIN+=      DebugInfo/MSF/MSFBuilder.cpp
425 SRCS_MIN+=      DebugInfo/MSF/MSFCommon.cpp
426 SRCS_MIN+=      DebugInfo/MSF/MSFError.cpp
427 SRCS_MIN+=      DebugInfo/MSF/MappedBlockStream.cpp
428 SRCS_EXT+=      DebugInfo/PDB/GenericError.cpp
429 SRCS_EXT+=      DebugInfo/PDB/IPDBSourceFile.cpp
430 SRCS_EXT+=      DebugInfo/PDB/Native/DbiModuleDescriptor.cpp
431 SRCS_EXT+=      DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp
432 SRCS_EXT+=      DebugInfo/PDB/Native/DbiModuleList.cpp
433 SRCS_EXT+=      DebugInfo/PDB/Native/DbiStream.cpp
434 SRCS_EXT+=      DebugInfo/PDB/Native/DbiStreamBuilder.cpp
435 SRCS_EXT+=      DebugInfo/PDB/Native/EnumTables.cpp
436 SRCS_EXT+=      DebugInfo/PDB/Native/GSIStreamBuilder.cpp
437 SRCS_EXT+=      DebugInfo/PDB/Native/GlobalsStream.cpp
438 SRCS_EXT+=      DebugInfo/PDB/Native/Hash.cpp
439 SRCS_EXT+=      DebugInfo/PDB/Native/HashTable.cpp
440 SRCS_EXT+=      DebugInfo/PDB/Native/InfoStream.cpp
441 SRCS_EXT+=      DebugInfo/PDB/Native/InfoStreamBuilder.cpp
442 SRCS_EXT+=      DebugInfo/PDB/Native/ModuleDebugStream.cpp
443 SRCS_EXT+=      DebugInfo/PDB/Native/NamedStreamMap.cpp
444 SRCS_EXT+=      DebugInfo/PDB/Native/NativeBuiltinSymbol.cpp
445 SRCS_EXT+=      DebugInfo/PDB/Native/NativeCompilandSymbol.cpp
446 SRCS_EXT+=      DebugInfo/PDB/Native/NativeEnumModules.cpp
447 SRCS_EXT+=      DebugInfo/PDB/Native/NativeEnumSymbol.cpp
448 SRCS_EXT+=      DebugInfo/PDB/Native/NativeEnumTypes.cpp
449 SRCS_EXT+=      DebugInfo/PDB/Native/NativeExeSymbol.cpp
450 SRCS_EXT+=      DebugInfo/PDB/Native/NativeRawSymbol.cpp
451 SRCS_EXT+=      DebugInfo/PDB/Native/NativeSession.cpp
452 SRCS_EXT+=      DebugInfo/PDB/Native/PDBFile.cpp
453 SRCS_EXT+=      DebugInfo/PDB/Native/PDBFileBuilder.cpp
454 SRCS_EXT+=      DebugInfo/PDB/Native/PDBStringTable.cpp
455 SRCS_EXT+=      DebugInfo/PDB/Native/PDBStringTableBuilder.cpp
456 SRCS_EXT+=      DebugInfo/PDB/Native/PublicsStream.cpp
457 SRCS_EXT+=      DebugInfo/PDB/Native/RawError.cpp
458 SRCS_EXT+=      DebugInfo/PDB/Native/SymbolStream.cpp
459 SRCS_EXT+=      DebugInfo/PDB/Native/TpiHashing.cpp
460 SRCS_EXT+=      DebugInfo/PDB/Native/TpiStream.cpp
461 SRCS_EXT+=      DebugInfo/PDB/Native/TpiStreamBuilder.cpp
462 SRCS_EXT+=      DebugInfo/PDB/PDB.cpp
463 SRCS_EXT+=      DebugInfo/PDB/PDBContext.cpp
464 SRCS_EXT+=      DebugInfo/PDB/PDBExtras.cpp
465 SRCS_EXT+=      DebugInfo/PDB/PDBInterfaceAnchors.cpp
466 SRCS_EXT+=      DebugInfo/PDB/PDBSymDumper.cpp
467 SRCS_EXT+=      DebugInfo/PDB/PDBSymbol.cpp
468 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolAnnotation.cpp
469 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolBlock.cpp
470 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolCompiland.cpp
471 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
472 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolCompilandEnv.cpp
473 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolCustom.cpp
474 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolData.cpp
475 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolExe.cpp
476 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolFunc.cpp
477 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
478 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
479 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolLabel.cpp
480 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
481 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolThunk.cpp
482 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolTypeArray.cpp
483 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
484 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp
485 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolTypeCustom.cpp
486 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolTypeDimension.cpp
487 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolTypeEnum.cpp
488 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolTypeFriend.cpp
489 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
490 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
491 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolTypeManaged.cpp
492 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolTypePointer.cpp
493 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
494 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolTypeUDT.cpp
495 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolTypeVTable.cpp
496 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp
497 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolUnknown.cpp
498 SRCS_EXT+=      DebugInfo/PDB/PDBSymbolUsingNamespace.cpp
499 SRCS_EXT+=      DebugInfo/PDB/UDTLayout.cpp
500 SRCS_EXT+=      DebugInfo/Symbolize/DIPrinter.cpp
501 SRCS_MIW+=      DebugInfo/Symbolize/SymbolizableObjectFile.cpp
502 SRCS_MIW+=      DebugInfo/Symbolize/Symbolize.cpp
503 SRCS_MIN+=      Demangle/ItaniumDemangle.cpp
504 SRCS_XDB+=      ExecutionEngine/ExecutionEngine.cpp
505 SRCS_XDB+=      ExecutionEngine/ExecutionEngineBindings.cpp
506 SRCS_XDB+=      ExecutionEngine/GDBRegistrationListener.cpp
507 SRCS_XDB+=      ExecutionEngine/Interpreter/Execution.cpp
508 SRCS_XDB+=      ExecutionEngine/Interpreter/ExternalFunctions.cpp
509 SRCS_XDB+=      ExecutionEngine/Interpreter/Interpreter.cpp
510 SRCS_XDB+=      ExecutionEngine/MCJIT/MCJIT.cpp
511 SRCS_EXT+=      ExecutionEngine/Orc/CompileOnDemandLayer.cpp
512 SRCS_EXT+=      ExecutionEngine/Orc/Core.cpp
513 SRCS_EXT+=      ExecutionEngine/Orc/ExecutionUtils.cpp
514 SRCS_EXT+=      ExecutionEngine/Orc/IRCompileLayer.cpp
515 SRCS_EXT+=      ExecutionEngine/Orc/IRTransformLayer.cpp
516 SRCS_EXT+=      ExecutionEngine/Orc/IndirectionUtils.cpp
517 SRCS_EXT+=      ExecutionEngine/Orc/LLJIT.cpp
518 SRCS_EXT+=      ExecutionEngine/Orc/Layer.cpp
519 SRCS_EXT+=      ExecutionEngine/Orc/Legacy.cpp
520 SRCS_EXT+=      ExecutionEngine/Orc/NullResolver.cpp
521 SRCS_EXT+=      ExecutionEngine/Orc/OrcABISupport.cpp
522 SRCS_EXT+=      ExecutionEngine/Orc/OrcCBindings.cpp
523 SRCS_EXT+=      ExecutionEngine/Orc/OrcError.cpp
524 SRCS_EXT+=      ExecutionEngine/Orc/OrcMCJITReplacement.cpp
525 SRCS_EXT+=      ExecutionEngine/Orc/RPCUtils.cpp
526 SRCS_EXT+=      ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
527 SRCS_XDB+=      ExecutionEngine/RuntimeDyld/JITSymbol.cpp
528 SRCS_XDB+=      ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
529 SRCS_XDB+=      ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
530 SRCS_XDB+=      ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
531 SRCS_XDB+=      ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
532 SRCS_XDB+=      ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
533 SRCS_XDB+=      ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
534 SRCS_XDB+=      ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp
535 SRCS_XDB+=      ExecutionEngine/SectionMemoryManager.cpp
536 SRCS_XDB+=      ExecutionEngine/TargetSelect.cpp
537 SRCS_MIN+=      IR/AsmWriter.cpp
538 SRCS_MIN+=      IR/Attributes.cpp
539 SRCS_MIN+=      IR/AutoUpgrade.cpp
540 SRCS_MIN+=      IR/BasicBlock.cpp
541 SRCS_MIN+=      IR/Comdat.cpp
542 SRCS_MIN+=      IR/ConstantFold.cpp
543 SRCS_MIN+=      IR/ConstantRange.cpp
544 SRCS_MIN+=      IR/Constants.cpp
545 SRCS_MIN+=      IR/Core.cpp
546 SRCS_MIN+=      IR/DIBuilder.cpp
547 SRCS_MIN+=      IR/DataLayout.cpp
548 SRCS_MIN+=      IR/DebugInfo.cpp
549 SRCS_MIN+=      IR/DebugInfoMetadata.cpp
550 SRCS_MIN+=      IR/DebugLoc.cpp
551 SRCS_MIN+=      IR/DiagnosticHandler.cpp
552 SRCS_MIN+=      IR/DiagnosticInfo.cpp
553 SRCS_MIN+=      IR/DiagnosticPrinter.cpp
554 SRCS_MIN+=      IR/DomTreeUpdater.cpp
555 SRCS_MIN+=      IR/Dominators.cpp
556 SRCS_MIN+=      IR/Function.cpp
557 SRCS_MIN+=      IR/GVMaterializer.cpp
558 SRCS_MIN+=      IR/Globals.cpp
559 SRCS_MIN+=      IR/IRBuilder.cpp
560 SRCS_MIN+=      IR/IRPrintingPasses.cpp
561 SRCS_MIN+=      IR/InlineAsm.cpp
562 SRCS_MIN+=      IR/Instruction.cpp
563 SRCS_MIN+=      IR/Instructions.cpp
564 SRCS_MIN+=      IR/IntrinsicInst.cpp
565 SRCS_MIN+=      IR/LLVMContext.cpp
566 SRCS_MIN+=      IR/LLVMContextImpl.cpp
567 SRCS_MIN+=      IR/LegacyPassManager.cpp
568 SRCS_MIN+=      IR/MDBuilder.cpp
569 SRCS_MIN+=      IR/Mangler.cpp
570 SRCS_MIN+=      IR/Metadata.cpp
571 SRCS_MIN+=      IR/Module.cpp
572 SRCS_MIN+=      IR/ModuleSummaryIndex.cpp
573 SRCS_MIN+=      IR/Operator.cpp
574 SRCS_MIN+=      IR/OptBisect.cpp
575 SRCS_MIN+=      IR/Pass.cpp
576 SRCS_MIN+=      IR/PassManager.cpp
577 SRCS_MIN+=      IR/PassRegistry.cpp
578 SRCS_MIN+=      IR/ProfileSummary.cpp
579 SRCS_MIN+=      IR/SafepointIRVerifier.cpp
580 SRCS_MIN+=      IR/Statepoint.cpp
581 SRCS_MIN+=      IR/Type.cpp
582 SRCS_MIN+=      IR/TypeFinder.cpp
583 SRCS_MIN+=      IR/Use.cpp
584 SRCS_MIN+=      IR/User.cpp
585 SRCS_MIN+=      IR/Value.cpp
586 SRCS_MIN+=      IR/ValueSymbolTable.cpp
587 SRCS_MIN+=      IR/Verifier.cpp
588 SRCS_MIN+=      IRReader/IRReader.cpp
589 SRCS_EXL+=      LTO/Caching.cpp
590 SRCS_MIN+=      LTO/LTO.cpp
591 SRCS_MIN+=      LTO/LTOBackend.cpp
592 SRCS_EXL+=      LTO/LTOCodeGenerator.cpp
593 SRCS_EXL+=      LTO/LTOModule.cpp
594 SRCS_EXL+=      LTO/ThinLTOCodeGenerator.cpp
595 SRCS_MIN+=      LTO/UpdateCompilerUsed.cpp
596 SRCS_MIN+=      LineEditor/LineEditor.cpp
597 SRCS_MIN+=      Linker/IRMover.cpp
598 SRCS_MIN+=      Linker/LinkModules.cpp
599 SRCS_MIN+=      MC/ConstantPools.cpp
600 SRCS_MIN+=      MC/ELFObjectWriter.cpp
601 SRCS_MIN+=      MC/MCAsmBackend.cpp
602 SRCS_MIN+=      MC/MCAsmInfo.cpp
603 SRCS_MIN+=      MC/MCAsmInfoCOFF.cpp
604 SRCS_MIN+=      MC/MCAsmInfoDarwin.cpp
605 SRCS_MIN+=      MC/MCAsmInfoELF.cpp
606 SRCS_MIN+=      MC/MCAsmMacro.cpp
607 SRCS_MIN+=      MC/MCAsmStreamer.cpp
608 SRCS_MIN+=      MC/MCAssembler.cpp
609 SRCS_MIN+=      MC/MCCodeEmitter.cpp
610 SRCS_MIN+=      MC/MCCodePadder.cpp
611 SRCS_MIN+=      MC/MCCodeView.cpp
612 SRCS_MIN+=      MC/MCContext.cpp
613 SRCS_XDL+=      MC/MCDisassembler/Disassembler.cpp
614 SRCS_XDW+=      MC/MCDisassembler/MCDisassembler.cpp
615 SRCS_XDW+=      MC/MCDisassembler/MCExternalSymbolizer.cpp
616 SRCS_MIN+=      MC/MCDisassembler/MCRelocationInfo.cpp
617 SRCS_XDW+=      MC/MCDisassembler/MCSymbolizer.cpp
618 SRCS_MIN+=      MC/MCDwarf.cpp
619 SRCS_MIN+=      MC/MCELFObjectTargetWriter.cpp
620 SRCS_MIN+=      MC/MCELFStreamer.cpp
621 SRCS_MIN+=      MC/MCExpr.cpp
622 SRCS_MIN+=      MC/MCFragment.cpp
623 SRCS_MIN+=      MC/MCInst.cpp
624 SRCS_MIN+=      MC/MCInstPrinter.cpp
625 SRCS_MIN+=      MC/MCInstrAnalysis.cpp
626 SRCS_MIN+=      MC/MCInstrDesc.cpp
627 SRCS_MIN+=      MC/MCLinkerOptimizationHint.cpp
628 SRCS_MIN+=      MC/MCMachOStreamer.cpp
629 SRCS_MIN+=      MC/MCMachObjectTargetWriter.cpp
630 SRCS_MIN+=      MC/MCNullStreamer.cpp
631 SRCS_MIN+=      MC/MCObjectFileInfo.cpp
632 SRCS_MIN+=      MC/MCObjectStreamer.cpp
633 SRCS_MIN+=      MC/MCObjectWriter.cpp
634 SRCS_MIN+=      MC/MCParser/AsmLexer.cpp
635 SRCS_MIN+=      MC/MCParser/AsmParser.cpp
636 SRCS_MIN+=      MC/MCParser/COFFAsmParser.cpp
637 SRCS_MIN+=      MC/MCParser/DarwinAsmParser.cpp
638 SRCS_MIN+=      MC/MCParser/ELFAsmParser.cpp
639 SRCS_MIN+=      MC/MCParser/MCAsmLexer.cpp
640 SRCS_MIN+=      MC/MCParser/MCAsmParser.cpp
641 SRCS_MIN+=      MC/MCParser/MCAsmParserExtension.cpp
642 SRCS_MIN+=      MC/MCParser/MCTargetAsmParser.cpp
643 SRCS_MIN+=      MC/MCRegisterInfo.cpp
644 SRCS_MIN+=      MC/MCSchedule.cpp
645 SRCS_MIN+=      MC/MCSection.cpp
646 SRCS_MIN+=      MC/MCSectionCOFF.cpp
647 SRCS_MIN+=      MC/MCSectionELF.cpp
648 SRCS_MIN+=      MC/MCSectionMachO.cpp
649 SRCS_MIN+=      MC/MCSectionWasm.cpp
650 SRCS_MIN+=      MC/MCStreamer.cpp
651 SRCS_MIN+=      MC/MCSubtargetInfo.cpp
652 SRCS_MIN+=      MC/MCSymbol.cpp
653 SRCS_MIN+=      MC/MCSymbolELF.cpp
654 SRCS_MIN+=      MC/MCTargetOptions.cpp
655 SRCS_MIN+=      MC/MCValue.cpp
656 SRCS_MIN+=      MC/MCWasmStreamer.cpp
657 SRCS_MIN+=      MC/MCWin64EH.cpp
658 SRCS_MIN+=      MC/MCWinCOFFStreamer.cpp
659 SRCS_MIN+=      MC/MCWinEH.cpp
660 SRCS_MIN+=      MC/MachObjectWriter.cpp
661 SRCS_MIN+=      MC/StringTableBuilder.cpp
662 SRCS_MIN+=      MC/SubtargetFeature.cpp
663 SRCS_MIN+=      MC/WasmObjectWriter.cpp
664 SRCS_MIN+=      MC/WinCOFFObjectWriter.cpp
665 SRCS_MIN+=      Object/Archive.cpp
666 SRCS_MIN+=      Object/ArchiveWriter.cpp
667 SRCS_MIN+=      Object/Binary.cpp
668 SRCS_EXT+=      Object/COFFImportFile.cpp
669 SRCS_EXT+=      Object/COFFModuleDefinition.cpp
670 SRCS_MIN+=      Object/COFFObjectFile.cpp
671 SRCS_MIN+=      Object/Decompressor.cpp
672 SRCS_MIN+=      Object/ELF.cpp
673 SRCS_MIN+=      Object/ELFObjectFile.cpp
674 SRCS_MIN+=      Object/Error.cpp
675 SRCS_MIN+=      Object/IRObjectFile.cpp
676 SRCS_MIN+=      Object/IRSymtab.cpp
677 SRCS_MIN+=      Object/MachOObjectFile.cpp
678 SRCS_MIN+=      Object/MachOUniversal.cpp
679 SRCS_MIN+=      Object/ModuleSymbolTable.cpp
680 SRCS_EXT+=      Object/Object.cpp
681 SRCS_MIN+=      Object/ObjectFile.cpp
682 SRCS_MIN+=      Object/RecordStreamer.cpp
683 SRCS_MIW+=      Object/SymbolSize.cpp
684 SRCS_MIN+=      Object/SymbolicFile.cpp
685 SRCS_MIN+=      Object/WasmObjectFile.cpp
686 SRCS_MIN+=      Object/WindowsResource.cpp
687 SRCS_MIN+=      ObjectYAML/COFFYAML.cpp
688 SRCS_EXT+=      ObjectYAML/CodeViewYAMLDebugSections.cpp
689 SRCS_EXT+=      ObjectYAML/CodeViewYAMLSymbols.cpp
690 SRCS_EXT+=      ObjectYAML/CodeViewYAMLTypes.cpp
691 SRCS_MIN+=      ObjectYAML/DWARFYAML.cpp
692 SRCS_MIN+=      ObjectYAML/ELFYAML.cpp
693 SRCS_MIN+=      ObjectYAML/MachOYAML.cpp
694 SRCS_EXT+=      ObjectYAML/YAML.cpp
695 SRCS_MIN+=      Option/Arg.cpp
696 SRCS_MIN+=      Option/ArgList.cpp
697 SRCS_MIN+=      Option/OptTable.cpp
698 SRCS_MIN+=      Option/Option.cpp
699 SRCS_MIN+=      Passes/PassBuilder.cpp
700 SRCS_EXT+=      Passes/PassPlugin.cpp
701 SRCS_MIN+=      ProfileData/Coverage/CoverageMapping.cpp
702 SRCS_MIN+=      ProfileData/Coverage/CoverageMappingReader.cpp
703 SRCS_MIN+=      ProfileData/Coverage/CoverageMappingWriter.cpp
704 SRCS_MIN+=      ProfileData/GCOV.cpp
705 SRCS_MIN+=      ProfileData/InstrProf.cpp
706 SRCS_MIN+=      ProfileData/InstrProfReader.cpp
707 SRCS_MIN+=      ProfileData/InstrProfWriter.cpp
708 SRCS_MIN+=      ProfileData/ProfileSummaryBuilder.cpp
709 SRCS_MIN+=      ProfileData/SampleProf.cpp
710 SRCS_MIN+=      ProfileData/SampleProfReader.cpp
711 SRCS_EXT+=      ProfileData/SampleProfWriter.cpp
712 SRCS_MIN+=      Support/APFloat.cpp
713 SRCS_MIN+=      Support/APInt.cpp
714 SRCS_MIN+=      Support/APSInt.cpp
715 SRCS_MIN+=      Support/ARMAttributeParser.cpp
716 SRCS_MIN+=      Support/ARMBuildAttrs.cpp
717 SRCS_MIN+=      Support/Allocator.cpp
718 SRCS_MIN+=      Support/Atomic.cpp
719 SRCS_MIN+=      Support/BinaryStreamError.cpp
720 SRCS_MIN+=      Support/BinaryStreamReader.cpp
721 SRCS_MIN+=      Support/BinaryStreamRef.cpp
722 SRCS_MIN+=      Support/BinaryStreamWriter.cpp
723 SRCS_MIN+=      Support/BlockFrequency.cpp
724 SRCS_MIN+=      Support/BranchProbability.cpp
725 SRCS_EXT+=      Support/COM.cpp
726 SRCS_MIN+=      Support/CachePruning.cpp
727 SRCS_MIN+=      Support/Chrono.cpp
728 SRCS_MIN+=      Support/CodeGenCoverage.cpp
729 SRCS_MIN+=      Support/CommandLine.cpp
730 SRCS_MIN+=      Support/Compression.cpp
731 SRCS_MIN+=      Support/ConvertUTF.cpp
732 SRCS_MIN+=      Support/ConvertUTFWrapper.cpp
733 SRCS_MIN+=      Support/CrashRecoveryContext.cpp
734 SRCS_MIN+=      Support/DAGDeltaAlgorithm.cpp
735 SRCS_MIN+=      Support/DJB.cpp
736 SRCS_MIN+=      Support/DataExtractor.cpp
737 SRCS_MIN+=      Support/Debug.cpp
738 SRCS_MIN+=      Support/DebugCounter.cpp
739 SRCS_MIN+=      Support/DeltaAlgorithm.cpp
740 SRCS_MIN+=      Support/DynamicLibrary.cpp
741 SRCS_MIN+=      Support/Errno.cpp
742 SRCS_MIN+=      Support/Error.cpp
743 SRCS_MIN+=      Support/ErrorHandling.cpp
744 SRCS_EXL+=      Support/FileOutputBuffer.cpp
745 SRCS_EXT+=      Support/FileUtilities.cpp
746 SRCS_MIN+=      Support/FoldingSet.cpp
747 SRCS_MIN+=      Support/FormatVariadic.cpp
748 SRCS_MIN+=      Support/FormattedStream.cpp
749 SRCS_MIN+=      Support/GlobPattern.cpp
750 SRCS_MIN+=      Support/GraphWriter.cpp
751 SRCS_MIN+=      Support/Hashing.cpp
752 SRCS_MIN+=      Support/Host.cpp
753 SRCS_MIN+=      Support/InitLLVM.cpp
754 SRCS_MIN+=      Support/IntEqClasses.cpp
755 SRCS_MIN+=      Support/IntervalMap.cpp
756 SRCS_MIN+=      Support/JamCRC.cpp
757 SRCS_MIN+=      Support/KnownBits.cpp
758 SRCS_MIN+=      Support/LEB128.cpp
759 SRCS_MIN+=      Support/LineIterator.cpp
760 SRCS_MIN+=      Support/Locale.cpp
761 SRCS_MIN+=      Support/LockFileManager.cpp
762 SRCS_MIN+=      Support/LowLevelType.cpp
763 SRCS_MIN+=      Support/MD5.cpp
764 SRCS_MIN+=      Support/ManagedStatic.cpp
765 SRCS_MIN+=      Support/MathExtras.cpp
766 SRCS_XDL+=      Support/Memory.cpp
767 SRCS_MIN+=      Support/MemoryBuffer.cpp
768 SRCS_MIN+=      Support/Mutex.cpp
769 SRCS_MIN+=      Support/NativeFormatting.cpp
770 SRCS_MIN+=      Support/Options.cpp
771 SRCS_LLD+=      Support/Parallel.cpp
772 SRCS_MIN+=      Support/Path.cpp
773 SRCS_MIN+=      Support/PluginLoader.cpp
774 SRCS_MIN+=      Support/PrettyStackTrace.cpp
775 SRCS_MIN+=      Support/Process.cpp
776 SRCS_MIN+=      Support/Program.cpp
777 SRCS_MIN+=      Support/RWMutex.cpp
778 SRCS_MIN+=      Support/RandomNumberGenerator.cpp
779 SRCS_MIN+=      Support/Regex.cpp
780 SRCS_MIN+=      Support/SHA1.cpp
781 SRCS_MIN+=      Support/ScaledNumber.cpp
782 SRCS_MIN+=      Support/ScopedPrinter.cpp
783 SRCS_MIN+=      Support/Signals.cpp
784 SRCS_MIN+=      Support/SmallPtrSet.cpp
785 SRCS_MIN+=      Support/SmallVector.cpp
786 SRCS_MIN+=      Support/SourceMgr.cpp
787 SRCS_MIN+=      Support/SpecialCaseList.cpp
788 SRCS_MIN+=      Support/Statistic.cpp
789 SRCS_MIN+=      Support/StringExtras.cpp
790 SRCS_MIN+=      Support/StringMap.cpp
791 SRCS_MIN+=      Support/StringRef.cpp
792 SRCS_MIN+=      Support/StringSaver.cpp
793 SRCS_EXT+=      Support/SystemUtils.cpp
794 SRCS_LLD+=      Support/TarWriter.cpp
795 SRCS_MIN+=      Support/TargetParser.cpp
796 SRCS_MIN+=      Support/TargetRegistry.cpp
797 SRCS_MIN+=      Support/ThreadLocal.cpp
798 SRCS_MIN+=      Support/ThreadPool.cpp
799 SRCS_MIN+=      Support/Threading.cpp
800 SRCS_MIN+=      Support/Timer.cpp
801 SRCS_MIN+=      Support/ToolOutputFile.cpp
802 SRCS_MIN+=      Support/TrigramIndex.cpp
803 SRCS_MIN+=      Support/Triple.cpp
804 SRCS_MIN+=      Support/Twine.cpp
805 SRCS_MIN+=      Support/Unicode.cpp
806 SRCS_MIN+=      Support/UnicodeCaseFold.cpp
807 SRCS_MIN+=      Support/Valgrind.cpp
808 SRCS_MIN+=      Support/VersionTuple.cpp
809 SRCS_MIW+=      Support/WithColor.cpp
810 SRCS_MIN+=      Support/YAMLParser.cpp
811 SRCS_MIN+=      Support/YAMLTraits.cpp
812 SRCS_MIN+=      Support/circular_raw_ostream.cpp
813 SRCS_MIN+=      Support/raw_os_ostream.cpp
814 SRCS_MIN+=      Support/raw_ostream.cpp
815 SRCS_MIN+=      Support/regcomp.c
816 SRCS_MIN+=      Support/regerror.c
817 SRCS_MIN+=      Support/regexec.c
818 SRCS_MIN+=      Support/regfree.c
819 SRCS_MIN+=      Support/regstrlcpy.c
820 SRCS_LLD+=      Support/xxhash.cpp
821 SRCS_MIN+=      TableGen/Error.cpp
822 SRCS_MIN+=      TableGen/Main.cpp
823 SRCS_MIN+=      TableGen/Record.cpp
824 SRCS_MIN+=      TableGen/SetTheory.cpp
825 SRCS_MIN+=      TableGen/StringMatcher.cpp
826 SRCS_MIN+=      TableGen/TGLexer.cpp
827 SRCS_MIN+=      TableGen/TGParser.cpp
828 SRCS_MIN+=      TableGen/TableGenBackend.cpp
829 .if ${MK_LLVM_TARGET_AARCH64} != "no"
830 SRCS_MIN+=      Target/AArch64/AArch64A53Fix835769.cpp
831 SRCS_MIN+=      Target/AArch64/AArch64A57FPLoadBalancing.cpp
832 SRCS_MIN+=      Target/AArch64/AArch64AdvSIMDScalarPass.cpp
833 SRCS_MIN+=      Target/AArch64/AArch64AsmPrinter.cpp
834 SRCS_MIN+=      Target/AArch64/AArch64CallLowering.cpp
835 SRCS_MIN+=      Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp
836 SRCS_MIN+=      Target/AArch64/AArch64CollectLOH.cpp
837 SRCS_MIN+=      Target/AArch64/AArch64CondBrTuning.cpp
838 SRCS_MIN+=      Target/AArch64/AArch64ConditionOptimizer.cpp
839 SRCS_MIN+=      Target/AArch64/AArch64ConditionalCompares.cpp
840 SRCS_MIN+=      Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
841 SRCS_MIN+=      Target/AArch64/AArch64ExpandPseudoInsts.cpp
842 SRCS_MIN+=      Target/AArch64/AArch64FalkorHWPFFix.cpp
843 SRCS_MIN+=      Target/AArch64/AArch64FastISel.cpp
844 SRCS_MIN+=      Target/AArch64/AArch64FrameLowering.cpp
845 SRCS_MIN+=      Target/AArch64/AArch64ISelDAGToDAG.cpp
846 SRCS_MIN+=      Target/AArch64/AArch64ISelLowering.cpp
847 SRCS_MIN+=      Target/AArch64/AArch64InstrInfo.cpp
848 SRCS_MIN+=      Target/AArch64/AArch64InstructionSelector.cpp
849 SRCS_MIN+=      Target/AArch64/AArch64LegalizerInfo.cpp
850 SRCS_MIN+=      Target/AArch64/AArch64LoadStoreOptimizer.cpp
851 SRCS_MIN+=      Target/AArch64/AArch64MCInstLower.cpp
852 SRCS_MIN+=      Target/AArch64/AArch64MacroFusion.cpp
853 SRCS_MIN+=      Target/AArch64/AArch64PBQPRegAlloc.cpp
854 SRCS_MIN+=      Target/AArch64/AArch64PromoteConstant.cpp
855 SRCS_MIN+=      Target/AArch64/AArch64RedundantCopyElimination.cpp
856 SRCS_MIN+=      Target/AArch64/AArch64RegisterBankInfo.cpp
857 SRCS_MIN+=      Target/AArch64/AArch64RegisterInfo.cpp
858 SRCS_MIN+=      Target/AArch64/AArch64SIMDInstrOpt.cpp
859 SRCS_MIN+=      Target/AArch64/AArch64SelectionDAGInfo.cpp
860 SRCS_MIN+=      Target/AArch64/AArch64StorePairSuppress.cpp
861 SRCS_MIN+=      Target/AArch64/AArch64Subtarget.cpp
862 SRCS_MIN+=      Target/AArch64/AArch64TargetMachine.cpp
863 SRCS_MIN+=      Target/AArch64/AArch64TargetObjectFile.cpp
864 SRCS_MIN+=      Target/AArch64/AArch64TargetTransformInfo.cpp
865 SRCS_MIN+=      Target/AArch64/AsmParser/AArch64AsmParser.cpp
866 SRCS_XDW+=      Target/AArch64/Disassembler/AArch64Disassembler.cpp
867 SRCS_XDW+=      Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp
868 SRCS_MIN+=      Target/AArch64/InstPrinter/AArch64InstPrinter.cpp
869 SRCS_MIN+=      Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
870 SRCS_MIN+=      Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
871 SRCS_MIN+=      Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp
872 SRCS_MIN+=      Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
873 SRCS_MIN+=      Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
874 SRCS_MIN+=      Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
875 SRCS_MIN+=      Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
876 SRCS_MIN+=      Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
877 SRCS_MIN+=      Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp
878 SRCS_MIN+=      Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp
879 SRCS_MIN+=      Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp
880 SRCS_MIN+=      Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
881 SRCS_MIN+=      Target/AArch64/Utils/AArch64BaseInfo.cpp
882 .endif # MK_LLVM_TARGET_AARCH64
883 .if ${MK_LLVM_TARGET_ARM} != "no"
884 SRCS_MIN+=      Target/ARM/A15SDOptimizer.cpp
885 SRCS_MIN+=      Target/ARM/ARMAsmPrinter.cpp
886 SRCS_MIN+=      Target/ARM/ARMBaseInstrInfo.cpp
887 SRCS_MIN+=      Target/ARM/ARMBaseRegisterInfo.cpp
888 SRCS_MIN+=      Target/ARM/ARMCallLowering.cpp
889 SRCS_MIN+=      Target/ARM/ARMCodeGenPrepare.cpp
890 SRCS_MIN+=      Target/ARM/ARMComputeBlockSize.cpp
891 SRCS_MIN+=      Target/ARM/ARMConstantIslandPass.cpp
892 SRCS_MIN+=      Target/ARM/ARMConstantPoolValue.cpp
893 SRCS_MIN+=      Target/ARM/ARMExpandPseudoInsts.cpp
894 SRCS_MIN+=      Target/ARM/ARMFastISel.cpp
895 SRCS_MIN+=      Target/ARM/ARMFrameLowering.cpp
896 SRCS_MIN+=      Target/ARM/ARMHazardRecognizer.cpp
897 SRCS_MIN+=      Target/ARM/ARMISelDAGToDAG.cpp
898 SRCS_MIN+=      Target/ARM/ARMISelLowering.cpp
899 SRCS_MIN+=      Target/ARM/ARMInstrInfo.cpp
900 SRCS_MIN+=      Target/ARM/ARMInstructionSelector.cpp
901 SRCS_MIN+=      Target/ARM/ARMLegalizerInfo.cpp
902 SRCS_MIN+=      Target/ARM/ARMLoadStoreOptimizer.cpp
903 SRCS_MIN+=      Target/ARM/ARMMCInstLower.cpp
904 SRCS_MIN+=      Target/ARM/ARMMachineFunctionInfo.cpp
905 SRCS_MIN+=      Target/ARM/ARMMacroFusion.cpp
906 SRCS_MIN+=      Target/ARM/ARMOptimizeBarriersPass.cpp
907 SRCS_MIN+=      Target/ARM/ARMParallelDSP.cpp
908 SRCS_MIN+=      Target/ARM/ARMRegisterBankInfo.cpp
909 SRCS_MIN+=      Target/ARM/ARMRegisterInfo.cpp
910 SRCS_MIN+=      Target/ARM/ARMSelectionDAGInfo.cpp
911 SRCS_MIN+=      Target/ARM/ARMSubtarget.cpp
912 SRCS_MIN+=      Target/ARM/ARMTargetMachine.cpp
913 SRCS_MIN+=      Target/ARM/ARMTargetObjectFile.cpp
914 SRCS_MIN+=      Target/ARM/ARMTargetTransformInfo.cpp
915 SRCS_MIN+=      Target/ARM/AsmParser/ARMAsmParser.cpp
916 SRCS_MIN+=      Target/ARM/Disassembler/ARMDisassembler.cpp
917 SRCS_MIN+=      Target/ARM/InstPrinter/ARMInstPrinter.cpp
918 SRCS_MIN+=      Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
919 SRCS_MIN+=      Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
920 SRCS_MIN+=      Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
921 SRCS_MIN+=      Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp
922 SRCS_MIN+=      Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
923 SRCS_MIN+=      Target/ARM/MCTargetDesc/ARMMCExpr.cpp
924 SRCS_MIN+=      Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
925 SRCS_MIN+=      Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp
926 SRCS_MIN+=      Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
927 SRCS_MIN+=      Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
928 SRCS_MIN+=      Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp
929 SRCS_MIN+=      Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp
930 SRCS_MIN+=      Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp
931 SRCS_MIN+=      Target/ARM/MLxExpansionPass.cpp
932 SRCS_MIN+=      Target/ARM/TargetInfo/ARMTargetInfo.cpp
933 SRCS_MIN+=      Target/ARM/Thumb1FrameLowering.cpp
934 SRCS_MIN+=      Target/ARM/Thumb1InstrInfo.cpp
935 SRCS_MIN+=      Target/ARM/Thumb2ITBlockPass.cpp
936 SRCS_MIN+=      Target/ARM/Thumb2InstrInfo.cpp
937 SRCS_MIN+=      Target/ARM/Thumb2SizeReduction.cpp
938 SRCS_MIN+=      Target/ARM/ThumbRegisterInfo.cpp
939 SRCS_MIN+=      Target/ARM/Utils/ARMBaseInfo.cpp
940 .endif # MK_LLVM_TARGET_ARM
941 .if ${MK_LLVM_TARGET_MIPS} != "no"
942 SRCS_MIN+=      Target/Mips/AsmParser/MipsAsmParser.cpp
943 SRCS_XDW+=      Target/Mips/Disassembler/MipsDisassembler.cpp
944 SRCS_MIN+=      Target/Mips/InstPrinter/MipsInstPrinter.cpp
945 SRCS_MIN+=      Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp
946 SRCS_MIN+=      Target/Mips/MCTargetDesc/MipsABIInfo.cpp
947 SRCS_MIN+=      Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
948 SRCS_MIN+=      Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
949 SRCS_MIN+=      Target/Mips/MCTargetDesc/MipsELFStreamer.cpp
950 SRCS_MIN+=      Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
951 SRCS_MIN+=      Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
952 SRCS_MIN+=      Target/Mips/MCTargetDesc/MipsMCExpr.cpp
953 SRCS_MIN+=      Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
954 SRCS_MIN+=      Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
955 SRCS_MIN+=      Target/Mips/MCTargetDesc/MipsOptionRecord.cpp
956 SRCS_MIN+=      Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
957 SRCS_MIN+=      Target/Mips/MicroMipsSizeReduction.cpp
958 SRCS_MIN+=      Target/Mips/Mips16FrameLowering.cpp
959 SRCS_MIN+=      Target/Mips/Mips16HardFloat.cpp
960 SRCS_MIN+=      Target/Mips/Mips16HardFloatInfo.cpp
961 SRCS_MIN+=      Target/Mips/Mips16ISelDAGToDAG.cpp
962 SRCS_MIN+=      Target/Mips/Mips16ISelLowering.cpp
963 SRCS_MIN+=      Target/Mips/Mips16InstrInfo.cpp
964 SRCS_MIN+=      Target/Mips/Mips16RegisterInfo.cpp
965 SRCS_MIN+=      Target/Mips/MipsAnalyzeImmediate.cpp
966 SRCS_MIN+=      Target/Mips/MipsAsmPrinter.cpp
967 SRCS_MIN+=      Target/Mips/MipsBranchExpansion.cpp
968 SRCS_MIN+=      Target/Mips/MipsCCState.cpp
969 SRCS_MIN+=      Target/Mips/MipsCallLowering.cpp
970 SRCS_MIN+=      Target/Mips/MipsConstantIslandPass.cpp
971 SRCS_MIN+=      Target/Mips/MipsDelaySlotFiller.cpp
972 SRCS_MIN+=      Target/Mips/MipsExpandPseudo.cpp
973 SRCS_MIN+=      Target/Mips/MipsFastISel.cpp
974 SRCS_MIN+=      Target/Mips/MipsFrameLowering.cpp
975 SRCS_MIN+=      Target/Mips/MipsISelDAGToDAG.cpp
976 SRCS_MIN+=      Target/Mips/MipsISelLowering.cpp
977 SRCS_MIN+=      Target/Mips/MipsInstrInfo.cpp
978 SRCS_MIN+=      Target/Mips/MipsInstructionSelector.cpp
979 SRCS_MIN+=      Target/Mips/MipsLegalizerInfo.cpp
980 SRCS_MIN+=      Target/Mips/MipsMCInstLower.cpp
981 SRCS_MIN+=      Target/Mips/MipsMachineFunction.cpp
982 SRCS_MIN+=      Target/Mips/MipsModuleISelDAGToDAG.cpp
983 SRCS_MIN+=      Target/Mips/MipsOptimizePICCall.cpp
984 SRCS_MIN+=      Target/Mips/MipsOs16.cpp
985 SRCS_MIN+=      Target/Mips/MipsRegisterBankInfo.cpp
986 SRCS_MIN+=      Target/Mips/MipsRegisterInfo.cpp
987 SRCS_MIN+=      Target/Mips/MipsSEFrameLowering.cpp
988 SRCS_MIN+=      Target/Mips/MipsSEISelDAGToDAG.cpp
989 SRCS_MIN+=      Target/Mips/MipsSEISelLowering.cpp
990 SRCS_MIN+=      Target/Mips/MipsSEInstrInfo.cpp
991 SRCS_MIN+=      Target/Mips/MipsSERegisterInfo.cpp
992 SRCS_MIN+=      Target/Mips/MipsSubtarget.cpp
993 SRCS_MIN+=      Target/Mips/MipsTargetMachine.cpp
994 SRCS_MIN+=      Target/Mips/MipsTargetObjectFile.cpp
995 SRCS_MIN+=      Target/Mips/TargetInfo/MipsTargetInfo.cpp
996 .endif # MK_LLVM_TARGET_MIPS
997 .if ${MK_LLVM_TARGET_POWERPC} != "no"
998 SRCS_MIN+=      Target/PowerPC/AsmParser/PPCAsmParser.cpp
999 SRCS_MIN+=      Target/PowerPC/Disassembler/PPCDisassembler.cpp
1000 SRCS_MIN+=      Target/PowerPC/InstPrinter/PPCInstPrinter.cpp
1001 SRCS_MIN+=      Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp
1002 SRCS_MIN+=      Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
1003 SRCS_MIN+=      Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
1004 SRCS_MIN+=      Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
1005 SRCS_MIN+=      Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
1006 SRCS_MIN+=      Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
1007 SRCS_MIN+=      Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp
1008 SRCS_MIN+=      Target/PowerPC/MCTargetDesc/PPCPredicates.cpp
1009 SRCS_MIN+=      Target/PowerPC/PPCAsmPrinter.cpp
1010 SRCS_MIN+=      Target/PowerPC/PPCBoolRetToInt.cpp
1011 SRCS_MIN+=      Target/PowerPC/PPCBranchCoalescing.cpp
1012 SRCS_MIN+=      Target/PowerPC/PPCBranchSelector.cpp
1013 SRCS_MIN+=      Target/PowerPC/PPCCCState.cpp
1014 SRCS_MIN+=      Target/PowerPC/PPCCTRLoops.cpp
1015 SRCS_MIN+=      Target/PowerPC/PPCEarlyReturn.cpp
1016 SRCS_MIN+=      Target/PowerPC/PPCExpandISEL.cpp
1017 SRCS_MIN+=      Target/PowerPC/PPCFastISel.cpp
1018 SRCS_MIN+=      Target/PowerPC/PPCFrameLowering.cpp
1019 SRCS_MIN+=      Target/PowerPC/PPCHazardRecognizers.cpp
1020 SRCS_MIN+=      Target/PowerPC/PPCISelDAGToDAG.cpp
1021 SRCS_MIN+=      Target/PowerPC/PPCISelLowering.cpp
1022 SRCS_MIN+=      Target/PowerPC/PPCInstrInfo.cpp
1023 SRCS_MIN+=      Target/PowerPC/PPCLoopPreIncPrep.cpp
1024 SRCS_MIN+=      Target/PowerPC/PPCMCInstLower.cpp
1025 SRCS_MIN+=      Target/PowerPC/PPCMIPeephole.cpp
1026 SRCS_MIN+=      Target/PowerPC/PPCMachineFunctionInfo.cpp
1027 SRCS_MIN+=      Target/PowerPC/PPCPreEmitPeephole.cpp
1028 SRCS_MIN+=      Target/PowerPC/PPCQPXLoadSplat.cpp
1029 SRCS_MIN+=      Target/PowerPC/PPCReduceCRLogicals.cpp
1030 SRCS_MIN+=      Target/PowerPC/PPCRegisterInfo.cpp
1031 SRCS_MIN+=      Target/PowerPC/PPCSubtarget.cpp
1032 SRCS_MIN+=      Target/PowerPC/PPCTLSDynamicCall.cpp
1033 SRCS_MIN+=      Target/PowerPC/PPCTOCRegDeps.cpp
1034 SRCS_MIN+=      Target/PowerPC/PPCTargetMachine.cpp
1035 SRCS_MIN+=      Target/PowerPC/PPCTargetObjectFile.cpp
1036 SRCS_MIN+=      Target/PowerPC/PPCTargetTransformInfo.cpp
1037 SRCS_MIN+=      Target/PowerPC/PPCVSXCopy.cpp
1038 SRCS_MIN+=      Target/PowerPC/PPCVSXFMAMutate.cpp
1039 SRCS_MIN+=      Target/PowerPC/PPCVSXSwapRemoval.cpp
1040 SRCS_MIN+=      Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
1041 .endif # MK_LLVM_TARGET_POWERPC
1042 .if ${MK_LLVM_TARGET_SPARC} != "no"
1043 SRCS_MIN+=      Target/Sparc/AsmParser/SparcAsmParser.cpp
1044 SRCS_MIN+=      Target/Sparc/DelaySlotFiller.cpp
1045 SRCS_XDW+=      Target/Sparc/Disassembler/SparcDisassembler.cpp
1046 SRCS_MIN+=      Target/Sparc/InstPrinter/SparcInstPrinter.cpp
1047 SRCS_MIN+=      Target/Sparc/LeonPasses.cpp
1048 SRCS_MIN+=      Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp
1049 SRCS_MIN+=      Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp
1050 SRCS_MIN+=      Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp
1051 SRCS_MIN+=      Target/Sparc/MCTargetDesc/SparcMCCodeEmitter.cpp
1052 SRCS_MIN+=      Target/Sparc/MCTargetDesc/SparcMCExpr.cpp
1053 SRCS_MIN+=      Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp
1054 SRCS_MIN+=      Target/Sparc/MCTargetDesc/SparcTargetStreamer.cpp
1055 SRCS_MIN+=      Target/Sparc/SparcAsmPrinter.cpp
1056 SRCS_MIN+=      Target/Sparc/SparcFrameLowering.cpp
1057 SRCS_MIN+=      Target/Sparc/SparcISelDAGToDAG.cpp
1058 SRCS_MIN+=      Target/Sparc/SparcISelLowering.cpp
1059 SRCS_MIN+=      Target/Sparc/SparcInstrInfo.cpp
1060 SRCS_MIN+=      Target/Sparc/SparcMCInstLower.cpp
1061 SRCS_MIN+=      Target/Sparc/SparcMachineFunctionInfo.cpp
1062 SRCS_MIN+=      Target/Sparc/SparcRegisterInfo.cpp
1063 SRCS_MIN+=      Target/Sparc/SparcSubtarget.cpp
1064 SRCS_MIN+=      Target/Sparc/SparcTargetMachine.cpp
1065 SRCS_MIN+=      Target/Sparc/SparcTargetObjectFile.cpp
1066 SRCS_MIN+=      Target/Sparc/TargetInfo/SparcTargetInfo.cpp
1067 .endif # MK_LLVM_TARGET_SPARC
1068 SRCS_MIN+=      Target/Target.cpp
1069 SRCS_MIN+=      Target/TargetIntrinsicInfo.cpp
1070 SRCS_MIN+=      Target/TargetLoweringObjectFile.cpp
1071 SRCS_MIN+=      Target/TargetMachine.cpp
1072 SRCS_MIN+=      Target/TargetMachineC.cpp
1073 .if ${MK_LLVM_TARGET_X86} != "no"
1074 SRCS_MIN+=      Target/X86/AsmParser/X86AsmInstrumentation.cpp
1075 SRCS_MIN+=      Target/X86/AsmParser/X86AsmParser.cpp
1076 SRCS_XDW+=      Target/X86/Disassembler/X86Disassembler.cpp
1077 SRCS_XDW+=      Target/X86/Disassembler/X86DisassemblerDecoder.cpp
1078 SRCS_MIN+=      Target/X86/InstPrinter/X86ATTInstPrinter.cpp
1079 SRCS_MIN+=      Target/X86/InstPrinter/X86InstComments.cpp
1080 SRCS_MIN+=      Target/X86/InstPrinter/X86InstPrinterCommon.cpp
1081 SRCS_MIN+=      Target/X86/InstPrinter/X86IntelInstPrinter.cpp
1082 SRCS_MIN+=      Target/X86/MCTargetDesc/X86AsmBackend.cpp
1083 SRCS_MIN+=      Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp
1084 SRCS_MIN+=      Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
1085 SRCS_MIN+=      Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
1086 SRCS_MIN+=      Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
1087 SRCS_MIN+=      Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
1088 SRCS_MIN+=      Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
1089 SRCS_MIN+=      Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
1090 SRCS_MIN+=      Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp
1091 SRCS_MIN+=      Target/X86/TargetInfo/X86TargetInfo.cpp
1092 SRCS_MIN+=      Target/X86/Utils/X86ShuffleDecode.cpp
1093 SRCS_MIN+=      Target/X86/ShadowCallStack.cpp
1094 SRCS_MIN+=      Target/X86/X86AsmPrinter.cpp
1095 SRCS_MIN+=      Target/X86/X86AvoidStoreForwardingBlocks.cpp
1096 SRCS_MIN+=      Target/X86/X86CallFrameOptimization.cpp
1097 SRCS_MIN+=      Target/X86/X86CallLowering.cpp
1098 SRCS_MIN+=      Target/X86/X86CallingConv.cpp
1099 SRCS_MIN+=      Target/X86/X86CmovConversion.cpp
1100 SRCS_MIN+=      Target/X86/X86DomainReassignment.cpp
1101 SRCS_MIN+=      Target/X86/X86EvexToVex.cpp
1102 SRCS_MIN+=      Target/X86/X86ExpandPseudo.cpp
1103 SRCS_MIN+=      Target/X86/X86FastISel.cpp
1104 SRCS_MIN+=      Target/X86/X86FixupBWInsts.cpp
1105 SRCS_MIN+=      Target/X86/X86FixupLEAs.cpp
1106 SRCS_MIN+=      Target/X86/X86FixupSetCC.cpp
1107 SRCS_MIN+=      Target/X86/X86FlagsCopyLowering.cpp
1108 SRCS_MIN+=      Target/X86/X86FloatingPoint.cpp
1109 SRCS_MIN+=      Target/X86/X86FrameLowering.cpp
1110 SRCS_MIN+=      Target/X86/X86ISelDAGToDAG.cpp
1111 SRCS_MIN+=      Target/X86/X86ISelLowering.cpp
1112 SRCS_MIN+=      Target/X86/X86IndirectBranchTracking.cpp
1113 SRCS_MIN+=      Target/X86/X86InstrFMA3Info.cpp
1114 SRCS_MIN+=      Target/X86/X86InstrFoldTables.cpp
1115 SRCS_MIN+=      Target/X86/X86InstrInfo.cpp
1116 SRCS_MIN+=      Target/X86/X86InstructionSelector.cpp
1117 SRCS_MIN+=      Target/X86/X86InterleavedAccess.cpp
1118 SRCS_MIN+=      Target/X86/X86LegalizerInfo.cpp
1119 SRCS_MIN+=      Target/X86/X86MCInstLower.cpp
1120 SRCS_MIN+=      Target/X86/X86MachineFunctionInfo.cpp
1121 SRCS_MIN+=      Target/X86/X86MacroFusion.cpp
1122 SRCS_MIN+=      Target/X86/X86OptimizeLEAs.cpp
1123 SRCS_MIN+=      Target/X86/X86PadShortFunction.cpp
1124 SRCS_MIN+=      Target/X86/X86RegisterBankInfo.cpp
1125 SRCS_MIN+=      Target/X86/X86RegisterInfo.cpp
1126 SRCS_MIN+=      Target/X86/X86RetpolineThunks.cpp
1127 SRCS_MIN+=      Target/X86/X86SelectionDAGInfo.cpp
1128 SRCS_MIN+=      Target/X86/X86ShuffleDecodeConstantPool.cpp
1129 SRCS_MIN+=      Target/X86/X86SpeculativeLoadHardening.cpp
1130 SRCS_MIN+=      Target/X86/X86Subtarget.cpp
1131 SRCS_MIN+=      Target/X86/X86TargetMachine.cpp
1132 SRCS_MIN+=      Target/X86/X86TargetObjectFile.cpp
1133 SRCS_MIN+=      Target/X86/X86TargetTransformInfo.cpp
1134 SRCS_MIN+=      Target/X86/X86VZeroUpper.cpp
1135 SRCS_MIN+=      Target/X86/X86WinAllocaExpander.cpp
1136 SRCS_MIN+=      Target/X86/X86WinEHState.cpp
1137 .endif # MK_LLVM_TARGET_X86
1138 SRCS_EXT+=      ToolDrivers/llvm-dlltool/DlltoolDriver.cpp
1139 SRCS_EXL+=      ToolDrivers/llvm-lib/LibDriver.cpp
1140 SRCS_MIN+=      Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
1141 SRCS_MIN+=      Transforms/AggressiveInstCombine/TruncInstCombine.cpp
1142 SRCS_MIN+=      Transforms/Coroutines/CoroCleanup.cpp
1143 SRCS_MIN+=      Transforms/Coroutines/CoroEarly.cpp
1144 SRCS_MIN+=      Transforms/Coroutines/CoroElide.cpp
1145 SRCS_MIN+=      Transforms/Coroutines/CoroFrame.cpp
1146 SRCS_MIN+=      Transforms/Coroutines/CoroSplit.cpp
1147 SRCS_MIN+=      Transforms/Coroutines/Coroutines.cpp
1148 SRCS_MIN+=      Transforms/IPO/AlwaysInliner.cpp
1149 SRCS_MIN+=      Transforms/IPO/ArgumentPromotion.cpp
1150 SRCS_MIN+=      Transforms/IPO/BarrierNoopPass.cpp
1151 SRCS_EXT+=      Transforms/IPO/BlockExtractor.cpp
1152 SRCS_MIN+=      Transforms/IPO/CalledValuePropagation.cpp
1153 SRCS_MIN+=      Transforms/IPO/ConstantMerge.cpp
1154 SRCS_MIN+=      Transforms/IPO/CrossDSOCFI.cpp
1155 SRCS_MIN+=      Transforms/IPO/DeadArgumentElimination.cpp
1156 SRCS_MIN+=      Transforms/IPO/ElimAvailExtern.cpp
1157 SRCS_MIN+=      Transforms/IPO/ExtractGV.cpp
1158 SRCS_MIN+=      Transforms/IPO/ForceFunctionAttrs.cpp
1159 SRCS_MIN+=      Transforms/IPO/FunctionAttrs.cpp
1160 SRCS_MIN+=      Transforms/IPO/FunctionImport.cpp
1161 SRCS_MIN+=      Transforms/IPO/GlobalDCE.cpp
1162 SRCS_MIN+=      Transforms/IPO/GlobalOpt.cpp
1163 SRCS_MIN+=      Transforms/IPO/GlobalSplit.cpp
1164 SRCS_MIN+=      Transforms/IPO/IPConstantPropagation.cpp
1165 SRCS_EXT+=      Transforms/IPO/IPO.cpp
1166 SRCS_MIN+=      Transforms/IPO/InferFunctionAttrs.cpp
1167 SRCS_MIN+=      Transforms/IPO/InlineSimple.cpp
1168 SRCS_MIN+=      Transforms/IPO/Inliner.cpp
1169 SRCS_MIN+=      Transforms/IPO/Internalize.cpp
1170 SRCS_MIN+=      Transforms/IPO/LoopExtractor.cpp
1171 SRCS_MIN+=      Transforms/IPO/LowerTypeTests.cpp
1172 SRCS_MIN+=      Transforms/IPO/MergeFunctions.cpp
1173 SRCS_MIN+=      Transforms/IPO/PartialInlining.cpp
1174 SRCS_MIN+=      Transforms/IPO/PassManagerBuilder.cpp
1175 SRCS_MIN+=      Transforms/IPO/PruneEH.cpp
1176 SRCS_MIN+=      Transforms/IPO/SCCP.cpp
1177 SRCS_MIN+=      Transforms/IPO/SampleProfile.cpp
1178 SRCS_MIN+=      Transforms/IPO/StripDeadPrototypes.cpp
1179 SRCS_MIN+=      Transforms/IPO/StripSymbols.cpp
1180 SRCS_MIN+=      Transforms/IPO/SyntheticCountsPropagation.cpp
1181 SRCS_MIN+=      Transforms/IPO/ThinLTOBitcodeWriter.cpp
1182 SRCS_MIN+=      Transforms/IPO/WholeProgramDevirt.cpp
1183 SRCS_MIN+=      Transforms/InstCombine/InstCombineAddSub.cpp
1184 SRCS_MIN+=      Transforms/InstCombine/InstCombineAndOrXor.cpp
1185 SRCS_MIN+=      Transforms/InstCombine/InstCombineCalls.cpp
1186 SRCS_MIN+=      Transforms/InstCombine/InstCombineCasts.cpp
1187 SRCS_MIN+=      Transforms/InstCombine/InstCombineCompares.cpp
1188 SRCS_MIN+=      Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
1189 SRCS_MIN+=      Transforms/InstCombine/InstCombineMulDivRem.cpp
1190 SRCS_MIN+=      Transforms/InstCombine/InstCombinePHI.cpp
1191 SRCS_MIN+=      Transforms/InstCombine/InstCombineSelect.cpp
1192 SRCS_MIN+=      Transforms/InstCombine/InstCombineShifts.cpp
1193 SRCS_MIN+=      Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
1194 SRCS_MIN+=      Transforms/InstCombine/InstCombineVectorOps.cpp
1195 SRCS_MIN+=      Transforms/InstCombine/InstructionCombining.cpp
1196 SRCS_MIN+=      Transforms/Instrumentation/AddressSanitizer.cpp
1197 SRCS_MIN+=      Transforms/Instrumentation/BoundsChecking.cpp
1198 SRCS_MIN+=      Transforms/Instrumentation/CGProfile.cpp
1199 SRCS_MIN+=      Transforms/Instrumentation/DataFlowSanitizer.cpp
1200 SRCS_MIN+=      Transforms/Instrumentation/EfficiencySanitizer.cpp
1201 SRCS_MIN+=      Transforms/Instrumentation/GCOVProfiling.cpp
1202 SRCS_MIN+=      Transforms/Instrumentation/HWAddressSanitizer.cpp
1203 SRCS_MIN+=      Transforms/Instrumentation/IndirectCallPromotion.cpp
1204 SRCS_MIN+=      Transforms/Instrumentation/InstrProfiling.cpp
1205 SRCS_MIN+=      Transforms/Instrumentation/Instrumentation.cpp
1206 SRCS_MIN+=      Transforms/Instrumentation/MemorySanitizer.cpp
1207 SRCS_MIN+=      Transforms/Instrumentation/PGOInstrumentation.cpp
1208 SRCS_MIN+=      Transforms/Instrumentation/PGOMemOPSizeOpt.cpp
1209 SRCS_MIN+=      Transforms/Instrumentation/SanitizerCoverage.cpp
1210 SRCS_MIN+=      Transforms/Instrumentation/ThreadSanitizer.cpp
1211 SRCS_MIN+=      Transforms/ObjCARC/DependencyAnalysis.cpp
1212 SRCS_EXT+=      Transforms/ObjCARC/ObjCARC.cpp
1213 SRCS_MIN+=      Transforms/ObjCARC/ObjCARCAPElim.cpp
1214 SRCS_MIN+=      Transforms/ObjCARC/ObjCARCContract.cpp
1215 SRCS_MIN+=      Transforms/ObjCARC/ObjCARCExpand.cpp
1216 SRCS_MIN+=      Transforms/ObjCARC/ObjCARCOpts.cpp
1217 SRCS_MIN+=      Transforms/ObjCARC/ProvenanceAnalysis.cpp
1218 SRCS_MIN+=      Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp
1219 SRCS_MIN+=      Transforms/ObjCARC/PtrState.cpp
1220 SRCS_MIN+=      Transforms/Scalar/ADCE.cpp
1221 SRCS_MIN+=      Transforms/Scalar/AlignmentFromAssumptions.cpp
1222 SRCS_MIN+=      Transforms/Scalar/BDCE.cpp
1223 SRCS_MIN+=      Transforms/Scalar/CallSiteSplitting.cpp
1224 SRCS_MIN+=      Transforms/Scalar/ConstantHoisting.cpp
1225 SRCS_MIN+=      Transforms/Scalar/ConstantProp.cpp
1226 SRCS_MIN+=      Transforms/Scalar/CorrelatedValuePropagation.cpp
1227 SRCS_MIN+=      Transforms/Scalar/DCE.cpp
1228 SRCS_MIN+=      Transforms/Scalar/DeadStoreElimination.cpp
1229 SRCS_MIN+=      Transforms/Scalar/DivRemPairs.cpp
1230 SRCS_MIN+=      Transforms/Scalar/EarlyCSE.cpp
1231 SRCS_MIN+=      Transforms/Scalar/FlattenCFGPass.cpp
1232 SRCS_MIN+=      Transforms/Scalar/Float2Int.cpp
1233 SRCS_MIN+=      Transforms/Scalar/GVN.cpp
1234 SRCS_MIN+=      Transforms/Scalar/GVNHoist.cpp
1235 SRCS_MIN+=      Transforms/Scalar/GVNSink.cpp
1236 SRCS_MIN+=      Transforms/Scalar/GuardWidening.cpp
1237 SRCS_MIN+=      Transforms/Scalar/IVUsersPrinter.cpp
1238 SRCS_MIN+=      Transforms/Scalar/IndVarSimplify.cpp
1239 SRCS_MIN+=      Transforms/Scalar/InductiveRangeCheckElimination.cpp
1240 SRCS_EXT+=      Transforms/Scalar/InferAddressSpaces.cpp
1241 SRCS_MIN+=      Transforms/Scalar/InstSimplifyPass.cpp
1242 SRCS_MIN+=      Transforms/Scalar/JumpThreading.cpp
1243 SRCS_MIN+=      Transforms/Scalar/LICM.cpp
1244 SRCS_MIN+=      Transforms/Scalar/LoopAccessAnalysisPrinter.cpp
1245 SRCS_MIN+=      Transforms/Scalar/LoopDataPrefetch.cpp
1246 SRCS_MIN+=      Transforms/Scalar/LoopDeletion.cpp
1247 SRCS_MIN+=      Transforms/Scalar/LoopDistribute.cpp
1248 SRCS_MIN+=      Transforms/Scalar/LoopIdiomRecognize.cpp
1249 SRCS_MIN+=      Transforms/Scalar/LoopInstSimplify.cpp
1250 SRCS_MIN+=      Transforms/Scalar/LoopInterchange.cpp
1251 SRCS_MIN+=      Transforms/Scalar/LoopLoadElimination.cpp
1252 SRCS_MIN+=      Transforms/Scalar/LoopPassManager.cpp
1253 SRCS_MIN+=      Transforms/Scalar/LoopPredication.cpp
1254 SRCS_MIN+=      Transforms/Scalar/LoopRerollPass.cpp
1255 SRCS_MIN+=      Transforms/Scalar/LoopRotation.cpp
1256 SRCS_MIN+=      Transforms/Scalar/LoopSimplifyCFG.cpp
1257 SRCS_MIN+=      Transforms/Scalar/LoopSink.cpp
1258 SRCS_MIN+=      Transforms/Scalar/LoopStrengthReduce.cpp
1259 SRCS_MIN+=      Transforms/Scalar/LoopUnrollPass.cpp
1260 SRCS_MIN+=      Transforms/Scalar/LoopUnrollAndJamPass.cpp
1261 SRCS_MIN+=      Transforms/Scalar/LoopUnswitch.cpp
1262 SRCS_MIN+=      Transforms/Scalar/LoopVersioningLICM.cpp
1263 SRCS_MIN+=      Transforms/Scalar/LowerAtomic.cpp
1264 SRCS_MIN+=      Transforms/Scalar/LowerExpectIntrinsic.cpp
1265 SRCS_MIN+=      Transforms/Scalar/LowerGuardIntrinsic.cpp
1266 SRCS_MIN+=      Transforms/Scalar/MemCpyOptimizer.cpp
1267 SRCS_MIN+=      Transforms/Scalar/MergeICmps.cpp
1268 SRCS_MIN+=      Transforms/Scalar/MergedLoadStoreMotion.cpp
1269 SRCS_MIN+=      Transforms/Scalar/NaryReassociate.cpp
1270 SRCS_MIN+=      Transforms/Scalar/NewGVN.cpp
1271 SRCS_MIN+=      Transforms/Scalar/PartiallyInlineLibCalls.cpp
1272 SRCS_MIN+=      Transforms/Scalar/PlaceSafepoints.cpp
1273 SRCS_MIN+=      Transforms/Scalar/Reassociate.cpp
1274 SRCS_MIN+=      Transforms/Scalar/Reg2Mem.cpp
1275 SRCS_MIN+=      Transforms/Scalar/RewriteStatepointsForGC.cpp
1276 SRCS_MIN+=      Transforms/Scalar/SCCP.cpp
1277 SRCS_MIN+=      Transforms/Scalar/SROA.cpp
1278 SRCS_EXT+=      Transforms/Scalar/Scalar.cpp
1279 SRCS_MIN+=      Transforms/Scalar/Scalarizer.cpp
1280 SRCS_MIN+=      Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
1281 SRCS_MIN+=      Transforms/Scalar/SimpleLoopUnswitch.cpp
1282 SRCS_MIN+=      Transforms/Scalar/SimplifyCFGPass.cpp
1283 SRCS_MIN+=      Transforms/Scalar/Sink.cpp
1284 SRCS_MIN+=      Transforms/Scalar/SpeculateAroundPHIs.cpp
1285 SRCS_MIN+=      Transforms/Scalar/SpeculativeExecution.cpp
1286 SRCS_MIN+=      Transforms/Scalar/StraightLineStrengthReduce.cpp
1287 SRCS_MIN+=      Transforms/Scalar/StructurizeCFG.cpp
1288 SRCS_MIN+=      Transforms/Scalar/TailRecursionElimination.cpp
1289 SRCS_MIN+=      Transforms/Utils/ASanStackFrameLayout.cpp
1290 SRCS_MIN+=      Transforms/Utils/AddDiscriminators.cpp
1291 SRCS_MIN+=      Transforms/Utils/BasicBlockUtils.cpp
1292 SRCS_MIN+=      Transforms/Utils/BreakCriticalEdges.cpp
1293 SRCS_MIN+=      Transforms/Utils/BuildLibCalls.cpp
1294 SRCS_MIN+=      Transforms/Utils/BypassSlowDivision.cpp
1295 SRCS_MIN+=      Transforms/Utils/CallPromotionUtils.cpp
1296 SRCS_MIN+=      Transforms/Utils/CloneFunction.cpp
1297 SRCS_MIN+=      Transforms/Utils/CloneModule.cpp
1298 SRCS_MIN+=      Transforms/Utils/CodeExtractor.cpp
1299 SRCS_MIN+=      Transforms/Utils/CtorUtils.cpp
1300 SRCS_MIN+=      Transforms/Utils/DemoteRegToStack.cpp
1301 SRCS_MIN+=      Transforms/Utils/EntryExitInstrumenter.cpp
1302 SRCS_MIN+=      Transforms/Utils/EscapeEnumerator.cpp
1303 SRCS_MIN+=      Transforms/Utils/Evaluator.cpp
1304 SRCS_MIN+=      Transforms/Utils/FlattenCFG.cpp
1305 SRCS_MIN+=      Transforms/Utils/FunctionComparator.cpp
1306 SRCS_MIN+=      Transforms/Utils/FunctionImportUtils.cpp
1307 SRCS_MIN+=      Transforms/Utils/GlobalStatus.cpp
1308 SRCS_MIN+=      Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
1309 SRCS_MIN+=      Transforms/Utils/InlineFunction.cpp
1310 SRCS_MIN+=      Transforms/Utils/InstructionNamer.cpp
1311 SRCS_MIN+=      Transforms/Utils/IntegerDivision.cpp
1312 SRCS_MIN+=      Transforms/Utils/LCSSA.cpp
1313 SRCS_MIN+=      Transforms/Utils/LibCallsShrinkWrap.cpp
1314 SRCS_MIN+=      Transforms/Utils/Local.cpp
1315 SRCS_MIN+=      Transforms/Utils/LoopSimplify.cpp
1316 SRCS_MIN+=      Transforms/Utils/LoopRotationUtils.cpp
1317 SRCS_MIN+=      Transforms/Utils/LoopUnroll.cpp
1318 SRCS_MIN+=      Transforms/Utils/LoopUnrollAndJam.cpp
1319 SRCS_MIN+=      Transforms/Utils/LoopUnrollPeel.cpp
1320 SRCS_MIN+=      Transforms/Utils/LoopUnrollRuntime.cpp
1321 SRCS_MIN+=      Transforms/Utils/LoopUtils.cpp
1322 SRCS_MIN+=      Transforms/Utils/LoopVersioning.cpp
1323 SRCS_MIN+=      Transforms/Utils/LowerInvoke.cpp
1324 SRCS_MIN+=      Transforms/Utils/LowerSwitch.cpp
1325 SRCS_MIN+=      Transforms/Utils/Mem2Reg.cpp
1326 SRCS_MIN+=      Transforms/Utils/MetaRenamer.cpp
1327 SRCS_MIN+=      Transforms/Utils/ModuleUtils.cpp
1328 SRCS_MIN+=      Transforms/Utils/NameAnonGlobals.cpp
1329 SRCS_MIN+=      Transforms/Utils/OrderedInstructions.cpp
1330 SRCS_MIN+=      Transforms/Utils/PredicateInfo.cpp
1331 SRCS_MIN+=      Transforms/Utils/PromoteMemoryToRegister.cpp
1332 SRCS_MIN+=      Transforms/Utils/SSAUpdater.cpp
1333 SRCS_MIN+=      Transforms/Utils/SanitizerStats.cpp
1334 SRCS_MIN+=      Transforms/Utils/SimplifyCFG.cpp
1335 SRCS_MIN+=      Transforms/Utils/SimplifyIndVar.cpp
1336 SRCS_MIN+=      Transforms/Utils/SimplifyLibCalls.cpp
1337 SRCS_MIN+=      Transforms/Utils/SplitModule.cpp
1338 SRCS_MIN+=      Transforms/Utils/StripGCRelocates.cpp
1339 SRCS_MIN+=      Transforms/Utils/StripNonLineTableDebugInfo.cpp
1340 SRCS_MIN+=      Transforms/Utils/SymbolRewriter.cpp
1341 SRCS_MIN+=      Transforms/Utils/UnifyFunctionExitNodes.cpp
1342 SRCS_EXT+=      Transforms/Utils/Utils.cpp
1343 SRCS_MIN+=      Transforms/Utils/VNCoercion.cpp
1344 SRCS_MIN+=      Transforms/Utils/ValueMapper.cpp
1345 SRCS_MIN+=      Transforms/Vectorize/LoadStoreVectorizer.cpp
1346 SRCS_MIN+=      Transforms/Vectorize/LoopVectorizationLegality.cpp
1347 SRCS_MIN+=      Transforms/Vectorize/LoopVectorize.cpp
1348 SRCS_MIN+=      Transforms/Vectorize/SLPVectorizer.cpp
1349 SRCS_MIN+=      Transforms/Vectorize/VPlan.cpp
1350 SRCS_MIN+=      Transforms/Vectorize/VPlanHCFGBuilder.cpp
1351 SRCS_MIN+=      Transforms/Vectorize/VPlanVerifier.cpp
1352 SRCS_EXT+=      Transforms/Vectorize/Vectorize.cpp
1353 SRCS_EXT+=      XRay/InstrumentationMap.cpp
1354 SRCS_EXT+=      XRay/Trace.cpp
1355
1356 SRCS_ALL+=      ${SRCS_MIN}
1357 .if !defined(TOOLS_PREFIX) || ${MK_LLD_BOOTSTRAP} != "no"
1358 SRCS_ALL+=      ${SRCS_MIW}
1359 .endif
1360 .if ${MK_CLANG_EXTRAS} != "no"
1361 SRCS_ALL+=      ${SRCS_EXT}
1362 .endif
1363 .if ${MK_CLANG_FULL} != "no"
1364 SRCS_ALL+=      ${SRCS_FUL}
1365 .endif
1366 .if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLD} != "no" || \
1367     (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no")
1368 SRCS_ALL+=      ${SRCS_EXL}
1369 .endif
1370 .if ${MK_LLD} != "no" || \
1371     (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no")
1372 SRCS_ALL+=      ${SRCS_LLD}
1373 .endif
1374 .if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no"
1375 SRCS_ALL+=      ${SRCS_XDB}
1376 .endif
1377 .if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || ${MK_LLD} != "no" || \
1378     (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no")
1379 SRCS_ALL+=      ${SRCS_XDL}
1380 .endif
1381 .if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || !defined(TOOLS_PREFIX)
1382 SRCS_ALL+=      ${SRCS_XDW}
1383 .endif
1384 SRCS+=          ${SRCS_ALL:O}
1385
1386 llvm/IR/Attributes.inc: ${LLVM_SRCS}/include/llvm/IR/Attributes.td
1387         ${LLVM_TBLGEN} -gen-attrs \
1388             -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
1389             ${LLVM_SRCS}/include/llvm/IR/Attributes.td
1390 TGHDRS+=        llvm/IR/Attributes.inc
1391
1392 llvm/IR/IntrinsicEnums.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
1393         ${LLVM_TBLGEN} -gen-intrinsic-enums \
1394             -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
1395             ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
1396 TGHDRS+=        llvm/IR/IntrinsicEnums.inc
1397
1398 llvm/IR/IntrinsicImpl.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
1399         ${LLVM_TBLGEN} -gen-intrinsic-impl \
1400             -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
1401             ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
1402 TGHDRS+=        llvm/IR/IntrinsicImpl.inc
1403
1404 AttributesCompatFunc.inc: ${LLVM_SRCS}/lib/IR/AttributesCompatFunc.td
1405         ${LLVM_TBLGEN} -gen-attrs \
1406             -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
1407             ${LLVM_SRCS}/lib/IR/AttributesCompatFunc.td
1408 TGHDRS+=        AttributesCompatFunc.inc
1409
1410 InstCombineTables.inc: ${LLVM_SRCS}/lib/Transforms/InstCombine/InstCombineTables.td
1411         ${LLVM_TBLGEN} -gen-searchable-tables \
1412             -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
1413             ${LLVM_SRCS}/lib/Transforms/InstCombine/InstCombineTables.td
1414 TGHDRS+=        InstCombineTables.inc
1415
1416 llvm-lib/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td
1417         ${LLVM_TBLGEN} -gen-opt-parser-defs \
1418             -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
1419             ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td
1420 TGHDRS+=        llvm-lib/Options.inc
1421 CFLAGS.LibDriver.cpp+=  -I${.OBJDIR}/llvm-lib
1422
1423 llvm-dlltool/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td
1424         ${LLVM_TBLGEN} -gen-opt-parser-defs \
1425             -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \
1426             ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td
1427 TGHDRS+=        llvm-dlltool/Options.inc
1428 CFLAGS.DlltoolDriver.cpp+=      -I${.OBJDIR}/llvm-dlltool
1429
1430 beforebuild:
1431 # 20170724 remove stale Options.inc file, of which there are two different
1432 # versions after upstream r308421, one for llvm-lib, one for llvm-dlltool
1433 .for f in Options.inc
1434 .if exists(${f}) || exists(${f}.d)
1435         @echo Removing stale generated ${f} files
1436         @rm -f ${f} ${f}.d
1437 .endif
1438 .endfor
1439
1440 # Note: some rules are superfluous, not every combination is valid.
1441 .for arch in \
1442         AArch64/AArch64 ARM/ARM Mips/Mips PowerPC/PPC Sparc/Sparc X86/X86
1443 . for hdr in \
1444         AsmMatcher/-gen-asm-matcher \
1445         AsmWriter1/-gen-asm-writer,-asmwriternum=1 \
1446         AsmWriter/-gen-asm-writer \
1447         CallingConv/-gen-callingconv \
1448         CodeEmitter/-gen-emitter \
1449         DAGISel/-gen-dag-isel \
1450         DisassemblerTables/-gen-disassembler \
1451         EVEX2VEXTables/-gen-x86-EVEX2VEX-tables \
1452         FastISel/-gen-fast-isel \
1453         GlobalISel/-gen-global-isel \
1454         InstrInfo/-gen-instr-info \
1455         MCCodeEmitter/-gen-emitter \
1456         MCPseudoLowering/-gen-pseudo-lowering \
1457         RegisterBank/-gen-register-bank \
1458         RegisterInfo/-gen-register-info \
1459         SubtargetInfo/-gen-subtarget \
1460         SystemOperands/-gen-searchable-tables \
1461         SystemRegister/-gen-searchable-tables
1462 ${arch:T}Gen${hdr:H}.inc: ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td
1463         ${LLVM_TBLGEN} ${hdr:T:C/,/ /g} \
1464             -I ${LLVM_SRCS}/include -I ${LLVM_SRCS}/lib/Target/${arch:H} \
1465             -d ${.TARGET}.d -o ${.TARGET} \
1466             ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td
1467 . endfor
1468 .endfor
1469 .if ${MK_LLVM_TARGET_AARCH64} != "no"
1470 TGHDRS+=        AArch64GenAsmMatcher.inc
1471 TGHDRS+=        AArch64GenAsmWriter.inc
1472 TGHDRS+=        AArch64GenAsmWriter1.inc
1473 TGHDRS+=        AArch64GenCallingConv.inc
1474 TGHDRS+=        AArch64GenDAGISel.inc
1475 TGHDRS+=        AArch64GenDisassemblerTables.inc
1476 TGHDRS+=        AArch64GenFastISel.inc
1477 TGHDRS+=        AArch64GenGlobalISel.inc
1478 TGHDRS+=        AArch64GenInstrInfo.inc
1479 TGHDRS+=        AArch64GenMCCodeEmitter.inc
1480 TGHDRS+=        AArch64GenMCPseudoLowering.inc
1481 TGHDRS+=        AArch64GenRegisterBank.inc
1482 TGHDRS+=        AArch64GenRegisterInfo.inc
1483 TGHDRS+=        AArch64GenSubtargetInfo.inc
1484 TGHDRS+=        AArch64GenSystemOperands.inc
1485 .endif # MK_LLVM_TARGET_AARCH64
1486 .if ${MK_LLVM_TARGET_ARM} != "no"
1487 TGHDRS+=        ARMGenAsmMatcher.inc
1488 TGHDRS+=        ARMGenAsmWriter.inc
1489 TGHDRS+=        ARMGenCallingConv.inc
1490 TGHDRS+=        ARMGenDAGISel.inc
1491 TGHDRS+=        ARMGenDisassemblerTables.inc
1492 TGHDRS+=        ARMGenFastISel.inc
1493 TGHDRS+=        ARMGenGlobalISel.inc
1494 TGHDRS+=        ARMGenInstrInfo.inc
1495 TGHDRS+=        ARMGenMCCodeEmitter.inc
1496 TGHDRS+=        ARMGenMCPseudoLowering.inc
1497 TGHDRS+=        ARMGenRegisterBank.inc
1498 TGHDRS+=        ARMGenRegisterInfo.inc
1499 TGHDRS+=        ARMGenSubtargetInfo.inc
1500 TGHDRS+=        ARMGenSystemRegister.inc
1501 .endif # MK_LLVM_TARGET_ARM
1502 .if ${MK_LLVM_TARGET_MIPS} != "no"
1503 TGHDRS+=        MipsGenAsmMatcher.inc
1504 TGHDRS+=        MipsGenAsmWriter.inc
1505 TGHDRS+=        MipsGenCallingConv.inc
1506 TGHDRS+=        MipsGenDAGISel.inc
1507 TGHDRS+=        MipsGenDisassemblerTables.inc
1508 TGHDRS+=        MipsGenFastISel.inc
1509 TGHDRS+=        MipsGenGlobalISel.inc
1510 TGHDRS+=        MipsGenInstrInfo.inc
1511 TGHDRS+=        MipsGenMCCodeEmitter.inc
1512 TGHDRS+=        MipsGenMCPseudoLowering.inc
1513 TGHDRS+=        MipsGenRegisterBank.inc
1514 TGHDRS+=        MipsGenRegisterInfo.inc
1515 TGHDRS+=        MipsGenSubtargetInfo.inc
1516 .endif # MK_LLVM_TARGET_MIPS
1517 .if ${MK_LLVM_TARGET_POWERPC} != "no"
1518 TGHDRS+=        PPCGenAsmMatcher.inc
1519 TGHDRS+=        PPCGenAsmWriter.inc
1520 TGHDRS+=        PPCGenCallingConv.inc
1521 TGHDRS+=        PPCGenDAGISel.inc
1522 TGHDRS+=        PPCGenDisassemblerTables.inc
1523 TGHDRS+=        PPCGenFastISel.inc
1524 TGHDRS+=        PPCGenInstrInfo.inc
1525 TGHDRS+=        PPCGenMCCodeEmitter.inc
1526 TGHDRS+=        PPCGenRegisterInfo.inc
1527 TGHDRS+=        PPCGenSubtargetInfo.inc
1528 .endif # MK_LLVM_TARGET_POWERPC
1529 .if ${MK_LLVM_TARGET_SPARC} != "no"
1530 TGHDRS+=        SparcGenAsmMatcher.inc
1531 TGHDRS+=        SparcGenAsmWriter.inc
1532 TGHDRS+=        SparcGenCallingConv.inc
1533 TGHDRS+=        SparcGenDAGISel.inc
1534 TGHDRS+=        SparcGenDisassemblerTables.inc
1535 TGHDRS+=        SparcGenInstrInfo.inc
1536 TGHDRS+=        SparcGenMCCodeEmitter.inc
1537 TGHDRS+=        SparcGenRegisterInfo.inc
1538 TGHDRS+=        SparcGenSubtargetInfo.inc
1539 .endif # MK_LLVM_TARGET_SPARC
1540 .if ${MK_LLVM_TARGET_X86} != "no"
1541 TGHDRS+=        X86GenAsmMatcher.inc
1542 TGHDRS+=        X86GenAsmWriter.inc
1543 TGHDRS+=        X86GenAsmWriter1.inc
1544 TGHDRS+=        X86GenCallingConv.inc
1545 TGHDRS+=        X86GenDAGISel.inc
1546 TGHDRS+=        X86GenDisassemblerTables.inc
1547 TGHDRS+=        X86GenEVEX2VEXTables.inc
1548 TGHDRS+=        X86GenFastISel.inc
1549 TGHDRS+=        X86GenGlobalISel.inc
1550 TGHDRS+=        X86GenInstrInfo.inc
1551 TGHDRS+=        X86GenRegisterBank.inc
1552 TGHDRS+=        X86GenRegisterInfo.inc
1553 TGHDRS+=        X86GenSubtargetInfo.inc
1554 .endif # MK_LLVM_TARGET_X86
1555
1556 DEPENDFILES+=   ${TGHDRS:C/$/.d/}
1557 DPSRCS+=        ${TGHDRS}
1558 CLEANFILES+=    ${TGHDRS} ${TGHDRS:C/$/.d/}
1559
1560 .include "../llvm.build.mk"
1561 .include <bsd.lib.mk>