1986e05bcSDimitry Andric 2*73ff7384SDimitry Andric.include <bsd.init.mk> 3986e05bcSDimitry Andric.include "../llvm.pre.mk" 4986e05bcSDimitry Andric 5986e05bcSDimitry AndricLIB= llvm 6986e05bcSDimitry AndricINTERNALLIB= 7986e05bcSDimitry Andric 8986e05bcSDimitry AndricCFLAGS+= -I${.OBJDIR} 9bdd1243dSDimitry AndricCFLAGS+= -I${SRCTOP}/sys/contrib/zstd/lib 10cbafd263SDimitry Andric 11cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} == "no" && ${MK_LLVM_TARGET_ARM} == "no" && \ 1289edb881SDimitry Andric ${MK_LLVM_TARGET_BPF} == "no" && ${MK_LLVM_TARGET_MIPS} == "no" && \ 13b2689b12SMitchell Horne ${MK_LLVM_TARGET_POWERPC} == "no" && ${MK_LLVM_TARGET_RISCV} == "no" && \ 143b7fd87cSWarner Losh ${MK_LLVM_TARGET_X86} == "no" 15cbafd263SDimitry Andric.error Please enable at least one of: MK_LLVM_TARGET_AARCH64,\ 1689edb881SDimitry Andric MK_LLVM_TARGET_ARM, MK_LLVM_TARGET_BPF, MK_LLVM_TARGET_MIPS, \ 173b7fd87cSWarner Losh MK_LLVM_TARGET_POWERPC, MK_LLVM_TARGET_RISCV, or MK_LLVM_TARGET_X86 18cbafd263SDimitry Andric.endif 19cbafd263SDimitry Andric 203b7fd87cSWarner Losh.for arch in AArch64 ARM BPF Mips PowerPC RISCV X86 21cbafd263SDimitry Andric. if ${MK_LLVM_TARGET_${arch:tu}} != "no" 22986e05bcSDimitry AndricCFLAGS+= -I${LLVM_SRCS}/lib/Target/${arch} 23cbafd263SDimitry Andric. endif 24986e05bcSDimitry Andric.endfor 25986e05bcSDimitry Andric 2681ad6265SDimitry AndricCFLAGS+= -I${LLVM_SRCS}/lib/ObjCopy 2781ad6265SDimitry Andric 2861cfbce3SDimitry AndricTARGET_ARCH?= ${MACHINE_ARCH} 2961cfbce3SDimitry Andric 30fcaf7f86SDimitry Andric.if ${TARGET_ARCH} != "amd64" 31fcaf7f86SDimitry AndricCFLAGS+= -DBLAKE3_NO_AVX512 -DBLAKE3_NO_AVX2 -DBLAKE3_NO_SSE41 \ 32fcaf7f86SDimitry Andric -DBLAKE3_NO_SSE2 33fcaf7f86SDimitry Andric.endif 34eb81dd84SJohn-Mark Gurney.if ${TARGET_ARCH} != "arm64" 35eb81dd84SJohn-Mark GurneyCFLAGS+= -DBLAKE3_USE_NEON=0 36eb81dd84SJohn-Mark Gurney.endif 37fcaf7f86SDimitry Andric 380b57cec5SDimitry AndricSRCDIR= llvm/lib 39986e05bcSDimitry Andric 40a1aaa66bSDimitry Andric# Explanation of different SRCS variants below: 41a1aaa66bSDimitry Andric# SRCS_MIN: always required, even for bootstrap 42a1aaa66bSDimitry Andric# SRCS_MIW: required for world stage (after cross-tools) 43a1aaa66bSDimitry Andric# SRCS_EXT: required for MK_CLANG_EXTRAS 44a1aaa66bSDimitry Andric# SRCS_EXL: required for MK_CLANG_EXTRAS and MK_LLD 45a1aaa66bSDimitry Andric# SRCS_FUL: required for MK_CLANG_FULL 46a1aaa66bSDimitry Andric# SRCS_LLD: required for MK_LLD 47a1aaa66bSDimitry Andric# SRCS_XDB: required for MK_CLANG_EXTRAS and MK_LLDB 48a1aaa66bSDimitry Andric# SRCS_XDL: required for MK_CLANG_EXTRAS, MK_LLD and MK_LLDB 49a1aaa66bSDimitry Andric# SRCS_XDW: required for MK_CLANG_EXTRAS and MK_LLDB in world stage 5006c3fb27SDimitry Andric# SRCS_COV: required for MK_LLVM_COV 51a1aaa66bSDimitry Andric 52986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasAnalysis.cpp 53986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasAnalysisEvaluator.cpp 54986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasSetTracker.cpp 55986e05bcSDimitry AndricSRCS_EXT+= Analysis/Analysis.cpp 5648aaf27bSDimitry AndricSRCS_MIN+= Analysis/AssumeBundleQueries.cpp 57986e05bcSDimitry AndricSRCS_MIN+= Analysis/AssumptionCache.cpp 58986e05bcSDimitry AndricSRCS_MIN+= Analysis/BasicAliasAnalysis.cpp 59986e05bcSDimitry AndricSRCS_MIN+= Analysis/BlockFrequencyInfo.cpp 60986e05bcSDimitry AndricSRCS_MIN+= Analysis/BlockFrequencyInfoImpl.cpp 61986e05bcSDimitry AndricSRCS_MIN+= Analysis/BranchProbabilityInfo.cpp 62986e05bcSDimitry AndricSRCS_MIN+= Analysis/CFG.cpp 63986e05bcSDimitry AndricSRCS_MIN+= Analysis/CFGPrinter.cpp 64bdd1243dSDimitry AndricSRCS_MIN+= Analysis/CFGSCCPrinter.cpp 65986e05bcSDimitry AndricSRCS_MIN+= Analysis/CGSCCPassManager.cpp 66986e05bcSDimitry AndricSRCS_MIN+= Analysis/CallGraph.cpp 67986e05bcSDimitry AndricSRCS_MIN+= Analysis/CallGraphSCCPass.cpp 68986e05bcSDimitry AndricSRCS_MIN+= Analysis/CallPrinter.cpp 69986e05bcSDimitry AndricSRCS_MIN+= Analysis/CaptureTracking.cpp 7036cb3905SDimitry AndricSRCS_MIN+= Analysis/CmpInstAnalysis.cpp 71986e05bcSDimitry AndricSRCS_MIN+= Analysis/CodeMetrics.cpp 72986e05bcSDimitry AndricSRCS_MIN+= Analysis/ConstantFolding.cpp 73e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/ConstraintSystem.cpp 74986e05bcSDimitry AndricSRCS_MIN+= Analysis/CostModel.cpp 7504eeddc0SDimitry AndricSRCS_MIN+= Analysis/CycleAnalysis.cpp 769771cac2SDimitry AndricSRCS_MIN+= Analysis/DDG.cpp 77e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/DDGPrinter.cpp 78986e05bcSDimitry AndricSRCS_MIN+= Analysis/Delinearization.cpp 79986e05bcSDimitry AndricSRCS_MIN+= Analysis/DemandedBits.cpp 80986e05bcSDimitry AndricSRCS_MIN+= Analysis/DependenceAnalysis.cpp 819771cac2SDimitry AndricSRCS_MIN+= Analysis/DependenceGraphBuilder.cpp 82986e05bcSDimitry AndricSRCS_MIN+= Analysis/DomPrinter.cpp 834014a71fSDimitry AndricSRCS_MIN+= Analysis/DomTreeUpdater.cpp 84986e05bcSDimitry AndricSRCS_MIN+= Analysis/DominanceFrontier.cpp 85e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/FunctionPropertiesAnalysis.cpp 86986e05bcSDimitry AndricSRCS_MIN+= Analysis/GlobalsModRef.cpp 875e86819cSDimitry AndricSRCS_MIN+= Analysis/GuardUtils.cpp 8848aaf27bSDimitry AndricSRCS_MIN+= Analysis/HeatUtils.cpp 89e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/IRSimilarityIdentifier.cpp 905e86819cSDimitry AndricSRCS_MIN+= Analysis/IVDescriptors.cpp 91986e05bcSDimitry AndricSRCS_MIN+= Analysis/IVUsers.cpp 92e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/ImportedFunctionsInliningStatistics.cpp 93986e05bcSDimitry AndricSRCS_MIN+= Analysis/IndirectCallPromotionAnalysis.cpp 9448aaf27bSDimitry AndricSRCS_MIN+= Analysis/InlineAdvisor.cpp 95986e05bcSDimitry AndricSRCS_MIN+= Analysis/InlineCost.cpp 96bdd1243dSDimitry AndricSRCS_MIN+= Analysis/InlineOrder.cpp 9748aaf27bSDimitry AndricSRCS_MIN+= Analysis/InlineSizeEstimatorAnalysis.cpp 98986e05bcSDimitry AndricSRCS_MIN+= Analysis/InstCount.cpp 995e86819cSDimitry AndricSRCS_MIN+= Analysis/InstructionPrecedenceTracking.cpp 100986e05bcSDimitry AndricSRCS_MIN+= Analysis/InstructionSimplify.cpp 10106c3fb27SDimitry AndricSRCS_MIN+= Analysis/InteractiveModelRunner.cpp 102986e05bcSDimitry AndricSRCS_MIN+= Analysis/Interval.cpp 103986e05bcSDimitry AndricSRCS_MIN+= Analysis/IntervalPartition.cpp 104986e05bcSDimitry AndricSRCS_MIN+= Analysis/LazyBlockFrequencyInfo.cpp 10509bfd043SDimitry AndricSRCS_MIN+= Analysis/LazyBranchProbabilityInfo.cpp 106986e05bcSDimitry AndricSRCS_MIN+= Analysis/LazyCallGraph.cpp 107986e05bcSDimitry AndricSRCS_MIN+= Analysis/LazyValueInfo.cpp 108986e05bcSDimitry AndricSRCS_MIN+= Analysis/Lint.cpp 109986e05bcSDimitry AndricSRCS_MIN+= Analysis/Loads.cpp 110bdd1243dSDimitry AndricSRCS_MIN+= Analysis/Local.cpp 111986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopAccessAnalysis.cpp 112f1a29dd3SDimitry AndricSRCS_MIN+= Analysis/LoopAnalysisManager.cpp 1139771cac2SDimitry AndricSRCS_MIN+= Analysis/LoopCacheAnalysis.cpp 114986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopInfo.cpp 11548aaf27bSDimitry AndricSRCS_MIN+= Analysis/LoopNestAnalysis.cpp 116986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopPass.cpp 117986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopUnrollAnalyzer.cpp 11806c3fb27SDimitry AndricSRCS_MIN+= Analysis/MLInlineAdvisor.cpp 119986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemDerefPrinter.cpp 120986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemoryBuiltins.cpp 121986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemoryDependenceAnalysis.cpp 122986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemoryLocation.cpp 123bdd1243dSDimitry AndricSRCS_MIN+= Analysis/MemoryProfileInfo.cpp 1245897d2f0SDimitry AndricSRCS_MIN+= Analysis/MemorySSA.cpp 1255897d2f0SDimitry AndricSRCS_MIN+= Analysis/MemorySSAUpdater.cpp 126986e05bcSDimitry AndricSRCS_MIN+= Analysis/ModuleDebugInfoPrinter.cpp 127986e05bcSDimitry AndricSRCS_MIN+= Analysis/ModuleSummaryAnalysis.cpp 1289f6e9a9fSDimitry AndricSRCS_MIN+= Analysis/MustExecute.cpp 129986e05bcSDimitry AndricSRCS_MIN+= Analysis/ObjCARCAliasAnalysis.cpp 130986e05bcSDimitry AndricSRCS_MIN+= Analysis/ObjCARCAnalysisUtils.cpp 131986e05bcSDimitry AndricSRCS_MIN+= Analysis/ObjCARCInstKind.cpp 13236cb3905SDimitry AndricSRCS_MIN+= Analysis/OptimizationRemarkEmitter.cpp 133fe6060f1SDimitry AndricSRCS_MIN+= Analysis/OverflowInstAnalysis.cpp 134986e05bcSDimitry AndricSRCS_MIN+= Analysis/PHITransAddr.cpp 1359f6e9a9fSDimitry AndricSRCS_MIN+= Analysis/PhiValues.cpp 136986e05bcSDimitry AndricSRCS_MIN+= Analysis/PostDominators.cpp 137986e05bcSDimitry AndricSRCS_MIN+= Analysis/ProfileSummaryInfo.cpp 138986e05bcSDimitry AndricSRCS_MIN+= Analysis/PtrUseVisitor.cpp 139986e05bcSDimitry AndricSRCS_MIN+= Analysis/RegionInfo.cpp 140986e05bcSDimitry AndricSRCS_MIN+= Analysis/RegionPass.cpp 141986e05bcSDimitry AndricSRCS_MIN+= Analysis/RegionPrinter.cpp 142e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/ReplayInlineAdvisor.cpp 143986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolution.cpp 14448aaf27bSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolution.cpp 145986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolutionAliasAnalysis.cpp 14648aaf27bSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolutionDivision.cpp 147986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolutionNormalization.cpp 148986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScopedNoAliasAA.cpp 14948aaf27bSDimitry AndricSRCS_MIN+= Analysis/StackLifetime.cpp 1505e86819cSDimitry AndricSRCS_MIN+= Analysis/StackSafetyAnalysis.cpp 1519f6e9a9fSDimitry AndricSRCS_MIN+= Analysis/SyntheticCountsUtils.cpp 152986e05bcSDimitry AndricSRCS_MIN+= Analysis/TargetLibraryInfo.cpp 153986e05bcSDimitry AndricSRCS_MIN+= Analysis/TargetTransformInfo.cpp 15481ad6265SDimitry AndricSRCS_MIN+= Analysis/TensorSpec.cpp 15506c3fb27SDimitry AndricSRCS_MIN+= Analysis/TrainingLogger.cpp 156986e05bcSDimitry AndricSRCS_MIN+= Analysis/TypeBasedAliasAnalysis.cpp 157986e05bcSDimitry AndricSRCS_MIN+= Analysis/TypeMetadataUtils.cpp 158bdd1243dSDimitry AndricSRCS_MIN+= Analysis/UniformityAnalysis.cpp 1599771cac2SDimitry AndricSRCS_MIN+= Analysis/VFABIDemangling.cpp 16036cb3905SDimitry AndricSRCS_MIN+= Analysis/ValueLattice.cpp 16136cb3905SDimitry AndricSRCS_MIN+= Analysis/ValueLatticeUtils.cpp 162986e05bcSDimitry AndricSRCS_MIN+= Analysis/ValueTracking.cpp 163986e05bcSDimitry AndricSRCS_MIN+= Analysis/VectorUtils.cpp 164986e05bcSDimitry AndricSRCS_MIN+= AsmParser/LLLexer.cpp 165986e05bcSDimitry AndricSRCS_MIN+= AsmParser/LLParser.cpp 166986e05bcSDimitry AndricSRCS_MIN+= AsmParser/Parser.cpp 1671b85b68dSCameron KatriSRCS_MIN+= BinaryFormat/AMDGPUMetadataVerifier.cpp 168d781ede6SDimitry AndricSRCS_MIN+= BinaryFormat/COFF.cpp 16944389c28SDimitry AndricSRCS_MIN+= BinaryFormat/Dwarf.cpp 17044389c28SDimitry AndricSRCS_MIN+= BinaryFormat/Magic.cpp 17148aaf27bSDimitry AndricSRCS_MIN+= BinaryFormat/MachO.cpp 1721b85b68dSCameron KatriSRCS_MIN+= BinaryFormat/MsgPackDocument.cpp 1731b85b68dSCameron KatriSRCS_MIN+= BinaryFormat/MsgPackDocumentYAML.cpp 1741b85b68dSCameron KatriSRCS_MIN+= BinaryFormat/MsgPackReader.cpp 17579239b5bSDimitry AndricSRCS_MIN+= BinaryFormat/MsgPackWriter.cpp 1769f6e9a9fSDimitry AndricSRCS_MIN+= BinaryFormat/Wasm.cpp 1779771cac2SDimitry AndricSRCS_MIN+= BinaryFormat/XCOFF.cpp 17809bfd043SDimitry AndricSRCS_MIN+= Bitcode/Reader/BitReader.cpp 17924b8043eSDimitry AndricSRCS_EXT+= Bitcode/Reader/BitcodeAnalyzer.cpp 180986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Reader/BitcodeReader.cpp 18109bfd043SDimitry AndricSRCS_MIN+= Bitcode/Reader/MetadataLoader.cpp 18209bfd043SDimitry AndricSRCS_MIN+= Bitcode/Reader/ValueList.cpp 183986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Writer/BitcodeWriter.cpp 184986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Writer/BitcodeWriterPass.cpp 185986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Writer/ValueEnumerator.cpp 1864014a71fSDimitry AndricSRCS_MIN+= Bitstream/Reader/BitstreamReader.cpp 187986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AggressiveAntiDepBreaker.cpp 188986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AllocationOrder.cpp 189986e05bcSDimitry AndricSRCS_MIN+= CodeGen/Analysis.cpp 190e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AIXException.cpp 191986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/ARMException.cpp 1929f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AccelTable.cpp 193986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AddressPool.cpp 194986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AsmPrinter.cpp 195986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AsmPrinterDwarf.cpp 196986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp 197986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/CodeViewDebug.cpp 198986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DIE.cpp 199986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DIEHash.cpp 2005e86819cSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp 201986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DebugHandlerBase.cpp 202986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DebugLocStream.cpp 203986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfCFIException.cpp 204986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfCompileUnit.cpp 205986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfDebug.cpp 206986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfExpression.cpp 207986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfFile.cpp 208986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfStringPool.cpp 209986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfUnit.cpp 210986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/EHStreamer.cpp 21124b8043eSDimitry AndricSRCS_EXT+= CodeGen/AsmPrinter/ErlangGCPrinter.cpp 212986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/OcamlGCPrinter.cpp 213e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/PseudoProbePrinter.cpp 2145e86819cSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/WasmException.cpp 2159f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/WinCFGuard.cpp 216986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/WinException.cpp 217bdd1243dSDimitry AndricSRCS_MIN+= CodeGen/AssignmentTrackingAnalysis.cpp 218986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AtomicExpandPass.cpp 219e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/BasicBlockSections.cpp 22081ad6265SDimitry AndricSRCS_MIN+= CodeGen/BasicBlockSectionsProfileReader.cpp 221986e05bcSDimitry AndricSRCS_MIN+= CodeGen/BasicTargetTransformInfo.cpp 222986e05bcSDimitry AndricSRCS_MIN+= CodeGen/BranchFolding.cpp 22309bfd043SDimitry AndricSRCS_MIN+= CodeGen/BranchRelaxation.cpp 2249f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/BreakFalseDeps.cpp 2259771cac2SDimitry AndricSRCS_MIN+= CodeGen/CFGuardLongjmp.cpp 22681ad6265SDimitry AndricSRCS_MIN+= CodeGen/CFIFixup.cpp 2279f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/CFIInstrInserter.cpp 228986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CalcSpillWeights.cpp 22906c3fb27SDimitry AndricSRCS_MIN+= CodeGen/CallBrPrepare.cpp 230986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CallingConvLower.cpp 231986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CodeGen.cpp 2325e801ac6SDimitry AndricSRCS_MIN+= CodeGen/CodeGenCommonISel.cpp 233986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CodeGenPrepare.cpp 23448aaf27bSDimitry AndricSRCS_EXL+= CodeGen/CommandFlags.cpp 235bdd1243dSDimitry AndricSRCS_MIN+= CodeGen/ComplexDeinterleavingPass.cpp 236986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CriticalAntiDepBreaker.cpp 237986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DFAPacketizer.cpp 238986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DeadMachineInstructionElim.cpp 239986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DetectDeadLanes.cpp 240986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DwarfEHPrepare.cpp 241fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/EHContGuardCatchret.cpp 242986e05bcSDimitry AndricSRCS_MIN+= CodeGen/EarlyIfConversion.cpp 243986e05bcSDimitry AndricSRCS_MIN+= CodeGen/EdgeBundles.cpp 2449f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/ExecutionDomainFix.cpp 245bdd1243dSDimitry AndricSRCS_MIN+= CodeGen/ExpandLargeDivRem.cpp 246bdd1243dSDimitry AndricSRCS_MIN+= CodeGen/ExpandLargeFpConvert.cpp 24736cb3905SDimitry AndricSRCS_MIN+= CodeGen/ExpandMemCmp.cpp 248986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ExpandPostRAPseudos.cpp 2495517e702SDimitry AndricSRCS_MIN+= CodeGen/ExpandReductions.cpp 250fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/ExpandVectorPredication.cpp 2515897d2f0SDimitry AndricSRCS_MIN+= CodeGen/FEntryInserter.cpp 252986e05bcSDimitry AndricSRCS_MIN+= CodeGen/FaultMaps.cpp 2534014a71fSDimitry AndricSRCS_MIN+= CodeGen/FinalizeISel.cpp 25448aaf27bSDimitry AndricSRCS_MIN+= CodeGen/FixupStatepointCallerSaved.cpp 255986e05bcSDimitry AndricSRCS_MIN+= CodeGen/FuncletLayout.cpp 256986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GCMetadata.cpp 25709bfd043SDimitry AndricSRCS_MIN+= CodeGen/GCMetadataPrinter.cpp 258986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GCRootLowering.cpp 2595e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/CSEInfo.cpp 2605e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/CSEMIRBuilder.cpp 2615e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Combiner.cpp 2625e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/CombinerHelper.cpp 2633d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/CallLowering.cpp 26406c3fb27SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/GIMatchTableExecutor.cpp 2655e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/GISelChangeObserver.cpp 2669771cac2SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/GISelKnownBits.cpp 267986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/GlobalISel.cpp 2683d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/IRTranslator.cpp 26948aaf27bSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/InlineAsmLowering.cpp 2703d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/InstructionSelect.cpp 2713d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/InstructionSelector.cpp 272fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegacyLegalizerInfo.cpp 2739f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalityPredicates.cpp 2749f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalizeMutations.cpp 2753d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Legalizer.cpp 2763d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalizerHelper.cpp 2773d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalizerInfo.cpp 2785e801ac6SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LoadStoreOpt.cpp 279302affcbSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Localizer.cpp 28048aaf27bSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LostDebugLocObserver.cpp 2813d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/MachineIRBuilder.cpp 2823d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/RegBankSelect.cpp 2833d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Utils.cpp 284986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GlobalMerge.cpp 2854014a71fSDimitry AndricSRCS_MIN+= CodeGen/HardwareLoops.cpp 286986e05bcSDimitry AndricSRCS_MIN+= CodeGen/IfConversion.cpp 287986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ImplicitNullChecks.cpp 28807577dfeSDimitry AndricSRCS_MIN+= CodeGen/IndirectBrExpandPass.cpp 289986e05bcSDimitry AndricSRCS_MIN+= CodeGen/InlineSpiller.cpp 290986e05bcSDimitry AndricSRCS_MIN+= CodeGen/InterferenceCache.cpp 291986e05bcSDimitry AndricSRCS_MIN+= CodeGen/InterleavedAccessPass.cpp 2925e86819cSDimitry AndricSRCS_MIN+= CodeGen/InterleavedLoadCombinePass.cpp 293986e05bcSDimitry AndricSRCS_MIN+= CodeGen/IntrinsicLowering.cpp 29481ad6265SDimitry AndricSRCS_MIN+= CodeGen/JMCInstrumenter.cpp 29506c3fb27SDimitry AndricSRCS_MIN+= CodeGen/KCFI.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 31906c3fb27SDimitry AndricSRCS_MIN+= CodeGen/LowLevelTypeUtils.cpp 320986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LowerEmuTLS.cpp 32148aaf27bSDimitry AndricSRCS_MIN+= CodeGen/MBFIWrapper.cpp 32236cb3905SDimitry AndricSRCS_MIN+= CodeGen/MIRCanonicalizerPass.cpp 323fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/MIRFSDiscriminator.cpp 3249771cac2SDimitry AndricSRCS_MIN+= CodeGen/MIRNamerPass.cpp 325986e05bcSDimitry AndricSRCS_EXT+= CodeGen/MIRParser/MILexer.cpp 326986e05bcSDimitry AndricSRCS_EXT+= CodeGen/MIRParser/MIParser.cpp 327986e05bcSDimitry AndricSRCS_EXT+= CodeGen/MIRParser/MIRParser.cpp 328986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MIRPrinter.cpp 329986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MIRPrintingPass.cpp 3305e801ac6SDimitry AndricSRCS_MIN+= CodeGen/MIRSampleProfile.cpp 3319771cac2SDimitry AndricSRCS_MIN+= CodeGen/MIRVRegNamerUtils.cpp 33204eeddc0SDimitry AndricSRCS_MIN+= CodeGen/MLRegallocEvictAdvisor.cpp 33306c3fb27SDimitry AndricSRCS_MIN+= CodeGen/MLRegallocPriorityAdvisor.cpp 334986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBasicBlock.cpp 335986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBlockFrequencyInfo.cpp 336986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBlockPlacement.cpp 337986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBranchProbabilityInfo.cpp 338bdd1243dSDimitry AndricSRCS_MIN+= CodeGen/MachineCFGPrinter.cpp 339986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineCSE.cpp 340e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/MachineCheckDebugify.cpp 341986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineCombiner.cpp 342986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineCopyPropagation.cpp 34304eeddc0SDimitry AndricSRCS_MIN+= CodeGen/MachineCycleAnalysis.cpp 34448aaf27bSDimitry AndricSRCS_MIN+= CodeGen/MachineDebugify.cpp 345986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineDominanceFrontier.cpp 346986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineDominators.cpp 347f37b6182SDimitry AndricSRCS_MIN+= CodeGen/MachineFrameInfo.cpp 348986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineFunction.cpp 349986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineFunctionPass.cpp 350986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineFunctionPrinterPass.cpp 351e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/MachineFunctionSplitter.cpp 352986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineInstr.cpp 353986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineInstrBundle.cpp 354986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineLICM.cpp 355bdd1243dSDimitry AndricSRCS_MIN+= CodeGen/MachineLateInstrsCleanup.cpp 356986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineLoopInfo.cpp 3579771cac2SDimitry AndricSRCS_MIN+= CodeGen/MachineLoopUtils.cpp 358986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineModuleInfo.cpp 359986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineModuleInfoImpls.cpp 360fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/MachineModuleSlotTracker.cpp 36136cb3905SDimitry AndricSRCS_MIN+= CodeGen/MachineOperand.cpp 3625897d2f0SDimitry AndricSRCS_MIN+= CodeGen/MachineOptimizationRemarkEmitter.cpp 3635897d2f0SDimitry AndricSRCS_MIN+= CodeGen/MachineOutliner.cpp 36409bfd043SDimitry AndricSRCS_MIN+= CodeGen/MachinePipeliner.cpp 365986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachinePostDominators.cpp 366986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineRegionInfo.cpp 367986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineRegisterInfo.cpp 36804eeddc0SDimitry AndricSRCS_MIN+= CodeGen/MachineSSAContext.cpp 369986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineSSAUpdater.cpp 370986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineScheduler.cpp 371986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineSink.cpp 3729771cac2SDimitry AndricSRCS_MIN+= CodeGen/MachineSizeOpts.cpp 373e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/MachineStableHash.cpp 37448aaf27bSDimitry AndricSRCS_MIN+= CodeGen/MachineStripDebug.cpp 375986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineTraceMetrics.cpp 376bdd1243dSDimitry AndricSRCS_MIN+= CodeGen/MachineUniformityAnalysis.cpp 377986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineVerifier.cpp 378edd7eaddSDimitry AndricSRCS_MIN+= CodeGen/MacroFusion.cpp 3799771cac2SDimitry AndricSRCS_MIN+= CodeGen/ModuloSchedule.cpp 380e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/MultiHazardRecognizer.cpp 381fcaf7f86SDimitry AndricSRCS_EXT+= CodeGen/NonRelocatableStringpool.cpp 382986e05bcSDimitry AndricSRCS_MIN+= CodeGen/OptimizePHIs.cpp 383986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PHIElimination.cpp 384986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PHIEliminationUtils.cpp 385986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ParallelCG.cpp 386986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PatchableFunction.cpp 387986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PeepholeOptimizer.cpp 388986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PostRAHazardRecognizer.cpp 389986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PostRASchedulerList.cpp 390986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PreISelIntrinsicLowering.cpp 391986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ProcessImplicitDefs.cpp 392986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PrologEpilogInserter.cpp 393e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/PseudoProbeInserter.cpp 394986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PseudoSourceValue.cpp 3959f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/ReachingDefAnalysis.cpp 396fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/ReplaceWithVeclib.cpp 3970946e70aSDimitry AndricSRCS_MIN+= CodeGen/RDFGraph.cpp 3980946e70aSDimitry AndricSRCS_MIN+= CodeGen/RDFLiveness.cpp 3990946e70aSDimitry AndricSRCS_MIN+= CodeGen/RDFRegisters.cpp 400986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocBase.cpp 401986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocBasic.cpp 40204eeddc0SDimitry AndricSRCS_MIN+= CodeGen/RegAllocEvictionAdvisor.cpp 403986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocFast.cpp 404986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocGreedy.cpp 405986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocPBQP.cpp 406bdd1243dSDimitry AndricSRCS_MIN+= CodeGen/RegAllocPriorityAdvisor.cpp 407986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegUsageInfoCollector.cpp 408986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegUsageInfoPropagate.cpp 40981ad6265SDimitry AndricSRCS_MIN+= CodeGen/RegisterBank.cpp 41081ad6265SDimitry AndricSRCS_MIN+= CodeGen/RegisterBankInfo.cpp 411986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterClassInfo.cpp 412986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterCoalescer.cpp 413986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterPressure.cpp 414986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterScavenging.cpp 415986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterUsageInfo.cpp 416fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/RemoveRedundantDebugValues.cpp 417986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RenameIndependentSubregs.cpp 41809bfd043SDimitry AndricSRCS_MIN+= CodeGen/ResetMachineFunctionPass.cpp 419986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SafeStack.cpp 420986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SafeStackLayout.cpp 421bdd1243dSDimitry AndricSRCS_MIN+= CodeGen/SanitizerBinaryMetadata.cpp 422986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScheduleDAG.cpp 423986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScheduleDAGInstrs.cpp 424986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScheduleDAGPrinter.cpp 425986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScoreboardHazardRecognizer.cpp 42681ad6265SDimitry AndricSRCS_MIN+= CodeGen/SelectOptimize.cpp 427986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/DAGCombiner.cpp 428986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/FastISel.cpp 429986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/FunctionLoweringInfo.cpp 430986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/InstrEmitter.cpp 431986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeDAG.cpp 432986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeFloatTypes.cpp 433986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp 434986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeTypes.cpp 435986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp 436986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeVectorOps.cpp 437986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeVectorTypes.cpp 438986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ResourcePriorityQueue.cpp 439986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGFast.cpp 440986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGRRList.cpp 441986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp 442986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp 443986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAG.cpp 44444389c28SDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp 445986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGBuilder.cpp 446986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGDumper.cpp 447986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGISel.cpp 448986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGPrinter.cpp 449986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp 450986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/StatepointLowering.cpp 451986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/TargetLowering.cpp 452986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ShadowStackGCLowering.cpp 453986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ShrinkWrap.cpp 454986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SjLjEHPrepare.cpp 455986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SlotIndexes.cpp 456986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SpillPlacement.cpp 457986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SplitKit.cpp 458986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackColoring.cpp 459bdd1243dSDimitry AndricSRCS_MIN+= CodeGen/StackFrameLayoutAnalysisPass.cpp 460986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackMapLivenessAnalysis.cpp 461986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackMaps.cpp 462986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackProtector.cpp 463986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackSlotColoring.cpp 4644014a71fSDimitry AndricSRCS_MIN+= CodeGen/SwiftErrorValueTracking.cpp 4654014a71fSDimitry AndricSRCS_MIN+= CodeGen/SwitchLoweringUtils.cpp 466986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TailDuplication.cpp 467986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TailDuplicator.cpp 468986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetFrameLoweringImpl.cpp 469986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetInstrInfo.cpp 470986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetLoweringBase.cpp 471986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetLoweringObjectFileImpl.cpp 472986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetOptionsImpl.cpp 473986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetPassConfig.cpp 474986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetRegisterInfo.cpp 475986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetSchedule.cpp 47609bfd043SDimitry AndricSRCS_MIN+= CodeGen/TargetSubtargetInfo.cpp 477986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TwoAddressInstructionPass.cpp 4789771cac2SDimitry AndricSRCS_MIN+= CodeGen/TypePromotion.cpp 479986e05bcSDimitry AndricSRCS_MIN+= CodeGen/UnreachableBlockElim.cpp 4809f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/ValueTypes.cpp 481986e05bcSDimitry AndricSRCS_MIN+= CodeGen/VirtRegMap.cpp 4829f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/WasmEHPrepare.cpp 483986e05bcSDimitry AndricSRCS_MIN+= CodeGen/WinEHPrepare.cpp 484986e05bcSDimitry AndricSRCS_MIN+= CodeGen/XRayInstrumentation.cpp 485fcaf7f86SDimitry AndricSRCS_EXT+= DWARFLinker/DWARFLinker.cpp 486fcaf7f86SDimitry AndricSRCS_EXT+= DWARFLinker/DWARFLinkerCompileUnit.cpp 487fcaf7f86SDimitry AndricSRCS_EXT+= DWARFLinker/DWARFLinkerDeclContext.cpp 488fcaf7f86SDimitry AndricSRCS_EXT+= DWARFLinker/DWARFStreamer.cpp 48906c3fb27SDimitry AndricSRCS_EXT+= DWARFLinkerParallel/DWARFEmitterImpl.cpp 49006c3fb27SDimitry AndricSRCS_EXT+= DWARFLinkerParallel/DWARFLinker.cpp 49106c3fb27SDimitry AndricSRCS_EXT+= DWARFLinkerParallel/DWARFLinkerImpl.cpp 492fe6060f1SDimitry AndricSRCS_EXT+= DWP/DWP.cpp 493fe6060f1SDimitry AndricSRCS_EXT+= DWP/DWPError.cpp 49406c3fb27SDimitry AndricSRCS_MIW+= DebugInfo/BTF/BTFContext.cpp 49506c3fb27SDimitry AndricSRCS_MIW+= DebugInfo/BTF/BTFParser.cpp 4963cd201a1SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/AppendingTypeTableBuilder.cpp 49709bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CVSymbolVisitor.cpp 498986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CVTypeVisitor.cpp 499986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CodeViewError.cpp 50009bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CodeViewRecordIO.cpp 50136cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/ContinuationRecordBuilder.cpp 5021b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/DebugChecksumsSubsection.cpp 503db17bf38SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugCrossExSubsection.cpp 504db17bf38SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugCrossImpSubsection.cpp 5051b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/DebugFrameDataSubsection.cpp 5061b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp 5071b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/DebugLinesSubsection.cpp 5081b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/DebugStringTableSubsection.cpp 5095e801ac6SDimitry AndricSRCS_MIW+= DebugInfo/CodeView/DebugSubsection.cpp 51089cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSubsectionRecord.cpp 51189cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSubsectionVisitor.cpp 512db17bf38SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSymbolRVASubsection.cpp 51389cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSymbolsSubsection.cpp 5145e86819cSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/EnumTables.cpp 5155897d2f0SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/Formatters.cpp 51636cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/GlobalTypeTableBuilder.cpp 5171b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/LazyRandomTypeCollection.cpp 518986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/Line.cpp 5191b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/MergingTypeTableBuilder.cpp 52036cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/RecordName.cpp 521986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/RecordSerialization.cpp 52236cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/SimpleTypeSerializer.cpp 52324d58133SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/StringsAndChecksums.cpp 524986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/SymbolDumper.cpp 52561cfbce3SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/SymbolRecordHelpers.cpp 52609bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/SymbolRecordMapping.cpp 527050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/SymbolSerializer.cpp 528f1a29dd3SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeDumpVisitor.cpp 52936cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeHashing.cpp 530d8866befSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeIndex.cpp 53106230659SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeIndexDiscovery.cpp 532efa75597SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/TypeRecordHelpers.cpp 53309bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeRecordMapping.cpp 534986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeStreamMerger.cpp 535d8866befSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeTableCollection.cpp 536caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp 537caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFAcceleratorTable.cpp 5380db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFAddressRange.cpp 539caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFCompileUnit.cpp 540caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFContext.cpp 5410db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDataExtractor.cpp 542caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugAbbrev.cpp 54399be4f2aSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugAddr.cpp 5440db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugArangeSet.cpp 545caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugAranges.cpp 546caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugFrame.cpp 5470db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugInfoEntry.cpp 548caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugLine.cpp 549caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugLoc.cpp 5500db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugMacro.cpp 551caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugPubTable.cpp 552caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugRangeList.cpp 55367b158f6SDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugRnglists.cpp 554caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDie.cpp 555e89f883aSDimitry AndricSRCS_MIN+= DebugInfo/DWARF/DWARFExpression.cpp 556caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFFormValue.cpp 557caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFGdbIndex.cpp 55867b158f6SDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFListTable.cpp 55981ad6265SDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFTypePrinter.cpp 560caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFTypeUnit.cpp 561caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFUnit.cpp 562caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFUnitIndex.cpp 563caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFVerifier.cpp 56409bfd043SDimitry AndricSRCS_MIN+= DebugInfo/MSF/MSFBuilder.cpp 56509bfd043SDimitry AndricSRCS_MIN+= DebugInfo/MSF/MSFCommon.cpp 56624b8043eSDimitry AndricSRCS_EXT+= DebugInfo/MSF/MSFError.cpp 56709bfd043SDimitry AndricSRCS_MIN+= DebugInfo/MSF/MappedBlockStream.cpp 568986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/GenericError.cpp 56909bfd043SDimitry AndricSRCS_EXT+= DebugInfo/PDB/IPDBSourceFile.cpp 570f37b6182SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiModuleDescriptor.cpp 571f37b6182SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp 5720f5676f4SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiModuleList.cpp 573050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiStream.cpp 574050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiStreamBuilder.cpp 575050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/EnumTables.cpp 57681ad6265SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/FormatUtil.cpp 5773cd201a1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/GSIStreamBuilder.cpp 578050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/GlobalsStream.cpp 579050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/Hash.cpp 580050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/HashTable.cpp 581050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/InfoStream.cpp 582050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/InfoStreamBuilder.cpp 58324b8043eSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/InjectedSourceStream.cpp 58481ad6265SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/InputFile.cpp 58581ad6265SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/LinePrinter.cpp 586f37b6182SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/ModuleDebugStream.cpp 587050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NamedStreamMap.cpp 588050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeCompilandSymbol.cpp 589efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumGlobals.cpp 59024b8043eSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumInjectedSources.cpp 59148aaf27bSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumLineNumbers.cpp 592050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumModules.cpp 593e8d8bef9SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumSymbols.cpp 59444389c28SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumTypes.cpp 595050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeExeSymbol.cpp 59648aaf27bSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeFunctionSymbol.cpp 597e8d8bef9SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeInlineSiteSymbol.cpp 59848aaf27bSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeLineNumber.cpp 59948aaf27bSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativePublicSymbol.cpp 600050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeRawSymbol.cpp 601050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeSession.cpp 60248aaf27bSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeSourceFile.cpp 603efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeSymbolEnumerator.cpp 604efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeArray.cpp 605efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeBuiltin.cpp 606efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeEnum.cpp 607efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp 608efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypePointer.cpp 609efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeTypedef.cpp 610efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeUDT.cpp 611efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeVTShape.cpp 612050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBFile.cpp 613050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBFileBuilder.cpp 614b174acefSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBStringTable.cpp 615b174acefSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBStringTableBuilder.cpp 6163d54deb3SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PublicsStream.cpp 6173d54deb3SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/RawError.cpp 618efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/SymbolCache.cpp 619050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/SymbolStream.cpp 620050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/TpiHashing.cpp 621050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/TpiStream.cpp 622050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/TpiStreamBuilder.cpp 623986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDB.cpp 624986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBContext.cpp 625986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBExtras.cpp 626986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBInterfaceAnchors.cpp 627986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymDumper.cpp 628986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbol.cpp 629986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolAnnotation.cpp 630986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolBlock.cpp 631986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCompiland.cpp 632986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCompilandDetails.cpp 633986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCompilandEnv.cpp 634986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCustom.cpp 635986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolData.cpp 636986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolExe.cpp 637986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolFunc.cpp 638986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp 639986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp 640986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolLabel.cpp 641986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolPublicSymbol.cpp 642986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolThunk.cpp 643986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeArray.cpp 644986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp 645986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp 646986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeCustom.cpp 647986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeDimension.cpp 648986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeEnum.cpp 649986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeFriend.cpp 650986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp 651986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp 652986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeManaged.cpp 653986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypePointer.cpp 654986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeTypedef.cpp 655986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeUDT.cpp 656986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeVTable.cpp 657986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp 658986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolUnknown.cpp 659986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolUsingNamespace.cpp 660050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/UDTLayout.cpp 6610db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/DIPrinter.cpp 66281ad6265SDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/Markup.cpp 66381ad6265SDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/MarkupFilter.cpp 66409bfd043SDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/SymbolizableObjectFile.cpp 66509bfd043SDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/Symbolize.cpp 666bdd1243dSDimitry AndricSRCS_MIW+= Debuginfod/BuildIDFetcher.cpp 66704eeddc0SDimitry AndricSRCS_MIW+= Debuginfod/Debuginfod.cpp 66804eeddc0SDimitry AndricSRCS_MIW+= Debuginfod/HTTPClient.cpp 6695c38ea60SDimitry AndricSRCS_MIW+= Debuginfod/HTTPServer.cpp 6705e801ac6SDimitry AndricSRCS_MIN+= Demangle/DLangDemangle.cpp 6715e801ac6SDimitry AndricSRCS_MIN+= Demangle/Demangle.cpp 67209bfd043SDimitry AndricSRCS_MIN+= Demangle/ItaniumDemangle.cpp 6735e801ac6SDimitry AndricSRCS_MIN+= Demangle/MicrosoftDemangle.cpp 6745e801ac6SDimitry AndricSRCS_MIN+= Demangle/MicrosoftDemangleNodes.cpp 6755e801ac6SDimitry AndricSRCS_MIN+= Demangle/RustDemangle.cpp 676986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/ExecutionEngine.cpp 677986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/ExecutionEngineBindings.cpp 678986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/GDBRegistrationListener.cpp 679986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/Interpreter/Execution.cpp 680986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/Interpreter/ExternalFunctions.cpp 681986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/Interpreter/Interpreter.cpp 682753f127fSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/COFF.cpp 683753f127fSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/COFF_x86_64.cpp 684bdd1243dSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/COFFDirectiveParser.cpp 685753f127fSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/COFFLinkGraphBuilder.cpp 68681ad6265SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/DWARFRecordSectionSplitter.cpp 687b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/EHFrameSupport.cpp 68848aaf27bSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF.cpp 68906c3fb27SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF_aarch32.cpp 6905e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF_aarch64.cpp 691bdd1243dSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF_i386.cpp 692bdd1243dSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF_loongarch.cpp 69306c3fb27SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF_ppc64.cpp 694fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF_riscv.cpp 69548aaf27bSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF_x86_64.cpp 696fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELFLinkGraphBuilder.cpp 697b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/JITLink.cpp 698b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/JITLinkGeneric.cpp 699b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/JITLinkMemoryManager.cpp 700b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/MachO.cpp 701b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp 702b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/MachO_arm64.cpp 703b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/MachO_x86_64.cpp 70406c3fb27SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/aarch32.cpp 7055e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/aarch64.cpp 706bdd1243dSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/i386.cpp 707bdd1243dSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/loongarch.cpp 70806c3fb27SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ppc64.cpp 709fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/riscv.cpp 710fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/x86_64.cpp 711986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/MCJIT/MCJIT.cpp 71206c3fb27SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/COFFPlatform.cpp 71306c3fb27SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/COFFVCRuntimeSupport.cpp 71467b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/CompileOnDemandLayer.cpp 71524b8043eSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/CompileUtils.cpp 71667b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Core.cpp 717fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/DebugObjectManagerPlugin.cpp 71848aaf27bSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/DebugUtils.cpp 71906c3fb27SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/DebuggerSupportPlugin.cpp 7205e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ELFNixPlatform.cpp 721fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/EPCDebugObjectRegistrar.cpp 72206c3fb27SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/EPCDynamicLibrarySearchGenerator.cpp 723fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/EPCEHFrameRegistrar.cpp 7245e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/EPCGenericDylibManager.cpp 7255e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/EPCGenericJITLinkMemoryManager.cpp 7265e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/EPCGenericRTDyldMemoryManager.cpp 727986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ExecutionUtils.cpp 728fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ExecutorProcessControl.cpp 72967b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/IRCompileLayer.cpp 73067b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/IRTransformLayer.cpp 731986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/IndirectionUtils.cpp 732efa75597SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/JITTargetMachineBuilder.cpp 73367b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/LLJIT.cpp 73467b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Layer.cpp 735efa75597SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/LazyReexports.cpp 73681ad6265SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/LookupAndRecordAddrs.cpp 73748aaf27bSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/MachOPlatform.cpp 73848aaf27bSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Mangling.cpp 73904eeddc0SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ObjectFileInterface.cpp 740b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ObjectLinkingLayer.cpp 741b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ObjectTransformLayer.cpp 742986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/OrcABISupport.cpp 74367b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp 74404eeddc0SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Shared/AllocationActions.cpp 74506c3fb27SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Shared/ObjectFormats.cpp 746e8d8bef9SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Shared/OrcError.cpp 7475e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Shared/OrcRTBridge.cpp 7485e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Shared/SimpleRemoteEPCUtils.cpp 7495e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/SimpleRemoteEPC.cpp 750b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Speculation.cpp 751fe6060f1SDimitry AndricSRCS_XDB+= ExecutionEngine/Orc/TargetProcess/JITLoaderGDB.cpp 752e8d8bef9SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/TargetProcess/RegisterEHFrames.cpp 753e8d8bef9SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/TargetProcess/TargetExecutionUtils.cpp 7545e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/TaskDispatch.cpp 755efa75597SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ThreadSafeModule.cpp 75609bfd043SDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/JITSymbol.cpp 757986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp 758986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp 759986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp 760986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp 761986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp 762986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp 76309bfd043SDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp 764986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/SectionMemoryManager.cpp 765986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/TargetSelect.cpp 766bdd1243dSDimitry AndricSRCS_MIN+= Frontend/HLSL/HLSLResource.cpp 767fe6060f1SDimitry AndricSRCS_MIN+= Frontend/OpenMP/OMP.cpp 76848aaf27bSDimitry AndricSRCS_MIN+= Frontend/OpenMP/OMPContext.cpp 7699771cac2SDimitry AndricSRCS_MIN+= Frontend/OpenMP/OMPIRBuilder.cpp 7704014a71fSDimitry AndricSRCS_MIN+= IR/AbstractCallSite.cpp 771986e05bcSDimitry AndricSRCS_MIN+= IR/AsmWriter.cpp 772e8d8bef9SDimitry AndricSRCS_MIN+= IR/Assumptions.cpp 773986e05bcSDimitry AndricSRCS_MIN+= IR/Attributes.cpp 774986e05bcSDimitry AndricSRCS_MIN+= IR/AutoUpgrade.cpp 775986e05bcSDimitry AndricSRCS_MIN+= IR/BasicBlock.cpp 776bdd1243dSDimitry AndricSRCS_MIN+= IR/BuiltinGCs.cpp 777986e05bcSDimitry AndricSRCS_MIN+= IR/Comdat.cpp 778986e05bcSDimitry AndricSRCS_MIN+= IR/ConstantFold.cpp 779986e05bcSDimitry AndricSRCS_MIN+= IR/ConstantRange.cpp 780986e05bcSDimitry AndricSRCS_MIN+= IR/Constants.cpp 781986e05bcSDimitry AndricSRCS_MIN+= IR/Core.cpp 78206c3fb27SDimitry AndricSRCS_MIN+= IR/CycleInfo.cpp 783986e05bcSDimitry AndricSRCS_MIN+= IR/DIBuilder.cpp 784986e05bcSDimitry AndricSRCS_MIN+= IR/DataLayout.cpp 785986e05bcSDimitry AndricSRCS_MIN+= IR/DebugInfo.cpp 786986e05bcSDimitry AndricSRCS_MIN+= IR/DebugInfoMetadata.cpp 787986e05bcSDimitry AndricSRCS_MIN+= IR/DebugLoc.cpp 78836cb3905SDimitry AndricSRCS_MIN+= IR/DiagnosticHandler.cpp 789986e05bcSDimitry AndricSRCS_MIN+= IR/DiagnosticInfo.cpp 790986e05bcSDimitry AndricSRCS_MIN+= IR/DiagnosticPrinter.cpp 791986e05bcSDimitry AndricSRCS_MIN+= IR/Dominators.cpp 79206c3fb27SDimitry AndricSRCS_MIN+= IR/EHPersonalities.cpp 7939771cac2SDimitry AndricSRCS_MIN+= IR/FPEnv.cpp 794986e05bcSDimitry AndricSRCS_MIN+= IR/Function.cpp 795fe6060f1SDimitry AndricSRCS_MIN+= IR/GCStrategy.cpp 796986e05bcSDimitry AndricSRCS_MIN+= IR/GVMaterializer.cpp 797986e05bcSDimitry AndricSRCS_MIN+= IR/Globals.cpp 798986e05bcSDimitry AndricSRCS_MIN+= IR/IRBuilder.cpp 799986e05bcSDimitry AndricSRCS_MIN+= IR/IRPrintingPasses.cpp 800986e05bcSDimitry AndricSRCS_MIN+= IR/InlineAsm.cpp 801986e05bcSDimitry AndricSRCS_MIN+= IR/Instruction.cpp 802986e05bcSDimitry AndricSRCS_MIN+= IR/Instructions.cpp 803986e05bcSDimitry AndricSRCS_MIN+= IR/IntrinsicInst.cpp 804986e05bcSDimitry AndricSRCS_MIN+= IR/LLVMContext.cpp 805986e05bcSDimitry AndricSRCS_MIN+= IR/LLVMContextImpl.cpp 80648aaf27bSDimitry AndricSRCS_MIN+= IR/LLVMRemarkStreamer.cpp 807986e05bcSDimitry AndricSRCS_MIN+= IR/LegacyPassManager.cpp 808986e05bcSDimitry AndricSRCS_MIN+= IR/MDBuilder.cpp 809986e05bcSDimitry AndricSRCS_MIN+= IR/Mangler.cpp 810986e05bcSDimitry AndricSRCS_MIN+= IR/Metadata.cpp 811986e05bcSDimitry AndricSRCS_MIN+= IR/Module.cpp 812986e05bcSDimitry AndricSRCS_MIN+= IR/ModuleSummaryIndex.cpp 813986e05bcSDimitry AndricSRCS_MIN+= IR/Operator.cpp 814986e05bcSDimitry AndricSRCS_MIN+= IR/OptBisect.cpp 815986e05bcSDimitry AndricSRCS_MIN+= IR/Pass.cpp 8165e86819cSDimitry AndricSRCS_MIN+= IR/PassInstrumentation.cpp 817986e05bcSDimitry AndricSRCS_MIN+= IR/PassManager.cpp 818986e05bcSDimitry AndricSRCS_MIN+= IR/PassRegistry.cpp 8195e86819cSDimitry AndricSRCS_MIN+= IR/PassTimingInfo.cpp 820e8d8bef9SDimitry AndricSRCS_MIN+= IR/PrintPasses.cpp 821bdd1243dSDimitry AndricSRCS_MIN+= IR/ProfDataUtils.cpp 822986e05bcSDimitry AndricSRCS_MIN+= IR/ProfileSummary.cpp 823e8d8bef9SDimitry AndricSRCS_MIN+= IR/PseudoProbe.cpp 824e8d8bef9SDimitry AndricSRCS_MIN+= IR/ReplaceConstant.cpp 82504eeddc0SDimitry AndricSRCS_MIN+= IR/SSAContext.cpp 826c4394386SDimitry AndricSRCS_MIN+= IR/SafepointIRVerifier.cpp 827986e05bcSDimitry AndricSRCS_MIN+= IR/Statepoint.cpp 82806c3fb27SDimitry AndricSRCS_MIN+= IR/StructuralHash.cpp 829986e05bcSDimitry AndricSRCS_MIN+= IR/Type.cpp 830986e05bcSDimitry AndricSRCS_MIN+= IR/TypeFinder.cpp 831986e05bcSDimitry AndricSRCS_MIN+= IR/Use.cpp 832986e05bcSDimitry AndricSRCS_MIN+= IR/User.cpp 833986e05bcSDimitry AndricSRCS_MIN+= IR/Value.cpp 834986e05bcSDimitry AndricSRCS_MIN+= IR/ValueSymbolTable.cpp 835986e05bcSDimitry AndricSRCS_MIN+= IR/Verifier.cpp 836986e05bcSDimitry AndricSRCS_MIN+= IRReader/IRReader.cpp 837bdd1243dSDimitry AndricSRCS_MIN+= IRPrinter/IRPrintingPasses.cpp 8385897d2f0SDimitry AndricSRCS_MIN+= LTO/LTO.cpp 83909bfd043SDimitry AndricSRCS_MIN+= LTO/LTOBackend.cpp 84075bc38b9SEd MasteSRCS_EXL+= LTO/LTOCodeGenerator.cpp 84175bc38b9SEd MasteSRCS_EXL+= LTO/LTOModule.cpp 842efa75597SDimitry AndricSRCS_EXL+= LTO/SummaryBasedOptimizations.cpp 84375bc38b9SEd MasteSRCS_EXL+= LTO/ThinLTOCodeGenerator.cpp 84409bfd043SDimitry AndricSRCS_MIN+= LTO/UpdateCompilerUsed.cpp 84531ba4ce8SAlex Richardson# Only needed for clangd/clang-query, uncomment once we build those. 84631ba4ce8SAlex Richardson# SRCS_XDW+= LineEditor/LineEditor.cpp 847986e05bcSDimitry AndricSRCS_MIN+= Linker/IRMover.cpp 848986e05bcSDimitry AndricSRCS_MIN+= Linker/LinkModules.cpp 849986e05bcSDimitry AndricSRCS_MIN+= MC/ConstantPools.cpp 850986e05bcSDimitry AndricSRCS_MIN+= MC/ELFObjectWriter.cpp 851986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmBackend.cpp 852986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfo.cpp 853986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfoCOFF.cpp 854986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfoDarwin.cpp 855986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfoELF.cpp 8564014a71fSDimitry AndricSRCS_MIN+= MC/MCAsmInfoXCOFF.cpp 8579f6e9a9fSDimitry AndricSRCS_MIN+= MC/MCAsmMacro.cpp 858986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmStreamer.cpp 859986e05bcSDimitry AndricSRCS_MIN+= MC/MCAssembler.cpp 860986e05bcSDimitry AndricSRCS_MIN+= MC/MCCodeEmitter.cpp 861986e05bcSDimitry AndricSRCS_MIN+= MC/MCCodeView.cpp 862986e05bcSDimitry AndricSRCS_MIN+= MC/MCContext.cpp 86381ad6265SDimitry AndricSRCS_MIN+= MC/MCDXContainerStreamer.cpp 86481ad6265SDimitry AndricSRCS_MIN+= MC/MCDXContainerWriter.cpp 86575bc38b9SEd MasteSRCS_XDL+= MC/MCDisassembler/Disassembler.cpp 86630d4828eSDimitry AndricSRCS_XDW+= MC/MCDisassembler/MCDisassembler.cpp 86730d4828eSDimitry AndricSRCS_XDW+= MC/MCDisassembler/MCExternalSymbolizer.cpp 868986e05bcSDimitry AndricSRCS_MIN+= MC/MCDisassembler/MCRelocationInfo.cpp 86930d4828eSDimitry AndricSRCS_XDW+= MC/MCDisassembler/MCSymbolizer.cpp 870986e05bcSDimitry AndricSRCS_MIN+= MC/MCDwarf.cpp 871986e05bcSDimitry AndricSRCS_MIN+= MC/MCELFObjectTargetWriter.cpp 872986e05bcSDimitry AndricSRCS_MIN+= MC/MCELFStreamer.cpp 873986e05bcSDimitry AndricSRCS_MIN+= MC/MCExpr.cpp 874986e05bcSDimitry AndricSRCS_MIN+= MC/MCFragment.cpp 875986e05bcSDimitry AndricSRCS_MIN+= MC/MCInst.cpp 876986e05bcSDimitry AndricSRCS_MIN+= MC/MCInstPrinter.cpp 877986e05bcSDimitry AndricSRCS_MIN+= MC/MCInstrAnalysis.cpp 878986e05bcSDimitry AndricSRCS_MIN+= MC/MCInstrDesc.cpp 87948aaf27bSDimitry AndricSRCS_MIN+= MC/MCInstrInfo.cpp 880986e05bcSDimitry AndricSRCS_MIN+= MC/MCLinkerOptimizationHint.cpp 881986e05bcSDimitry AndricSRCS_MIN+= MC/MCMachOStreamer.cpp 882986e05bcSDimitry AndricSRCS_MIN+= MC/MCMachObjectTargetWriter.cpp 883986e05bcSDimitry AndricSRCS_MIN+= MC/MCNullStreamer.cpp 884986e05bcSDimitry AndricSRCS_MIN+= MC/MCObjectFileInfo.cpp 885986e05bcSDimitry AndricSRCS_MIN+= MC/MCObjectStreamer.cpp 886986e05bcSDimitry AndricSRCS_MIN+= MC/MCObjectWriter.cpp 887986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/AsmLexer.cpp 888986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/AsmParser.cpp 889986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/COFFAsmParser.cpp 890986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/DarwinAsmParser.cpp 891986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/ELFAsmParser.cpp 8925e801ac6SDimitry AndricSRCS_MIN+= MC/MCParser/GOFFAsmParser.cpp 893986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCAsmLexer.cpp 894986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCAsmParser.cpp 895986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCAsmParserExtension.cpp 896986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCTargetAsmParser.cpp 8975e86819cSDimitry AndricSRCS_MIN+= MC/MCParser/WasmAsmParser.cpp 898fe6060f1SDimitry AndricSRCS_MIN+= MC/MCParser/XCOFFAsmParser.cpp 899e8d8bef9SDimitry AndricSRCS_MIN+= MC/MCPseudoProbe.cpp 900986e05bcSDimitry AndricSRCS_MIN+= MC/MCRegisterInfo.cpp 90181ad6265SDimitry AndricSRCS_MIN+= MC/MCSPIRVStreamer.cpp 902986e05bcSDimitry AndricSRCS_MIN+= MC/MCSchedule.cpp 903986e05bcSDimitry AndricSRCS_MIN+= MC/MCSection.cpp 904986e05bcSDimitry AndricSRCS_MIN+= MC/MCSectionCOFF.cpp 90581ad6265SDimitry AndricSRCS_MIN+= MC/MCSectionDXContainer.cpp 906986e05bcSDimitry AndricSRCS_MIN+= MC/MCSectionELF.cpp 907986e05bcSDimitry AndricSRCS_MIN+= MC/MCSectionMachO.cpp 9085897d2f0SDimitry AndricSRCS_MIN+= MC/MCSectionWasm.cpp 9094014a71fSDimitry AndricSRCS_MIN+= MC/MCSectionXCOFF.cpp 910986e05bcSDimitry AndricSRCS_MIN+= MC/MCStreamer.cpp 911986e05bcSDimitry AndricSRCS_MIN+= MC/MCSubtargetInfo.cpp 912986e05bcSDimitry AndricSRCS_MIN+= MC/MCSymbol.cpp 913986e05bcSDimitry AndricSRCS_MIN+= MC/MCSymbolELF.cpp 91448aaf27bSDimitry AndricSRCS_MIN+= MC/MCSymbolXCOFF.cpp 915986e05bcSDimitry AndricSRCS_MIN+= MC/MCTargetOptions.cpp 91648aaf27bSDimitry AndricSRCS_MIN+= MC/MCTargetOptionsCommandFlags.cpp 917986e05bcSDimitry AndricSRCS_MIN+= MC/MCValue.cpp 9185897d2f0SDimitry AndricSRCS_MIN+= MC/MCWasmStreamer.cpp 919986e05bcSDimitry AndricSRCS_MIN+= MC/MCWin64EH.cpp 920edd7eaddSDimitry AndricSRCS_MIN+= MC/MCWinCOFFStreamer.cpp 921986e05bcSDimitry AndricSRCS_MIN+= MC/MCWinEH.cpp 9224014a71fSDimitry AndricSRCS_MIN+= MC/MCXCOFFStreamer.cpp 9234014a71fSDimitry AndricSRCS_MIN+= MC/MCXCOFFObjectTargetWriter.cpp 924986e05bcSDimitry AndricSRCS_MIN+= MC/MachObjectWriter.cpp 92581ad6265SDimitry AndricSRCS_MIN+= MC/SPIRVObjectWriter.cpp 926986e05bcSDimitry AndricSRCS_MIN+= MC/StringTableBuilder.cpp 9275e801ac6SDimitry AndricSRCS_MIN+= MC/TargetRegistry.cpp 9289f6e9a9fSDimitry AndricSRCS_MIN+= MC/WasmObjectWriter.cpp 929986e05bcSDimitry AndricSRCS_MIN+= MC/WinCOFFObjectWriter.cpp 9304014a71fSDimitry AndricSRCS_MIN+= MC/XCOFFObjectWriter.cpp 931b1ae9102SDimitry AndricSRCS_EXT+= MCA/CodeEmitter.cpp 932efa75597SDimitry AndricSRCS_EXT+= MCA/Context.cpp 933fe6060f1SDimitry AndricSRCS_EXT+= MCA/CustomBehaviour.cpp 934efa75597SDimitry AndricSRCS_EXT+= MCA/HWEventListener.cpp 935efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/HardwareUnit.cpp 936efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/LSUnit.cpp 937efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/RegisterFile.cpp 938efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/ResourceManager.cpp 939efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/RetireControlUnit.cpp 940efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/Scheduler.cpp 941efa75597SDimitry AndricSRCS_EXT+= MCA/InstrBuilder.cpp 942efa75597SDimitry AndricSRCS_EXT+= MCA/Instruction.cpp 943efa75597SDimitry AndricSRCS_EXT+= MCA/Pipeline.cpp 944efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/DispatchStage.cpp 945efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/EntryStage.cpp 946efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/ExecuteStage.cpp 947fe6060f1SDimitry AndricSRCS_EXT+= MCA/Stages/InOrderIssueStage.cpp 948efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/InstructionTables.cpp 94924b8043eSDimitry AndricSRCS_EXT+= MCA/Stages/MicroOpQueueStage.cpp 950efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/RetireStage.cpp 951efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/Stage.cpp 952efa75597SDimitry AndricSRCS_EXT+= MCA/Support.cpp 9535e801ac6SDimitry AndricSRCS_EXT+= MCA/View.cpp 95481ad6265SDimitry AndricSRCS_MIW+= ObjCopy/Archive.cpp 95581ad6265SDimitry AndricSRCS_MIW+= ObjCopy/COFF/COFFObjcopy.cpp 95681ad6265SDimitry AndricSRCS_MIW+= ObjCopy/COFF/COFFObject.cpp 95781ad6265SDimitry AndricSRCS_MIW+= ObjCopy/COFF/COFFReader.cpp 95881ad6265SDimitry AndricSRCS_MIW+= ObjCopy/COFF/COFFWriter.cpp 95981ad6265SDimitry AndricSRCS_MIW+= ObjCopy/CommonConfig.cpp 96081ad6265SDimitry AndricSRCS_MIW+= ObjCopy/ConfigManager.cpp 96181ad6265SDimitry AndricSRCS_MIW+= ObjCopy/ELF/ELFObjcopy.cpp 96281ad6265SDimitry AndricSRCS_MIW+= ObjCopy/ELF/ELFObject.cpp 96381ad6265SDimitry AndricSRCS_MIW+= ObjCopy/MachO/MachOLayoutBuilder.cpp 96481ad6265SDimitry AndricSRCS_MIW+= ObjCopy/MachO/MachOObjcopy.cpp 96581ad6265SDimitry AndricSRCS_MIW+= ObjCopy/MachO/MachOObject.cpp 96681ad6265SDimitry AndricSRCS_MIW+= ObjCopy/MachO/MachOReader.cpp 96781ad6265SDimitry AndricSRCS_MIW+= ObjCopy/MachO/MachOWriter.cpp 96881ad6265SDimitry AndricSRCS_MIW+= ObjCopy/ObjCopy.cpp 96981ad6265SDimitry AndricSRCS_MIW+= ObjCopy/XCOFF/XCOFFObjcopy.cpp 97081ad6265SDimitry AndricSRCS_MIW+= ObjCopy/XCOFF/XCOFFReader.cpp 97181ad6265SDimitry AndricSRCS_MIW+= ObjCopy/XCOFF/XCOFFWriter.cpp 97281ad6265SDimitry AndricSRCS_MIW+= ObjCopy/wasm/WasmObjcopy.cpp 97381ad6265SDimitry AndricSRCS_MIW+= ObjCopy/wasm/WasmObject.cpp 97481ad6265SDimitry AndricSRCS_MIW+= ObjCopy/wasm/WasmReader.cpp 97581ad6265SDimitry AndricSRCS_MIW+= ObjCopy/wasm/WasmWriter.cpp 976986e05bcSDimitry AndricSRCS_MIN+= Object/Archive.cpp 977986e05bcSDimitry AndricSRCS_MIN+= Object/ArchiveWriter.cpp 978986e05bcSDimitry AndricSRCS_MIN+= Object/Binary.cpp 979bdd1243dSDimitry AndricSRCS_MIW+= Object/BuildID.cpp 9809c954a48SEd MasteSRCS_MIN+= Object/COFFImportFile.cpp 9810db9a49eSDimitry AndricSRCS_MIW+= Object/COFFModuleDefinition.cpp 982986e05bcSDimitry AndricSRCS_MIN+= Object/COFFObjectFile.cpp 983f1a29dd3SDimitry AndricSRCS_MIN+= Object/Decompressor.cpp 984986e05bcSDimitry AndricSRCS_MIN+= Object/ELF.cpp 985986e05bcSDimitry AndricSRCS_MIN+= Object/ELFObjectFile.cpp 986986e05bcSDimitry AndricSRCS_MIN+= Object/Error.cpp 987fe6060f1SDimitry AndricSRCS_MIW+= Object/FaultMapParser.cpp 988986e05bcSDimitry AndricSRCS_MIN+= Object/IRObjectFile.cpp 9895897d2f0SDimitry AndricSRCS_MIN+= Object/IRSymtab.cpp 990986e05bcSDimitry AndricSRCS_MIN+= Object/MachOObjectFile.cpp 9910db9a49eSDimitry AndricSRCS_MIW+= Object/MachOUniversal.cpp 992021385abSAlex RichardsonSRCS_MIW+= Object/MachOUniversalWriter.cpp 9930db9a49eSDimitry AndricSRCS_MIW+= Object/Minidump.cpp 99409bfd043SDimitry AndricSRCS_MIN+= Object/ModuleSymbolTable.cpp 995986e05bcSDimitry AndricSRCS_EXT+= Object/Object.cpp 996986e05bcSDimitry AndricSRCS_MIN+= Object/ObjectFile.cpp 99781ad6265SDimitry AndricSRCS_MIW+= Object/OffloadBinary.cpp 998986e05bcSDimitry AndricSRCS_MIN+= Object/RecordStreamer.cpp 9990db9a49eSDimitry AndricSRCS_MIW+= Object/RelocationResolver.cpp 10000db9a49eSDimitry AndricSRCS_MIW+= Object/SymbolSize.cpp 1001986e05bcSDimitry AndricSRCS_MIN+= Object/SymbolicFile.cpp 100248aaf27bSDimitry AndricSRCS_MIW+= Object/TapiFile.cpp 1003d311d024SDimitry AndricSRCS_MIW+= Object/TapiUniversal.cpp 100409bfd043SDimitry AndricSRCS_MIN+= Object/WasmObjectFile.cpp 10050db9a49eSDimitry AndricSRCS_MIW+= Object/WindowsMachineFlag.cpp 1006bbd32193SDimitry AndricSRCS_MIN+= Object/WindowsResource.cpp 10074014a71fSDimitry AndricSRCS_MIN+= Object/XCOFFObjectFile.cpp 1008986e05bcSDimitry AndricSRCS_MIN+= ObjectYAML/COFFYAML.cpp 1009f9448bf3SDimitry AndricSRCS_EXT+= ObjectYAML/CodeViewYAMLDebugSections.cpp 1010f9448bf3SDimitry AndricSRCS_EXT+= ObjectYAML/CodeViewYAMLSymbols.cpp 1011f9448bf3SDimitry AndricSRCS_EXT+= ObjectYAML/CodeViewYAMLTypes.cpp 101209bfd043SDimitry AndricSRCS_MIN+= ObjectYAML/DWARFYAML.cpp 1013986e05bcSDimitry AndricSRCS_MIN+= ObjectYAML/ELFYAML.cpp 1014986e05bcSDimitry AndricSRCS_MIN+= ObjectYAML/MachOYAML.cpp 101524d58133SDimitry AndricSRCS_EXT+= ObjectYAML/YAML.cpp 1016986e05bcSDimitry AndricSRCS_MIN+= Option/Arg.cpp 1017986e05bcSDimitry AndricSRCS_MIN+= Option/ArgList.cpp 1018986e05bcSDimitry AndricSRCS_MIN+= Option/OptTable.cpp 1019986e05bcSDimitry AndricSRCS_MIN+= Option/Option.cpp 10205e801ac6SDimitry AndricSRCS_MIN+= Passes/OptimizationLevel.cpp 102109bfd043SDimitry AndricSRCS_MIN+= Passes/PassBuilder.cpp 10225e801ac6SDimitry AndricSRCS_MIN+= Passes/PassBuilderPipelines.cpp 10234014a71fSDimitry AndricSRCS_MIN+= Passes/PassPlugin.cpp 10249771cac2SDimitry AndricSRCS_MIN+= Passes/StandardInstrumentations.cpp 1025986e05bcSDimitry AndricSRCS_MIN+= ProfileData/Coverage/CoverageMapping.cpp 1026986e05bcSDimitry AndricSRCS_MIN+= ProfileData/Coverage/CoverageMappingReader.cpp 1027986e05bcSDimitry AndricSRCS_MIN+= ProfileData/Coverage/CoverageMappingWriter.cpp 10281b49115aSEd MasteSRCS_MIN+= ProfileData/GCOV.cpp 1029986e05bcSDimitry AndricSRCS_MIN+= ProfileData/InstrProf.cpp 103004eeddc0SDimitry AndricSRCS_MIN+= ProfileData/InstrProfCorrelator.cpp 1031986e05bcSDimitry AndricSRCS_MIN+= ProfileData/InstrProfReader.cpp 1032986e05bcSDimitry AndricSRCS_MIN+= ProfileData/InstrProfWriter.cpp 103306c3fb27SDimitry AndricSRCS_MIN+= ProfileData/ItaniumManglingCanonicalizer.cpp 103481ad6265SDimitry AndricSRCS_MIN+= ProfileData/MemProf.cpp 1035986e05bcSDimitry AndricSRCS_MIN+= ProfileData/ProfileSummaryBuilder.cpp 10361838bd0fSDimitry AndricSRCS_MIW+= ProfileData/RawMemProfReader.cpp 1037986e05bcSDimitry AndricSRCS_MIN+= ProfileData/SampleProf.cpp 1038986e05bcSDimitry AndricSRCS_MIN+= ProfileData/SampleProfReader.cpp 1039961eb443SEd MasteSRCS_MIN+= ProfileData/SampleProfWriter.cpp 104006c3fb27SDimitry AndricSRCS_MIN+= ProfileData/SymbolRemappingReader.cpp 1041a2a9ef4bSDimitry AndricSRCS_MIN+= Remarks/BitstreamRemarkParser.cpp 10429771cac2SDimitry AndricSRCS_MIN+= Remarks/BitstreamRemarkSerializer.cpp 10434014a71fSDimitry AndricSRCS_MIN+= Remarks/RemarkFormat.cpp 1044a2a9ef4bSDimitry AndricSRCS_MIN+= Remarks/RemarkParser.cpp 10459771cac2SDimitry AndricSRCS_MIN+= Remarks/RemarkSerializer.cpp 104648aaf27bSDimitry AndricSRCS_MIN+= Remarks/RemarkStreamer.cpp 10474014a71fSDimitry AndricSRCS_MIN+= Remarks/RemarkStringTable.cpp 1048a2a9ef4bSDimitry AndricSRCS_MIN+= Remarks/YAMLRemarkParser.cpp 10494014a71fSDimitry AndricSRCS_MIN+= Remarks/YAMLRemarkSerializer.cpp 1050054f9817SDimitry AndricSRCS_MIN+= Support/ABIBreak.cpp 1051e8d8bef9SDimitry AndricSRCS_MIN+= Support/APFixedPoint.cpp 1052986e05bcSDimitry AndricSRCS_MIN+= Support/APFloat.cpp 1053986e05bcSDimitry AndricSRCS_MIN+= Support/APInt.cpp 1054986e05bcSDimitry AndricSRCS_MIN+= Support/APSInt.cpp 10555897d2f0SDimitry AndricSRCS_MIN+= Support/ARMAttributeParser.cpp 1056986e05bcSDimitry AndricSRCS_MIN+= Support/ARMBuildAttrs.cpp 10571b85b68dSCameron KatriSRCS_MIN+= Support/ARMWinEH.cpp 1058986e05bcSDimitry AndricSRCS_MIN+= Support/Allocator.cpp 1059bdd1243dSDimitry AndricSRCS_MIN+= Support/BLAKE3/blake3.c 1060bdd1243dSDimitry AndricSRCS_MIN+= Support/BLAKE3/blake3_dispatch.c 1061fcaf7f86SDimitry Andric.if ${TARGET_ARCH} == "aarch64" 1062bdd1243dSDimitry AndricSRCS_MIN+= Support/BLAKE3/blake3_neon.c 1063fcaf7f86SDimitry Andric.endif 1064bdd1243dSDimitry AndricSRCS_MIN+= Support/BLAKE3/blake3_portable.c 1065fcaf7f86SDimitry Andric.if ${TARGET_ARCH} == "amd64" 1066bdd1243dSDimitry AndricSRCS_MIN+= Support/BLAKE3/blake3_avx2_x86-64_unix.S 1067bdd1243dSDimitry AndricSRCS_MIN+= Support/BLAKE3/blake3_sse2_x86-64_unix.S 1068bdd1243dSDimitry AndricSRCS_MIN+= Support/BLAKE3/blake3_sse41_x86-64_unix.S 1069bdd1243dSDimitry AndricSRCS_MIN+= Support/BLAKE3/blake3_avx512_x86-64_unix.S 1070fcaf7f86SDimitry Andric.endif 107106c3fb27SDimitry AndricSRCS_COV+= Support/BalancedPartitioning.cpp 10725897d2f0SDimitry AndricSRCS_MIN+= Support/BinaryStreamError.cpp 10735897d2f0SDimitry AndricSRCS_MIN+= Support/BinaryStreamReader.cpp 1074d8866befSDimitry AndricSRCS_MIN+= Support/BinaryStreamRef.cpp 10755897d2f0SDimitry AndricSRCS_MIN+= Support/BinaryStreamWriter.cpp 1076986e05bcSDimitry AndricSRCS_MIN+= Support/BlockFrequency.cpp 1077986e05bcSDimitry AndricSRCS_MIN+= Support/BranchProbability.cpp 10785e86819cSDimitry AndricSRCS_MIN+= Support/BuryPointer.cpp 10790db9a49eSDimitry AndricSRCS_MIW+= Support/COM.cpp 10804d4aa256SDimitry AndricSRCS_MIN+= Support/CRC.cpp 108181ad6265SDimitry AndricSRCS_MIN+= Support/CachePruning.cpp 108281ad6265SDimitry AndricSRCS_MIW+= Support/Caching.cpp 108309bfd043SDimitry AndricSRCS_MIN+= Support/Chrono.cpp 108436cb3905SDimitry AndricSRCS_MIN+= Support/CodeGenCoverage.cpp 1085986e05bcSDimitry AndricSRCS_MIN+= Support/CommandLine.cpp 1086986e05bcSDimitry AndricSRCS_MIN+= Support/Compression.cpp 108709bfd043SDimitry AndricSRCS_MIN+= Support/ConvertUTF.cpp 1088986e05bcSDimitry AndricSRCS_MIN+= Support/ConvertUTFWrapper.cpp 1089986e05bcSDimitry AndricSRCS_MIN+= Support/CrashRecoveryContext.cpp 1090986e05bcSDimitry AndricSRCS_MIN+= Support/DAGDeltaAlgorithm.cpp 10919f6e9a9fSDimitry AndricSRCS_MIN+= Support/DJB.cpp 1092986e05bcSDimitry AndricSRCS_MIN+= Support/DataExtractor.cpp 1093986e05bcSDimitry AndricSRCS_MIN+= Support/Debug.cpp 10945897d2f0SDimitry AndricSRCS_MIN+= Support/DebugCounter.cpp 1095986e05bcSDimitry AndricSRCS_MIN+= Support/DeltaAlgorithm.cpp 10965e801ac6SDimitry AndricSRCS_MIN+= Support/DivisionByConstantInfo.cpp 1097986e05bcSDimitry AndricSRCS_MIN+= Support/DynamicLibrary.cpp 109848aaf27bSDimitry AndricSRCS_MIN+= Support/ELFAttributeParser.cpp 109948aaf27bSDimitry AndricSRCS_MIN+= Support/ELFAttributes.cpp 1100986e05bcSDimitry AndricSRCS_MIN+= Support/Errno.cpp 1101986e05bcSDimitry AndricSRCS_MIN+= Support/Error.cpp 1102986e05bcSDimitry AndricSRCS_MIN+= Support/ErrorHandling.cpp 1103fe6060f1SDimitry AndricSRCS_MIN+= Support/ExtensibleRTTI.cpp 1104e8d8bef9SDimitry AndricSRCS_MIN+= Support/FileCollector.cpp 1105021385abSAlex RichardsonSRCS_MIW+= Support/FileOutputBuffer.cpp 11069771cac2SDimitry AndricSRCS_MIN+= Support/FileUtilities.cpp 110706c3fb27SDimitry AndricSRCS_MIN+= Support/FloatingPointMode.cpp 1108986e05bcSDimitry AndricSRCS_MIN+= Support/FoldingSet.cpp 110909bfd043SDimitry AndricSRCS_MIN+= Support/FormatVariadic.cpp 1110986e05bcSDimitry AndricSRCS_MIN+= Support/FormattedStream.cpp 111109bfd043SDimitry AndricSRCS_MIN+= Support/GlobPattern.cpp 1112986e05bcSDimitry AndricSRCS_MIN+= Support/GraphWriter.cpp 1113986e05bcSDimitry AndricSRCS_MIN+= Support/Hashing.cpp 11149f6e9a9fSDimitry AndricSRCS_MIN+= Support/InitLLVM.cpp 1115e8d8bef9SDimitry AndricSRCS_MIN+= Support/InstructionCost.cpp 1116986e05bcSDimitry AndricSRCS_MIN+= Support/IntEqClasses.cpp 1117986e05bcSDimitry AndricSRCS_MIN+= Support/IntervalMap.cpp 11182d31b1b8SDimitry AndricSRCS_MIN+= Support/JSON.cpp 111936cb3905SDimitry AndricSRCS_MIN+= Support/KnownBits.cpp 1120986e05bcSDimitry AndricSRCS_MIN+= Support/LEB128.cpp 1121986e05bcSDimitry AndricSRCS_MIN+= Support/LineIterator.cpp 1122986e05bcSDimitry AndricSRCS_MIN+= Support/Locale.cpp 1123986e05bcSDimitry AndricSRCS_MIN+= Support/LockFileManager.cpp 1124986e05bcSDimitry AndricSRCS_MIN+= Support/MD5.cpp 11255e801ac6SDimitry AndricSRCS_MIW+= Support/MSP430AttributeParser.cpp 11265e801ac6SDimitry AndricSRCS_MIW+= Support/MSP430Attributes.cpp 1127986e05bcSDimitry AndricSRCS_MIN+= Support/ManagedStatic.cpp 1128986e05bcSDimitry AndricSRCS_MIN+= Support/MathExtras.cpp 112948aaf27bSDimitry AndricSRCS_MIN+= Support/MemAlloc.cpp 1130021385abSAlex RichardsonSRCS_MIW+= Support/Memory.cpp 1131986e05bcSDimitry AndricSRCS_MIN+= Support/MemoryBuffer.cpp 1132e8d8bef9SDimitry AndricSRCS_MIN+= Support/MemoryBufferRef.cpp 113309bfd043SDimitry AndricSRCS_MIN+= Support/NativeFormatting.cpp 113448aaf27bSDimitry AndricSRCS_MIN+= Support/OptimizedStructLayout.cpp 11354014a71fSDimitry AndricSRCS_MIN+= Support/Optional.cpp 113606c3fb27SDimitry AndricSRCS_MIN+= Support/PGOOptions.cpp 1137e8d8bef9SDimitry AndricSRCS_EXL+= Support/Parallel.cpp 1138986e05bcSDimitry AndricSRCS_MIN+= Support/Path.cpp 1139986e05bcSDimitry AndricSRCS_MIN+= Support/PluginLoader.cpp 1140986e05bcSDimitry AndricSRCS_MIN+= Support/PrettyStackTrace.cpp 1141986e05bcSDimitry AndricSRCS_MIN+= Support/Process.cpp 1142986e05bcSDimitry AndricSRCS_MIN+= Support/Program.cpp 114348aaf27bSDimitry AndricSRCS_MIN+= Support/RISCVAttributeParser.cpp 114448aaf27bSDimitry AndricSRCS_MIN+= Support/RISCVAttributes.cpp 11455e801ac6SDimitry AndricSRCS_MIN+= Support/RISCVISAInfo.cpp 1146986e05bcSDimitry AndricSRCS_MIN+= Support/RWMutex.cpp 1147986e05bcSDimitry AndricSRCS_MIN+= Support/RandomNumberGenerator.cpp 1148986e05bcSDimitry AndricSRCS_MIN+= Support/Regex.cpp 1149986e05bcSDimitry AndricSRCS_MIN+= Support/SHA1.cpp 11505e801ac6SDimitry AndricSRCS_MIN+= Support/SHA256.cpp 1151986e05bcSDimitry AndricSRCS_MIN+= Support/ScaledNumber.cpp 1152986e05bcSDimitry AndricSRCS_MIN+= Support/ScopedPrinter.cpp 1153986e05bcSDimitry AndricSRCS_MIN+= Support/Signals.cpp 11544014a71fSDimitry AndricSRCS_MIN+= Support/Signposts.cpp 1155986e05bcSDimitry AndricSRCS_MIN+= Support/SmallPtrSet.cpp 1156986e05bcSDimitry AndricSRCS_MIN+= Support/SmallVector.cpp 1157986e05bcSDimitry AndricSRCS_MIN+= Support/SourceMgr.cpp 1158986e05bcSDimitry AndricSRCS_MIN+= Support/SpecialCaseList.cpp 1159986e05bcSDimitry AndricSRCS_MIN+= Support/Statistic.cpp 1160986e05bcSDimitry AndricSRCS_MIN+= Support/StringExtras.cpp 1161986e05bcSDimitry AndricSRCS_MIN+= Support/StringMap.cpp 1162986e05bcSDimitry AndricSRCS_MIN+= Support/StringRef.cpp 1163986e05bcSDimitry AndricSRCS_MIN+= Support/StringSaver.cpp 116448aaf27bSDimitry AndricSRCS_MIN+= Support/SuffixTree.cpp 116506c3fb27SDimitry AndricSRCS_MIN+= Support/SuffixTreeNode.cpp 1166986e05bcSDimitry AndricSRCS_EXT+= Support/SystemUtils.cpp 11671ae4f0f6SDimitry AndricSRCS_LLD+= Support/TarWriter.cpp 11680db9a49eSDimitry AndricSRCS_MIW+= Support/ThreadPool.cpp 1169986e05bcSDimitry AndricSRCS_MIN+= Support/Threading.cpp 11704014a71fSDimitry AndricSRCS_MIN+= Support/TimeProfiler.cpp 1171986e05bcSDimitry AndricSRCS_MIN+= Support/Timer.cpp 1172986e05bcSDimitry AndricSRCS_MIN+= Support/ToolOutputFile.cpp 1173986e05bcSDimitry AndricSRCS_MIN+= Support/Twine.cpp 1174fe6060f1SDimitry AndricSRCS_MIN+= Support/TypeSize.cpp 1175986e05bcSDimitry AndricSRCS_MIN+= Support/Unicode.cpp 11769f6e9a9fSDimitry AndricSRCS_MIN+= Support/UnicodeCaseFold.cpp 117781ad6265SDimitry AndricSRCS_MIN+= Support/UnicodeNameToCodepoint.cpp 117881ad6265SDimitry AndricSRCS_MIN+= Support/UnicodeNameToCodepointGenerated.cpp 1179986e05bcSDimitry AndricSRCS_MIN+= Support/Valgrind.cpp 11805e86819cSDimitry AndricSRCS_MIN+= Support/VirtualFileSystem.cpp 11819f6e9a9fSDimitry AndricSRCS_MIN+= Support/VersionTuple.cpp 11824014a71fSDimitry AndricSRCS_MIN+= Support/Watchdog.cpp 118380a8c751SEd MasteSRCS_MIN+= Support/WithColor.cpp 1184986e05bcSDimitry AndricSRCS_MIN+= Support/YAMLParser.cpp 1185986e05bcSDimitry AndricSRCS_MIN+= Support/YAMLTraits.cpp 118623559b6aSDimitry AndricSRCS_FUL+= Support/Z3Solver.cpp 1187986e05bcSDimitry AndricSRCS_MIN+= Support/circular_raw_ostream.cpp 1188986e05bcSDimitry AndricSRCS_MIN+= Support/raw_os_ostream.cpp 1189986e05bcSDimitry AndricSRCS_MIN+= Support/raw_ostream.cpp 1190986e05bcSDimitry AndricSRCS_MIN+= Support/regcomp.c 1191986e05bcSDimitry AndricSRCS_MIN+= Support/regerror.c 1192986e05bcSDimitry AndricSRCS_MIN+= Support/regexec.c 1193986e05bcSDimitry AndricSRCS_MIN+= Support/regfree.c 1194986e05bcSDimitry AndricSRCS_MIN+= Support/regstrlcpy.c 119580a8c751SEd MasteSRCS_MIN+= Support/xxhash.cpp 1196d409305fSDimitry AndricSRCS_MIN+= TableGen/DetailedRecordsBackend.cpp 1197986e05bcSDimitry AndricSRCS_MIN+= TableGen/Error.cpp 1198d25b9f8fSDimitry AndricSRCS_MIN+= TableGen/JSONBackend.cpp 1199986e05bcSDimitry AndricSRCS_MIN+= TableGen/Main.cpp 1200986e05bcSDimitry AndricSRCS_MIN+= TableGen/Record.cpp 1201986e05bcSDimitry AndricSRCS_MIN+= TableGen/SetTheory.cpp 1202986e05bcSDimitry AndricSRCS_MIN+= TableGen/StringMatcher.cpp 1203986e05bcSDimitry AndricSRCS_MIN+= TableGen/TGLexer.cpp 1204986e05bcSDimitry AndricSRCS_MIN+= TableGen/TGParser.cpp 1205986e05bcSDimitry AndricSRCS_MIN+= TableGen/TableGenBackend.cpp 1206cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no" 1207986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64A53Fix835769.cpp 1208986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64A57FPLoadBalancing.cpp 1209986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64AdvSIMDScalarPass.cpp 1210986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64AsmPrinter.cpp 12115e86819cSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64BranchTargets.cpp 12124014a71fSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CallingConvention.cpp 1213986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp 1214986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CollectLOH.cpp 12155e86819cSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CompressJumpTables.cpp 1216edd7eaddSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CondBrTuning.cpp 1217986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ConditionOptimizer.cpp 1218986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ConditionalCompares.cpp 1219986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp 12204014a71fSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ExpandImm.cpp 1221986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ExpandPseudoInsts.cpp 1222b40b48b8SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64FalkorHWPFFix.cpp 1223986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64FastISel.cpp 1224986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64FrameLowering.cpp 122506c3fb27SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64GlobalsTagging.cpp 1226986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ISelDAGToDAG.cpp 1227986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ISelLowering.cpp 1228986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64InstrInfo.cpp 1229986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64LoadStoreOptimizer.cpp 1230fe6060f1SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64LowerHomogeneousPrologEpilog.cpp 1231986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MCInstLower.cpp 12325e801ac6SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MIPeepholeOpt.cpp 123348aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MachineFunctionInfo.cpp 123481ad6265SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MachineScheduler.cpp 12355897d2f0SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MacroFusion.cpp 1236986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64PBQPRegAlloc.cpp 1237986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64PromoteConstant.cpp 1238986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64RedundantCopyElimination.cpp 1239986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64RegisterInfo.cpp 124036cb3905SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64SIMDInstrOpt.cpp 124148aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64SLSHardening.cpp 1242986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64SelectionDAGInfo.cpp 12435e86819cSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64SpeculationHardening.cpp 12444014a71fSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64StackTagging.cpp 12459771cac2SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64StackTaggingPreRA.cpp 1246986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64StorePairSuppress.cpp 1247986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64Subtarget.cpp 1248986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64TargetMachine.cpp 1249986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64TargetObjectFile.cpp 1250986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64TargetTransformInfo.cpp 1251986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AsmParser/AArch64AsmParser.cpp 125230d4828eSDimitry AndricSRCS_XDW+= Target/AArch64/Disassembler/AArch64Disassembler.cpp 125330d4828eSDimitry AndricSRCS_XDW+= Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp 125448aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64CallLowering.cpp 1255fe6060f1SDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64GlobalISelUtils.cpp 125648aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64InstructionSelector.cpp 125748aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64LegalizerInfo.cpp 1258fe6060f1SDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64O0PreLegalizerCombiner.cpp 125948aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64PreLegalizerCombiner.cpp 126048aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64PostLegalizerCombiner.cpp 1261e8d8bef9SDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64PostLegalizerLowering.cpp 1262e8d8bef9SDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64PostSelectOptimize.cpp 126348aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64RegisterBankInfo.cpp 1264986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp 1265986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp 1266986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp 12674014a71fSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp 1268986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp 1269986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp 1270986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp 1271986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp 1272986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp 1273986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp 1274a580b014SDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp 1275a580b014SDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp 1276bdd1243dSDimitry AndricSRCS_MIN+= Target/AArch64/SMEABIPass.cpp 127748aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/SVEIntrinsicOpts.cpp 1278986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/TargetInfo/AArch64TargetInfo.cpp 1279986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/Utils/AArch64BaseInfo.cpp 1280bdd1243dSDimitry AndricSRCS_MIN+= Target/AArch64/Utils/AArch64SMEAttributes.cpp 1281cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64 1282cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no" 1283986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/A15SDOptimizer.cpp 1284986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMAsmPrinter.cpp 1285986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMBaseInstrInfo.cpp 1286986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMBaseRegisterInfo.cpp 12874014a71fSDimitry AndricSRCS_MIN+= Target/ARM/ARMBasicBlockInfo.cpp 1288e8d8bef9SDimitry AndricSRCS_MIN+= Target/ARM/ARMBlockPlacement.cpp 12894824e7fdSDimitry AndricSRCS_MIN+= Target/ARM/ARMBranchTargets.cpp 12903d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMCallLowering.cpp 12914014a71fSDimitry AndricSRCS_MIN+= Target/ARM/ARMCallingConv.cpp 1292986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMConstantIslandPass.cpp 1293986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMConstantPoolValue.cpp 1294986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMExpandPseudoInsts.cpp 1295986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMFastISel.cpp 129681ad6265SDimitry AndricSRCS_MIN+= Target/ARM/ARMFixCortexA57AES1742098Pass.cpp 1297986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMFrameLowering.cpp 1298986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMHazardRecognizer.cpp 1299986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMISelDAGToDAG.cpp 1300986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMISelLowering.cpp 1301986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMInstrInfo.cpp 13023d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMInstructionSelector.cpp 13033d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMLegalizerInfo.cpp 1304986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMLoadStoreOptimizer.cpp 13054014a71fSDimitry AndricSRCS_MIN+= Target/ARM/ARMLowOverheadLoops.cpp 1306986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMMCInstLower.cpp 1307986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMMachineFunctionInfo.cpp 1308edd7eaddSDimitry AndricSRCS_MIN+= Target/ARM/ARMMacroFusion.cpp 1309986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMOptimizeBarriersPass.cpp 13109f6e9a9fSDimitry AndricSRCS_MIN+= Target/ARM/ARMParallelDSP.cpp 13113d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMRegisterBankInfo.cpp 1312986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMRegisterInfo.cpp 1313e8d8bef9SDimitry AndricSRCS_MIN+= Target/ARM/ARMSLSHardening.cpp 1314986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMSelectionDAGInfo.cpp 1315986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMSubtarget.cpp 1316986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMTargetMachine.cpp 1317986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMTargetObjectFile.cpp 1318986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMTargetTransformInfo.cpp 1319986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/AsmParser/ARMAsmParser.cpp 1320986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Disassembler/ARMDisassembler.cpp 1321986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMAsmBackend.cpp 1322986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp 1323986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMELFStreamer.cpp 13244014a71fSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMInstPrinter.cpp 1325986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp 1326986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp 1327986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCExpr.cpp 1328986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp 1329986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp 1330986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp 1331986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp 1332986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp 1333986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp 1334986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp 1335986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MLxExpansionPass.cpp 13369771cac2SDimitry AndricSRCS_MIN+= Target/ARM/MVEGatherScatterLowering.cpp 1337fe6060f1SDimitry AndricSRCS_MIN+= Target/ARM/MVELaneInterleavingPass.cpp 1338fe6060f1SDimitry AndricSRCS_MIN+= Target/ARM/MVETPAndVPTOptimisationsPass.cpp 13399771cac2SDimitry AndricSRCS_MIN+= Target/ARM/MVETailPredication.cpp 13409771cac2SDimitry AndricSRCS_MIN+= Target/ARM/MVEVPTBlockPass.cpp 1341986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/TargetInfo/ARMTargetInfo.cpp 1342986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb1FrameLowering.cpp 1343986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb1InstrInfo.cpp 1344986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb2ITBlockPass.cpp 1345986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb2InstrInfo.cpp 1346986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb2SizeReduction.cpp 1347986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ThumbRegisterInfo.cpp 134836cb3905SDimitry AndricSRCS_MIN+= Target/ARM/Utils/ARMBaseInfo.cpp 1349cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM 135089edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no" 135189edb881SDimitry AndricSRCS_MIN+= Target/BPF/AsmParser/BPFAsmParser.cpp 1352a9365f4aSDimitry AndricSRCS_MIN+= Target/BPF/BPFAbstractMemberAccess.cpp 1353d30dc78fSDimitry AndricSRCS_MIN+= Target/BPF/BPFAdjustOpt.cpp 135489edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFAsmPrinter.cpp 1355d30dc78fSDimitry AndricSRCS_MIN+= Target/BPF/BPFCheckAndAdjustIR.cpp 135689edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFFrameLowering.cpp 13575e801ac6SDimitry AndricSRCS_MIN+= Target/BPF/BPFIRPeephole.cpp 135889edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFISelDAGToDAG.cpp 135989edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFISelLowering.cpp 136089edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFInstrInfo.cpp 136189edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFMCInstLower.cpp 13620a462115SDimitry AndricSRCS_MIN+= Target/BPF/BPFMIChecking.cpp 1363f9c0a512SDimitry AndricSRCS_MIN+= Target/BPF/BPFMIPeephole.cpp 1364a9365f4aSDimitry AndricSRCS_MIN+= Target/BPF/BPFMISimplifyPatchable.cpp 13651c1ab429SDimitry AndricSRCS_MIN+= Target/BPF/BPFPreserveDIType.cpp 136689edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFRegisterInfo.cpp 1367f9c0a512SDimitry AndricSRCS_MIN+= Target/BPF/BPFSelectionDAGInfo.cpp 136889edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFSubtarget.cpp 136989edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFTargetMachine.cpp 13700a462115SDimitry AndricSRCS_MIN+= Target/BPF/BTFDebug.cpp 137189edb881SDimitry AndricSRCS_MIN+= Target/BPF/Disassembler/BPFDisassembler.cpp 137289edb881SDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFAsmBackend.cpp 137389edb881SDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp 13744014a71fSDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFInstPrinter.cpp 137589edb881SDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp 137689edb881SDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp 137789edb881SDimitry AndricSRCS_MIN+= Target/BPF/TargetInfo/BPFTargetInfo.cpp 137889edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF 1379cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no" 1380986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/AsmParser/MipsAsmParser.cpp 138130d4828eSDimitry AndricSRCS_XDW+= Target/Mips/Disassembler/MipsDisassembler.cpp 1382986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp 1383986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsABIInfo.cpp 1384986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsAsmBackend.cpp 1385986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp 1386986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsELFStreamer.cpp 13874014a71fSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsInstPrinter.cpp 1388986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp 1389986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp 1390986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCExpr.cpp 1391986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp 1392986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp 1393986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsOptionRecord.cpp 1394986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp 1395f37b6182SDimitry AndricSRCS_MIN+= Target/Mips/MicroMipsSizeReduction.cpp 1396986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16FrameLowering.cpp 1397986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16HardFloat.cpp 1398986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16HardFloatInfo.cpp 1399986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16ISelDAGToDAG.cpp 1400986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16ISelLowering.cpp 1401986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16InstrInfo.cpp 1402986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16RegisterInfo.cpp 1403986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsAnalyzeImmediate.cpp 1404986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsAsmPrinter.cpp 14059f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsBranchExpansion.cpp 1406986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsCCState.cpp 14079f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsCallLowering.cpp 1408986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsConstantIslandPass.cpp 1409986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsDelaySlotFiller.cpp 14109f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsExpandPseudo.cpp 1411986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsFastISel.cpp 1412986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsFrameLowering.cpp 1413986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsISelDAGToDAG.cpp 1414986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsISelLowering.cpp 1415986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsInstrInfo.cpp 14169f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsInstructionSelector.cpp 14179f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsLegalizerInfo.cpp 1418986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsMCInstLower.cpp 1419986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsMachineFunction.cpp 1420986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsModuleISelDAGToDAG.cpp 14214b1174e2SDimitry AndricSRCS_MIN+= Target/Mips/MipsMulMulBugPass.cpp 1422986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsOptimizePICCall.cpp 1423986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsOs16.cpp 14245e86819cSDimitry AndricSRCS_MIN+= Target/Mips/MipsPreLegalizerCombiner.cpp 142581ad6265SDimitry AndricSRCS_MIN+= Target/Mips/MipsPostLegalizerCombiner.cpp 14269f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsRegisterBankInfo.cpp 1427986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsRegisterInfo.cpp 1428986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEFrameLowering.cpp 1429986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEISelDAGToDAG.cpp 1430986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEISelLowering.cpp 1431986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEInstrInfo.cpp 1432986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSERegisterInfo.cpp 1433986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSubtarget.cpp 1434986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsTargetMachine.cpp 1435986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsTargetObjectFile.cpp 143681ad6265SDimitry AndricSRCS_MIN+= Target/Mips/MipsTargetTransformInfo.cpp 1437986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/TargetInfo/MipsTargetInfo.cpp 1438cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS 1439cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no" 1440986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/AsmParser/PPCAsmParser.cpp 1441986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/Disassembler/PPCDisassembler.cpp 1442e8d8bef9SDimitry AndricSRCS_MIN+= Target/PowerPC/GISel/PPCCallLowering.cpp 1443e8d8bef9SDimitry AndricSRCS_MIN+= Target/PowerPC/GISel/PPCInstructionSelector.cpp 1444e8d8bef9SDimitry AndricSRCS_MIN+= Target/PowerPC/GISel/PPCLegalizerInfo.cpp 1445e8d8bef9SDimitry AndricSRCS_MIN+= Target/PowerPC/GISel/PPCRegisterBankInfo.cpp 1446986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp 1447986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp 144848aaf27bSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCELFStreamer.cpp 14494014a71fSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCInstPrinter.cpp 1450986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp 1451986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp 1452986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp 1453986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp 1454986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCPredicates.cpp 14554014a71fSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCXCOFFObjectWriter.cpp 1456fe6060f1SDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCXCOFFStreamer.cpp 1457986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCAsmPrinter.cpp 1458986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCBoolRetToInt.cpp 145936cb3905SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCBranchCoalescing.cpp 1460986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCBranchSelector.cpp 1461986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCCCState.cpp 1462986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCCTRLoops.cpp 146381ad6265SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCCTRLoopsVerify.cpp 14644014a71fSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCCallingConv.cpp 1465986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCEarlyReturn.cpp 1466fe6060f1SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCExpandAtomicPseudoInsts.cpp 14675897d2f0SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCExpandISEL.cpp 1468986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCFastISel.cpp 1469986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCFrameLowering.cpp 147081ad6265SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCGenScalarMASSEntries.cpp 1471986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCHazardRecognizers.cpp 1472986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCISelDAGToDAG.cpp 1473986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCISelLowering.cpp 1474986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCInstrInfo.cpp 14759771cac2SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCLoopInstrFormPrep.cpp 14769771cac2SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCLowerMASSVEntries.cpp 147748aaf27bSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMacroFusion.cpp 1478986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMCInstLower.cpp 1479986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMIPeephole.cpp 1480986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMachineFunctionInfo.cpp 14814014a71fSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMachineScheduler.cpp 148236cb3905SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCPreEmitPeephole.cpp 148336cb3905SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCReduceCRLogicals.cpp 1484986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCRegisterInfo.cpp 1485986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCSubtarget.cpp 1486986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTLSDynamicCall.cpp 1487986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTOCRegDeps.cpp 1488986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTargetMachine.cpp 1489986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTargetObjectFile.cpp 1490986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTargetTransformInfo.cpp 1491986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCVSXCopy.cpp 1492986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCVSXFMAMutate.cpp 1493986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCVSXSwapRemoval.cpp 1494986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp 1495cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC 1496b2689b12SMitchell Horne.if ${MK_LLVM_TARGET_RISCV} != "no" 1497b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/AsmParser/RISCVAsmParser.cpp 1498b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/Disassembler/RISCVDisassembler.cpp 1499bdd1243dSDimitry AndricSRCS_MIN+= Target/RISCV/GISel/RISCVCallLowering.cpp 1500bdd1243dSDimitry AndricSRCS_MIN+= Target/RISCV/GISel/RISCVInstructionSelector.cpp 1501bdd1243dSDimitry AndricSRCS_MIN+= Target/RISCV/GISel/RISCVLegalizerInfo.cpp 1502bdd1243dSDimitry AndricSRCS_MIN+= Target/RISCV/GISel/RISCVRegisterBankInfo.cpp 1503bdd1243dSDimitry AndricSRCS_EXT+= Target/RISCV/MCA/RISCVCustomBehaviour.cpp 1504b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp 1505e8d8bef9SDimitry AndricSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVBaseInfo.cpp 1506b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp 1507b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVELFStreamer.cpp 15084014a71fSDimitry AndricSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVInstPrinter.cpp 1509e8d8bef9SDimitry AndricSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMatInt.cpp 1510b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.cpp 1511b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp 1512b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp 15135e801ac6SDimitry AndricSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMCObjectFileInfo.cpp 1514b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp 1515b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVTargetStreamer.cpp 1516b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVAsmPrinter.cpp 1517fcaf7f86SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVCodeGenPrepare.cpp 151848aaf27bSDimitry AndricSRCS_MIN+= Target/RISCV/RISCVExpandAtomicPseudoInsts.cpp 1519b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVExpandPseudoInsts.cpp 1520b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVFrameLowering.cpp 15215e801ac6SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVGatherScatterLowering.cpp 152206c3fb27SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVInsertReadWriteCSR.cpp 1523fe6060f1SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVInsertVSETVLI.cpp 1524b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVInstrInfo.cpp 1525b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVISelDAGToDAG.cpp 1526b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVISelLowering.cpp 15273a9a9c0cSDimitry AndricSRCS_MIN+= Target/RISCV/RISCVMachineFunctionInfo.cpp 152881ad6265SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVMacroFusion.cpp 152981ad6265SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVMakeCompressible.cpp 1530b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVMergeBaseOffset.cpp 153106c3fb27SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVMoveMerger.cpp 153206c3fb27SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVOptWInstrs.cpp 153306c3fb27SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVPushPopOptimizer.cpp 153406c3fb27SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVRVVInitUndef.cpp 153581ad6265SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVRedundantCopyElimination.cpp 1536b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVRegisterInfo.cpp 1537b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVSubtarget.cpp 1538b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVTargetMachine.cpp 1539b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVTargetObjectFile.cpp 1540869fe6d5SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVTargetTransformInfo.cpp 1541b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/TargetInfo/RISCVTargetInfo.cpp 1542b2689b12SMitchell Horne.endif # MK_LLVM_TARGET_RISCV 1543986e05bcSDimitry AndricSRCS_MIN+= Target/Target.cpp 1544986e05bcSDimitry AndricSRCS_MIN+= Target/TargetLoweringObjectFile.cpp 1545986e05bcSDimitry AndricSRCS_MIN+= Target/TargetMachine.cpp 1546986e05bcSDimitry AndricSRCS_MIN+= Target/TargetMachineC.cpp 1547cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no" 1548986e05bcSDimitry AndricSRCS_MIN+= Target/X86/AsmParser/X86AsmParser.cpp 154930d4828eSDimitry AndricSRCS_XDW+= Target/X86/Disassembler/X86Disassembler.cpp 15503a9a9c0cSDimitry AndricSRCS_EXT+= Target/X86/MCA/X86CustomBehaviour.cpp 15514014a71fSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86ATTInstPrinter.cpp 1552986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86AsmBackend.cpp 1553986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp 155406c3fb27SDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86EncodingOptimization.cpp 15554014a71fSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86InstComments.cpp 15564014a71fSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86InstPrinterCommon.cpp 15574014a71fSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86IntelInstPrinter.cpp 1558986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MCAsmInfo.cpp 1559986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp 1560986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MCTargetDesc.cpp 1561986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MachObjectWriter.cpp 156281ad6265SDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MnemonicTables.cpp 156348aaf27bSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86ShuffleDecode.cpp 1564986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp 1565986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp 156636cb3905SDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp 1567986e05bcSDimitry AndricSRCS_MIN+= Target/X86/TargetInfo/X86TargetInfo.cpp 156806c3fb27SDimitry AndricSRCS_MIN+= Target/X86/X86ArgumentStackSlotRebase.cpp 1569986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86AsmPrinter.cpp 15709f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86AvoidStoreForwardingBlocks.cpp 15719771cac2SDimitry AndricSRCS_MIN+= Target/X86/X86AvoidTrailingCall.cpp 1572986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86CallFrameOptimization.cpp 15733d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86CallLowering.cpp 157409bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86CallingConv.cpp 1575b40b48b8SDimitry AndricSRCS_MIN+= Target/X86/X86CmovConversion.cpp 15765e86819cSDimitry AndricSRCS_MIN+= Target/X86/X86DiscriminateMemOps.cpp 157736cb3905SDimitry AndricSRCS_MIN+= Target/X86/X86DomainReassignment.cpp 15785e801ac6SDimitry AndricSRCS_MIN+= Target/X86/X86DynAllocaExpander.cpp 157909bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86EvexToVex.cpp 1580986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ExpandPseudo.cpp 1581986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FastISel.cpp 158281ad6265SDimitry AndricSRCS_MIN+= Target/X86/X86FastPreTileConfig.cpp 1583fe6060f1SDimitry AndricSRCS_MIN+= Target/X86/X86FastTileConfig.cpp 1584986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FixupBWInsts.cpp 158506c3fb27SDimitry AndricSRCS_MIN+= Target/X86/X86FixupInstTuning.cpp 1586986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FixupLEAs.cpp 1587986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FixupSetCC.cpp 158806c3fb27SDimitry AndricSRCS_MIN+= Target/X86/X86FixupVectorConstants.cpp 15890556cfadSDimitry AndricSRCS_MIN+= Target/X86/X86FlagsCopyLowering.cpp 1590986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FloatingPoint.cpp 1591986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FrameLowering.cpp 1592986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ISelDAGToDAG.cpp 1593986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ISelLowering.cpp 15949f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86IndirectBranchTracking.cpp 15950946e70aSDimitry AndricSRCS_MIN+= Target/X86/X86IndirectThunks.cpp 15965e86819cSDimitry AndricSRCS_MIN+= Target/X86/X86InsertPrefetch.cpp 159748aaf27bSDimitry AndricSRCS_MIN+= Target/X86/X86InsertWait.cpp 1598e8d8bef9SDimitry AndricSRCS_MIN+= Target/X86/X86InstCombineIntrinsic.cpp 159909bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86InstrFMA3Info.cpp 16009f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86InstrFoldTables.cpp 1601986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86InstrInfo.cpp 16023d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86InstructionSelector.cpp 160309bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86InterleavedAccess.cpp 16043d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86LegalizerInfo.cpp 16050946e70aSDimitry AndricSRCS_MIN+= Target/X86/X86LoadValueInjectionLoadHardening.cpp 16060946e70aSDimitry AndricSRCS_MIN+= Target/X86/X86LoadValueInjectionRetHardening.cpp 1607fe6060f1SDimitry AndricSRCS_MIN+= Target/X86/X86LowerAMXIntrinsics.cpp 1608e8d8bef9SDimitry AndricSRCS_MIN+= Target/X86/X86LowerAMXType.cpp 1609fe6060f1SDimitry AndricSRCS_MIN+= Target/X86/X86LowerTileCopy.cpp 1610986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86MCInstLower.cpp 1611986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86MachineFunctionInfo.cpp 16125897d2f0SDimitry AndricSRCS_MIN+= Target/X86/X86MacroFusion.cpp 1613986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86OptimizeLEAs.cpp 1614986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86PadShortFunction.cpp 161548aaf27bSDimitry AndricSRCS_MIN+= Target/X86/X86PartialReduction.cpp 1616fe6060f1SDimitry AndricSRCS_MIN+= Target/X86/X86PreAMXConfig.cpp 1617e8d8bef9SDimitry AndricSRCS_MIN+= Target/X86/X86PreTileConfig.cpp 16183d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86RegisterBankInfo.cpp 1619986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86RegisterInfo.cpp 1620753f127fSDimitry AndricSRCS_MIN+= Target/X86/X86ReturnThunks.cpp 1621986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86SelectionDAGInfo.cpp 1622986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ShuffleDecodeConstantPool.cpp 162348aaf27bSDimitry AndricSRCS_MIN+= Target/X86/X86SpeculativeExecutionSideEffectSuppression.cpp 16249f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86SpeculativeLoadHardening.cpp 1625986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86Subtarget.cpp 1626986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86TargetMachine.cpp 1627986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86TargetObjectFile.cpp 1628986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86TargetTransformInfo.cpp 1629e8d8bef9SDimitry AndricSRCS_MIN+= Target/X86/X86TileConfig.cpp 1630986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86VZeroUpper.cpp 1631986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86WinEHState.cpp 1632cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86 1633bdd1243dSDimitry AndricSRCS_MIN+= TargetParser/AArch64TargetParser.cpp 1634bdd1243dSDimitry AndricSRCS_MIN+= TargetParser/ARMTargetParser.cpp 1635bdd1243dSDimitry AndricSRCS_MIN+= TargetParser/ARMTargetParserCommon.cpp 1636bdd1243dSDimitry AndricSRCS_MIN+= TargetParser/CSKYTargetParser.cpp 1637bdd1243dSDimitry AndricSRCS_MIN+= TargetParser/Host.cpp 1638bdd1243dSDimitry AndricSRCS_MIN+= TargetParser/LoongArchTargetParser.cpp 1639bdd1243dSDimitry AndricSRCS_MIN+= TargetParser/RISCVTargetParser.cpp 164006c3fb27SDimitry AndricSRCS_MIN+= TargetParser/SubtargetFeature.cpp 1641bdd1243dSDimitry AndricSRCS_MIN+= TargetParser/TargetParser.cpp 1642bdd1243dSDimitry AndricSRCS_MIN+= TargetParser/Triple.cpp 1643bdd1243dSDimitry AndricSRCS_MIN+= TargetParser/X86TargetParser.cpp 1644fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/Architecture.cpp 1645fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/ArchitectureSet.cpp 1646fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/InterfaceFile.cpp 1647fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/PackedVersion.cpp 1648fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/Platform.cpp 16495c38ea60SDimitry AndricSRCS_MIW+= TextAPI/Symbol.cpp 165006c3fb27SDimitry AndricSRCS_MIW+= TextAPI/SymbolSet.cpp 1651fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/Target.cpp 1652fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/TextStub.cpp 1653fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/TextStubCommon.cpp 165406c3fb27SDimitry AndricSRCS_MIW+= TextAPI/TextStubV5.cpp 16559c954a48SEd MasteSRCS_MIN+= ToolDrivers/llvm-dlltool/DlltoolDriver.cpp 16560db9a49eSDimitry AndricSRCS_MIW+= ToolDrivers/llvm-lib/LibDriver.cpp 16579f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp 16589f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/AggressiveInstCombine/TruncInstCombine.cpp 16599771cac2SDimitry AndricSRCS_MIN+= Transforms/CFGuard/CFGuard.cpp 166009bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroCleanup.cpp 166181ad6265SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroConditionalWrapper.cpp 166209bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroEarly.cpp 166309bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroElide.cpp 166409bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroFrame.cpp 166509bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroSplit.cpp 166609bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/Coroutines.cpp 166709bfd043SDimitry AndricSRCS_MIN+= Transforms/IPO/AlwaysInliner.cpp 1668e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/IPO/Annotation2Metadata.cpp 1669986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ArgumentPromotion.cpp 16704014a71fSDimitry AndricSRCS_MIN+= Transforms/IPO/Attributor.cpp 167148aaf27bSDimitry AndricSRCS_MIN+= Transforms/IPO/AttributorAttributes.cpp 1672986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/BarrierNoopPass.cpp 1673e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/IPO/BlockExtractor.cpp 167436cb3905SDimitry AndricSRCS_MIN+= Transforms/IPO/CalledValuePropagation.cpp 1675986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ConstantMerge.cpp 1676986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/CrossDSOCFI.cpp 1677986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/DeadArgumentElimination.cpp 1678986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ElimAvailExtern.cpp 167906c3fb27SDimitry AndricSRCS_MIN+= Transforms/IPO/EmbedBitcodePass.cpp 1680986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ExtractGV.cpp 1681986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ForceFunctionAttrs.cpp 1682986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/FunctionAttrs.cpp 1683986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/FunctionImport.cpp 1684fe6060f1SDimitry AndricSRCS_MIN+= Transforms/IPO/FunctionSpecialization.cpp 1685986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/GlobalDCE.cpp 1686986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/GlobalOpt.cpp 168709bfd043SDimitry AndricSRCS_MIN+= Transforms/IPO/GlobalSplit.cpp 16885e86819cSDimitry AndricSRCS_MIN+= Transforms/IPO/HotColdSplitting.cpp 1689986e05bcSDimitry AndricSRCS_EXT+= Transforms/IPO/IPO.cpp 1690e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/IPO/IROutliner.cpp 1691986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/InferFunctionAttrs.cpp 1692986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/Inliner.cpp 1693986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/Internalize.cpp 1694986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/LoopExtractor.cpp 1695986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/LowerTypeTests.cpp 169606c3fb27SDimitry AndricSRCS_MIN+= Transforms/IPO/MemProfContextDisambiguation.cpp 1697986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/MergeFunctions.cpp 16985e801ac6SDimitry AndricSRCS_MIN+= Transforms/IPO/ModuleInliner.cpp 169948aaf27bSDimitry AndricSRCS_MIN+= Transforms/IPO/OpenMPOpt.cpp 1700986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/PartialInlining.cpp 17019f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/IPO/SCCP.cpp 1702e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/IPO/SampleContextTracker.cpp 1703986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/SampleProfile.cpp 1704e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/IPO/SampleProfileProbe.cpp 1705986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/StripDeadPrototypes.cpp 1706986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/StripSymbols.cpp 17079f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/IPO/SyntheticCountsPropagation.cpp 170809bfd043SDimitry AndricSRCS_MIN+= Transforms/IPO/ThinLTOBitcodeWriter.cpp 1709986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/WholeProgramDevirt.cpp 1710986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineAddSub.cpp 1711986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineAndOrXor.cpp 17124014a71fSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineAtomicRMW.cpp 1713986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineCalls.cpp 1714986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineCasts.cpp 1715986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineCompares.cpp 1716986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp 1717986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineMulDivRem.cpp 171848aaf27bSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineNegator.cpp 1719986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombinePHI.cpp 1720986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineSelect.cpp 1721986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineShifts.cpp 1722986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineSimplifyDemanded.cpp 1723986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineVectorOps.cpp 1724986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstructionCombining.cpp 1725986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/AddressSanitizer.cpp 172606c3fb27SDimitry AndricSRCS_MIN+= Transforms/Instrumentation/BlockCoverageInference.cpp 1727986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/BoundsChecking.cpp 17289f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/CGProfile.cpp 17295e86819cSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/ControlHeightReduction.cpp 1730986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/DataFlowSanitizer.cpp 1731986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/GCOVProfiling.cpp 173236cb3905SDimitry AndricSRCS_MIN+= Transforms/Instrumentation/HWAddressSanitizer.cpp 1733986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/IndirectCallPromotion.cpp 17344014a71fSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/InstrOrderFile.cpp 1735986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/InstrProfiling.cpp 1736986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/Instrumentation.cpp 1737bdd1243dSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/KCFI.cpp 1738e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Instrumentation/MemProfiler.cpp 1739986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/MemorySanitizer.cpp 1740986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/PGOInstrumentation.cpp 174124d58133SDimitry AndricSRCS_MIN+= Transforms/Instrumentation/PGOMemOPSizeOpt.cpp 17424014a71fSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/PoisonChecking.cpp 1743986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/SanitizerCoverage.cpp 1744bdd1243dSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/SanitizerBinaryMetadata.cpp 1745986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/ThreadSanitizer.cpp 17469771cac2SDimitry AndricSRCS_MIN+= Transforms/Instrumentation/ValueProfileCollector.cpp 1747986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/DependencyAnalysis.cpp 1748fe6060f1SDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARC.cpp 1749986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCAPElim.cpp 1750986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCContract.cpp 1751986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCExpand.cpp 1752986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCOpts.cpp 1753986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ProvenanceAnalysis.cpp 1754986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp 1755986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/PtrState.cpp 1756986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/ADCE.cpp 1757986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/AlignmentFromAssumptions.cpp 1758e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Scalar/AnnotationRemarks.cpp 1759986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/BDCE.cpp 176036cb3905SDimitry AndricSRCS_MIN+= Transforms/Scalar/CallSiteSplitting.cpp 1761986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/ConstantHoisting.cpp 1762e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Scalar/ConstraintElimination.cpp 1763986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/CorrelatedValuePropagation.cpp 1764986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/DCE.cpp 1765fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Scalar/DFAJumpThreading.cpp 1766986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/DeadStoreElimination.cpp 176736cb3905SDimitry AndricSRCS_MIN+= Transforms/Scalar/DivRemPairs.cpp 1768986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/EarlyCSE.cpp 1769986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/FlattenCFGPass.cpp 1770986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Float2Int.cpp 1771986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/GVN.cpp 1772986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/GVNHoist.cpp 1773302affcbSDimitry AndricSRCS_MIN+= Transforms/Scalar/GVNSink.cpp 1774986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/GuardWidening.cpp 1775f1a29dd3SDimitry AndricSRCS_MIN+= Transforms/Scalar/IVUsersPrinter.cpp 1776986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/IndVarSimplify.cpp 1777986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/InductiveRangeCheckElimination.cpp 1778e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Scalar/InferAddressSpaces.cpp 17799f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Scalar/InstSimplifyPass.cpp 1780986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/JumpThreading.cpp 1781986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LICM.cpp 1782f1a29dd3SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopAccessAnalysisPrinter.cpp 1783fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopBoundSplit.cpp 1784986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopDataPrefetch.cpp 1785986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopDeletion.cpp 1786986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopDistribute.cpp 1787e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopFlatten.cpp 17884014a71fSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopFuse.cpp 1789986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopIdiomRecognize.cpp 179009bfd043SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopInstSimplify.cpp 1791986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopInterchange.cpp 1792986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopLoadElimination.cpp 1793f1a29dd3SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopPassManager.cpp 17945897d2f0SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopPredication.cpp 1795986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopRerollPass.cpp 1796986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopRotation.cpp 1797986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopSimplifyCFG.cpp 179809bfd043SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopSink.cpp 1799986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopStrengthReduce.cpp 1800986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopUnrollPass.cpp 18019f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopUnrollAndJamPass.cpp 1802986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopVersioningLICM.cpp 180381ad6265SDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerAtomicPass.cpp 18049771cac2SDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerConstantIntrinsics.cpp 1805986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerExpectIntrinsic.cpp 1806986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerGuardIntrinsic.cpp 18079771cac2SDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerMatrixIntrinsics.cpp 18084014a71fSDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerWidenableCondition.cpp 18095e86819cSDimitry AndricSRCS_MIN+= Transforms/Scalar/MakeGuardsExplicit.cpp 1810986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/MemCpyOptimizer.cpp 181136cb3905SDimitry AndricSRCS_MIN+= Transforms/Scalar/MergeICmps.cpp 1812986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/MergedLoadStoreMotion.cpp 1813986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/NaryReassociate.cpp 181409bfd043SDimitry AndricSRCS_MIN+= Transforms/Scalar/NewGVN.cpp 1815986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/PartiallyInlineLibCalls.cpp 1816986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/PlaceSafepoints.cpp 1817986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Reassociate.cpp 1818986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Reg2Mem.cpp 1819986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/RewriteStatepointsForGC.cpp 1820986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SCCP.cpp 1821986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SROA.cpp 1822986e05bcSDimitry AndricSRCS_EXT+= Transforms/Scalar/Scalar.cpp 1823e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Scalar/ScalarizeMaskedMemIntrin.cpp 1824986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Scalarizer.cpp 1825986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SeparateConstOffsetFromGEP.cpp 1826f37b6182SDimitry AndricSRCS_MIN+= Transforms/Scalar/SimpleLoopUnswitch.cpp 1827986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SimplifyCFGPass.cpp 1828986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Sink.cpp 1829986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SpeculativeExecution.cpp 1830986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/StraightLineStrengthReduce.cpp 1831986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/StructurizeCFG.cpp 183281ad6265SDimitry AndricSRCS_MIN+= Transforms/Scalar/TLSVariableHoist.cpp 1833986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/TailRecursionElimination.cpp 18345e86819cSDimitry AndricSRCS_MIN+= Transforms/Scalar/WarnMissedTransforms.cpp 183548aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/AMDGPUEmitPrintf.cpp 1836986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/ASanStackFrameLayout.cpp 1837986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/AddDiscriminators.cpp 183848aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/AssumeBundleBuilder.cpp 1839986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BasicBlockUtils.cpp 1840986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BreakCriticalEdges.cpp 1841986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BuildLibCalls.cpp 1842986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BypassSlowDivision.cpp 184348aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/CallGraphUpdater.cpp 184436cb3905SDimitry AndricSRCS_MIN+= Transforms/Utils/CallPromotionUtils.cpp 18455e86819cSDimitry AndricSRCS_MIN+= Transforms/Utils/CanonicalizeAliases.cpp 184648aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/CanonicalizeFreezeInLoops.cpp 1847986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CloneFunction.cpp 1848986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CloneModule.cpp 1849986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CodeExtractor.cpp 185004eeddc0SDimitry AndricSRCS_MIN+= Transforms/Utils/CodeLayout.cpp 18519771cac2SDimitry AndricSRCS_MIN+= Transforms/Utils/CodeMoverUtils.cpp 185206c3fb27SDimitry AndricSRCS_MIN+= Transforms/Utils/CountVisits.cpp 1853986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CtorUtils.cpp 185448aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/Debugify.cpp 1855986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/DemoteRegToStack.cpp 185636cb3905SDimitry AndricSRCS_MIN+= Transforms/Utils/EntryExitInstrumenter.cpp 185709bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/EscapeEnumerator.cpp 1858986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/Evaluator.cpp 185948aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/FixIrreducible.cpp 1860986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/FlattenCFG.cpp 186109bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/FunctionComparator.cpp 1862986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/FunctionImportUtils.cpp 1863986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/GlobalStatus.cpp 18645e86819cSDimitry AndricSRCS_MIN+= Transforms/Utils/GuardUtils.cpp 1865fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/HelloWorld.cpp 18669771cac2SDimitry AndricSRCS_MIN+= Transforms/Utils/InjectTLIMappings.cpp 1867986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/InlineFunction.cpp 1868986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/InstructionNamer.cpp 1869986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/IntegerDivision.cpp 1870986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LCSSA.cpp 187109bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/LibCallsShrinkWrap.cpp 1872986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/Local.cpp 1873e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Utils/LoopPeel.cpp 1874986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopSimplify.cpp 18759f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopRotationUtils.cpp 1876986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUnroll.cpp 18779f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUnrollAndJam.cpp 1878986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUnrollRuntime.cpp 1879986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUtils.cpp 1880986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopVersioning.cpp 188181ad6265SDimitry AndricSRCS_MIN+= Transforms/Utils/LowerAtomic.cpp 188281ad6265SDimitry AndricSRCS_MIN+= Transforms/Utils/LowerGlobalDtors.cpp 1883bdd1243dSDimitry AndricSRCS_MIN+= Transforms/Utils/LowerIFunc.cpp 1884986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LowerInvoke.cpp 188506c3fb27SDimitry AndricSRCS_MIN+= Transforms/Utils/LowerMemIntrinsics.cpp 1886986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LowerSwitch.cpp 1887e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Utils/MatrixUtils.cpp 1888986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/Mem2Reg.cpp 1889986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/MetaRenamer.cpp 1890fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/MemoryOpRemark.cpp 189181ad6265SDimitry AndricSRCS_MIN+= Transforms/Utils/MemoryTaggingSupport.cpp 189281ad6265SDimitry AndricSRCS_MIN+= Transforms/Utils/MisExpect.cpp 1893986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/ModuleUtils.cpp 189406c3fb27SDimitry AndricSRCS_MIN+= Transforms/Utils/MoveAutoInit.cpp 189509bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/NameAnonGlobals.cpp 18965897d2f0SDimitry AndricSRCS_MIN+= Transforms/Utils/PredicateInfo.cpp 1897986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/PromoteMemoryToRegister.cpp 1898fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/RelLookupTableConverter.cpp 1899fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/SCCPSolver.cpp 1900986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SSAUpdater.cpp 1901fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/SSAUpdaterBulk.cpp 1902986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SanitizerStats.cpp 190348aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/ScalarEvolutionExpander.cpp 19044824e7fdSDimitry AndricSRCS_MIN+= Transforms/Utils/SampleProfileInference.cpp 1905fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/SampleProfileLoaderBaseUtil.cpp 1906986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SimplifyCFG.cpp 1907986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SimplifyIndVar.cpp 1908986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SimplifyLibCalls.cpp 19094014a71fSDimitry AndricSRCS_MIN+= Transforms/Utils/SizeOpts.cpp 1910986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SplitModule.cpp 191109bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/StripGCRelocates.cpp 191209bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/StripNonLineTableDebugInfo.cpp 1913986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SymbolRewriter.cpp 1914986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/UnifyFunctionExitNodes.cpp 191548aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/UnifyLoopExits.cpp 1916986e05bcSDimitry AndricSRCS_EXT+= Transforms/Utils/Utils.cpp 19175897d2f0SDimitry AndricSRCS_MIN+= Transforms/Utils/VNCoercion.cpp 1918986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/ValueMapper.cpp 1919986e05bcSDimitry AndricSRCS_MIN+= Transforms/Vectorize/LoadStoreVectorizer.cpp 19209f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Vectorize/LoopVectorizationLegality.cpp 1921986e05bcSDimitry AndricSRCS_MIN+= Transforms/Vectorize/LoopVectorize.cpp 1922986e05bcSDimitry AndricSRCS_MIN+= Transforms/Vectorize/SLPVectorizer.cpp 192336cb3905SDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlan.cpp 19249f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlanHCFGBuilder.cpp 192581ad6265SDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlanRecipes.cpp 19269771cac2SDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlanTransforms.cpp 19279f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlanVerifier.cpp 192848aaf27bSDimitry AndricSRCS_MIN+= Transforms/Vectorize/VectorCombine.cpp 1929986e05bcSDimitry AndricSRCS_EXT+= Transforms/Vectorize/Vectorize.cpp 193081ad6265SDimitry AndricSRCS_MIN+= WindowsDriver/MSVCPaths.cpp 1931efa75597SDimitry AndricSRCS_EXT+= XRay/BlockIndexer.cpp 1932efa75597SDimitry AndricSRCS_EXT+= XRay/BlockVerifier.cpp 1933efa75597SDimitry AndricSRCS_EXT+= XRay/FDRRecordProducer.cpp 1934efa75597SDimitry AndricSRCS_EXT+= XRay/FDRRecords.cpp 1935efa75597SDimitry AndricSRCS_EXT+= XRay/FDRTraceExpander.cpp 1936efa75597SDimitry AndricSRCS_EXT+= XRay/FileHeaderReader.cpp 1937050e2df1SDimitry AndricSRCS_EXT+= XRay/InstrumentationMap.cpp 1938efa75597SDimitry AndricSRCS_EXT+= XRay/LogBuilderConsumer.cpp 1939efa75597SDimitry AndricSRCS_EXT+= XRay/RecordInitializer.cpp 194067b158f6SDimitry AndricSRCS_EXT+= XRay/Trace.cpp 1941986e05bcSDimitry Andric 1942986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_MIN} 1943caf90252SBryan Drewery.if !defined(TOOLS_PREFIX) || ${MK_LLD_BOOTSTRAP} != "no" 194430d4828eSDimitry AndricSRCS_ALL+= ${SRCS_MIW} 194530d4828eSDimitry Andric.endif 1946986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" 1947986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_EXT} 1948986e05bcSDimitry Andric.endif 1949986e05bcSDimitry Andric.if ${MK_CLANG_FULL} != "no" 1950986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_FUL} 1951986e05bcSDimitry Andric.endif 195278187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLD} != "no" || \ 195378187278SBryan Drewery (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no") 195475bc38b9SEd MasteSRCS_ALL+= ${SRCS_EXL} 195575bc38b9SEd Maste.endif 195678187278SBryan Drewery.if ${MK_LLD} != "no" || \ 195778187278SBryan Drewery (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no") 19580fc5d238SDimitry AndricSRCS_ALL+= ${SRCS_LLD} 19590fc5d238SDimitry Andric.endif 1960986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" 1961986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_XDB} 1962986e05bcSDimitry Andric.endif 196378187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || ${MK_LLD} != "no" || \ 196478187278SBryan Drewery (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no") 196575bc38b9SEd MasteSRCS_ALL+= ${SRCS_XDL} 196675bc38b9SEd Maste.endif 196730d4828eSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || !defined(TOOLS_PREFIX) 196830d4828eSDimitry AndricSRCS_ALL+= ${SRCS_XDW} 196930d4828eSDimitry Andric.endif 197006c3fb27SDimitry Andric.if ${MK_LLVM_COV} != "no" 197106c3fb27SDimitry AndricSRCS_ALL+= ${SRCS_COV} 197206c3fb27SDimitry Andric.endif 197348aaf27bSDimitry AndricSRCS+= ${GENSRCS} 1974986e05bcSDimitry AndricSRCS+= ${SRCS_ALL:O} 1975986e05bcSDimitry Andric 197606c3fb27SDimitry Andricllvm/CodeGen/GenVT.inc: ${LLVM_SRCS}/include/llvm/CodeGen/ValueTypes.td 197706c3fb27SDimitry Andric ${LLVM_MIN_TBLGEN} -gen-vt \ 197806c3fb27SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 197906c3fb27SDimitry Andric ${LLVM_SRCS}/include/llvm/CodeGen/ValueTypes.td 198006c3fb27SDimitry AndricTGHDRS+= llvm/CodeGen/GenVT.inc 198106c3fb27SDimitry Andric 1982d8ed7fa3SDimitry Andricllvm/Frontend/OpenMP/OMP.h.inc: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 1983d8ed7fa3SDimitry Andric ${LLVM_TBLGEN} --gen-directive-decl \ 1984d8ed7fa3SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 198548aaf27bSDimitry Andric ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 198648aaf27bSDimitry AndricTGHDRS+= llvm/Frontend/OpenMP/OMP.h.inc 198748aaf27bSDimitry Andric 1988e8d8bef9SDimitry Andricllvm/Frontend/OpenMP/OMP.inc: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 1989d8ed7fa3SDimitry Andric ${LLVM_TBLGEN} --gen-directive-impl \ 1990d8ed7fa3SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1991d8ed7fa3SDimitry Andric ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 1992e8d8bef9SDimitry AndricTGHDRS+= llvm/Frontend/OpenMP/OMP.inc 199348aaf27bSDimitry Andric 199448aaf27bSDimitry AndricOMP.cpp: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 1995d8ed7fa3SDimitry Andric ${LLVM_TBLGEN} --gen-directive-impl \ 1996d8ed7fa3SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1997d8ed7fa3SDimitry Andric ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 199848aaf27bSDimitry AndricGENSRCS+= OMP.cpp 199948aaf27bSDimitry Andric 20009f6e9a9fSDimitry Andricllvm/IR/Attributes.inc: ${LLVM_SRCS}/include/llvm/IR/Attributes.td 2001d8ed7fa3SDimitry Andric ${LLVM_TBLGEN} -gen-attrs \ 2002d8ed7fa3SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 2003d8ed7fa3SDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Attributes.td 20049f6e9a9fSDimitry AndricTGHDRS+= llvm/IR/Attributes.inc 2005986e05bcSDimitry Andric 20069f6e9a9fSDimitry Andricllvm/IR/IntrinsicEnums.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 2007d8ed7fa3SDimitry Andric ${LLVM_TBLGEN} -gen-intrinsic-enums \ 2008d8ed7fa3SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 2009d8ed7fa3SDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 20109f6e9a9fSDimitry AndricTGHDRS+= llvm/IR/IntrinsicEnums.inc 20119f6e9a9fSDimitry Andric 20129f6e9a9fSDimitry Andricllvm/IR/IntrinsicImpl.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 2013d8ed7fa3SDimitry Andric ${LLVM_TBLGEN} -gen-intrinsic-impl \ 2014d8ed7fa3SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 2015d8ed7fa3SDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 20169f6e9a9fSDimitry AndricTGHDRS+= llvm/IR/IntrinsicImpl.inc 2017986e05bcSDimitry Andric 20189771cac2SDimitry Andric.for arch in \ 2019753f127fSDimitry Andric AArch64/aarch64 AMDGPU/amdgcn ARM/arm BPF/bpf DirectX/dx \ 2020bdd1243dSDimitry Andric Hexagon/hexagon LoongArch/loongarch Mips/mips NVPTX/nvvm PowerPC/ppc \ 2021bdd1243dSDimitry Andric R600/r600 RISCV/riscv S390/s390 VE/ve WebAssembly/wasm X86/x86 \ 2022bdd1243dSDimitry Andric XCore/xcore 20239771cac2SDimitry Andricllvm/IR/Intrinsics${arch:H}.h: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 2024d8ed7fa3SDimitry Andric ${LLVM_TBLGEN} -gen-intrinsic-enums -intrinsic-prefix=${arch:T} \ 2025d8ed7fa3SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 2026d8ed7fa3SDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 20279771cac2SDimitry AndricTGHDRS+= llvm/IR/Intrinsics${arch:H}.h 20289771cac2SDimitry Andric.endfor 20299771cac2SDimitry Andric 2030bdd1243dSDimitry Andricllvm/TargetParser/RISCVTargetParserDef.inc: ${LLVM_SRCS}/lib/Target/RISCV/RISCV.td 2031bdd1243dSDimitry Andric ${LLVM_TBLGEN} -gen-riscv-target-def \ 2032bdd1243dSDimitry Andric -I ${LLVM_SRCS}/include -I ${LLVM_SRCS}/lib/Target/RISCV \ 2033bdd1243dSDimitry Andric -d ${.TARGET}.d -o ${.TARGET} ${LLVM_SRCS}/lib/Target/RISCV/RISCV.td 2034bdd1243dSDimitry AndricTGHDRS+= llvm/TargetParser/RISCVTargetParserDef.inc 2035bdd1243dSDimitry Andric 2036b40b48b8SDimitry Andricllvm-lib/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td 2037d8ed7fa3SDimitry Andric ${LLVM_TBLGEN} -gen-opt-parser-defs \ 2038d8ed7fa3SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 2039d8ed7fa3SDimitry Andric ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td 2040b40b48b8SDimitry AndricTGHDRS+= llvm-lib/Options.inc 2041b40b48b8SDimitry AndricCFLAGS.LibDriver.cpp+= -I${.OBJDIR}/llvm-lib 2042b40b48b8SDimitry Andric 2043b40b48b8SDimitry Andricllvm-dlltool/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td 2044d8ed7fa3SDimitry Andric ${LLVM_TBLGEN} -gen-opt-parser-defs \ 2045d8ed7fa3SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 2046d8ed7fa3SDimitry Andric ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td 2047b40b48b8SDimitry AndricTGHDRS+= llvm-dlltool/Options.inc 2048b40b48b8SDimitry AndricCFLAGS.DlltoolDriver.cpp+= -I${.OBJDIR}/llvm-dlltool 2049986e05bcSDimitry Andric 2050bdd1243dSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" 2051bdd1243dSDimitry AndricCOFFOptions.inc: ${LLVM_SRCS}/lib/ExecutionEngine/JITLink/COFFOptions.td 2052bdd1243dSDimitry Andric ${LLVM_TBLGEN} -gen-opt-parser-defs \ 2053bdd1243dSDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 2054bdd1243dSDimitry Andric ${LLVM_SRCS}/lib/ExecutionEngine/JITLink/COFFOptions.td 2055bdd1243dSDimitry AndricTGHDRS+= COFFOptions.inc 2056bdd1243dSDimitry Andric.endif 2057bdd1243dSDimitry Andric 2058cd283100SBryan Drewerybeforebuild: 2059cd283100SBryan Drewery# 20170724 remove stale Options.inc file, of which there are two different 206037cd60a3SDimitry Andric# versions after upstream r308421, one for llvm-lib, one for llvm-dlltool 2061cd283100SBryan Drewery.for f in Options.inc 2062cd283100SBryan Drewery.if exists(${f}) || exists(${f}.d) 2063cd283100SBryan Drewery @echo Removing stale generated ${f} files 2064cd283100SBryan Drewery @rm -f ${f} ${f}.d 2065cd283100SBryan Drewery.endif 2066cd283100SBryan Drewery.endfor 2067cd283100SBryan Drewery 2068986e05bcSDimitry Andric# Note: some rules are superfluous, not every combination is valid. 2069986e05bcSDimitry Andric.for arch in \ 20703b7fd87cSWarner Losh AArch64/AArch64 ARM/ARM BPF/BPF Mips/Mips PowerPC/PPC RISCV/RISCV \ 20713b7fd87cSWarner Losh X86/X86 2072986e05bcSDimitry Andric. for hdr in \ 2073986e05bcSDimitry Andric AsmMatcher/-gen-asm-matcher \ 2074986e05bcSDimitry Andric AsmWriter/-gen-asm-writer \ 207548aaf27bSDimitry Andric AsmWriter1/-gen-asm-writer,-asmwriternum=1 \ 2076986e05bcSDimitry Andric CallingConv/-gen-callingconv \ 2077986e05bcSDimitry Andric CodeEmitter/-gen-emitter \ 2078b2689b12SMitchell Horne CompressInstEmitter/-gen-compress-inst-emitter \ 2079986e05bcSDimitry Andric DAGISel/-gen-dag-isel \ 2080986e05bcSDimitry Andric DisassemblerTables/-gen-disassembler \ 20815897d2f0SDimitry Andric EVEX2VEXTables/-gen-x86-EVEX2VEX-tables \ 2082986e05bcSDimitry Andric FastISel/-gen-fast-isel \ 208306c3fb27SDimitry Andric FoldTables/-gen-x86-fold-tables,-asmwriternum=1 \ 20843d54deb3SDimitry Andric GlobalISel/-gen-global-isel \ 208581ad6265SDimitry Andric InstrInfo/-gen-instr-info${arch:MX86/X86:C/X86\/X86/,-instr-info-expand-mi-operand-info=0/} \ 2086986e05bcSDimitry Andric MCCodeEmitter/-gen-emitter \ 2087986e05bcSDimitry Andric MCPseudoLowering/-gen-pseudo-lowering \ 208881ad6265SDimitry Andric MnemonicTables/-gen-x86-mnemonic-tables,-asmwriternum=1 \ 208906c3fb27SDimitry Andric O0PreLegalizeGICombiner/-gen-global-isel-combiner-matchtable,-combiners=${arch:H}O0PreLegalizerCombiner \ 209006c3fb27SDimitry Andric PostLegalizeGICombiner/-gen-global-isel-combiner-matchtable,-combiners=${arch:H}PostLegalizerCombiner \ 209106c3fb27SDimitry Andric PostLegalizeGILowering/-gen-global-isel-combiner-matchtable,-combiners=${arch:H}PostLegalizerLowering \ 209206c3fb27SDimitry Andric PreLegalizeGICombiner/-gen-global-isel-combiner-matchtable,-combiners=${arch:H}PreLegalizerCombiner \ 20935897d2f0SDimitry Andric RegisterBank/-gen-register-bank \ 2094986e05bcSDimitry Andric RegisterInfo/-gen-register-info \ 2095e8d8bef9SDimitry Andric SearchableTables/-gen-searchable-tables \ 2096986e05bcSDimitry Andric SubtargetInfo/-gen-subtarget \ 209736cb3905SDimitry Andric SystemOperands/-gen-searchable-tables \ 209836cb3905SDimitry Andric SystemRegister/-gen-searchable-tables 2099986e05bcSDimitry Andric${arch:T}Gen${hdr:H}.inc: ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td 2100d8ed7fa3SDimitry Andric ${LLVM_TBLGEN} ${hdr:T:C/,/ /g} \ 2101986e05bcSDimitry Andric -I ${LLVM_SRCS}/include -I ${LLVM_SRCS}/lib/Target/${arch:H} \ 2102d8ed7fa3SDimitry Andric -d ${.TARGET}.d -o ${.TARGET} \ 2103d8ed7fa3SDimitry Andric ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td 2104986e05bcSDimitry Andric. endfor 2105986e05bcSDimitry Andric.endfor 2106cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no" 2107986e05bcSDimitry AndricTGHDRS+= AArch64GenAsmMatcher.inc 2108986e05bcSDimitry AndricTGHDRS+= AArch64GenAsmWriter.inc 2109986e05bcSDimitry AndricTGHDRS+= AArch64GenAsmWriter1.inc 2110986e05bcSDimitry AndricTGHDRS+= AArch64GenCallingConv.inc 2111986e05bcSDimitry AndricTGHDRS+= AArch64GenDAGISel.inc 2112986e05bcSDimitry AndricTGHDRS+= AArch64GenDisassemblerTables.inc 2113986e05bcSDimitry AndricTGHDRS+= AArch64GenFastISel.inc 21143d54deb3SDimitry AndricTGHDRS+= AArch64GenGlobalISel.inc 2115986e05bcSDimitry AndricTGHDRS+= AArch64GenInstrInfo.inc 2116986e05bcSDimitry AndricTGHDRS+= AArch64GenMCCodeEmitter.inc 2117986e05bcSDimitry AndricTGHDRS+= AArch64GenMCPseudoLowering.inc 2118fe6060f1SDimitry AndricTGHDRS+= AArch64GenO0PreLegalizeGICombiner.inc 211948aaf27bSDimitry AndricTGHDRS+= AArch64GenPostLegalizeGICombiner.inc 2120e8d8bef9SDimitry AndricTGHDRS+= AArch64GenPostLegalizeGILowering.inc 212148aaf27bSDimitry AndricTGHDRS+= AArch64GenPreLegalizeGICombiner.inc 21225897d2f0SDimitry AndricTGHDRS+= AArch64GenRegisterBank.inc 2123986e05bcSDimitry AndricTGHDRS+= AArch64GenRegisterInfo.inc 2124986e05bcSDimitry AndricTGHDRS+= AArch64GenSubtargetInfo.inc 2125986e05bcSDimitry AndricTGHDRS+= AArch64GenSystemOperands.inc 2126cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64 2127cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no" 2128986e05bcSDimitry AndricTGHDRS+= ARMGenAsmMatcher.inc 2129986e05bcSDimitry AndricTGHDRS+= ARMGenAsmWriter.inc 2130986e05bcSDimitry AndricTGHDRS+= ARMGenCallingConv.inc 2131986e05bcSDimitry AndricTGHDRS+= ARMGenDAGISel.inc 2132986e05bcSDimitry AndricTGHDRS+= ARMGenDisassemblerTables.inc 2133986e05bcSDimitry AndricTGHDRS+= ARMGenFastISel.inc 21343d54deb3SDimitry AndricTGHDRS+= ARMGenGlobalISel.inc 2135986e05bcSDimitry AndricTGHDRS+= ARMGenInstrInfo.inc 2136986e05bcSDimitry AndricTGHDRS+= ARMGenMCCodeEmitter.inc 2137986e05bcSDimitry AndricTGHDRS+= ARMGenMCPseudoLowering.inc 21385897d2f0SDimitry AndricTGHDRS+= ARMGenRegisterBank.inc 2139986e05bcSDimitry AndricTGHDRS+= ARMGenRegisterInfo.inc 2140986e05bcSDimitry AndricTGHDRS+= ARMGenSubtargetInfo.inc 214136cb3905SDimitry AndricTGHDRS+= ARMGenSystemRegister.inc 2142cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM 214389edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no" 214489edb881SDimitry AndricTGHDRS+= BPFGenAsmMatcher.inc 214589edb881SDimitry AndricTGHDRS+= BPFGenAsmWriter.inc 214689edb881SDimitry AndricTGHDRS+= BPFGenCallingConv.inc 214789edb881SDimitry AndricTGHDRS+= BPFGenDAGISel.inc 214889edb881SDimitry AndricTGHDRS+= BPFGenDisassemblerTables.inc 214989edb881SDimitry AndricTGHDRS+= BPFGenInstrInfo.inc 215089edb881SDimitry AndricTGHDRS+= BPFGenMCCodeEmitter.inc 215189edb881SDimitry AndricTGHDRS+= BPFGenRegisterInfo.inc 215289edb881SDimitry AndricTGHDRS+= BPFGenSubtargetInfo.inc 215389edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF 2154cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no" 2155986e05bcSDimitry AndricTGHDRS+= MipsGenAsmMatcher.inc 2156986e05bcSDimitry AndricTGHDRS+= MipsGenAsmWriter.inc 2157986e05bcSDimitry AndricTGHDRS+= MipsGenCallingConv.inc 2158986e05bcSDimitry AndricTGHDRS+= MipsGenDAGISel.inc 2159986e05bcSDimitry AndricTGHDRS+= MipsGenDisassemblerTables.inc 2160986e05bcSDimitry AndricTGHDRS+= MipsGenFastISel.inc 21619f6e9a9fSDimitry AndricTGHDRS+= MipsGenGlobalISel.inc 2162986e05bcSDimitry AndricTGHDRS+= MipsGenInstrInfo.inc 2163986e05bcSDimitry AndricTGHDRS+= MipsGenMCCodeEmitter.inc 2164986e05bcSDimitry AndricTGHDRS+= MipsGenMCPseudoLowering.inc 216581ad6265SDimitry AndricTGHDRS+= MipsGenPostLegalizeGICombiner.inc 21669f6e9a9fSDimitry AndricTGHDRS+= MipsGenRegisterBank.inc 2167986e05bcSDimitry AndricTGHDRS+= MipsGenRegisterInfo.inc 2168986e05bcSDimitry AndricTGHDRS+= MipsGenSubtargetInfo.inc 2169cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS 2170cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no" 2171986e05bcSDimitry AndricTGHDRS+= PPCGenAsmMatcher.inc 2172986e05bcSDimitry AndricTGHDRS+= PPCGenAsmWriter.inc 2173986e05bcSDimitry AndricTGHDRS+= PPCGenCallingConv.inc 2174986e05bcSDimitry AndricTGHDRS+= PPCGenDAGISel.inc 2175986e05bcSDimitry AndricTGHDRS+= PPCGenDisassemblerTables.inc 2176986e05bcSDimitry AndricTGHDRS+= PPCGenFastISel.inc 2177e8d8bef9SDimitry AndricTGHDRS+= PPCGenGlobalISel.inc 2178986e05bcSDimitry AndricTGHDRS+= PPCGenInstrInfo.inc 2179986e05bcSDimitry AndricTGHDRS+= PPCGenMCCodeEmitter.inc 2180e8d8bef9SDimitry AndricTGHDRS+= PPCGenRegisterBank.inc 2181986e05bcSDimitry AndricTGHDRS+= PPCGenRegisterInfo.inc 2182986e05bcSDimitry AndricTGHDRS+= PPCGenSubtargetInfo.inc 2183cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC 2184b2689b12SMitchell Horne.if ${MK_LLVM_TARGET_RISCV} != "no" 2185b2689b12SMitchell HorneTGHDRS+= RISCVGenAsmMatcher.inc 2186b2689b12SMitchell HorneTGHDRS+= RISCVGenAsmWriter.inc 2187b2689b12SMitchell HorneTGHDRS+= RISCVGenCallingConv.inc 2188b2689b12SMitchell HorneTGHDRS+= RISCVGenCompressInstEmitter.inc 2189b2689b12SMitchell HorneTGHDRS+= RISCVGenDAGISel.inc 2190b2689b12SMitchell HorneTGHDRS+= RISCVGenDisassemblerTables.inc 2191b2689b12SMitchell HorneTGHDRS+= RISCVGenDAGISel.inc 21929771cac2SDimitry AndricTGHDRS+= RISCVGenGlobalISel.inc 2193b2689b12SMitchell HorneTGHDRS+= RISCVGenInstrInfo.inc 2194b2689b12SMitchell HorneTGHDRS+= RISCVGenMCCodeEmitter.inc 2195b2689b12SMitchell HorneTGHDRS+= RISCVGenMCPseudoLowering.inc 21969771cac2SDimitry AndricTGHDRS+= RISCVGenRegisterBank.inc 2197b2689b12SMitchell HorneTGHDRS+= RISCVGenRegisterInfo.inc 2198e8d8bef9SDimitry AndricTGHDRS+= RISCVGenSearchableTables.inc 2199b2689b12SMitchell HorneTGHDRS+= RISCVGenSubtargetInfo.inc 2200b2689b12SMitchell HorneTGHDRS+= RISCVGenSystemOperands.inc 2201b2689b12SMitchell Horne.endif # MK_LLVM_TARGET_RISCV 2202cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no" 2203986e05bcSDimitry AndricTGHDRS+= X86GenAsmMatcher.inc 2204986e05bcSDimitry AndricTGHDRS+= X86GenAsmWriter.inc 2205986e05bcSDimitry AndricTGHDRS+= X86GenAsmWriter1.inc 2206986e05bcSDimitry AndricTGHDRS+= X86GenCallingConv.inc 2207986e05bcSDimitry AndricTGHDRS+= X86GenDAGISel.inc 2208986e05bcSDimitry AndricTGHDRS+= X86GenDisassemblerTables.inc 22095897d2f0SDimitry AndricTGHDRS+= X86GenEVEX2VEXTables.inc 2210986e05bcSDimitry AndricTGHDRS+= X86GenFastISel.inc 221106c3fb27SDimitry AndricTGHDRS+= X86GenFoldTables.inc 22123d54deb3SDimitry AndricTGHDRS+= X86GenGlobalISel.inc 2213986e05bcSDimitry AndricTGHDRS+= X86GenInstrInfo.inc 221481ad6265SDimitry AndricTGHDRS+= X86GenMnemonicTables.inc 22155897d2f0SDimitry AndricTGHDRS+= X86GenRegisterBank.inc 2216986e05bcSDimitry AndricTGHDRS+= X86GenRegisterInfo.inc 2217986e05bcSDimitry AndricTGHDRS+= X86GenSubtargetInfo.inc 2218cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86 2219986e05bcSDimitry Andric 2220ddf95e2aSBryan DreweryDEPENDFILES+= ${TGHDRS:C/$/.d/} 2221986e05bcSDimitry AndricDPSRCS+= ${TGHDRS} 2222986e05bcSDimitry AndricCLEANFILES+= ${TGHDRS} ${TGHDRS:C/$/.d/} 222348aaf27bSDimitry AndricCLEANFILES+= ${GENSRCS} ${GENSRCS:C/$/.d/} 2224986e05bcSDimitry Andric 2225986e05bcSDimitry Andric.include "../llvm.build.mk" 2226986e05bcSDimitry Andric.include <bsd.lib.mk> 2227