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} 10*bdd1243dSDimitry AndricCFLAGS+= -I${SRCTOP}/sys/contrib/zstd/lib 11cbafd263SDimitry Andric 12cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} == "no" && ${MK_LLVM_TARGET_ARM} == "no" && \ 1389edb881SDimitry Andric ${MK_LLVM_TARGET_BPF} == "no" && ${MK_LLVM_TARGET_MIPS} == "no" && \ 14b2689b12SMitchell Horne ${MK_LLVM_TARGET_POWERPC} == "no" && ${MK_LLVM_TARGET_RISCV} == "no" && \ 153b7fd87cSWarner Losh ${MK_LLVM_TARGET_X86} == "no" 16cbafd263SDimitry Andric.error Please enable at least one of: MK_LLVM_TARGET_AARCH64,\ 1789edb881SDimitry Andric MK_LLVM_TARGET_ARM, MK_LLVM_TARGET_BPF, MK_LLVM_TARGET_MIPS, \ 183b7fd87cSWarner Losh MK_LLVM_TARGET_POWERPC, MK_LLVM_TARGET_RISCV, or MK_LLVM_TARGET_X86 19cbafd263SDimitry Andric.endif 20cbafd263SDimitry Andric 213b7fd87cSWarner Losh.for arch in AArch64 ARM BPF Mips PowerPC RISCV X86 22cbafd263SDimitry Andric. if ${MK_LLVM_TARGET_${arch:tu}} != "no" 23986e05bcSDimitry AndricCFLAGS+= -I${LLVM_SRCS}/lib/Target/${arch} 24cbafd263SDimitry Andric. endif 25986e05bcSDimitry Andric.endfor 26986e05bcSDimitry Andric 2781ad6265SDimitry AndricCFLAGS+= -I${LLVM_SRCS}/lib/ObjCopy 2881ad6265SDimitry Andric 2961cfbce3SDimitry AndricTARGET_ARCH?= ${MACHINE_ARCH} 3061cfbce3SDimitry Andric 31fcaf7f86SDimitry Andric.if ${TARGET_ARCH} != "amd64" 32fcaf7f86SDimitry AndricCFLAGS+= -DBLAKE3_NO_AVX512 -DBLAKE3_NO_AVX2 -DBLAKE3_NO_SSE41 \ 33fcaf7f86SDimitry Andric -DBLAKE3_NO_SSE2 34fcaf7f86SDimitry Andric.endif 35eb81dd84SJohn-Mark Gurney.if ${TARGET_ARCH} != "arm64" 36eb81dd84SJohn-Mark GurneyCFLAGS+= -DBLAKE3_USE_NEON=0 37eb81dd84SJohn-Mark Gurney.endif 38fcaf7f86SDimitry Andric 390b57cec5SDimitry AndricSRCDIR= llvm/lib 40986e05bcSDimitry Andric 41a1aaa66bSDimitry Andric# Explanation of different SRCS variants below: 42a1aaa66bSDimitry Andric# SRCS_MIN: always required, even for bootstrap 43a1aaa66bSDimitry Andric# SRCS_MIW: required for world stage (after cross-tools) 44a1aaa66bSDimitry Andric# SRCS_EXT: required for MK_CLANG_EXTRAS 45a1aaa66bSDimitry Andric# SRCS_EXL: required for MK_CLANG_EXTRAS and MK_LLD 46a1aaa66bSDimitry Andric# SRCS_FUL: required for MK_CLANG_FULL 47a1aaa66bSDimitry Andric# SRCS_LLD: required for MK_LLD 48a1aaa66bSDimitry Andric# SRCS_XDB: required for MK_CLANG_EXTRAS and MK_LLDB 49a1aaa66bSDimitry Andric# SRCS_XDL: required for MK_CLANG_EXTRAS, MK_LLD and MK_LLDB 50a1aaa66bSDimitry Andric# SRCS_XDW: required for MK_CLANG_EXTRAS and MK_LLDB in world stage 51a1aaa66bSDimitry Andric 52986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasAnalysis.cpp 53986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasAnalysisEvaluator.cpp 54986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasAnalysisSummary.cpp 55986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasSetTracker.cpp 56986e05bcSDimitry AndricSRCS_EXT+= Analysis/Analysis.cpp 5748aaf27bSDimitry AndricSRCS_MIN+= Analysis/AssumeBundleQueries.cpp 58986e05bcSDimitry AndricSRCS_MIN+= Analysis/AssumptionCache.cpp 59986e05bcSDimitry AndricSRCS_MIN+= Analysis/BasicAliasAnalysis.cpp 60986e05bcSDimitry AndricSRCS_MIN+= Analysis/BlockFrequencyInfo.cpp 61986e05bcSDimitry AndricSRCS_MIN+= Analysis/BlockFrequencyInfoImpl.cpp 62986e05bcSDimitry AndricSRCS_MIN+= Analysis/BranchProbabilityInfo.cpp 63986e05bcSDimitry AndricSRCS_MIN+= Analysis/CFG.cpp 64986e05bcSDimitry AndricSRCS_MIN+= Analysis/CFGPrinter.cpp 65*bdd1243dSDimitry AndricSRCS_MIN+= Analysis/CFGSCCPrinter.cpp 66986e05bcSDimitry AndricSRCS_MIN+= Analysis/CGSCCPassManager.cpp 67986e05bcSDimitry AndricSRCS_MIN+= Analysis/CallGraph.cpp 68986e05bcSDimitry AndricSRCS_MIN+= Analysis/CallGraphSCCPass.cpp 69986e05bcSDimitry AndricSRCS_MIN+= Analysis/CallPrinter.cpp 70986e05bcSDimitry AndricSRCS_MIN+= Analysis/CaptureTracking.cpp 7136cb3905SDimitry AndricSRCS_MIN+= Analysis/CmpInstAnalysis.cpp 72986e05bcSDimitry AndricSRCS_MIN+= Analysis/CodeMetrics.cpp 73986e05bcSDimitry AndricSRCS_MIN+= Analysis/ConstantFolding.cpp 74e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/ConstraintSystem.cpp 75986e05bcSDimitry AndricSRCS_MIN+= Analysis/CostModel.cpp 7604eeddc0SDimitry AndricSRCS_MIN+= Analysis/CycleAnalysis.cpp 779771cac2SDimitry AndricSRCS_MIN+= Analysis/DDG.cpp 78e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/DDGPrinter.cpp 79986e05bcSDimitry AndricSRCS_MIN+= Analysis/Delinearization.cpp 80986e05bcSDimitry AndricSRCS_MIN+= Analysis/DemandedBits.cpp 81986e05bcSDimitry AndricSRCS_MIN+= Analysis/DependenceAnalysis.cpp 829771cac2SDimitry AndricSRCS_MIN+= Analysis/DependenceGraphBuilder.cpp 83986e05bcSDimitry AndricSRCS_MIN+= Analysis/DivergenceAnalysis.cpp 84986e05bcSDimitry AndricSRCS_MIN+= Analysis/DomPrinter.cpp 854014a71fSDimitry AndricSRCS_MIN+= Analysis/DomTreeUpdater.cpp 86986e05bcSDimitry AndricSRCS_MIN+= Analysis/DominanceFrontier.cpp 87986e05bcSDimitry AndricSRCS_MIN+= Analysis/EHPersonalities.cpp 88e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/FunctionPropertiesAnalysis.cpp 89986e05bcSDimitry AndricSRCS_MIN+= Analysis/GlobalsModRef.cpp 905e86819cSDimitry AndricSRCS_MIN+= Analysis/GuardUtils.cpp 9148aaf27bSDimitry AndricSRCS_MIN+= Analysis/HeatUtils.cpp 92e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/IRSimilarityIdentifier.cpp 935e86819cSDimitry AndricSRCS_MIN+= Analysis/IVDescriptors.cpp 94986e05bcSDimitry AndricSRCS_MIN+= Analysis/IVUsers.cpp 95e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/ImportedFunctionsInliningStatistics.cpp 96986e05bcSDimitry AndricSRCS_MIN+= Analysis/IndirectCallPromotionAnalysis.cpp 9748aaf27bSDimitry AndricSRCS_MIN+= Analysis/InlineAdvisor.cpp 98986e05bcSDimitry AndricSRCS_MIN+= Analysis/InlineCost.cpp 99*bdd1243dSDimitry AndricSRCS_MIN+= Analysis/InlineOrder.cpp 10048aaf27bSDimitry AndricSRCS_MIN+= Analysis/InlineSizeEstimatorAnalysis.cpp 101986e05bcSDimitry AndricSRCS_MIN+= Analysis/InstCount.cpp 1025e86819cSDimitry AndricSRCS_MIN+= Analysis/InstructionPrecedenceTracking.cpp 103986e05bcSDimitry AndricSRCS_MIN+= Analysis/InstructionSimplify.cpp 104986e05bcSDimitry AndricSRCS_MIN+= Analysis/Interval.cpp 105986e05bcSDimitry AndricSRCS_MIN+= Analysis/IntervalPartition.cpp 106986e05bcSDimitry AndricSRCS_MIN+= Analysis/LazyBlockFrequencyInfo.cpp 10709bfd043SDimitry AndricSRCS_MIN+= Analysis/LazyBranchProbabilityInfo.cpp 108986e05bcSDimitry AndricSRCS_MIN+= Analysis/LazyCallGraph.cpp 109986e05bcSDimitry AndricSRCS_MIN+= Analysis/LazyValueInfo.cpp 1105e86819cSDimitry AndricSRCS_MIN+= Analysis/LegacyDivergenceAnalysis.cpp 111986e05bcSDimitry AndricSRCS_MIN+= Analysis/Lint.cpp 112986e05bcSDimitry AndricSRCS_MIN+= Analysis/Loads.cpp 113*bdd1243dSDimitry AndricSRCS_MIN+= Analysis/Local.cpp 114986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopAccessAnalysis.cpp 115f1a29dd3SDimitry AndricSRCS_MIN+= Analysis/LoopAnalysisManager.cpp 1169771cac2SDimitry AndricSRCS_MIN+= Analysis/LoopCacheAnalysis.cpp 117986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopInfo.cpp 11848aaf27bSDimitry AndricSRCS_MIN+= Analysis/LoopNestAnalysis.cpp 119986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopPass.cpp 120986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopUnrollAnalyzer.cpp 121986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemDepPrinter.cpp 122986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemDerefPrinter.cpp 123986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemoryBuiltins.cpp 124986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemoryDependenceAnalysis.cpp 125986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemoryLocation.cpp 126*bdd1243dSDimitry AndricSRCS_MIN+= Analysis/MemoryProfileInfo.cpp 1275897d2f0SDimitry AndricSRCS_MIN+= Analysis/MemorySSA.cpp 1285897d2f0SDimitry AndricSRCS_MIN+= Analysis/MemorySSAUpdater.cpp 129986e05bcSDimitry AndricSRCS_MIN+= Analysis/ModuleDebugInfoPrinter.cpp 130986e05bcSDimitry AndricSRCS_MIN+= Analysis/ModuleSummaryAnalysis.cpp 1319f6e9a9fSDimitry AndricSRCS_MIN+= Analysis/MustExecute.cpp 132986e05bcSDimitry AndricSRCS_MIN+= Analysis/ObjCARCAliasAnalysis.cpp 133986e05bcSDimitry AndricSRCS_MIN+= Analysis/ObjCARCAnalysisUtils.cpp 134986e05bcSDimitry AndricSRCS_MIN+= Analysis/ObjCARCInstKind.cpp 13536cb3905SDimitry AndricSRCS_MIN+= Analysis/OptimizationRemarkEmitter.cpp 136fe6060f1SDimitry AndricSRCS_MIN+= Analysis/OverflowInstAnalysis.cpp 137986e05bcSDimitry AndricSRCS_MIN+= Analysis/PHITransAddr.cpp 1389f6e9a9fSDimitry AndricSRCS_MIN+= Analysis/PhiValues.cpp 139986e05bcSDimitry AndricSRCS_MIN+= Analysis/PostDominators.cpp 140986e05bcSDimitry AndricSRCS_MIN+= Analysis/ProfileSummaryInfo.cpp 141986e05bcSDimitry AndricSRCS_MIN+= Analysis/PtrUseVisitor.cpp 142986e05bcSDimitry AndricSRCS_MIN+= Analysis/RegionInfo.cpp 143986e05bcSDimitry AndricSRCS_MIN+= Analysis/RegionPass.cpp 144986e05bcSDimitry AndricSRCS_MIN+= Analysis/RegionPrinter.cpp 145e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/ReplayInlineAdvisor.cpp 146986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolution.cpp 14748aaf27bSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolution.cpp 148986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolutionAliasAnalysis.cpp 14948aaf27bSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolutionDivision.cpp 150986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolutionNormalization.cpp 151986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScopedNoAliasAA.cpp 15248aaf27bSDimitry AndricSRCS_MIN+= Analysis/StackLifetime.cpp 1535e86819cSDimitry AndricSRCS_MIN+= Analysis/StackSafetyAnalysis.cpp 1545e86819cSDimitry AndricSRCS_MIN+= Analysis/SyncDependenceAnalysis.cpp 1559f6e9a9fSDimitry AndricSRCS_MIN+= Analysis/SyntheticCountsUtils.cpp 156986e05bcSDimitry AndricSRCS_MIN+= Analysis/TargetLibraryInfo.cpp 157986e05bcSDimitry AndricSRCS_MIN+= Analysis/TargetTransformInfo.cpp 15881ad6265SDimitry AndricSRCS_MIN+= Analysis/TensorSpec.cpp 159986e05bcSDimitry AndricSRCS_MIN+= Analysis/TypeBasedAliasAnalysis.cpp 160986e05bcSDimitry AndricSRCS_MIN+= Analysis/TypeMetadataUtils.cpp 161*bdd1243dSDimitry AndricSRCS_MIN+= Analysis/UniformityAnalysis.cpp 1629771cac2SDimitry AndricSRCS_MIN+= Analysis/VFABIDemangling.cpp 16336cb3905SDimitry AndricSRCS_MIN+= Analysis/ValueLattice.cpp 16436cb3905SDimitry AndricSRCS_MIN+= Analysis/ValueLatticeUtils.cpp 165986e05bcSDimitry AndricSRCS_MIN+= Analysis/ValueTracking.cpp 166986e05bcSDimitry AndricSRCS_MIN+= Analysis/VectorUtils.cpp 167986e05bcSDimitry AndricSRCS_MIN+= AsmParser/LLLexer.cpp 168986e05bcSDimitry AndricSRCS_MIN+= AsmParser/LLParser.cpp 169986e05bcSDimitry AndricSRCS_MIN+= AsmParser/Parser.cpp 1701b85b68dSCameron KatriSRCS_MIN+= BinaryFormat/AMDGPUMetadataVerifier.cpp 171d781ede6SDimitry AndricSRCS_MIN+= BinaryFormat/COFF.cpp 17244389c28SDimitry AndricSRCS_MIN+= BinaryFormat/Dwarf.cpp 17344389c28SDimitry AndricSRCS_MIN+= BinaryFormat/Magic.cpp 17448aaf27bSDimitry AndricSRCS_MIN+= BinaryFormat/MachO.cpp 1751b85b68dSCameron KatriSRCS_MIN+= BinaryFormat/MsgPackDocument.cpp 1761b85b68dSCameron KatriSRCS_MIN+= BinaryFormat/MsgPackDocumentYAML.cpp 1771b85b68dSCameron KatriSRCS_MIN+= BinaryFormat/MsgPackReader.cpp 17879239b5bSDimitry AndricSRCS_MIN+= BinaryFormat/MsgPackWriter.cpp 1799f6e9a9fSDimitry AndricSRCS_MIN+= BinaryFormat/Wasm.cpp 1809771cac2SDimitry AndricSRCS_MIN+= BinaryFormat/XCOFF.cpp 18109bfd043SDimitry AndricSRCS_MIN+= Bitcode/Reader/BitReader.cpp 18224b8043eSDimitry AndricSRCS_EXT+= Bitcode/Reader/BitcodeAnalyzer.cpp 183986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Reader/BitcodeReader.cpp 18409bfd043SDimitry AndricSRCS_MIN+= Bitcode/Reader/MetadataLoader.cpp 18509bfd043SDimitry AndricSRCS_MIN+= Bitcode/Reader/ValueList.cpp 186986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Writer/BitcodeWriter.cpp 187986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Writer/BitcodeWriterPass.cpp 188986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Writer/ValueEnumerator.cpp 1894014a71fSDimitry AndricSRCS_MIN+= Bitstream/Reader/BitstreamReader.cpp 190986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AggressiveAntiDepBreaker.cpp 191986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AllocationOrder.cpp 192986e05bcSDimitry AndricSRCS_MIN+= CodeGen/Analysis.cpp 193e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AIXException.cpp 194986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/ARMException.cpp 1959f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AccelTable.cpp 196986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AddressPool.cpp 197986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AsmPrinter.cpp 198986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AsmPrinterDwarf.cpp 199986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp 200986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/CodeViewDebug.cpp 201986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DIE.cpp 202986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DIEHash.cpp 2035e86819cSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp 204986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DebugHandlerBase.cpp 205986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DebugLocStream.cpp 206986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfCFIException.cpp 207986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfCompileUnit.cpp 208986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfDebug.cpp 209986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfExpression.cpp 210986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfFile.cpp 211986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfStringPool.cpp 212986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfUnit.cpp 213986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/EHStreamer.cpp 21424b8043eSDimitry AndricSRCS_EXT+= CodeGen/AsmPrinter/ErlangGCPrinter.cpp 215986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/OcamlGCPrinter.cpp 216e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/PseudoProbePrinter.cpp 2175e86819cSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/WasmException.cpp 2189f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/WinCFGuard.cpp 219986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/WinException.cpp 220*bdd1243dSDimitry AndricSRCS_MIN+= CodeGen/AssignmentTrackingAnalysis.cpp 221986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AtomicExpandPass.cpp 222e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/BasicBlockSections.cpp 22381ad6265SDimitry AndricSRCS_MIN+= CodeGen/BasicBlockSectionsProfileReader.cpp 224986e05bcSDimitry AndricSRCS_MIN+= CodeGen/BasicTargetTransformInfo.cpp 225986e05bcSDimitry AndricSRCS_MIN+= CodeGen/BranchFolding.cpp 22609bfd043SDimitry AndricSRCS_MIN+= CodeGen/BranchRelaxation.cpp 2279f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/BreakFalseDeps.cpp 2289771cac2SDimitry AndricSRCS_MIN+= CodeGen/CFGuardLongjmp.cpp 22981ad6265SDimitry AndricSRCS_MIN+= CodeGen/CFIFixup.cpp 2309f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/CFIInstrInserter.cpp 231986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CalcSpillWeights.cpp 232986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CallingConvLower.cpp 233986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CodeGen.cpp 2345e801ac6SDimitry AndricSRCS_MIN+= CodeGen/CodeGenCommonISel.cpp 235986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CodeGenPrepare.cpp 23648aaf27bSDimitry AndricSRCS_EXL+= CodeGen/CommandFlags.cpp 237*bdd1243dSDimitry AndricSRCS_MIN+= CodeGen/ComplexDeinterleavingPass.cpp 238986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CriticalAntiDepBreaker.cpp 239986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DFAPacketizer.cpp 240986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DeadMachineInstructionElim.cpp 241986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DetectDeadLanes.cpp 242986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DwarfEHPrepare.cpp 243fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/EHContGuardCatchret.cpp 244986e05bcSDimitry AndricSRCS_MIN+= CodeGen/EarlyIfConversion.cpp 245986e05bcSDimitry AndricSRCS_MIN+= CodeGen/EdgeBundles.cpp 2469f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/ExecutionDomainFix.cpp 247*bdd1243dSDimitry AndricSRCS_MIN+= CodeGen/ExpandLargeDivRem.cpp 248*bdd1243dSDimitry AndricSRCS_MIN+= CodeGen/ExpandLargeFpConvert.cpp 24936cb3905SDimitry AndricSRCS_MIN+= CodeGen/ExpandMemCmp.cpp 250986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ExpandPostRAPseudos.cpp 2515517e702SDimitry AndricSRCS_MIN+= CodeGen/ExpandReductions.cpp 252fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/ExpandVectorPredication.cpp 2535897d2f0SDimitry AndricSRCS_MIN+= CodeGen/FEntryInserter.cpp 254986e05bcSDimitry AndricSRCS_MIN+= CodeGen/FaultMaps.cpp 2554014a71fSDimitry AndricSRCS_MIN+= CodeGen/FinalizeISel.cpp 25648aaf27bSDimitry AndricSRCS_MIN+= CodeGen/FixupStatepointCallerSaved.cpp 257986e05bcSDimitry AndricSRCS_MIN+= CodeGen/FuncletLayout.cpp 258986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GCMetadata.cpp 25909bfd043SDimitry AndricSRCS_MIN+= CodeGen/GCMetadataPrinter.cpp 260986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GCRootLowering.cpp 2615e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/CSEInfo.cpp 2625e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/CSEMIRBuilder.cpp 2635e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Combiner.cpp 2645e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/CombinerHelper.cpp 2653d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/CallLowering.cpp 2665e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/GISelChangeObserver.cpp 2679771cac2SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/GISelKnownBits.cpp 268986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/GlobalISel.cpp 2693d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/IRTranslator.cpp 27048aaf27bSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/InlineAsmLowering.cpp 2713d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/InstructionSelect.cpp 2723d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/InstructionSelector.cpp 273fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegacyLegalizerInfo.cpp 2749f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalityPredicates.cpp 2759f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalizeMutations.cpp 2763d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Legalizer.cpp 2773d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalizerHelper.cpp 2783d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalizerInfo.cpp 2795e801ac6SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LoadStoreOpt.cpp 280302affcbSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Localizer.cpp 28148aaf27bSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LostDebugLocObserver.cpp 2823d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/MachineIRBuilder.cpp 2833d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/RegBankSelect.cpp 2843d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Utils.cpp 285986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GlobalMerge.cpp 2864014a71fSDimitry AndricSRCS_MIN+= CodeGen/HardwareLoops.cpp 287986e05bcSDimitry AndricSRCS_MIN+= CodeGen/IfConversion.cpp 288986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ImplicitNullChecks.cpp 28907577dfeSDimitry AndricSRCS_MIN+= CodeGen/IndirectBrExpandPass.cpp 290986e05bcSDimitry AndricSRCS_MIN+= CodeGen/InlineSpiller.cpp 291986e05bcSDimitry AndricSRCS_MIN+= CodeGen/InterferenceCache.cpp 292986e05bcSDimitry AndricSRCS_MIN+= CodeGen/InterleavedAccessPass.cpp 2935e86819cSDimitry AndricSRCS_MIN+= CodeGen/InterleavedLoadCombinePass.cpp 294986e05bcSDimitry AndricSRCS_MIN+= CodeGen/IntrinsicLowering.cpp 29581ad6265SDimitry AndricSRCS_MIN+= CodeGen/JMCInstrumenter.cpp 296986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LLVMTargetMachine.cpp 297986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LatencyPriorityQueue.cpp 2985897d2f0SDimitry AndricSRCS_MIN+= CodeGen/LazyMachineBlockFrequencyInfo.cpp 299986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LexicalScopes.cpp 300e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/LiveDebugValues/InstrRefBasedImpl.cpp 301e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/LiveDebugValues/LiveDebugValues.cpp 302e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/LiveDebugValues/VarLocBasedImpl.cpp 303986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveDebugVariables.cpp 304986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveInterval.cpp 30548aaf27bSDimitry AndricSRCS_MIN+= CodeGen/LiveIntervalCalc.cpp 306986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveIntervalUnion.cpp 30744389c28SDimitry AndricSRCS_MIN+= CodeGen/LiveIntervals.cpp 308986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LivePhysRegs.cpp 309986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveRangeCalc.cpp 310986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveRangeEdit.cpp 311f9448bf3SDimitry AndricSRCS_MIN+= CodeGen/LiveRangeShrink.cpp 312986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveRegMatrix.cpp 3135897d2f0SDimitry AndricSRCS_MIN+= CodeGen/LiveRegUnits.cpp 3142757ff7eSDimitry AndricSRCS_MIN+= CodeGen/LiveStacks.cpp 315986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveVariables.cpp 316986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LocalStackSlotAllocation.cpp 3179f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/LoopTraversal.cpp 31809bfd043SDimitry AndricSRCS_MIN+= CodeGen/LowLevelType.cpp 319986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LowerEmuTLS.cpp 32048aaf27bSDimitry AndricSRCS_MIN+= CodeGen/MBFIWrapper.cpp 32136cb3905SDimitry AndricSRCS_MIN+= CodeGen/MIRCanonicalizerPass.cpp 322fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/MIRFSDiscriminator.cpp 3239771cac2SDimitry AndricSRCS_MIN+= CodeGen/MIRNamerPass.cpp 324986e05bcSDimitry AndricSRCS_EXT+= CodeGen/MIRParser/MILexer.cpp 325986e05bcSDimitry AndricSRCS_EXT+= CodeGen/MIRParser/MIParser.cpp 326986e05bcSDimitry AndricSRCS_EXT+= CodeGen/MIRParser/MIRParser.cpp 327986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MIRPrinter.cpp 328986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MIRPrintingPass.cpp 3295e801ac6SDimitry AndricSRCS_MIN+= CodeGen/MIRSampleProfile.cpp 3309771cac2SDimitry AndricSRCS_MIN+= CodeGen/MIRVRegNamerUtils.cpp 33104eeddc0SDimitry AndricSRCS_MIN+= CodeGen/MLRegallocEvictAdvisor.cpp 332986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBasicBlock.cpp 333986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBlockFrequencyInfo.cpp 334986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBlockPlacement.cpp 335986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBranchProbabilityInfo.cpp 336*bdd1243dSDimitry AndricSRCS_MIN+= CodeGen/MachineCFGPrinter.cpp 337986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineCSE.cpp 338e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/MachineCheckDebugify.cpp 339986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineCombiner.cpp 340986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineCopyPropagation.cpp 34104eeddc0SDimitry AndricSRCS_MIN+= CodeGen/MachineCycleAnalysis.cpp 34248aaf27bSDimitry AndricSRCS_MIN+= CodeGen/MachineDebugify.cpp 343986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineDominanceFrontier.cpp 344986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineDominators.cpp 345f37b6182SDimitry AndricSRCS_MIN+= CodeGen/MachineFrameInfo.cpp 346986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineFunction.cpp 347986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineFunctionPass.cpp 348986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineFunctionPrinterPass.cpp 349e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/MachineFunctionSplitter.cpp 350986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineInstr.cpp 351986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineInstrBundle.cpp 352986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineLICM.cpp 353*bdd1243dSDimitry AndricSRCS_MIN+= CodeGen/MachineLateInstrsCleanup.cpp 354986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineLoopInfo.cpp 3559771cac2SDimitry AndricSRCS_MIN+= CodeGen/MachineLoopUtils.cpp 356986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineModuleInfo.cpp 357986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineModuleInfoImpls.cpp 358fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/MachineModuleSlotTracker.cpp 35936cb3905SDimitry AndricSRCS_MIN+= CodeGen/MachineOperand.cpp 3605897d2f0SDimitry AndricSRCS_MIN+= CodeGen/MachineOptimizationRemarkEmitter.cpp 3615897d2f0SDimitry AndricSRCS_MIN+= CodeGen/MachineOutliner.cpp 36209bfd043SDimitry AndricSRCS_MIN+= CodeGen/MachinePipeliner.cpp 363986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachinePostDominators.cpp 364986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineRegionInfo.cpp 365986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineRegisterInfo.cpp 36604eeddc0SDimitry AndricSRCS_MIN+= CodeGen/MachineSSAContext.cpp 367986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineSSAUpdater.cpp 368986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineScheduler.cpp 369986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineSink.cpp 3709771cac2SDimitry AndricSRCS_MIN+= CodeGen/MachineSizeOpts.cpp 371e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/MachineStableHash.cpp 37248aaf27bSDimitry AndricSRCS_MIN+= CodeGen/MachineStripDebug.cpp 373986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineTraceMetrics.cpp 374*bdd1243dSDimitry AndricSRCS_MIN+= CodeGen/MachineUniformityAnalysis.cpp 375986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineVerifier.cpp 376edd7eaddSDimitry AndricSRCS_MIN+= CodeGen/MacroFusion.cpp 3779771cac2SDimitry AndricSRCS_MIN+= CodeGen/ModuloSchedule.cpp 378e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/MultiHazardRecognizer.cpp 379fcaf7f86SDimitry AndricSRCS_EXT+= CodeGen/NonRelocatableStringpool.cpp 380986e05bcSDimitry AndricSRCS_MIN+= CodeGen/OptimizePHIs.cpp 381986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PHIElimination.cpp 382986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PHIEliminationUtils.cpp 383986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ParallelCG.cpp 384986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PatchableFunction.cpp 385986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PeepholeOptimizer.cpp 386986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PostRAHazardRecognizer.cpp 387986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PostRASchedulerList.cpp 388986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PreISelIntrinsicLowering.cpp 389986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ProcessImplicitDefs.cpp 390986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PrologEpilogInserter.cpp 391e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/PseudoProbeInserter.cpp 392986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PseudoSourceValue.cpp 3939f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/ReachingDefAnalysis.cpp 394fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/ReplaceWithVeclib.cpp 3950946e70aSDimitry AndricSRCS_MIN+= CodeGen/RDFGraph.cpp 3960946e70aSDimitry AndricSRCS_MIN+= CodeGen/RDFLiveness.cpp 3970946e70aSDimitry AndricSRCS_MIN+= CodeGen/RDFRegisters.cpp 398986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocBase.cpp 399986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocBasic.cpp 40004eeddc0SDimitry AndricSRCS_MIN+= CodeGen/RegAllocEvictionAdvisor.cpp 401986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocFast.cpp 402986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocGreedy.cpp 403986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocPBQP.cpp 404*bdd1243dSDimitry AndricSRCS_MIN+= CodeGen/RegAllocPriorityAdvisor.cpp 405986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegUsageInfoCollector.cpp 406986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegUsageInfoPropagate.cpp 40781ad6265SDimitry AndricSRCS_MIN+= CodeGen/RegisterBank.cpp 40881ad6265SDimitry AndricSRCS_MIN+= CodeGen/RegisterBankInfo.cpp 409986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterClassInfo.cpp 410986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterCoalescer.cpp 411986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterPressure.cpp 412986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterScavenging.cpp 413986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterUsageInfo.cpp 414fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/RemoveRedundantDebugValues.cpp 415986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RenameIndependentSubregs.cpp 41609bfd043SDimitry AndricSRCS_MIN+= CodeGen/ResetMachineFunctionPass.cpp 417986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SafeStack.cpp 418986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SafeStackLayout.cpp 419*bdd1243dSDimitry AndricSRCS_MIN+= CodeGen/SanitizerBinaryMetadata.cpp 420986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScheduleDAG.cpp 421986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScheduleDAGInstrs.cpp 422986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScheduleDAGPrinter.cpp 423986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScoreboardHazardRecognizer.cpp 42481ad6265SDimitry AndricSRCS_MIN+= CodeGen/SelectOptimize.cpp 425986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/DAGCombiner.cpp 426986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/FastISel.cpp 427986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/FunctionLoweringInfo.cpp 428986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/InstrEmitter.cpp 429986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeDAG.cpp 430986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeFloatTypes.cpp 431986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp 432986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeTypes.cpp 433986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp 434986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeVectorOps.cpp 435986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeVectorTypes.cpp 436986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ResourcePriorityQueue.cpp 437986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGFast.cpp 438986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGRRList.cpp 439986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp 440986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp 441986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAG.cpp 44244389c28SDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp 443986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGBuilder.cpp 444986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGDumper.cpp 445986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGISel.cpp 446986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGPrinter.cpp 447986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp 448986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/StatepointLowering.cpp 449986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/TargetLowering.cpp 450986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ShadowStackGCLowering.cpp 451986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ShrinkWrap.cpp 452986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SjLjEHPrepare.cpp 453986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SlotIndexes.cpp 454986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SpillPlacement.cpp 455986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SplitKit.cpp 456986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackColoring.cpp 457*bdd1243dSDimitry AndricSRCS_MIN+= CodeGen/StackFrameLayoutAnalysisPass.cpp 458986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackMapLivenessAnalysis.cpp 459986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackMaps.cpp 460986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackProtector.cpp 461986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackSlotColoring.cpp 4624014a71fSDimitry AndricSRCS_MIN+= CodeGen/SwiftErrorValueTracking.cpp 4634014a71fSDimitry AndricSRCS_MIN+= CodeGen/SwitchLoweringUtils.cpp 464986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TailDuplication.cpp 465986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TailDuplicator.cpp 466986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetFrameLoweringImpl.cpp 467986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetInstrInfo.cpp 468986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetLoweringBase.cpp 469986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetLoweringObjectFileImpl.cpp 470986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetOptionsImpl.cpp 471986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetPassConfig.cpp 472986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetRegisterInfo.cpp 473986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetSchedule.cpp 47409bfd043SDimitry AndricSRCS_MIN+= CodeGen/TargetSubtargetInfo.cpp 475986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TwoAddressInstructionPass.cpp 4769771cac2SDimitry AndricSRCS_MIN+= CodeGen/TypePromotion.cpp 477986e05bcSDimitry AndricSRCS_MIN+= CodeGen/UnreachableBlockElim.cpp 4789f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/ValueTypes.cpp 479986e05bcSDimitry AndricSRCS_MIN+= CodeGen/VirtRegMap.cpp 4809f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/WasmEHPrepare.cpp 481986e05bcSDimitry AndricSRCS_MIN+= CodeGen/WinEHPrepare.cpp 482986e05bcSDimitry AndricSRCS_MIN+= CodeGen/XRayInstrumentation.cpp 483fcaf7f86SDimitry AndricSRCS_EXT+= DWARFLinker/DWARFLinker.cpp 484fcaf7f86SDimitry AndricSRCS_EXT+= DWARFLinker/DWARFLinkerCompileUnit.cpp 485fcaf7f86SDimitry AndricSRCS_EXT+= DWARFLinker/DWARFLinkerDeclContext.cpp 486fcaf7f86SDimitry AndricSRCS_EXT+= DWARFLinker/DWARFStreamer.cpp 487fe6060f1SDimitry AndricSRCS_EXT+= DWP/DWP.cpp 488fe6060f1SDimitry AndricSRCS_EXT+= DWP/DWPError.cpp 4893cd201a1SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/AppendingTypeTableBuilder.cpp 49009bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CVSymbolVisitor.cpp 491986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CVTypeVisitor.cpp 492986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CodeViewError.cpp 49309bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CodeViewRecordIO.cpp 49436cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/ContinuationRecordBuilder.cpp 4951b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/DebugChecksumsSubsection.cpp 496db17bf38SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugCrossExSubsection.cpp 497db17bf38SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugCrossImpSubsection.cpp 4981b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/DebugFrameDataSubsection.cpp 4991b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp 5001b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/DebugLinesSubsection.cpp 5011b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/DebugStringTableSubsection.cpp 5025e801ac6SDimitry AndricSRCS_MIW+= DebugInfo/CodeView/DebugSubsection.cpp 50389cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSubsectionRecord.cpp 50489cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSubsectionVisitor.cpp 505db17bf38SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSymbolRVASubsection.cpp 50689cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSymbolsSubsection.cpp 5075e86819cSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/EnumTables.cpp 5085897d2f0SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/Formatters.cpp 50936cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/GlobalTypeTableBuilder.cpp 5101b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/LazyRandomTypeCollection.cpp 511986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/Line.cpp 5121b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/MergingTypeTableBuilder.cpp 51336cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/RecordName.cpp 514986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/RecordSerialization.cpp 51536cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/SimpleTypeSerializer.cpp 51624d58133SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/StringsAndChecksums.cpp 517986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/SymbolDumper.cpp 51861cfbce3SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/SymbolRecordHelpers.cpp 51909bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/SymbolRecordMapping.cpp 520050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/SymbolSerializer.cpp 521f1a29dd3SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeDumpVisitor.cpp 52236cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeHashing.cpp 523d8866befSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeIndex.cpp 52406230659SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeIndexDiscovery.cpp 525efa75597SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/TypeRecordHelpers.cpp 52609bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeRecordMapping.cpp 527986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeStreamMerger.cpp 528d8866befSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeTableCollection.cpp 529caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp 530caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFAcceleratorTable.cpp 5310db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFAddressRange.cpp 532caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFCompileUnit.cpp 533caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFContext.cpp 5340db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDataExtractor.cpp 535caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugAbbrev.cpp 53699be4f2aSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugAddr.cpp 5370db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugArangeSet.cpp 538caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugAranges.cpp 539caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugFrame.cpp 5400db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugInfoEntry.cpp 541caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugLine.cpp 542caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugLoc.cpp 5430db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugMacro.cpp 544caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugPubTable.cpp 545caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugRangeList.cpp 54667b158f6SDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugRnglists.cpp 547caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDie.cpp 548e89f883aSDimitry AndricSRCS_MIN+= DebugInfo/DWARF/DWARFExpression.cpp 549caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFFormValue.cpp 550caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFGdbIndex.cpp 55167b158f6SDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFListTable.cpp 55281ad6265SDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFTypePrinter.cpp 553caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFTypeUnit.cpp 554caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFUnit.cpp 555caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFUnitIndex.cpp 556caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFVerifier.cpp 55709bfd043SDimitry AndricSRCS_MIN+= DebugInfo/MSF/MSFBuilder.cpp 55809bfd043SDimitry AndricSRCS_MIN+= DebugInfo/MSF/MSFCommon.cpp 55924b8043eSDimitry AndricSRCS_EXT+= DebugInfo/MSF/MSFError.cpp 56009bfd043SDimitry AndricSRCS_MIN+= DebugInfo/MSF/MappedBlockStream.cpp 561986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/GenericError.cpp 56209bfd043SDimitry AndricSRCS_EXT+= DebugInfo/PDB/IPDBSourceFile.cpp 563f37b6182SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiModuleDescriptor.cpp 564f37b6182SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp 5650f5676f4SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiModuleList.cpp 566050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiStream.cpp 567050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiStreamBuilder.cpp 568050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/EnumTables.cpp 56981ad6265SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/FormatUtil.cpp 5703cd201a1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/GSIStreamBuilder.cpp 571050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/GlobalsStream.cpp 572050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/Hash.cpp 573050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/HashTable.cpp 574050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/InfoStream.cpp 575050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/InfoStreamBuilder.cpp 57624b8043eSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/InjectedSourceStream.cpp 57781ad6265SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/InputFile.cpp 57881ad6265SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/LinePrinter.cpp 579f37b6182SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/ModuleDebugStream.cpp 580050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NamedStreamMap.cpp 581050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeCompilandSymbol.cpp 582efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumGlobals.cpp 58324b8043eSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumInjectedSources.cpp 58448aaf27bSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumLineNumbers.cpp 585050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumModules.cpp 586e8d8bef9SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumSymbols.cpp 58744389c28SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumTypes.cpp 588050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeExeSymbol.cpp 58948aaf27bSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeFunctionSymbol.cpp 590e8d8bef9SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeInlineSiteSymbol.cpp 59148aaf27bSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeLineNumber.cpp 59248aaf27bSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativePublicSymbol.cpp 593050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeRawSymbol.cpp 594050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeSession.cpp 59548aaf27bSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeSourceFile.cpp 596efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeSymbolEnumerator.cpp 597efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeArray.cpp 598efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeBuiltin.cpp 599efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeEnum.cpp 600efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp 601efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypePointer.cpp 602efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeTypedef.cpp 603efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeUDT.cpp 604efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeVTShape.cpp 605050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBFile.cpp 606050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBFileBuilder.cpp 607b174acefSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBStringTable.cpp 608b174acefSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBStringTableBuilder.cpp 6093d54deb3SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PublicsStream.cpp 6103d54deb3SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/RawError.cpp 611efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/SymbolCache.cpp 612050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/SymbolStream.cpp 613050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/TpiHashing.cpp 614050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/TpiStream.cpp 615050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/TpiStreamBuilder.cpp 616986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDB.cpp 617986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBContext.cpp 618986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBExtras.cpp 619986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBInterfaceAnchors.cpp 620986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymDumper.cpp 621986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbol.cpp 622986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolAnnotation.cpp 623986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolBlock.cpp 624986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCompiland.cpp 625986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCompilandDetails.cpp 626986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCompilandEnv.cpp 627986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCustom.cpp 628986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolData.cpp 629986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolExe.cpp 630986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolFunc.cpp 631986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp 632986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp 633986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolLabel.cpp 634986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolPublicSymbol.cpp 635986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolThunk.cpp 636986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeArray.cpp 637986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp 638986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp 639986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeCustom.cpp 640986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeDimension.cpp 641986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeEnum.cpp 642986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeFriend.cpp 643986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp 644986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp 645986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeManaged.cpp 646986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypePointer.cpp 647986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeTypedef.cpp 648986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeUDT.cpp 649986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeVTable.cpp 650986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp 651986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolUnknown.cpp 652986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolUsingNamespace.cpp 653050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/UDTLayout.cpp 6540db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/DIPrinter.cpp 65581ad6265SDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/Markup.cpp 65681ad6265SDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/MarkupFilter.cpp 65709bfd043SDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/SymbolizableObjectFile.cpp 65809bfd043SDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/Symbolize.cpp 659*bdd1243dSDimitry AndricSRCS_MIW+= Debuginfod/BuildIDFetcher.cpp 66004eeddc0SDimitry AndricSRCS_MIW+= Debuginfod/Debuginfod.cpp 66104eeddc0SDimitry AndricSRCS_MIW+= Debuginfod/HTTPClient.cpp 6625e801ac6SDimitry AndricSRCS_MIN+= Demangle/DLangDemangle.cpp 6635e801ac6SDimitry AndricSRCS_MIN+= Demangle/Demangle.cpp 66409bfd043SDimitry AndricSRCS_MIN+= Demangle/ItaniumDemangle.cpp 6655e801ac6SDimitry AndricSRCS_MIN+= Demangle/MicrosoftDemangle.cpp 6665e801ac6SDimitry AndricSRCS_MIN+= Demangle/MicrosoftDemangleNodes.cpp 6675e801ac6SDimitry AndricSRCS_MIN+= Demangle/RustDemangle.cpp 668986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/ExecutionEngine.cpp 669986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/ExecutionEngineBindings.cpp 670986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/GDBRegistrationListener.cpp 671986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/Interpreter/Execution.cpp 672986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/Interpreter/ExternalFunctions.cpp 673986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/Interpreter/Interpreter.cpp 674753f127fSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/COFF.cpp 675753f127fSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/COFF_x86_64.cpp 676*bdd1243dSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/COFFDirectiveParser.cpp 677753f127fSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/COFFLinkGraphBuilder.cpp 67881ad6265SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/DWARFRecordSectionSplitter.cpp 679b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/EHFrameSupport.cpp 68048aaf27bSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF.cpp 6815e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF_aarch64.cpp 682*bdd1243dSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF_i386.cpp 683*bdd1243dSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF_loongarch.cpp 684fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF_riscv.cpp 68548aaf27bSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF_x86_64.cpp 686fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELFLinkGraphBuilder.cpp 687b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/JITLink.cpp 688b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/JITLinkGeneric.cpp 689b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/JITLinkMemoryManager.cpp 690b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/MachO.cpp 691b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp 692b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/MachO_arm64.cpp 693b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/MachO_x86_64.cpp 6945e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/aarch64.cpp 695*bdd1243dSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/i386.cpp 696*bdd1243dSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/loongarch.cpp 697fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/riscv.cpp 698fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/x86_64.cpp 699986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/MCJIT/MCJIT.cpp 70067b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/CompileOnDemandLayer.cpp 70124b8043eSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/CompileUtils.cpp 70267b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Core.cpp 703fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/DebugObjectManagerPlugin.cpp 70448aaf27bSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/DebugUtils.cpp 7055e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ELFNixPlatform.cpp 706fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/EPCDebugObjectRegistrar.cpp 707fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/EPCEHFrameRegistrar.cpp 7085e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/EPCGenericDylibManager.cpp 7095e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/EPCGenericJITLinkMemoryManager.cpp 7105e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/EPCGenericRTDyldMemoryManager.cpp 711986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ExecutionUtils.cpp 712fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ExecutorProcessControl.cpp 71367b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/IRCompileLayer.cpp 71467b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/IRTransformLayer.cpp 715986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/IndirectionUtils.cpp 716efa75597SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/JITTargetMachineBuilder.cpp 71767b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/LLJIT.cpp 71867b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Layer.cpp 719efa75597SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/LazyReexports.cpp 72081ad6265SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/LookupAndRecordAddrs.cpp 72148aaf27bSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/MachOPlatform.cpp 72248aaf27bSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Mangling.cpp 72304eeddc0SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ObjectFileInterface.cpp 724b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ObjectLinkingLayer.cpp 725b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ObjectTransformLayer.cpp 726986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/OrcABISupport.cpp 72767b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp 72804eeddc0SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Shared/AllocationActions.cpp 729e8d8bef9SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Shared/OrcError.cpp 7305e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Shared/OrcRTBridge.cpp 7315e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Shared/SimpleRemoteEPCUtils.cpp 7325e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/SimpleRemoteEPC.cpp 733b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Speculation.cpp 734fe6060f1SDimitry AndricSRCS_XDB+= ExecutionEngine/Orc/TargetProcess/JITLoaderGDB.cpp 735e8d8bef9SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/TargetProcess/RegisterEHFrames.cpp 736e8d8bef9SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/TargetProcess/TargetExecutionUtils.cpp 7375e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/TaskDispatch.cpp 738efa75597SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ThreadSafeModule.cpp 73909bfd043SDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/JITSymbol.cpp 740986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp 741986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp 742986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp 743986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp 744986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp 745986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp 74609bfd043SDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp 747986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/SectionMemoryManager.cpp 748986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/TargetSelect.cpp 749*bdd1243dSDimitry AndricSRCS_MIN+= Frontend/HLSL/HLSLResource.cpp 750fe6060f1SDimitry AndricSRCS_MIN+= Frontend/OpenMP/OMP.cpp 75148aaf27bSDimitry AndricSRCS_MIN+= Frontend/OpenMP/OMPContext.cpp 7529771cac2SDimitry AndricSRCS_MIN+= Frontend/OpenMP/OMPIRBuilder.cpp 7534014a71fSDimitry AndricSRCS_MIN+= IR/AbstractCallSite.cpp 754986e05bcSDimitry AndricSRCS_MIN+= IR/AsmWriter.cpp 755e8d8bef9SDimitry AndricSRCS_MIN+= IR/Assumptions.cpp 756986e05bcSDimitry AndricSRCS_MIN+= IR/Attributes.cpp 757986e05bcSDimitry AndricSRCS_MIN+= IR/AutoUpgrade.cpp 758986e05bcSDimitry AndricSRCS_MIN+= IR/BasicBlock.cpp 759*bdd1243dSDimitry AndricSRCS_MIN+= IR/BuiltinGCs.cpp 760986e05bcSDimitry AndricSRCS_MIN+= IR/Comdat.cpp 761986e05bcSDimitry AndricSRCS_MIN+= IR/ConstantFold.cpp 762986e05bcSDimitry AndricSRCS_MIN+= IR/ConstantRange.cpp 763986e05bcSDimitry AndricSRCS_MIN+= IR/Constants.cpp 764986e05bcSDimitry AndricSRCS_MIN+= IR/Core.cpp 765986e05bcSDimitry AndricSRCS_MIN+= IR/DIBuilder.cpp 766986e05bcSDimitry AndricSRCS_MIN+= IR/DataLayout.cpp 767986e05bcSDimitry AndricSRCS_MIN+= IR/DebugInfo.cpp 768986e05bcSDimitry AndricSRCS_MIN+= IR/DebugInfoMetadata.cpp 769986e05bcSDimitry AndricSRCS_MIN+= IR/DebugLoc.cpp 77036cb3905SDimitry AndricSRCS_MIN+= IR/DiagnosticHandler.cpp 771986e05bcSDimitry AndricSRCS_MIN+= IR/DiagnosticInfo.cpp 772986e05bcSDimitry AndricSRCS_MIN+= IR/DiagnosticPrinter.cpp 773986e05bcSDimitry AndricSRCS_MIN+= IR/Dominators.cpp 7749771cac2SDimitry AndricSRCS_MIN+= IR/FPEnv.cpp 775986e05bcSDimitry AndricSRCS_MIN+= IR/Function.cpp 776fe6060f1SDimitry AndricSRCS_MIN+= IR/GCStrategy.cpp 777986e05bcSDimitry AndricSRCS_MIN+= IR/GVMaterializer.cpp 778986e05bcSDimitry AndricSRCS_MIN+= IR/Globals.cpp 779986e05bcSDimitry AndricSRCS_MIN+= IR/IRBuilder.cpp 780986e05bcSDimitry AndricSRCS_MIN+= IR/IRPrintingPasses.cpp 781986e05bcSDimitry AndricSRCS_MIN+= IR/InlineAsm.cpp 782986e05bcSDimitry AndricSRCS_MIN+= IR/Instruction.cpp 783986e05bcSDimitry AndricSRCS_MIN+= IR/Instructions.cpp 784986e05bcSDimitry AndricSRCS_MIN+= IR/IntrinsicInst.cpp 785986e05bcSDimitry AndricSRCS_MIN+= IR/LLVMContext.cpp 786986e05bcSDimitry AndricSRCS_MIN+= IR/LLVMContextImpl.cpp 78748aaf27bSDimitry AndricSRCS_MIN+= IR/LLVMRemarkStreamer.cpp 788986e05bcSDimitry AndricSRCS_MIN+= IR/LegacyPassManager.cpp 789986e05bcSDimitry AndricSRCS_MIN+= IR/MDBuilder.cpp 790986e05bcSDimitry AndricSRCS_MIN+= IR/Mangler.cpp 791986e05bcSDimitry AndricSRCS_MIN+= IR/Metadata.cpp 792986e05bcSDimitry AndricSRCS_MIN+= IR/Module.cpp 793986e05bcSDimitry AndricSRCS_MIN+= IR/ModuleSummaryIndex.cpp 794986e05bcSDimitry AndricSRCS_MIN+= IR/Operator.cpp 795986e05bcSDimitry AndricSRCS_MIN+= IR/OptBisect.cpp 796986e05bcSDimitry AndricSRCS_MIN+= IR/Pass.cpp 7975e86819cSDimitry AndricSRCS_MIN+= IR/PassInstrumentation.cpp 798986e05bcSDimitry AndricSRCS_MIN+= IR/PassManager.cpp 799986e05bcSDimitry AndricSRCS_MIN+= IR/PassRegistry.cpp 8005e86819cSDimitry AndricSRCS_MIN+= IR/PassTimingInfo.cpp 801e8d8bef9SDimitry AndricSRCS_MIN+= IR/PrintPasses.cpp 802*bdd1243dSDimitry AndricSRCS_MIN+= IR/ProfDataUtils.cpp 803986e05bcSDimitry AndricSRCS_MIN+= IR/ProfileSummary.cpp 804e8d8bef9SDimitry AndricSRCS_MIN+= IR/PseudoProbe.cpp 805e8d8bef9SDimitry AndricSRCS_MIN+= IR/ReplaceConstant.cpp 80604eeddc0SDimitry AndricSRCS_MIN+= IR/SSAContext.cpp 807c4394386SDimitry AndricSRCS_MIN+= IR/SafepointIRVerifier.cpp 808986e05bcSDimitry AndricSRCS_MIN+= IR/Statepoint.cpp 809986e05bcSDimitry AndricSRCS_MIN+= IR/Type.cpp 810986e05bcSDimitry AndricSRCS_MIN+= IR/TypeFinder.cpp 811986e05bcSDimitry AndricSRCS_MIN+= IR/Use.cpp 812986e05bcSDimitry AndricSRCS_MIN+= IR/User.cpp 813986e05bcSDimitry AndricSRCS_MIN+= IR/Value.cpp 814986e05bcSDimitry AndricSRCS_MIN+= IR/ValueSymbolTable.cpp 815986e05bcSDimitry AndricSRCS_MIN+= IR/Verifier.cpp 816986e05bcSDimitry AndricSRCS_MIN+= IRReader/IRReader.cpp 817*bdd1243dSDimitry AndricSRCS_MIN+= IRPrinter/IRPrintingPasses.cpp 8185897d2f0SDimitry AndricSRCS_MIN+= LTO/LTO.cpp 81909bfd043SDimitry AndricSRCS_MIN+= LTO/LTOBackend.cpp 82075bc38b9SEd MasteSRCS_EXL+= LTO/LTOCodeGenerator.cpp 82175bc38b9SEd MasteSRCS_EXL+= LTO/LTOModule.cpp 822efa75597SDimitry AndricSRCS_EXL+= LTO/SummaryBasedOptimizations.cpp 82375bc38b9SEd MasteSRCS_EXL+= LTO/ThinLTOCodeGenerator.cpp 82409bfd043SDimitry AndricSRCS_MIN+= LTO/UpdateCompilerUsed.cpp 82531ba4ce8SAlex Richardson# Only needed for clangd/clang-query, uncomment once we build those. 82631ba4ce8SAlex Richardson# SRCS_XDW+= LineEditor/LineEditor.cpp 827986e05bcSDimitry AndricSRCS_MIN+= Linker/IRMover.cpp 828986e05bcSDimitry AndricSRCS_MIN+= Linker/LinkModules.cpp 829986e05bcSDimitry AndricSRCS_MIN+= MC/ConstantPools.cpp 830986e05bcSDimitry AndricSRCS_MIN+= MC/ELFObjectWriter.cpp 831986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmBackend.cpp 832986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfo.cpp 833986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfoCOFF.cpp 834986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfoDarwin.cpp 835986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfoELF.cpp 8364014a71fSDimitry AndricSRCS_MIN+= MC/MCAsmInfoXCOFF.cpp 8379f6e9a9fSDimitry AndricSRCS_MIN+= MC/MCAsmMacro.cpp 838986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmStreamer.cpp 839986e05bcSDimitry AndricSRCS_MIN+= MC/MCAssembler.cpp 840986e05bcSDimitry AndricSRCS_MIN+= MC/MCCodeEmitter.cpp 841986e05bcSDimitry AndricSRCS_MIN+= MC/MCCodeView.cpp 842986e05bcSDimitry AndricSRCS_MIN+= MC/MCContext.cpp 84381ad6265SDimitry AndricSRCS_MIN+= MC/MCDXContainerStreamer.cpp 84481ad6265SDimitry AndricSRCS_MIN+= MC/MCDXContainerWriter.cpp 84575bc38b9SEd MasteSRCS_XDL+= MC/MCDisassembler/Disassembler.cpp 84630d4828eSDimitry AndricSRCS_XDW+= MC/MCDisassembler/MCDisassembler.cpp 84730d4828eSDimitry AndricSRCS_XDW+= MC/MCDisassembler/MCExternalSymbolizer.cpp 848986e05bcSDimitry AndricSRCS_MIN+= MC/MCDisassembler/MCRelocationInfo.cpp 84930d4828eSDimitry AndricSRCS_XDW+= MC/MCDisassembler/MCSymbolizer.cpp 850986e05bcSDimitry AndricSRCS_MIN+= MC/MCDwarf.cpp 851986e05bcSDimitry AndricSRCS_MIN+= MC/MCELFObjectTargetWriter.cpp 852986e05bcSDimitry AndricSRCS_MIN+= MC/MCELFStreamer.cpp 853986e05bcSDimitry AndricSRCS_MIN+= MC/MCExpr.cpp 854986e05bcSDimitry AndricSRCS_MIN+= MC/MCFragment.cpp 855986e05bcSDimitry AndricSRCS_MIN+= MC/MCInst.cpp 856986e05bcSDimitry AndricSRCS_MIN+= MC/MCInstPrinter.cpp 857986e05bcSDimitry AndricSRCS_MIN+= MC/MCInstrAnalysis.cpp 858986e05bcSDimitry AndricSRCS_MIN+= MC/MCInstrDesc.cpp 85948aaf27bSDimitry AndricSRCS_MIN+= MC/MCInstrInfo.cpp 860986e05bcSDimitry AndricSRCS_MIN+= MC/MCLinkerOptimizationHint.cpp 861986e05bcSDimitry AndricSRCS_MIN+= MC/MCMachOStreamer.cpp 862986e05bcSDimitry AndricSRCS_MIN+= MC/MCMachObjectTargetWriter.cpp 863986e05bcSDimitry AndricSRCS_MIN+= MC/MCNullStreamer.cpp 864986e05bcSDimitry AndricSRCS_MIN+= MC/MCObjectFileInfo.cpp 865986e05bcSDimitry AndricSRCS_MIN+= MC/MCObjectStreamer.cpp 866986e05bcSDimitry AndricSRCS_MIN+= MC/MCObjectWriter.cpp 867986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/AsmLexer.cpp 868986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/AsmParser.cpp 869986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/COFFAsmParser.cpp 870986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/DarwinAsmParser.cpp 871986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/ELFAsmParser.cpp 8725e801ac6SDimitry AndricSRCS_MIN+= MC/MCParser/GOFFAsmParser.cpp 873986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCAsmLexer.cpp 874986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCAsmParser.cpp 875986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCAsmParserExtension.cpp 876986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCTargetAsmParser.cpp 8775e86819cSDimitry AndricSRCS_MIN+= MC/MCParser/WasmAsmParser.cpp 878fe6060f1SDimitry AndricSRCS_MIN+= MC/MCParser/XCOFFAsmParser.cpp 879e8d8bef9SDimitry AndricSRCS_MIN+= MC/MCPseudoProbe.cpp 880986e05bcSDimitry AndricSRCS_MIN+= MC/MCRegisterInfo.cpp 88181ad6265SDimitry AndricSRCS_MIN+= MC/MCSPIRVStreamer.cpp 882986e05bcSDimitry AndricSRCS_MIN+= MC/MCSchedule.cpp 883986e05bcSDimitry AndricSRCS_MIN+= MC/MCSection.cpp 884986e05bcSDimitry AndricSRCS_MIN+= MC/MCSectionCOFF.cpp 88581ad6265SDimitry AndricSRCS_MIN+= MC/MCSectionDXContainer.cpp 886986e05bcSDimitry AndricSRCS_MIN+= MC/MCSectionELF.cpp 887986e05bcSDimitry AndricSRCS_MIN+= MC/MCSectionMachO.cpp 8885897d2f0SDimitry AndricSRCS_MIN+= MC/MCSectionWasm.cpp 8894014a71fSDimitry AndricSRCS_MIN+= MC/MCSectionXCOFF.cpp 890986e05bcSDimitry AndricSRCS_MIN+= MC/MCStreamer.cpp 891986e05bcSDimitry AndricSRCS_MIN+= MC/MCSubtargetInfo.cpp 892986e05bcSDimitry AndricSRCS_MIN+= MC/MCSymbol.cpp 893986e05bcSDimitry AndricSRCS_MIN+= MC/MCSymbolELF.cpp 89448aaf27bSDimitry AndricSRCS_MIN+= MC/MCSymbolXCOFF.cpp 895986e05bcSDimitry AndricSRCS_MIN+= MC/MCTargetOptions.cpp 89648aaf27bSDimitry AndricSRCS_MIN+= MC/MCTargetOptionsCommandFlags.cpp 897986e05bcSDimitry AndricSRCS_MIN+= MC/MCValue.cpp 8985897d2f0SDimitry AndricSRCS_MIN+= MC/MCWasmStreamer.cpp 899986e05bcSDimitry AndricSRCS_MIN+= MC/MCWin64EH.cpp 900edd7eaddSDimitry AndricSRCS_MIN+= MC/MCWinCOFFStreamer.cpp 901986e05bcSDimitry AndricSRCS_MIN+= MC/MCWinEH.cpp 9024014a71fSDimitry AndricSRCS_MIN+= MC/MCXCOFFStreamer.cpp 9034014a71fSDimitry AndricSRCS_MIN+= MC/MCXCOFFObjectTargetWriter.cpp 904986e05bcSDimitry AndricSRCS_MIN+= MC/MachObjectWriter.cpp 90581ad6265SDimitry AndricSRCS_MIN+= MC/SPIRVObjectWriter.cpp 906986e05bcSDimitry AndricSRCS_MIN+= MC/StringTableBuilder.cpp 907986e05bcSDimitry AndricSRCS_MIN+= MC/SubtargetFeature.cpp 9085e801ac6SDimitry AndricSRCS_MIN+= MC/TargetRegistry.cpp 9099f6e9a9fSDimitry AndricSRCS_MIN+= MC/WasmObjectWriter.cpp 910986e05bcSDimitry AndricSRCS_MIN+= MC/WinCOFFObjectWriter.cpp 9114014a71fSDimitry AndricSRCS_MIN+= MC/XCOFFObjectWriter.cpp 912b1ae9102SDimitry AndricSRCS_EXT+= MCA/CodeEmitter.cpp 913efa75597SDimitry AndricSRCS_EXT+= MCA/Context.cpp 914fe6060f1SDimitry AndricSRCS_EXT+= MCA/CustomBehaviour.cpp 915efa75597SDimitry AndricSRCS_EXT+= MCA/HWEventListener.cpp 916efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/HardwareUnit.cpp 917efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/LSUnit.cpp 918efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/RegisterFile.cpp 919efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/ResourceManager.cpp 920efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/RetireControlUnit.cpp 921efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/Scheduler.cpp 922efa75597SDimitry AndricSRCS_EXT+= MCA/InstrBuilder.cpp 923efa75597SDimitry AndricSRCS_EXT+= MCA/Instruction.cpp 924efa75597SDimitry AndricSRCS_EXT+= MCA/Pipeline.cpp 925efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/DispatchStage.cpp 926efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/EntryStage.cpp 927efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/ExecuteStage.cpp 928fe6060f1SDimitry AndricSRCS_EXT+= MCA/Stages/InOrderIssueStage.cpp 929efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/InstructionTables.cpp 93024b8043eSDimitry AndricSRCS_EXT+= MCA/Stages/MicroOpQueueStage.cpp 931efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/RetireStage.cpp 932efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/Stage.cpp 933efa75597SDimitry AndricSRCS_EXT+= MCA/Support.cpp 9345e801ac6SDimitry AndricSRCS_EXT+= MCA/View.cpp 93581ad6265SDimitry AndricSRCS_MIW+= ObjCopy/Archive.cpp 93681ad6265SDimitry AndricSRCS_MIW+= ObjCopy/COFF/COFFObjcopy.cpp 93781ad6265SDimitry AndricSRCS_MIW+= ObjCopy/COFF/COFFObject.cpp 93881ad6265SDimitry AndricSRCS_MIW+= ObjCopy/COFF/COFFReader.cpp 93981ad6265SDimitry AndricSRCS_MIW+= ObjCopy/COFF/COFFWriter.cpp 94081ad6265SDimitry AndricSRCS_MIW+= ObjCopy/CommonConfig.cpp 94181ad6265SDimitry AndricSRCS_MIW+= ObjCopy/ConfigManager.cpp 94281ad6265SDimitry AndricSRCS_MIW+= ObjCopy/ELF/ELFObjcopy.cpp 94381ad6265SDimitry AndricSRCS_MIW+= ObjCopy/ELF/ELFObject.cpp 94481ad6265SDimitry AndricSRCS_MIW+= ObjCopy/MachO/MachOLayoutBuilder.cpp 94581ad6265SDimitry AndricSRCS_MIW+= ObjCopy/MachO/MachOObjcopy.cpp 94681ad6265SDimitry AndricSRCS_MIW+= ObjCopy/MachO/MachOObject.cpp 94781ad6265SDimitry AndricSRCS_MIW+= ObjCopy/MachO/MachOReader.cpp 94881ad6265SDimitry AndricSRCS_MIW+= ObjCopy/MachO/MachOWriter.cpp 94981ad6265SDimitry AndricSRCS_MIW+= ObjCopy/ObjCopy.cpp 95081ad6265SDimitry AndricSRCS_MIW+= ObjCopy/XCOFF/XCOFFObjcopy.cpp 95181ad6265SDimitry AndricSRCS_MIW+= ObjCopy/XCOFF/XCOFFReader.cpp 95281ad6265SDimitry AndricSRCS_MIW+= ObjCopy/XCOFF/XCOFFWriter.cpp 95381ad6265SDimitry AndricSRCS_MIW+= ObjCopy/wasm/WasmObjcopy.cpp 95481ad6265SDimitry AndricSRCS_MIW+= ObjCopy/wasm/WasmObject.cpp 95581ad6265SDimitry AndricSRCS_MIW+= ObjCopy/wasm/WasmReader.cpp 95681ad6265SDimitry AndricSRCS_MIW+= ObjCopy/wasm/WasmWriter.cpp 957986e05bcSDimitry AndricSRCS_MIN+= Object/Archive.cpp 958986e05bcSDimitry AndricSRCS_MIN+= Object/ArchiveWriter.cpp 959986e05bcSDimitry AndricSRCS_MIN+= Object/Binary.cpp 960*bdd1243dSDimitry AndricSRCS_MIW+= Object/BuildID.cpp 9619c954a48SEd MasteSRCS_MIN+= Object/COFFImportFile.cpp 9620db9a49eSDimitry AndricSRCS_MIW+= Object/COFFModuleDefinition.cpp 963986e05bcSDimitry AndricSRCS_MIN+= Object/COFFObjectFile.cpp 964f1a29dd3SDimitry AndricSRCS_MIN+= Object/Decompressor.cpp 965986e05bcSDimitry AndricSRCS_MIN+= Object/ELF.cpp 966986e05bcSDimitry AndricSRCS_MIN+= Object/ELFObjectFile.cpp 967986e05bcSDimitry AndricSRCS_MIN+= Object/Error.cpp 968fe6060f1SDimitry AndricSRCS_MIW+= Object/FaultMapParser.cpp 969986e05bcSDimitry AndricSRCS_MIN+= Object/IRObjectFile.cpp 9705897d2f0SDimitry AndricSRCS_MIN+= Object/IRSymtab.cpp 971986e05bcSDimitry AndricSRCS_MIN+= Object/MachOObjectFile.cpp 9720db9a49eSDimitry AndricSRCS_MIW+= Object/MachOUniversal.cpp 973021385abSAlex RichardsonSRCS_MIW+= Object/MachOUniversalWriter.cpp 9740db9a49eSDimitry AndricSRCS_MIW+= Object/Minidump.cpp 97509bfd043SDimitry AndricSRCS_MIN+= Object/ModuleSymbolTable.cpp 976986e05bcSDimitry AndricSRCS_EXT+= Object/Object.cpp 977986e05bcSDimitry AndricSRCS_MIN+= Object/ObjectFile.cpp 97881ad6265SDimitry AndricSRCS_MIW+= Object/OffloadBinary.cpp 979986e05bcSDimitry AndricSRCS_MIN+= Object/RecordStreamer.cpp 9800db9a49eSDimitry AndricSRCS_MIW+= Object/RelocationResolver.cpp 9810db9a49eSDimitry AndricSRCS_MIW+= Object/SymbolSize.cpp 982986e05bcSDimitry AndricSRCS_MIN+= Object/SymbolicFile.cpp 98348aaf27bSDimitry AndricSRCS_MIW+= Object/TapiFile.cpp 984d311d024SDimitry AndricSRCS_MIW+= Object/TapiUniversal.cpp 98509bfd043SDimitry AndricSRCS_MIN+= Object/WasmObjectFile.cpp 9860db9a49eSDimitry AndricSRCS_MIW+= Object/WindowsMachineFlag.cpp 987bbd32193SDimitry AndricSRCS_MIN+= Object/WindowsResource.cpp 9884014a71fSDimitry AndricSRCS_MIN+= Object/XCOFFObjectFile.cpp 989986e05bcSDimitry AndricSRCS_MIN+= ObjectYAML/COFFYAML.cpp 990f9448bf3SDimitry AndricSRCS_EXT+= ObjectYAML/CodeViewYAMLDebugSections.cpp 991f9448bf3SDimitry AndricSRCS_EXT+= ObjectYAML/CodeViewYAMLSymbols.cpp 992f9448bf3SDimitry AndricSRCS_EXT+= ObjectYAML/CodeViewYAMLTypes.cpp 99309bfd043SDimitry AndricSRCS_MIN+= ObjectYAML/DWARFYAML.cpp 994986e05bcSDimitry AndricSRCS_MIN+= ObjectYAML/ELFYAML.cpp 995986e05bcSDimitry AndricSRCS_MIN+= ObjectYAML/MachOYAML.cpp 99624d58133SDimitry AndricSRCS_EXT+= ObjectYAML/YAML.cpp 997986e05bcSDimitry AndricSRCS_MIN+= Option/Arg.cpp 998986e05bcSDimitry AndricSRCS_MIN+= Option/ArgList.cpp 999986e05bcSDimitry AndricSRCS_MIN+= Option/OptTable.cpp 1000986e05bcSDimitry AndricSRCS_MIN+= Option/Option.cpp 10015e801ac6SDimitry AndricSRCS_MIN+= Passes/OptimizationLevel.cpp 100209bfd043SDimitry AndricSRCS_MIN+= Passes/PassBuilder.cpp 10035e801ac6SDimitry AndricSRCS_MIN+= Passes/PassBuilderPipelines.cpp 10044014a71fSDimitry AndricSRCS_MIN+= Passes/PassPlugin.cpp 10059771cac2SDimitry AndricSRCS_MIN+= Passes/StandardInstrumentations.cpp 1006986e05bcSDimitry AndricSRCS_MIN+= ProfileData/Coverage/CoverageMapping.cpp 1007986e05bcSDimitry AndricSRCS_MIN+= ProfileData/Coverage/CoverageMappingReader.cpp 1008986e05bcSDimitry AndricSRCS_MIN+= ProfileData/Coverage/CoverageMappingWriter.cpp 10091b49115aSEd MasteSRCS_MIN+= ProfileData/GCOV.cpp 1010986e05bcSDimitry AndricSRCS_MIN+= ProfileData/InstrProf.cpp 101104eeddc0SDimitry AndricSRCS_MIN+= ProfileData/InstrProfCorrelator.cpp 1012986e05bcSDimitry AndricSRCS_MIN+= ProfileData/InstrProfReader.cpp 1013986e05bcSDimitry AndricSRCS_MIN+= ProfileData/InstrProfWriter.cpp 101481ad6265SDimitry AndricSRCS_MIN+= ProfileData/MemProf.cpp 1015986e05bcSDimitry AndricSRCS_MIN+= ProfileData/ProfileSummaryBuilder.cpp 10161838bd0fSDimitry AndricSRCS_MIW+= ProfileData/RawMemProfReader.cpp 1017986e05bcSDimitry AndricSRCS_MIN+= ProfileData/SampleProf.cpp 1018986e05bcSDimitry AndricSRCS_MIN+= ProfileData/SampleProfReader.cpp 1019961eb443SEd MasteSRCS_MIN+= ProfileData/SampleProfWriter.cpp 1020a2a9ef4bSDimitry AndricSRCS_MIN+= Remarks/BitstreamRemarkParser.cpp 10219771cac2SDimitry AndricSRCS_MIN+= Remarks/BitstreamRemarkSerializer.cpp 10224014a71fSDimitry AndricSRCS_MIN+= Remarks/RemarkFormat.cpp 1023a2a9ef4bSDimitry AndricSRCS_MIN+= Remarks/RemarkParser.cpp 10249771cac2SDimitry AndricSRCS_MIN+= Remarks/RemarkSerializer.cpp 102548aaf27bSDimitry AndricSRCS_MIN+= Remarks/RemarkStreamer.cpp 10264014a71fSDimitry AndricSRCS_MIN+= Remarks/RemarkStringTable.cpp 1027a2a9ef4bSDimitry AndricSRCS_MIN+= Remarks/YAMLRemarkParser.cpp 10284014a71fSDimitry AndricSRCS_MIN+= Remarks/YAMLRemarkSerializer.cpp 1029054f9817SDimitry AndricSRCS_MIN+= Support/ABIBreak.cpp 1030e8d8bef9SDimitry AndricSRCS_MIN+= Support/APFixedPoint.cpp 1031986e05bcSDimitry AndricSRCS_MIN+= Support/APFloat.cpp 1032986e05bcSDimitry AndricSRCS_MIN+= Support/APInt.cpp 1033986e05bcSDimitry AndricSRCS_MIN+= Support/APSInt.cpp 10345897d2f0SDimitry AndricSRCS_MIN+= Support/ARMAttributeParser.cpp 1035986e05bcSDimitry AndricSRCS_MIN+= Support/ARMBuildAttrs.cpp 10361b85b68dSCameron KatriSRCS_MIN+= Support/ARMWinEH.cpp 1037fcaf7f86SDimitry AndricSRCS_EXT+= Support/AddressRanges.cpp 1038986e05bcSDimitry AndricSRCS_MIN+= Support/Allocator.cpp 1039*bdd1243dSDimitry AndricSRCS_MIN+= Support/BLAKE3/blake3.c 1040*bdd1243dSDimitry AndricSRCS_MIN+= Support/BLAKE3/blake3_dispatch.c 1041fcaf7f86SDimitry Andric.if ${TARGET_ARCH} == "aarch64" 1042*bdd1243dSDimitry AndricSRCS_MIN+= Support/BLAKE3/blake3_neon.c 1043fcaf7f86SDimitry Andric.endif 1044*bdd1243dSDimitry AndricSRCS_MIN+= Support/BLAKE3/blake3_portable.c 1045fcaf7f86SDimitry Andric.if ${TARGET_ARCH} == "amd64" 1046*bdd1243dSDimitry AndricSRCS_MIN+= Support/BLAKE3/blake3_avx2_x86-64_unix.S 1047*bdd1243dSDimitry AndricSRCS_MIN+= Support/BLAKE3/blake3_sse2_x86-64_unix.S 1048*bdd1243dSDimitry AndricSRCS_MIN+= Support/BLAKE3/blake3_sse41_x86-64_unix.S 1049*bdd1243dSDimitry AndricSRCS_MIN+= Support/BLAKE3/blake3_avx512_x86-64_unix.S 1050fcaf7f86SDimitry Andric.endif 10515897d2f0SDimitry AndricSRCS_MIN+= Support/BinaryStreamError.cpp 10525897d2f0SDimitry AndricSRCS_MIN+= Support/BinaryStreamReader.cpp 1053d8866befSDimitry AndricSRCS_MIN+= Support/BinaryStreamRef.cpp 10545897d2f0SDimitry AndricSRCS_MIN+= Support/BinaryStreamWriter.cpp 1055986e05bcSDimitry AndricSRCS_MIN+= Support/BlockFrequency.cpp 1056986e05bcSDimitry AndricSRCS_MIN+= Support/BranchProbability.cpp 10575e86819cSDimitry AndricSRCS_MIN+= Support/BuryPointer.cpp 10580db9a49eSDimitry AndricSRCS_MIW+= Support/COM.cpp 10594d4aa256SDimitry AndricSRCS_MIN+= Support/CRC.cpp 106081ad6265SDimitry AndricSRCS_MIN+= Support/CachePruning.cpp 106181ad6265SDimitry AndricSRCS_MIW+= Support/Caching.cpp 106209bfd043SDimitry AndricSRCS_MIN+= Support/Chrono.cpp 106336cb3905SDimitry AndricSRCS_MIN+= Support/CodeGenCoverage.cpp 1064986e05bcSDimitry AndricSRCS_MIN+= Support/CommandLine.cpp 1065986e05bcSDimitry AndricSRCS_MIN+= Support/Compression.cpp 106609bfd043SDimitry AndricSRCS_MIN+= Support/ConvertUTF.cpp 1067986e05bcSDimitry AndricSRCS_MIN+= Support/ConvertUTFWrapper.cpp 1068986e05bcSDimitry AndricSRCS_MIN+= Support/CrashRecoveryContext.cpp 1069986e05bcSDimitry AndricSRCS_MIN+= Support/DAGDeltaAlgorithm.cpp 10709f6e9a9fSDimitry AndricSRCS_MIN+= Support/DJB.cpp 1071986e05bcSDimitry AndricSRCS_MIN+= Support/DataExtractor.cpp 1072986e05bcSDimitry AndricSRCS_MIN+= Support/Debug.cpp 10735897d2f0SDimitry AndricSRCS_MIN+= Support/DebugCounter.cpp 1074986e05bcSDimitry AndricSRCS_MIN+= Support/DeltaAlgorithm.cpp 10755e801ac6SDimitry AndricSRCS_MIN+= Support/DivisionByConstantInfo.cpp 1076986e05bcSDimitry AndricSRCS_MIN+= Support/DynamicLibrary.cpp 107748aaf27bSDimitry AndricSRCS_MIN+= Support/ELFAttributeParser.cpp 107848aaf27bSDimitry AndricSRCS_MIN+= Support/ELFAttributes.cpp 1079986e05bcSDimitry AndricSRCS_MIN+= Support/Errno.cpp 1080986e05bcSDimitry AndricSRCS_MIN+= Support/Error.cpp 1081986e05bcSDimitry AndricSRCS_MIN+= Support/ErrorHandling.cpp 1082fe6060f1SDimitry AndricSRCS_MIN+= Support/ExtensibleRTTI.cpp 1083e8d8bef9SDimitry AndricSRCS_MIN+= Support/FileCollector.cpp 1084021385abSAlex RichardsonSRCS_MIW+= Support/FileOutputBuffer.cpp 10859771cac2SDimitry AndricSRCS_MIN+= Support/FileUtilities.cpp 1086986e05bcSDimitry AndricSRCS_MIN+= Support/FoldingSet.cpp 108709bfd043SDimitry AndricSRCS_MIN+= Support/FormatVariadic.cpp 1088986e05bcSDimitry AndricSRCS_MIN+= Support/FormattedStream.cpp 108909bfd043SDimitry AndricSRCS_MIN+= Support/GlobPattern.cpp 1090986e05bcSDimitry AndricSRCS_MIN+= Support/GraphWriter.cpp 1091986e05bcSDimitry AndricSRCS_MIN+= Support/Hashing.cpp 10929f6e9a9fSDimitry AndricSRCS_MIN+= Support/InitLLVM.cpp 1093e8d8bef9SDimitry AndricSRCS_MIN+= Support/InstructionCost.cpp 1094986e05bcSDimitry AndricSRCS_MIN+= Support/IntEqClasses.cpp 1095986e05bcSDimitry AndricSRCS_MIN+= Support/IntervalMap.cpp 10965e86819cSDimitry AndricSRCS_MIN+= Support/ItaniumManglingCanonicalizer.cpp 10972d31b1b8SDimitry AndricSRCS_MIN+= Support/JSON.cpp 109836cb3905SDimitry AndricSRCS_MIN+= Support/KnownBits.cpp 1099986e05bcSDimitry AndricSRCS_MIN+= Support/LEB128.cpp 1100986e05bcSDimitry AndricSRCS_MIN+= Support/LineIterator.cpp 1101986e05bcSDimitry AndricSRCS_MIN+= Support/Locale.cpp 1102986e05bcSDimitry AndricSRCS_MIN+= Support/LockFileManager.cpp 11035897d2f0SDimitry AndricSRCS_MIN+= Support/LowLevelType.cpp 1104986e05bcSDimitry AndricSRCS_MIN+= Support/MD5.cpp 11055e801ac6SDimitry AndricSRCS_MIW+= Support/MSP430AttributeParser.cpp 11065e801ac6SDimitry AndricSRCS_MIW+= Support/MSP430Attributes.cpp 1107986e05bcSDimitry AndricSRCS_MIN+= Support/ManagedStatic.cpp 1108986e05bcSDimitry AndricSRCS_MIN+= Support/MathExtras.cpp 110948aaf27bSDimitry AndricSRCS_MIN+= Support/MemAlloc.cpp 1110021385abSAlex RichardsonSRCS_MIW+= Support/Memory.cpp 1111986e05bcSDimitry AndricSRCS_MIN+= Support/MemoryBuffer.cpp 1112e8d8bef9SDimitry AndricSRCS_MIN+= Support/MemoryBufferRef.cpp 111309bfd043SDimitry AndricSRCS_MIN+= Support/NativeFormatting.cpp 111448aaf27bSDimitry AndricSRCS_MIN+= Support/OptimizedStructLayout.cpp 11154014a71fSDimitry AndricSRCS_MIN+= Support/Optional.cpp 1116e8d8bef9SDimitry AndricSRCS_EXL+= Support/Parallel.cpp 1117986e05bcSDimitry AndricSRCS_MIN+= Support/Path.cpp 1118986e05bcSDimitry AndricSRCS_MIN+= Support/PluginLoader.cpp 1119986e05bcSDimitry AndricSRCS_MIN+= Support/PrettyStackTrace.cpp 1120986e05bcSDimitry AndricSRCS_MIN+= Support/Process.cpp 1121986e05bcSDimitry AndricSRCS_MIN+= Support/Program.cpp 112248aaf27bSDimitry AndricSRCS_MIN+= Support/RISCVAttributeParser.cpp 112348aaf27bSDimitry AndricSRCS_MIN+= Support/RISCVAttributes.cpp 11245e801ac6SDimitry AndricSRCS_MIN+= Support/RISCVISAInfo.cpp 1125986e05bcSDimitry AndricSRCS_MIN+= Support/RWMutex.cpp 1126986e05bcSDimitry AndricSRCS_MIN+= Support/RandomNumberGenerator.cpp 1127986e05bcSDimitry AndricSRCS_MIN+= Support/Regex.cpp 1128986e05bcSDimitry AndricSRCS_MIN+= Support/SHA1.cpp 11295e801ac6SDimitry AndricSRCS_MIN+= Support/SHA256.cpp 1130986e05bcSDimitry AndricSRCS_MIN+= Support/ScaledNumber.cpp 1131986e05bcSDimitry AndricSRCS_MIN+= Support/ScopedPrinter.cpp 1132986e05bcSDimitry AndricSRCS_MIN+= Support/Signals.cpp 11334014a71fSDimitry AndricSRCS_MIN+= Support/Signposts.cpp 1134986e05bcSDimitry AndricSRCS_MIN+= Support/SmallPtrSet.cpp 1135986e05bcSDimitry AndricSRCS_MIN+= Support/SmallVector.cpp 1136986e05bcSDimitry AndricSRCS_MIN+= Support/SourceMgr.cpp 1137986e05bcSDimitry AndricSRCS_MIN+= Support/SpecialCaseList.cpp 1138986e05bcSDimitry AndricSRCS_MIN+= Support/Statistic.cpp 1139986e05bcSDimitry AndricSRCS_MIN+= Support/StringExtras.cpp 1140986e05bcSDimitry AndricSRCS_MIN+= Support/StringMap.cpp 1141986e05bcSDimitry AndricSRCS_MIN+= Support/StringRef.cpp 1142986e05bcSDimitry AndricSRCS_MIN+= Support/StringSaver.cpp 114348aaf27bSDimitry AndricSRCS_MIN+= Support/SuffixTree.cpp 11445e86819cSDimitry AndricSRCS_MIN+= Support/SymbolRemappingReader.cpp 1145986e05bcSDimitry AndricSRCS_EXT+= Support/SystemUtils.cpp 11461ae4f0f6SDimitry AndricSRCS_LLD+= Support/TarWriter.cpp 11470db9a49eSDimitry AndricSRCS_MIW+= Support/ThreadPool.cpp 1148986e05bcSDimitry AndricSRCS_MIN+= Support/Threading.cpp 11494014a71fSDimitry AndricSRCS_MIN+= Support/TimeProfiler.cpp 1150986e05bcSDimitry AndricSRCS_MIN+= Support/Timer.cpp 1151986e05bcSDimitry AndricSRCS_MIN+= Support/ToolOutputFile.cpp 115209bfd043SDimitry AndricSRCS_MIN+= Support/TrigramIndex.cpp 1153986e05bcSDimitry AndricSRCS_MIN+= Support/Twine.cpp 1154fe6060f1SDimitry AndricSRCS_MIN+= Support/TypeSize.cpp 1155986e05bcSDimitry AndricSRCS_MIN+= Support/Unicode.cpp 11569f6e9a9fSDimitry AndricSRCS_MIN+= Support/UnicodeCaseFold.cpp 115781ad6265SDimitry AndricSRCS_MIN+= Support/UnicodeNameToCodepoint.cpp 115881ad6265SDimitry AndricSRCS_MIN+= Support/UnicodeNameToCodepointGenerated.cpp 1159986e05bcSDimitry AndricSRCS_MIN+= Support/Valgrind.cpp 11605e86819cSDimitry AndricSRCS_MIN+= Support/VirtualFileSystem.cpp 11619f6e9a9fSDimitry AndricSRCS_MIN+= Support/VersionTuple.cpp 11624014a71fSDimitry AndricSRCS_MIN+= Support/Watchdog.cpp 116380a8c751SEd MasteSRCS_MIN+= Support/WithColor.cpp 1164986e05bcSDimitry AndricSRCS_MIN+= Support/YAMLParser.cpp 1165986e05bcSDimitry AndricSRCS_MIN+= Support/YAMLTraits.cpp 116623559b6aSDimitry AndricSRCS_FUL+= Support/Z3Solver.cpp 1167986e05bcSDimitry AndricSRCS_MIN+= Support/circular_raw_ostream.cpp 1168986e05bcSDimitry AndricSRCS_MIN+= Support/raw_os_ostream.cpp 1169986e05bcSDimitry AndricSRCS_MIN+= Support/raw_ostream.cpp 1170986e05bcSDimitry AndricSRCS_MIN+= Support/regcomp.c 1171986e05bcSDimitry AndricSRCS_MIN+= Support/regerror.c 1172986e05bcSDimitry AndricSRCS_MIN+= Support/regexec.c 1173986e05bcSDimitry AndricSRCS_MIN+= Support/regfree.c 1174986e05bcSDimitry AndricSRCS_MIN+= Support/regstrlcpy.c 117580a8c751SEd MasteSRCS_MIN+= Support/xxhash.cpp 1176d409305fSDimitry AndricSRCS_MIN+= TableGen/DetailedRecordsBackend.cpp 1177986e05bcSDimitry AndricSRCS_MIN+= TableGen/Error.cpp 1178d25b9f8fSDimitry AndricSRCS_MIN+= TableGen/JSONBackend.cpp 1179986e05bcSDimitry AndricSRCS_MIN+= TableGen/Main.cpp 1180986e05bcSDimitry AndricSRCS_MIN+= TableGen/Record.cpp 1181986e05bcSDimitry AndricSRCS_MIN+= TableGen/SetTheory.cpp 1182986e05bcSDimitry AndricSRCS_MIN+= TableGen/StringMatcher.cpp 1183986e05bcSDimitry AndricSRCS_MIN+= TableGen/TGLexer.cpp 1184986e05bcSDimitry AndricSRCS_MIN+= TableGen/TGParser.cpp 1185986e05bcSDimitry AndricSRCS_MIN+= TableGen/TableGenBackend.cpp 1186cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no" 1187986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64A53Fix835769.cpp 1188986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64A57FPLoadBalancing.cpp 1189986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64AdvSIMDScalarPass.cpp 1190986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64AsmPrinter.cpp 11915e86819cSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64BranchTargets.cpp 11924014a71fSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CallingConvention.cpp 1193986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp 1194986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CollectLOH.cpp 11955e86819cSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CompressJumpTables.cpp 1196edd7eaddSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CondBrTuning.cpp 1197986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ConditionOptimizer.cpp 1198986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ConditionalCompares.cpp 1199986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp 12004014a71fSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ExpandImm.cpp 1201986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ExpandPseudoInsts.cpp 1202b40b48b8SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64FalkorHWPFFix.cpp 1203986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64FastISel.cpp 1204986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64FrameLowering.cpp 1205986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ISelDAGToDAG.cpp 1206986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ISelLowering.cpp 1207986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64InstrInfo.cpp 1208*bdd1243dSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64KCFI.cpp 1209986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64LoadStoreOptimizer.cpp 1210fe6060f1SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64LowerHomogeneousPrologEpilog.cpp 1211986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MCInstLower.cpp 12125e801ac6SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MIPeepholeOpt.cpp 121348aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MachineFunctionInfo.cpp 121481ad6265SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MachineScheduler.cpp 12155897d2f0SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MacroFusion.cpp 1216986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64PBQPRegAlloc.cpp 1217986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64PromoteConstant.cpp 1218986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64RedundantCopyElimination.cpp 1219986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64RegisterInfo.cpp 122036cb3905SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64SIMDInstrOpt.cpp 122148aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64SLSHardening.cpp 1222986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64SelectionDAGInfo.cpp 12235e86819cSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64SpeculationHardening.cpp 12244014a71fSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64StackTagging.cpp 12259771cac2SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64StackTaggingPreRA.cpp 1226986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64StorePairSuppress.cpp 1227986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64Subtarget.cpp 1228986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64TargetMachine.cpp 1229986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64TargetObjectFile.cpp 1230986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64TargetTransformInfo.cpp 1231986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AsmParser/AArch64AsmParser.cpp 123230d4828eSDimitry AndricSRCS_XDW+= Target/AArch64/Disassembler/AArch64Disassembler.cpp 123330d4828eSDimitry AndricSRCS_XDW+= Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp 123448aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64CallLowering.cpp 1235fe6060f1SDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64GlobalISelUtils.cpp 123648aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64InstructionSelector.cpp 123748aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64LegalizerInfo.cpp 1238fe6060f1SDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64O0PreLegalizerCombiner.cpp 123948aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64PreLegalizerCombiner.cpp 124048aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64PostLegalizerCombiner.cpp 1241e8d8bef9SDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64PostLegalizerLowering.cpp 1242e8d8bef9SDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64PostSelectOptimize.cpp 124348aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64RegisterBankInfo.cpp 1244986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp 1245986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp 1246986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp 12474014a71fSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp 1248986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp 1249986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp 1250986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp 1251986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp 1252986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp 1253986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp 1254a580b014SDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp 1255a580b014SDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp 1256*bdd1243dSDimitry AndricSRCS_MIN+= Target/AArch64/SMEABIPass.cpp 125748aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/SVEIntrinsicOpts.cpp 1258986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/TargetInfo/AArch64TargetInfo.cpp 1259986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/Utils/AArch64BaseInfo.cpp 1260*bdd1243dSDimitry AndricSRCS_MIN+= Target/AArch64/Utils/AArch64SMEAttributes.cpp 1261cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64 1262cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no" 1263986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/A15SDOptimizer.cpp 1264986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMAsmPrinter.cpp 1265986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMBaseInstrInfo.cpp 1266986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMBaseRegisterInfo.cpp 12674014a71fSDimitry AndricSRCS_MIN+= Target/ARM/ARMBasicBlockInfo.cpp 1268e8d8bef9SDimitry AndricSRCS_MIN+= Target/ARM/ARMBlockPlacement.cpp 12694824e7fdSDimitry AndricSRCS_MIN+= Target/ARM/ARMBranchTargets.cpp 12703d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMCallLowering.cpp 12714014a71fSDimitry AndricSRCS_MIN+= Target/ARM/ARMCallingConv.cpp 1272986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMConstantIslandPass.cpp 1273986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMConstantPoolValue.cpp 1274986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMExpandPseudoInsts.cpp 1275986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMFastISel.cpp 127681ad6265SDimitry AndricSRCS_MIN+= Target/ARM/ARMFixCortexA57AES1742098Pass.cpp 1277986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMFrameLowering.cpp 1278986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMHazardRecognizer.cpp 1279986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMISelDAGToDAG.cpp 1280986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMISelLowering.cpp 1281986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMInstrInfo.cpp 12823d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMInstructionSelector.cpp 12833d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMLegalizerInfo.cpp 1284986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMLoadStoreOptimizer.cpp 12854014a71fSDimitry AndricSRCS_MIN+= Target/ARM/ARMLowOverheadLoops.cpp 1286986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMMCInstLower.cpp 1287986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMMachineFunctionInfo.cpp 1288edd7eaddSDimitry AndricSRCS_MIN+= Target/ARM/ARMMacroFusion.cpp 1289986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMOptimizeBarriersPass.cpp 12909f6e9a9fSDimitry AndricSRCS_MIN+= Target/ARM/ARMParallelDSP.cpp 12913d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMRegisterBankInfo.cpp 1292986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMRegisterInfo.cpp 1293e8d8bef9SDimitry AndricSRCS_MIN+= Target/ARM/ARMSLSHardening.cpp 1294986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMSelectionDAGInfo.cpp 1295986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMSubtarget.cpp 1296986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMTargetMachine.cpp 1297986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMTargetObjectFile.cpp 1298986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMTargetTransformInfo.cpp 1299986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/AsmParser/ARMAsmParser.cpp 1300986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Disassembler/ARMDisassembler.cpp 1301986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMAsmBackend.cpp 1302986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp 1303986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMELFStreamer.cpp 13044014a71fSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMInstPrinter.cpp 1305986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp 1306986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp 1307986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCExpr.cpp 1308986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp 1309986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp 1310986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp 1311986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp 1312986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp 1313986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp 1314986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp 1315986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MLxExpansionPass.cpp 13169771cac2SDimitry AndricSRCS_MIN+= Target/ARM/MVEGatherScatterLowering.cpp 1317fe6060f1SDimitry AndricSRCS_MIN+= Target/ARM/MVELaneInterleavingPass.cpp 1318fe6060f1SDimitry AndricSRCS_MIN+= Target/ARM/MVETPAndVPTOptimisationsPass.cpp 13199771cac2SDimitry AndricSRCS_MIN+= Target/ARM/MVETailPredication.cpp 13209771cac2SDimitry AndricSRCS_MIN+= Target/ARM/MVEVPTBlockPass.cpp 1321986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/TargetInfo/ARMTargetInfo.cpp 1322986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb1FrameLowering.cpp 1323986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb1InstrInfo.cpp 1324986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb2ITBlockPass.cpp 1325986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb2InstrInfo.cpp 1326986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb2SizeReduction.cpp 1327986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ThumbRegisterInfo.cpp 132836cb3905SDimitry AndricSRCS_MIN+= Target/ARM/Utils/ARMBaseInfo.cpp 1329cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM 133089edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no" 133189edb881SDimitry AndricSRCS_MIN+= Target/BPF/AsmParser/BPFAsmParser.cpp 1332a9365f4aSDimitry AndricSRCS_MIN+= Target/BPF/BPFAbstractMemberAccess.cpp 1333d30dc78fSDimitry AndricSRCS_MIN+= Target/BPF/BPFAdjustOpt.cpp 133489edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFAsmPrinter.cpp 1335d30dc78fSDimitry AndricSRCS_MIN+= Target/BPF/BPFCheckAndAdjustIR.cpp 133689edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFFrameLowering.cpp 13375e801ac6SDimitry AndricSRCS_MIN+= Target/BPF/BPFIRPeephole.cpp 133889edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFISelDAGToDAG.cpp 133989edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFISelLowering.cpp 134089edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFInstrInfo.cpp 134189edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFMCInstLower.cpp 13420a462115SDimitry AndricSRCS_MIN+= Target/BPF/BPFMIChecking.cpp 1343f9c0a512SDimitry AndricSRCS_MIN+= Target/BPF/BPFMIPeephole.cpp 1344a9365f4aSDimitry AndricSRCS_MIN+= Target/BPF/BPFMISimplifyPatchable.cpp 13451c1ab429SDimitry AndricSRCS_MIN+= Target/BPF/BPFPreserveDIType.cpp 134689edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFRegisterInfo.cpp 1347f9c0a512SDimitry AndricSRCS_MIN+= Target/BPF/BPFSelectionDAGInfo.cpp 134889edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFSubtarget.cpp 134989edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFTargetMachine.cpp 13500a462115SDimitry AndricSRCS_MIN+= Target/BPF/BTFDebug.cpp 135189edb881SDimitry AndricSRCS_MIN+= Target/BPF/Disassembler/BPFDisassembler.cpp 135289edb881SDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFAsmBackend.cpp 135389edb881SDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp 13544014a71fSDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFInstPrinter.cpp 135589edb881SDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp 135689edb881SDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp 135789edb881SDimitry AndricSRCS_MIN+= Target/BPF/TargetInfo/BPFTargetInfo.cpp 135889edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF 1359cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no" 1360986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/AsmParser/MipsAsmParser.cpp 136130d4828eSDimitry AndricSRCS_XDW+= Target/Mips/Disassembler/MipsDisassembler.cpp 1362986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp 1363986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsABIInfo.cpp 1364986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsAsmBackend.cpp 1365986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp 1366986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsELFStreamer.cpp 13674014a71fSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsInstPrinter.cpp 1368986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp 1369986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp 1370986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCExpr.cpp 1371986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp 1372986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp 1373986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsOptionRecord.cpp 1374986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp 1375f37b6182SDimitry AndricSRCS_MIN+= Target/Mips/MicroMipsSizeReduction.cpp 1376986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16FrameLowering.cpp 1377986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16HardFloat.cpp 1378986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16HardFloatInfo.cpp 1379986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16ISelDAGToDAG.cpp 1380986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16ISelLowering.cpp 1381986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16InstrInfo.cpp 1382986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16RegisterInfo.cpp 1383986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsAnalyzeImmediate.cpp 1384986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsAsmPrinter.cpp 13859f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsBranchExpansion.cpp 1386986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsCCState.cpp 13879f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsCallLowering.cpp 1388986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsConstantIslandPass.cpp 1389986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsDelaySlotFiller.cpp 13909f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsExpandPseudo.cpp 1391986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsFastISel.cpp 1392986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsFrameLowering.cpp 1393986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsISelDAGToDAG.cpp 1394986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsISelLowering.cpp 1395986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsInstrInfo.cpp 13969f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsInstructionSelector.cpp 13979f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsLegalizerInfo.cpp 1398986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsMCInstLower.cpp 1399986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsMachineFunction.cpp 1400986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsModuleISelDAGToDAG.cpp 14014b1174e2SDimitry AndricSRCS_MIN+= Target/Mips/MipsMulMulBugPass.cpp 1402986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsOptimizePICCall.cpp 1403986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsOs16.cpp 14045e86819cSDimitry AndricSRCS_MIN+= Target/Mips/MipsPreLegalizerCombiner.cpp 140581ad6265SDimitry AndricSRCS_MIN+= Target/Mips/MipsPostLegalizerCombiner.cpp 14069f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsRegisterBankInfo.cpp 1407986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsRegisterInfo.cpp 1408986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEFrameLowering.cpp 1409986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEISelDAGToDAG.cpp 1410986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEISelLowering.cpp 1411986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEInstrInfo.cpp 1412986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSERegisterInfo.cpp 1413986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSubtarget.cpp 1414986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsTargetMachine.cpp 1415986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsTargetObjectFile.cpp 141681ad6265SDimitry AndricSRCS_MIN+= Target/Mips/MipsTargetTransformInfo.cpp 1417986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/TargetInfo/MipsTargetInfo.cpp 1418cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS 1419cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no" 1420986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/AsmParser/PPCAsmParser.cpp 1421986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/Disassembler/PPCDisassembler.cpp 1422e8d8bef9SDimitry AndricSRCS_MIN+= Target/PowerPC/GISel/PPCCallLowering.cpp 1423e8d8bef9SDimitry AndricSRCS_MIN+= Target/PowerPC/GISel/PPCInstructionSelector.cpp 1424e8d8bef9SDimitry AndricSRCS_MIN+= Target/PowerPC/GISel/PPCLegalizerInfo.cpp 1425e8d8bef9SDimitry AndricSRCS_MIN+= Target/PowerPC/GISel/PPCRegisterBankInfo.cpp 1426986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp 1427986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp 142848aaf27bSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCELFStreamer.cpp 14294014a71fSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCInstPrinter.cpp 1430986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp 1431986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp 1432986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp 1433986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp 1434986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCPredicates.cpp 14354014a71fSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCXCOFFObjectWriter.cpp 1436fe6060f1SDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCXCOFFStreamer.cpp 1437986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCAsmPrinter.cpp 1438986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCBoolRetToInt.cpp 143936cb3905SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCBranchCoalescing.cpp 1440986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCBranchSelector.cpp 1441986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCCCState.cpp 1442986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCCTRLoops.cpp 144381ad6265SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCCTRLoopsVerify.cpp 14444014a71fSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCCallingConv.cpp 1445986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCEarlyReturn.cpp 1446fe6060f1SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCExpandAtomicPseudoInsts.cpp 14475897d2f0SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCExpandISEL.cpp 1448986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCFastISel.cpp 1449986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCFrameLowering.cpp 145081ad6265SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCGenScalarMASSEntries.cpp 1451986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCHazardRecognizers.cpp 1452986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCISelDAGToDAG.cpp 1453986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCISelLowering.cpp 1454986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCInstrInfo.cpp 14559771cac2SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCLoopInstrFormPrep.cpp 14569771cac2SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCLowerMASSVEntries.cpp 145748aaf27bSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMacroFusion.cpp 1458986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMCInstLower.cpp 1459986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMIPeephole.cpp 1460986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMachineFunctionInfo.cpp 14614014a71fSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMachineScheduler.cpp 146236cb3905SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCPreEmitPeephole.cpp 146336cb3905SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCReduceCRLogicals.cpp 1464986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCRegisterInfo.cpp 1465986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCSubtarget.cpp 1466986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTLSDynamicCall.cpp 1467986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTOCRegDeps.cpp 1468986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTargetMachine.cpp 1469986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTargetObjectFile.cpp 1470986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTargetTransformInfo.cpp 1471986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCVSXCopy.cpp 1472986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCVSXFMAMutate.cpp 1473986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCVSXSwapRemoval.cpp 1474986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp 1475cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC 1476b2689b12SMitchell Horne.if ${MK_LLVM_TARGET_RISCV} != "no" 1477b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/AsmParser/RISCVAsmParser.cpp 1478b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/Disassembler/RISCVDisassembler.cpp 1479*bdd1243dSDimitry AndricSRCS_MIN+= Target/RISCV/GISel/RISCVCallLowering.cpp 1480*bdd1243dSDimitry AndricSRCS_MIN+= Target/RISCV/GISel/RISCVInstructionSelector.cpp 1481*bdd1243dSDimitry AndricSRCS_MIN+= Target/RISCV/GISel/RISCVLegalizerInfo.cpp 1482*bdd1243dSDimitry AndricSRCS_MIN+= Target/RISCV/GISel/RISCVRegisterBankInfo.cpp 1483*bdd1243dSDimitry AndricSRCS_EXT+= Target/RISCV/MCA/RISCVCustomBehaviour.cpp 1484b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp 1485e8d8bef9SDimitry AndricSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVBaseInfo.cpp 1486b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp 1487b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVELFStreamer.cpp 14884014a71fSDimitry AndricSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVInstPrinter.cpp 1489e8d8bef9SDimitry AndricSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMatInt.cpp 1490b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.cpp 1491b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp 1492b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp 14935e801ac6SDimitry AndricSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMCObjectFileInfo.cpp 1494b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp 1495b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVTargetStreamer.cpp 1496b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVAsmPrinter.cpp 1497fcaf7f86SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVCodeGenPrepare.cpp 149848aaf27bSDimitry AndricSRCS_MIN+= Target/RISCV/RISCVExpandAtomicPseudoInsts.cpp 1499b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVExpandPseudoInsts.cpp 1500b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVFrameLowering.cpp 15015e801ac6SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVGatherScatterLowering.cpp 1502fe6060f1SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVInsertVSETVLI.cpp 1503b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVInstrInfo.cpp 1504b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVISelDAGToDAG.cpp 1505b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVISelLowering.cpp 1506b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVMCInstLower.cpp 15073a9a9c0cSDimitry AndricSRCS_MIN+= Target/RISCV/RISCVMachineFunctionInfo.cpp 150881ad6265SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVMacroFusion.cpp 150981ad6265SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVMakeCompressible.cpp 1510b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVMergeBaseOffset.cpp 151181ad6265SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVRedundantCopyElimination.cpp 1512b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVRegisterInfo.cpp 151304eeddc0SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVSExtWRemoval.cpp 1514*bdd1243dSDimitry AndricSRCS_MIN+= Target/RISCV/RISCVStripWSuffix.cpp 1515b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVSubtarget.cpp 1516b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVTargetMachine.cpp 1517b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVTargetObjectFile.cpp 1518869fe6d5SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVTargetTransformInfo.cpp 1519b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/TargetInfo/RISCVTargetInfo.cpp 1520b2689b12SMitchell Horne.endif # MK_LLVM_TARGET_RISCV 1521986e05bcSDimitry AndricSRCS_MIN+= Target/Target.cpp 1522986e05bcSDimitry AndricSRCS_MIN+= Target/TargetLoweringObjectFile.cpp 1523986e05bcSDimitry AndricSRCS_MIN+= Target/TargetMachine.cpp 1524986e05bcSDimitry AndricSRCS_MIN+= Target/TargetMachineC.cpp 1525cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no" 1526986e05bcSDimitry AndricSRCS_MIN+= Target/X86/AsmParser/X86AsmParser.cpp 152730d4828eSDimitry AndricSRCS_XDW+= Target/X86/Disassembler/X86Disassembler.cpp 15283a9a9c0cSDimitry AndricSRCS_EXT+= Target/X86/MCA/X86CustomBehaviour.cpp 15294014a71fSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86ATTInstPrinter.cpp 1530986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86AsmBackend.cpp 1531986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp 15324014a71fSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86InstComments.cpp 15334014a71fSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86InstPrinterCommon.cpp 153481ad6265SDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86InstrRelaxTables.cpp 15354014a71fSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86IntelInstPrinter.cpp 1536986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MCAsmInfo.cpp 1537986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp 1538986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MCTargetDesc.cpp 1539986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MachObjectWriter.cpp 154081ad6265SDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MnemonicTables.cpp 154148aaf27bSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86ShuffleDecode.cpp 1542986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp 1543986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp 154436cb3905SDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp 1545986e05bcSDimitry AndricSRCS_MIN+= Target/X86/TargetInfo/X86TargetInfo.cpp 1546986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86AsmPrinter.cpp 15479f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86AvoidStoreForwardingBlocks.cpp 15489771cac2SDimitry AndricSRCS_MIN+= Target/X86/X86AvoidTrailingCall.cpp 1549986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86CallFrameOptimization.cpp 15503d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86CallLowering.cpp 155109bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86CallingConv.cpp 1552b40b48b8SDimitry AndricSRCS_MIN+= Target/X86/X86CmovConversion.cpp 15535e86819cSDimitry AndricSRCS_MIN+= Target/X86/X86DiscriminateMemOps.cpp 155436cb3905SDimitry AndricSRCS_MIN+= Target/X86/X86DomainReassignment.cpp 15555e801ac6SDimitry AndricSRCS_MIN+= Target/X86/X86DynAllocaExpander.cpp 155609bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86EvexToVex.cpp 1557986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ExpandPseudo.cpp 1558986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FastISel.cpp 155981ad6265SDimitry AndricSRCS_MIN+= Target/X86/X86FastPreTileConfig.cpp 1560fe6060f1SDimitry AndricSRCS_MIN+= Target/X86/X86FastTileConfig.cpp 1561986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FixupBWInsts.cpp 1562986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FixupLEAs.cpp 1563986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FixupSetCC.cpp 15640556cfadSDimitry AndricSRCS_MIN+= Target/X86/X86FlagsCopyLowering.cpp 1565986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FloatingPoint.cpp 1566986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FrameLowering.cpp 1567986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ISelDAGToDAG.cpp 1568986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ISelLowering.cpp 15699f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86IndirectBranchTracking.cpp 15700946e70aSDimitry AndricSRCS_MIN+= Target/X86/X86IndirectThunks.cpp 15715e86819cSDimitry AndricSRCS_MIN+= Target/X86/X86InsertPrefetch.cpp 157248aaf27bSDimitry AndricSRCS_MIN+= Target/X86/X86InsertWait.cpp 1573e8d8bef9SDimitry AndricSRCS_MIN+= Target/X86/X86InstCombineIntrinsic.cpp 157409bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86InstrFMA3Info.cpp 15759f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86InstrFoldTables.cpp 1576986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86InstrInfo.cpp 15773d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86InstructionSelector.cpp 157809bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86InterleavedAccess.cpp 1579*bdd1243dSDimitry AndricSRCS_MIN+= Target/X86/X86KCFI.cpp 15803d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86LegalizerInfo.cpp 15810946e70aSDimitry AndricSRCS_MIN+= Target/X86/X86LoadValueInjectionLoadHardening.cpp 15820946e70aSDimitry AndricSRCS_MIN+= Target/X86/X86LoadValueInjectionRetHardening.cpp 1583fe6060f1SDimitry AndricSRCS_MIN+= Target/X86/X86LowerAMXIntrinsics.cpp 1584e8d8bef9SDimitry AndricSRCS_MIN+= Target/X86/X86LowerAMXType.cpp 1585fe6060f1SDimitry AndricSRCS_MIN+= Target/X86/X86LowerTileCopy.cpp 1586986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86MCInstLower.cpp 1587986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86MachineFunctionInfo.cpp 15885897d2f0SDimitry AndricSRCS_MIN+= Target/X86/X86MacroFusion.cpp 1589986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86OptimizeLEAs.cpp 1590986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86PadShortFunction.cpp 159148aaf27bSDimitry AndricSRCS_MIN+= Target/X86/X86PartialReduction.cpp 1592fe6060f1SDimitry AndricSRCS_MIN+= Target/X86/X86PreAMXConfig.cpp 1593e8d8bef9SDimitry AndricSRCS_MIN+= Target/X86/X86PreTileConfig.cpp 15943d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86RegisterBankInfo.cpp 1595986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86RegisterInfo.cpp 1596753f127fSDimitry AndricSRCS_MIN+= Target/X86/X86ReturnThunks.cpp 1597986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86SelectionDAGInfo.cpp 1598986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ShuffleDecodeConstantPool.cpp 159948aaf27bSDimitry AndricSRCS_MIN+= Target/X86/X86SpeculativeExecutionSideEffectSuppression.cpp 16009f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86SpeculativeLoadHardening.cpp 1601986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86Subtarget.cpp 1602986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86TargetMachine.cpp 1603986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86TargetObjectFile.cpp 1604986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86TargetTransformInfo.cpp 1605e8d8bef9SDimitry AndricSRCS_MIN+= Target/X86/X86TileConfig.cpp 1606986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86VZeroUpper.cpp 1607986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86WinEHState.cpp 1608cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86 1609*bdd1243dSDimitry AndricSRCS_MIN+= TargetParser/AArch64TargetParser.cpp 1610*bdd1243dSDimitry AndricSRCS_MIN+= TargetParser/ARMTargetParser.cpp 1611*bdd1243dSDimitry AndricSRCS_MIN+= TargetParser/ARMTargetParserCommon.cpp 1612*bdd1243dSDimitry AndricSRCS_MIN+= TargetParser/CSKYTargetParser.cpp 1613*bdd1243dSDimitry AndricSRCS_MIN+= TargetParser/Host.cpp 1614*bdd1243dSDimitry AndricSRCS_MIN+= TargetParser/LoongArchTargetParser.cpp 1615*bdd1243dSDimitry AndricSRCS_MIN+= TargetParser/RISCVTargetParser.cpp 1616*bdd1243dSDimitry AndricSRCS_MIN+= TargetParser/TargetParser.cpp 1617*bdd1243dSDimitry AndricSRCS_MIN+= TargetParser/Triple.cpp 1618*bdd1243dSDimitry AndricSRCS_MIN+= TargetParser/X86TargetParser.cpp 1619fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/Architecture.cpp 1620fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/ArchitectureSet.cpp 1621fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/InterfaceFile.cpp 1622fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/PackedVersion.cpp 1623fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/Platform.cpp 1624fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/Target.cpp 1625fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/TextStub.cpp 1626fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/TextStubCommon.cpp 16279c954a48SEd MasteSRCS_MIN+= ToolDrivers/llvm-dlltool/DlltoolDriver.cpp 16280db9a49eSDimitry AndricSRCS_MIW+= ToolDrivers/llvm-lib/LibDriver.cpp 16299f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp 16309f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/AggressiveInstCombine/TruncInstCombine.cpp 16319771cac2SDimitry AndricSRCS_MIN+= Transforms/CFGuard/CFGuard.cpp 163209bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroCleanup.cpp 163381ad6265SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroConditionalWrapper.cpp 163409bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroEarly.cpp 163509bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroElide.cpp 163609bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroFrame.cpp 163709bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroSplit.cpp 163809bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/Coroutines.cpp 163909bfd043SDimitry AndricSRCS_MIN+= Transforms/IPO/AlwaysInliner.cpp 1640e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/IPO/Annotation2Metadata.cpp 1641986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ArgumentPromotion.cpp 16424014a71fSDimitry AndricSRCS_MIN+= Transforms/IPO/Attributor.cpp 164348aaf27bSDimitry AndricSRCS_MIN+= Transforms/IPO/AttributorAttributes.cpp 1644986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/BarrierNoopPass.cpp 1645e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/IPO/BlockExtractor.cpp 164636cb3905SDimitry AndricSRCS_MIN+= Transforms/IPO/CalledValuePropagation.cpp 1647986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ConstantMerge.cpp 1648986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/CrossDSOCFI.cpp 1649986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/DeadArgumentElimination.cpp 1650986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ElimAvailExtern.cpp 1651986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ExtractGV.cpp 1652986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ForceFunctionAttrs.cpp 1653986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/FunctionAttrs.cpp 1654986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/FunctionImport.cpp 1655fe6060f1SDimitry AndricSRCS_MIN+= Transforms/IPO/FunctionSpecialization.cpp 1656986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/GlobalDCE.cpp 1657986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/GlobalOpt.cpp 165809bfd043SDimitry AndricSRCS_MIN+= Transforms/IPO/GlobalSplit.cpp 16595e86819cSDimitry AndricSRCS_MIN+= Transforms/IPO/HotColdSplitting.cpp 1660986e05bcSDimitry AndricSRCS_EXT+= Transforms/IPO/IPO.cpp 1661e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/IPO/IROutliner.cpp 1662986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/InferFunctionAttrs.cpp 1663986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/InlineSimple.cpp 1664986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/Inliner.cpp 1665986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/Internalize.cpp 1666986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/LoopExtractor.cpp 1667986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/LowerTypeTests.cpp 1668986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/MergeFunctions.cpp 16695e801ac6SDimitry AndricSRCS_MIN+= Transforms/IPO/ModuleInliner.cpp 167048aaf27bSDimitry AndricSRCS_MIN+= Transforms/IPO/OpenMPOpt.cpp 1671986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/PartialInlining.cpp 1672986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/PassManagerBuilder.cpp 16739f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/IPO/SCCP.cpp 1674e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/IPO/SampleContextTracker.cpp 1675986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/SampleProfile.cpp 1676e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/IPO/SampleProfileProbe.cpp 1677986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/StripDeadPrototypes.cpp 1678986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/StripSymbols.cpp 16799f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/IPO/SyntheticCountsPropagation.cpp 168009bfd043SDimitry AndricSRCS_MIN+= Transforms/IPO/ThinLTOBitcodeWriter.cpp 1681986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/WholeProgramDevirt.cpp 1682986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineAddSub.cpp 1683986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineAndOrXor.cpp 16844014a71fSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineAtomicRMW.cpp 1685986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineCalls.cpp 1686986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineCasts.cpp 1687986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineCompares.cpp 1688986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp 1689986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineMulDivRem.cpp 169048aaf27bSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineNegator.cpp 1691986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombinePHI.cpp 1692986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineSelect.cpp 1693986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineShifts.cpp 1694986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineSimplifyDemanded.cpp 1695986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineVectorOps.cpp 1696986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstructionCombining.cpp 1697986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/AddressSanitizer.cpp 1698986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/BoundsChecking.cpp 16999f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/CGProfile.cpp 17005e86819cSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/ControlHeightReduction.cpp 1701986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/DataFlowSanitizer.cpp 1702986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/GCOVProfiling.cpp 170336cb3905SDimitry AndricSRCS_MIN+= Transforms/Instrumentation/HWAddressSanitizer.cpp 1704986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/IndirectCallPromotion.cpp 17054014a71fSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/InstrOrderFile.cpp 1706986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/InstrProfiling.cpp 1707986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/Instrumentation.cpp 1708*bdd1243dSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/KCFI.cpp 1709e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Instrumentation/MemProfiler.cpp 1710986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/MemorySanitizer.cpp 1711986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/PGOInstrumentation.cpp 171224d58133SDimitry AndricSRCS_MIN+= Transforms/Instrumentation/PGOMemOPSizeOpt.cpp 17134014a71fSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/PoisonChecking.cpp 1714986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/SanitizerCoverage.cpp 1715*bdd1243dSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/SanitizerBinaryMetadata.cpp 1716986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/ThreadSanitizer.cpp 17179771cac2SDimitry AndricSRCS_MIN+= Transforms/Instrumentation/ValueProfileCollector.cpp 1718986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/DependencyAnalysis.cpp 1719fe6060f1SDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARC.cpp 1720986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCAPElim.cpp 1721986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCContract.cpp 1722986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCExpand.cpp 1723986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCOpts.cpp 1724986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ProvenanceAnalysis.cpp 1725986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp 1726986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/PtrState.cpp 1727986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/ADCE.cpp 1728986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/AlignmentFromAssumptions.cpp 1729e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Scalar/AnnotationRemarks.cpp 1730986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/BDCE.cpp 173136cb3905SDimitry AndricSRCS_MIN+= Transforms/Scalar/CallSiteSplitting.cpp 1732986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/ConstantHoisting.cpp 1733e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Scalar/ConstraintElimination.cpp 1734986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/CorrelatedValuePropagation.cpp 1735986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/DCE.cpp 1736fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Scalar/DFAJumpThreading.cpp 1737986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/DeadStoreElimination.cpp 173836cb3905SDimitry AndricSRCS_MIN+= Transforms/Scalar/DivRemPairs.cpp 1739986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/EarlyCSE.cpp 1740986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/FlattenCFGPass.cpp 1741986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Float2Int.cpp 1742986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/GVN.cpp 1743986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/GVNHoist.cpp 1744302affcbSDimitry AndricSRCS_MIN+= Transforms/Scalar/GVNSink.cpp 1745986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/GuardWidening.cpp 1746f1a29dd3SDimitry AndricSRCS_MIN+= Transforms/Scalar/IVUsersPrinter.cpp 1747986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/IndVarSimplify.cpp 1748986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/InductiveRangeCheckElimination.cpp 1749e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Scalar/InferAddressSpaces.cpp 17509f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Scalar/InstSimplifyPass.cpp 1751986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/JumpThreading.cpp 1752986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LICM.cpp 1753f1a29dd3SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopAccessAnalysisPrinter.cpp 1754fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopBoundSplit.cpp 1755986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopDataPrefetch.cpp 1756986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopDeletion.cpp 1757986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopDistribute.cpp 1758e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopFlatten.cpp 17594014a71fSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopFuse.cpp 1760986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopIdiomRecognize.cpp 176109bfd043SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopInstSimplify.cpp 1762986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopInterchange.cpp 1763986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopLoadElimination.cpp 1764f1a29dd3SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopPassManager.cpp 17655897d2f0SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopPredication.cpp 1766986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopRerollPass.cpp 1767986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopRotation.cpp 1768986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopSimplifyCFG.cpp 176909bfd043SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopSink.cpp 1770986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopStrengthReduce.cpp 1771986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopUnrollPass.cpp 17729f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopUnrollAndJamPass.cpp 1773986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopVersioningLICM.cpp 177481ad6265SDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerAtomicPass.cpp 17759771cac2SDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerConstantIntrinsics.cpp 1776986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerExpectIntrinsic.cpp 1777986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerGuardIntrinsic.cpp 17789771cac2SDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerMatrixIntrinsics.cpp 17794014a71fSDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerWidenableCondition.cpp 17805e86819cSDimitry AndricSRCS_MIN+= Transforms/Scalar/MakeGuardsExplicit.cpp 1781986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/MemCpyOptimizer.cpp 178236cb3905SDimitry AndricSRCS_MIN+= Transforms/Scalar/MergeICmps.cpp 1783986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/MergedLoadStoreMotion.cpp 1784986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/NaryReassociate.cpp 178509bfd043SDimitry AndricSRCS_MIN+= Transforms/Scalar/NewGVN.cpp 1786986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/PartiallyInlineLibCalls.cpp 1787986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/PlaceSafepoints.cpp 1788986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Reassociate.cpp 1789986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Reg2Mem.cpp 1790986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/RewriteStatepointsForGC.cpp 1791986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SCCP.cpp 1792986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SROA.cpp 1793986e05bcSDimitry AndricSRCS_EXT+= Transforms/Scalar/Scalar.cpp 1794e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Scalar/ScalarizeMaskedMemIntrin.cpp 1795986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Scalarizer.cpp 1796986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SeparateConstOffsetFromGEP.cpp 1797f37b6182SDimitry AndricSRCS_MIN+= Transforms/Scalar/SimpleLoopUnswitch.cpp 1798986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SimplifyCFGPass.cpp 1799986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Sink.cpp 1800986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SpeculativeExecution.cpp 1801986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/StraightLineStrengthReduce.cpp 1802986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/StructurizeCFG.cpp 180381ad6265SDimitry AndricSRCS_MIN+= Transforms/Scalar/TLSVariableHoist.cpp 1804986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/TailRecursionElimination.cpp 18055e86819cSDimitry AndricSRCS_MIN+= Transforms/Scalar/WarnMissedTransforms.cpp 180648aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/AMDGPUEmitPrintf.cpp 1807986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/ASanStackFrameLayout.cpp 1808986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/AddDiscriminators.cpp 180948aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/AssumeBundleBuilder.cpp 1810986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BasicBlockUtils.cpp 1811986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BreakCriticalEdges.cpp 1812986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BuildLibCalls.cpp 1813986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BypassSlowDivision.cpp 181448aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/CallGraphUpdater.cpp 181536cb3905SDimitry AndricSRCS_MIN+= Transforms/Utils/CallPromotionUtils.cpp 18165e86819cSDimitry AndricSRCS_MIN+= Transforms/Utils/CanonicalizeAliases.cpp 181748aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/CanonicalizeFreezeInLoops.cpp 1818986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CloneFunction.cpp 1819986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CloneModule.cpp 1820986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CodeExtractor.cpp 182104eeddc0SDimitry AndricSRCS_MIN+= Transforms/Utils/CodeLayout.cpp 18229771cac2SDimitry AndricSRCS_MIN+= Transforms/Utils/CodeMoverUtils.cpp 1823986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CtorUtils.cpp 182448aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/Debugify.cpp 1825986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/DemoteRegToStack.cpp 182636cb3905SDimitry AndricSRCS_MIN+= Transforms/Utils/EntryExitInstrumenter.cpp 182709bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/EscapeEnumerator.cpp 1828986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/Evaluator.cpp 182948aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/FixIrreducible.cpp 1830986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/FlattenCFG.cpp 183109bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/FunctionComparator.cpp 1832986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/FunctionImportUtils.cpp 1833986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/GlobalStatus.cpp 18345e86819cSDimitry AndricSRCS_MIN+= Transforms/Utils/GuardUtils.cpp 1835fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/HelloWorld.cpp 18369771cac2SDimitry AndricSRCS_MIN+= Transforms/Utils/InjectTLIMappings.cpp 1837986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/InlineFunction.cpp 1838986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/InstructionNamer.cpp 1839986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/IntegerDivision.cpp 1840986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LCSSA.cpp 184109bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/LibCallsShrinkWrap.cpp 1842986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/Local.cpp 1843e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Utils/LoopPeel.cpp 1844986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopSimplify.cpp 18459f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopRotationUtils.cpp 1846986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUnroll.cpp 18479f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUnrollAndJam.cpp 1848986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUnrollRuntime.cpp 1849986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUtils.cpp 1850986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopVersioning.cpp 185181ad6265SDimitry AndricSRCS_MIN+= Transforms/Utils/LowerAtomic.cpp 185281ad6265SDimitry AndricSRCS_MIN+= Transforms/Utils/LowerGlobalDtors.cpp 1853*bdd1243dSDimitry AndricSRCS_MIN+= Transforms/Utils/LowerIFunc.cpp 1854986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LowerInvoke.cpp 1855986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LowerSwitch.cpp 1856e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Utils/MatrixUtils.cpp 1857986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/Mem2Reg.cpp 1858986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/MetaRenamer.cpp 1859fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/MemoryOpRemark.cpp 186081ad6265SDimitry AndricSRCS_MIN+= Transforms/Utils/MemoryTaggingSupport.cpp 186181ad6265SDimitry AndricSRCS_MIN+= Transforms/Utils/MisExpect.cpp 1862986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/ModuleUtils.cpp 186309bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/NameAnonGlobals.cpp 18645897d2f0SDimitry AndricSRCS_MIN+= Transforms/Utils/PredicateInfo.cpp 1865986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/PromoteMemoryToRegister.cpp 1866fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/RelLookupTableConverter.cpp 1867fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/SCCPSolver.cpp 1868986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SSAUpdater.cpp 1869fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/SSAUpdaterBulk.cpp 1870986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SanitizerStats.cpp 187148aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/ScalarEvolutionExpander.cpp 18724824e7fdSDimitry AndricSRCS_MIN+= Transforms/Utils/SampleProfileInference.cpp 1873fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/SampleProfileLoaderBaseUtil.cpp 1874986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SimplifyCFG.cpp 1875986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SimplifyIndVar.cpp 1876986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SimplifyLibCalls.cpp 18774014a71fSDimitry AndricSRCS_MIN+= Transforms/Utils/SizeOpts.cpp 1878986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SplitModule.cpp 187909bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/StripGCRelocates.cpp 188009bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/StripNonLineTableDebugInfo.cpp 1881986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SymbolRewriter.cpp 1882986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/UnifyFunctionExitNodes.cpp 188348aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/UnifyLoopExits.cpp 1884986e05bcSDimitry AndricSRCS_EXT+= Transforms/Utils/Utils.cpp 18855897d2f0SDimitry AndricSRCS_MIN+= Transforms/Utils/VNCoercion.cpp 1886986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/ValueMapper.cpp 1887986e05bcSDimitry AndricSRCS_MIN+= Transforms/Vectorize/LoadStoreVectorizer.cpp 18889f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Vectorize/LoopVectorizationLegality.cpp 1889986e05bcSDimitry AndricSRCS_MIN+= Transforms/Vectorize/LoopVectorize.cpp 1890986e05bcSDimitry AndricSRCS_MIN+= Transforms/Vectorize/SLPVectorizer.cpp 189136cb3905SDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlan.cpp 18929f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlanHCFGBuilder.cpp 189381ad6265SDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlanRecipes.cpp 18949771cac2SDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlanTransforms.cpp 18959f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlanVerifier.cpp 189648aaf27bSDimitry AndricSRCS_MIN+= Transforms/Vectorize/VectorCombine.cpp 1897986e05bcSDimitry AndricSRCS_EXT+= Transforms/Vectorize/Vectorize.cpp 189881ad6265SDimitry AndricSRCS_MIN+= WindowsDriver/MSVCPaths.cpp 1899efa75597SDimitry AndricSRCS_EXT+= XRay/BlockIndexer.cpp 1900efa75597SDimitry AndricSRCS_EXT+= XRay/BlockVerifier.cpp 1901efa75597SDimitry AndricSRCS_EXT+= XRay/FDRRecordProducer.cpp 1902efa75597SDimitry AndricSRCS_EXT+= XRay/FDRRecords.cpp 1903efa75597SDimitry AndricSRCS_EXT+= XRay/FDRTraceExpander.cpp 1904efa75597SDimitry AndricSRCS_EXT+= XRay/FileHeaderReader.cpp 1905050e2df1SDimitry AndricSRCS_EXT+= XRay/InstrumentationMap.cpp 1906efa75597SDimitry AndricSRCS_EXT+= XRay/LogBuilderConsumer.cpp 1907efa75597SDimitry AndricSRCS_EXT+= XRay/RecordInitializer.cpp 190867b158f6SDimitry AndricSRCS_EXT+= XRay/Trace.cpp 1909986e05bcSDimitry Andric 1910986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_MIN} 1911caf90252SBryan Drewery.if !defined(TOOLS_PREFIX) || ${MK_LLD_BOOTSTRAP} != "no" 191230d4828eSDimitry AndricSRCS_ALL+= ${SRCS_MIW} 191330d4828eSDimitry Andric.endif 1914986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" 1915986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_EXT} 1916986e05bcSDimitry Andric.endif 1917986e05bcSDimitry Andric.if ${MK_CLANG_FULL} != "no" 1918986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_FUL} 1919986e05bcSDimitry Andric.endif 192078187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLD} != "no" || \ 192178187278SBryan Drewery (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no") 192275bc38b9SEd MasteSRCS_ALL+= ${SRCS_EXL} 192375bc38b9SEd Maste.endif 192478187278SBryan Drewery.if ${MK_LLD} != "no" || \ 192578187278SBryan Drewery (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no") 19260fc5d238SDimitry AndricSRCS_ALL+= ${SRCS_LLD} 19270fc5d238SDimitry Andric.endif 1928986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" 1929986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_XDB} 1930986e05bcSDimitry Andric.endif 193178187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || ${MK_LLD} != "no" || \ 193278187278SBryan Drewery (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no") 193375bc38b9SEd MasteSRCS_ALL+= ${SRCS_XDL} 193475bc38b9SEd Maste.endif 193530d4828eSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || !defined(TOOLS_PREFIX) 193630d4828eSDimitry AndricSRCS_ALL+= ${SRCS_XDW} 193730d4828eSDimitry Andric.endif 193848aaf27bSDimitry AndricSRCS+= ${GENSRCS} 1939986e05bcSDimitry AndricSRCS+= ${SRCS_ALL:O} 1940986e05bcSDimitry Andric 1941d8ed7fa3SDimitry Andricllvm/Frontend/OpenMP/OMP.h.inc: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 1942d8ed7fa3SDimitry Andric ${LLVM_TBLGEN} --gen-directive-decl \ 1943d8ed7fa3SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 194448aaf27bSDimitry Andric ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 194548aaf27bSDimitry AndricTGHDRS+= llvm/Frontend/OpenMP/OMP.h.inc 194648aaf27bSDimitry Andric 1947e8d8bef9SDimitry Andricllvm/Frontend/OpenMP/OMP.inc: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 1948d8ed7fa3SDimitry Andric ${LLVM_TBLGEN} --gen-directive-impl \ 1949d8ed7fa3SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1950d8ed7fa3SDimitry Andric ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 1951e8d8bef9SDimitry AndricTGHDRS+= llvm/Frontend/OpenMP/OMP.inc 195248aaf27bSDimitry Andric 195348aaf27bSDimitry AndricOMP.cpp: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 1954d8ed7fa3SDimitry Andric ${LLVM_TBLGEN} --gen-directive-impl \ 1955d8ed7fa3SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1956d8ed7fa3SDimitry Andric ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 195748aaf27bSDimitry AndricGENSRCS+= OMP.cpp 195848aaf27bSDimitry Andric 19599f6e9a9fSDimitry Andricllvm/IR/Attributes.inc: ${LLVM_SRCS}/include/llvm/IR/Attributes.td 1960d8ed7fa3SDimitry Andric ${LLVM_TBLGEN} -gen-attrs \ 1961d8ed7fa3SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1962d8ed7fa3SDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Attributes.td 19639f6e9a9fSDimitry AndricTGHDRS+= llvm/IR/Attributes.inc 1964986e05bcSDimitry Andric 19659f6e9a9fSDimitry Andricllvm/IR/IntrinsicEnums.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 1966d8ed7fa3SDimitry Andric ${LLVM_TBLGEN} -gen-intrinsic-enums \ 1967d8ed7fa3SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1968d8ed7fa3SDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 19699f6e9a9fSDimitry AndricTGHDRS+= llvm/IR/IntrinsicEnums.inc 19709f6e9a9fSDimitry Andric 19719f6e9a9fSDimitry Andricllvm/IR/IntrinsicImpl.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 1972d8ed7fa3SDimitry Andric ${LLVM_TBLGEN} -gen-intrinsic-impl \ 1973d8ed7fa3SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1974d8ed7fa3SDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 19759f6e9a9fSDimitry AndricTGHDRS+= llvm/IR/IntrinsicImpl.inc 1976986e05bcSDimitry Andric 19779771cac2SDimitry Andric.for arch in \ 1978753f127fSDimitry Andric AArch64/aarch64 AMDGPU/amdgcn ARM/arm BPF/bpf DirectX/dx \ 1979*bdd1243dSDimitry Andric Hexagon/hexagon LoongArch/loongarch Mips/mips NVPTX/nvvm PowerPC/ppc \ 1980*bdd1243dSDimitry Andric R600/r600 RISCV/riscv S390/s390 VE/ve WebAssembly/wasm X86/x86 \ 1981*bdd1243dSDimitry Andric XCore/xcore 19829771cac2SDimitry Andricllvm/IR/Intrinsics${arch:H}.h: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 1983d8ed7fa3SDimitry Andric ${LLVM_TBLGEN} -gen-intrinsic-enums -intrinsic-prefix=${arch:T} \ 1984d8ed7fa3SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1985d8ed7fa3SDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 19869771cac2SDimitry AndricTGHDRS+= llvm/IR/Intrinsics${arch:H}.h 19879771cac2SDimitry Andric.endfor 19889771cac2SDimitry Andric 1989*bdd1243dSDimitry Andricllvm/TargetParser/RISCVTargetParserDef.inc: ${LLVM_SRCS}/lib/Target/RISCV/RISCV.td 1990*bdd1243dSDimitry Andric ${LLVM_TBLGEN} -gen-riscv-target-def \ 1991*bdd1243dSDimitry Andric -I ${LLVM_SRCS}/include -I ${LLVM_SRCS}/lib/Target/RISCV \ 1992*bdd1243dSDimitry Andric -d ${.TARGET}.d -o ${.TARGET} ${LLVM_SRCS}/lib/Target/RISCV/RISCV.td 1993*bdd1243dSDimitry AndricTGHDRS+= llvm/TargetParser/RISCVTargetParserDef.inc 1994*bdd1243dSDimitry Andric 1995b40b48b8SDimitry Andricllvm-lib/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td 1996d8ed7fa3SDimitry Andric ${LLVM_TBLGEN} -gen-opt-parser-defs \ 1997d8ed7fa3SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1998d8ed7fa3SDimitry Andric ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td 1999b40b48b8SDimitry AndricTGHDRS+= llvm-lib/Options.inc 2000b40b48b8SDimitry AndricCFLAGS.LibDriver.cpp+= -I${.OBJDIR}/llvm-lib 2001b40b48b8SDimitry Andric 2002b40b48b8SDimitry Andricllvm-dlltool/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td 2003d8ed7fa3SDimitry Andric ${LLVM_TBLGEN} -gen-opt-parser-defs \ 2004d8ed7fa3SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 2005d8ed7fa3SDimitry Andric ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td 2006b40b48b8SDimitry AndricTGHDRS+= llvm-dlltool/Options.inc 2007b40b48b8SDimitry AndricCFLAGS.DlltoolDriver.cpp+= -I${.OBJDIR}/llvm-dlltool 2008986e05bcSDimitry Andric 2009*bdd1243dSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" 2010*bdd1243dSDimitry AndricCOFFOptions.inc: ${LLVM_SRCS}/lib/ExecutionEngine/JITLink/COFFOptions.td 2011*bdd1243dSDimitry Andric ${LLVM_TBLGEN} -gen-opt-parser-defs \ 2012*bdd1243dSDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 2013*bdd1243dSDimitry Andric ${LLVM_SRCS}/lib/ExecutionEngine/JITLink/COFFOptions.td 2014*bdd1243dSDimitry AndricTGHDRS+= COFFOptions.inc 2015*bdd1243dSDimitry Andric.endif 2016*bdd1243dSDimitry Andric 2017cd283100SBryan Drewerybeforebuild: 2018cd283100SBryan Drewery# 20170724 remove stale Options.inc file, of which there are two different 201937cd60a3SDimitry Andric# versions after upstream r308421, one for llvm-lib, one for llvm-dlltool 2020cd283100SBryan Drewery.for f in Options.inc 2021cd283100SBryan Drewery.if exists(${f}) || exists(${f}.d) 2022cd283100SBryan Drewery @echo Removing stale generated ${f} files 2023cd283100SBryan Drewery @rm -f ${f} ${f}.d 2024cd283100SBryan Drewery.endif 2025cd283100SBryan Drewery.endfor 2026cd283100SBryan Drewery 2027986e05bcSDimitry Andric# Note: some rules are superfluous, not every combination is valid. 2028986e05bcSDimitry Andric.for arch in \ 20293b7fd87cSWarner Losh AArch64/AArch64 ARM/ARM BPF/BPF Mips/Mips PowerPC/PPC RISCV/RISCV \ 20303b7fd87cSWarner Losh X86/X86 2031986e05bcSDimitry Andric. for hdr in \ 2032986e05bcSDimitry Andric AsmMatcher/-gen-asm-matcher \ 2033986e05bcSDimitry Andric AsmWriter/-gen-asm-writer \ 203448aaf27bSDimitry Andric AsmWriter1/-gen-asm-writer,-asmwriternum=1 \ 2035986e05bcSDimitry Andric CallingConv/-gen-callingconv \ 2036986e05bcSDimitry Andric CodeEmitter/-gen-emitter \ 2037b2689b12SMitchell Horne CompressInstEmitter/-gen-compress-inst-emitter \ 2038986e05bcSDimitry Andric DAGISel/-gen-dag-isel \ 2039986e05bcSDimitry Andric DisassemblerTables/-gen-disassembler \ 20405897d2f0SDimitry Andric EVEX2VEXTables/-gen-x86-EVEX2VEX-tables \ 2041986e05bcSDimitry Andric FastISel/-gen-fast-isel \ 20423d54deb3SDimitry Andric GlobalISel/-gen-global-isel \ 204381ad6265SDimitry Andric InstrInfo/-gen-instr-info${arch:MX86/X86:C/X86\/X86/,-instr-info-expand-mi-operand-info=0/} \ 2044986e05bcSDimitry Andric MCCodeEmitter/-gen-emitter \ 2045986e05bcSDimitry Andric MCPseudoLowering/-gen-pseudo-lowering \ 204681ad6265SDimitry Andric MnemonicTables/-gen-x86-mnemonic-tables,-asmwriternum=1 \ 2047fe6060f1SDimitry Andric O0PreLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}O0PreLegalizerCombinerHelper \ 204848aaf27bSDimitry Andric PostLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}PostLegalizerCombinerHelper \ 2049e8d8bef9SDimitry Andric PostLegalizeGILowering/-gen-global-isel-combiner,-combiners=${arch:H}PostLegalizerLoweringHelper \ 205048aaf27bSDimitry Andric PreLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}PreLegalizerCombinerHelper \ 20515897d2f0SDimitry Andric RegisterBank/-gen-register-bank \ 2052986e05bcSDimitry Andric RegisterInfo/-gen-register-info \ 2053e8d8bef9SDimitry Andric SearchableTables/-gen-searchable-tables \ 2054986e05bcSDimitry Andric SubtargetInfo/-gen-subtarget \ 205536cb3905SDimitry Andric SystemOperands/-gen-searchable-tables \ 205636cb3905SDimitry Andric SystemRegister/-gen-searchable-tables 2057986e05bcSDimitry Andric${arch:T}Gen${hdr:H}.inc: ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td 2058d8ed7fa3SDimitry Andric ${LLVM_TBLGEN} ${hdr:T:C/,/ /g} \ 2059986e05bcSDimitry Andric -I ${LLVM_SRCS}/include -I ${LLVM_SRCS}/lib/Target/${arch:H} \ 2060d8ed7fa3SDimitry Andric -d ${.TARGET}.d -o ${.TARGET} \ 2061d8ed7fa3SDimitry Andric ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td 2062986e05bcSDimitry Andric. endfor 2063986e05bcSDimitry Andric.endfor 2064cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no" 2065986e05bcSDimitry AndricTGHDRS+= AArch64GenAsmMatcher.inc 2066986e05bcSDimitry AndricTGHDRS+= AArch64GenAsmWriter.inc 2067986e05bcSDimitry AndricTGHDRS+= AArch64GenAsmWriter1.inc 2068986e05bcSDimitry AndricTGHDRS+= AArch64GenCallingConv.inc 2069986e05bcSDimitry AndricTGHDRS+= AArch64GenDAGISel.inc 2070986e05bcSDimitry AndricTGHDRS+= AArch64GenDisassemblerTables.inc 2071986e05bcSDimitry AndricTGHDRS+= AArch64GenFastISel.inc 20723d54deb3SDimitry AndricTGHDRS+= AArch64GenGlobalISel.inc 2073986e05bcSDimitry AndricTGHDRS+= AArch64GenInstrInfo.inc 2074986e05bcSDimitry AndricTGHDRS+= AArch64GenMCCodeEmitter.inc 2075986e05bcSDimitry AndricTGHDRS+= AArch64GenMCPseudoLowering.inc 2076fe6060f1SDimitry AndricTGHDRS+= AArch64GenO0PreLegalizeGICombiner.inc 207748aaf27bSDimitry AndricTGHDRS+= AArch64GenPostLegalizeGICombiner.inc 2078e8d8bef9SDimitry AndricTGHDRS+= AArch64GenPostLegalizeGILowering.inc 207948aaf27bSDimitry AndricTGHDRS+= AArch64GenPreLegalizeGICombiner.inc 20805897d2f0SDimitry AndricTGHDRS+= AArch64GenRegisterBank.inc 2081986e05bcSDimitry AndricTGHDRS+= AArch64GenRegisterInfo.inc 2082986e05bcSDimitry AndricTGHDRS+= AArch64GenSubtargetInfo.inc 2083986e05bcSDimitry AndricTGHDRS+= AArch64GenSystemOperands.inc 2084cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64 2085cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no" 2086986e05bcSDimitry AndricTGHDRS+= ARMGenAsmMatcher.inc 2087986e05bcSDimitry AndricTGHDRS+= ARMGenAsmWriter.inc 2088986e05bcSDimitry AndricTGHDRS+= ARMGenCallingConv.inc 2089986e05bcSDimitry AndricTGHDRS+= ARMGenDAGISel.inc 2090986e05bcSDimitry AndricTGHDRS+= ARMGenDisassemblerTables.inc 2091986e05bcSDimitry AndricTGHDRS+= ARMGenFastISel.inc 20923d54deb3SDimitry AndricTGHDRS+= ARMGenGlobalISel.inc 2093986e05bcSDimitry AndricTGHDRS+= ARMGenInstrInfo.inc 2094986e05bcSDimitry AndricTGHDRS+= ARMGenMCCodeEmitter.inc 2095986e05bcSDimitry AndricTGHDRS+= ARMGenMCPseudoLowering.inc 20965897d2f0SDimitry AndricTGHDRS+= ARMGenRegisterBank.inc 2097986e05bcSDimitry AndricTGHDRS+= ARMGenRegisterInfo.inc 2098986e05bcSDimitry AndricTGHDRS+= ARMGenSubtargetInfo.inc 209936cb3905SDimitry AndricTGHDRS+= ARMGenSystemRegister.inc 2100cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM 210189edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no" 210289edb881SDimitry AndricTGHDRS+= BPFGenAsmMatcher.inc 210389edb881SDimitry AndricTGHDRS+= BPFGenAsmWriter.inc 210489edb881SDimitry AndricTGHDRS+= BPFGenCallingConv.inc 210589edb881SDimitry AndricTGHDRS+= BPFGenDAGISel.inc 210689edb881SDimitry AndricTGHDRS+= BPFGenDisassemblerTables.inc 210789edb881SDimitry AndricTGHDRS+= BPFGenInstrInfo.inc 210889edb881SDimitry AndricTGHDRS+= BPFGenMCCodeEmitter.inc 210989edb881SDimitry AndricTGHDRS+= BPFGenRegisterInfo.inc 211089edb881SDimitry AndricTGHDRS+= BPFGenSubtargetInfo.inc 211189edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF 2112cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no" 2113986e05bcSDimitry AndricTGHDRS+= MipsGenAsmMatcher.inc 2114986e05bcSDimitry AndricTGHDRS+= MipsGenAsmWriter.inc 2115986e05bcSDimitry AndricTGHDRS+= MipsGenCallingConv.inc 2116986e05bcSDimitry AndricTGHDRS+= MipsGenDAGISel.inc 2117986e05bcSDimitry AndricTGHDRS+= MipsGenDisassemblerTables.inc 2118986e05bcSDimitry AndricTGHDRS+= MipsGenFastISel.inc 21199f6e9a9fSDimitry AndricTGHDRS+= MipsGenGlobalISel.inc 2120986e05bcSDimitry AndricTGHDRS+= MipsGenInstrInfo.inc 2121986e05bcSDimitry AndricTGHDRS+= MipsGenMCCodeEmitter.inc 2122986e05bcSDimitry AndricTGHDRS+= MipsGenMCPseudoLowering.inc 212381ad6265SDimitry AndricTGHDRS+= MipsGenPostLegalizeGICombiner.inc 21249f6e9a9fSDimitry AndricTGHDRS+= MipsGenRegisterBank.inc 2125986e05bcSDimitry AndricTGHDRS+= MipsGenRegisterInfo.inc 2126986e05bcSDimitry AndricTGHDRS+= MipsGenSubtargetInfo.inc 2127cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS 2128cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no" 2129986e05bcSDimitry AndricTGHDRS+= PPCGenAsmMatcher.inc 2130986e05bcSDimitry AndricTGHDRS+= PPCGenAsmWriter.inc 2131986e05bcSDimitry AndricTGHDRS+= PPCGenCallingConv.inc 2132986e05bcSDimitry AndricTGHDRS+= PPCGenDAGISel.inc 2133986e05bcSDimitry AndricTGHDRS+= PPCGenDisassemblerTables.inc 2134986e05bcSDimitry AndricTGHDRS+= PPCGenFastISel.inc 2135e8d8bef9SDimitry AndricTGHDRS+= PPCGenGlobalISel.inc 2136986e05bcSDimitry AndricTGHDRS+= PPCGenInstrInfo.inc 2137986e05bcSDimitry AndricTGHDRS+= PPCGenMCCodeEmitter.inc 2138e8d8bef9SDimitry AndricTGHDRS+= PPCGenRegisterBank.inc 2139986e05bcSDimitry AndricTGHDRS+= PPCGenRegisterInfo.inc 2140986e05bcSDimitry AndricTGHDRS+= PPCGenSubtargetInfo.inc 2141cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC 2142b2689b12SMitchell Horne.if ${MK_LLVM_TARGET_RISCV} != "no" 2143b2689b12SMitchell HorneTGHDRS+= RISCVGenAsmMatcher.inc 2144b2689b12SMitchell HorneTGHDRS+= RISCVGenAsmWriter.inc 2145b2689b12SMitchell HorneTGHDRS+= RISCVGenCallingConv.inc 2146b2689b12SMitchell HorneTGHDRS+= RISCVGenCompressInstEmitter.inc 2147b2689b12SMitchell HorneTGHDRS+= RISCVGenDAGISel.inc 2148b2689b12SMitchell HorneTGHDRS+= RISCVGenDisassemblerTables.inc 2149b2689b12SMitchell HorneTGHDRS+= RISCVGenDAGISel.inc 21509771cac2SDimitry AndricTGHDRS+= RISCVGenGlobalISel.inc 2151b2689b12SMitchell HorneTGHDRS+= RISCVGenInstrInfo.inc 2152b2689b12SMitchell HorneTGHDRS+= RISCVGenMCCodeEmitter.inc 2153b2689b12SMitchell HorneTGHDRS+= RISCVGenMCPseudoLowering.inc 21549771cac2SDimitry AndricTGHDRS+= RISCVGenRegisterBank.inc 2155b2689b12SMitchell HorneTGHDRS+= RISCVGenRegisterInfo.inc 2156e8d8bef9SDimitry AndricTGHDRS+= RISCVGenSearchableTables.inc 2157b2689b12SMitchell HorneTGHDRS+= RISCVGenSubtargetInfo.inc 2158b2689b12SMitchell HorneTGHDRS+= RISCVGenSystemOperands.inc 2159b2689b12SMitchell Horne.endif # MK_LLVM_TARGET_RISCV 2160cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no" 2161986e05bcSDimitry AndricTGHDRS+= X86GenAsmMatcher.inc 2162986e05bcSDimitry AndricTGHDRS+= X86GenAsmWriter.inc 2163986e05bcSDimitry AndricTGHDRS+= X86GenAsmWriter1.inc 2164986e05bcSDimitry AndricTGHDRS+= X86GenCallingConv.inc 2165986e05bcSDimitry AndricTGHDRS+= X86GenDAGISel.inc 2166986e05bcSDimitry AndricTGHDRS+= X86GenDisassemblerTables.inc 21675897d2f0SDimitry AndricTGHDRS+= X86GenEVEX2VEXTables.inc 2168986e05bcSDimitry AndricTGHDRS+= X86GenFastISel.inc 21693d54deb3SDimitry AndricTGHDRS+= X86GenGlobalISel.inc 2170986e05bcSDimitry AndricTGHDRS+= X86GenInstrInfo.inc 217181ad6265SDimitry AndricTGHDRS+= X86GenMnemonicTables.inc 21725897d2f0SDimitry AndricTGHDRS+= X86GenRegisterBank.inc 2173986e05bcSDimitry AndricTGHDRS+= X86GenRegisterInfo.inc 2174986e05bcSDimitry AndricTGHDRS+= X86GenSubtargetInfo.inc 2175cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86 2176986e05bcSDimitry Andric 2177ddf95e2aSBryan DreweryDEPENDFILES+= ${TGHDRS:C/$/.d/} 2178986e05bcSDimitry AndricDPSRCS+= ${TGHDRS} 2179986e05bcSDimitry AndricCLEANFILES+= ${TGHDRS} ${TGHDRS:C/$/.d/} 218048aaf27bSDimitry AndricCLEANFILES+= ${GENSRCS} ${GENSRCS:C/$/.d/} 2181986e05bcSDimitry Andric 2182986e05bcSDimitry Andric.include "../llvm.build.mk" 2183986e05bcSDimitry Andric.include <bsd.lib.mk> 2184