1986e05bcSDimitry Andric# $FreeBSD$ 2986e05bcSDimitry Andric 3986e05bcSDimitry Andric.include <src.opts.mk> 4986e05bcSDimitry Andric.include "../llvm.pre.mk" 5986e05bcSDimitry Andric 6986e05bcSDimitry AndricLIB= llvm 7986e05bcSDimitry AndricINTERNALLIB= 8986e05bcSDimitry Andric 9986e05bcSDimitry AndricCFLAGS+= -I${.OBJDIR} 10cbafd263SDimitry Andric 11cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} == "no" && ${MK_LLVM_TARGET_ARM} == "no" && \ 1289edb881SDimitry Andric ${MK_LLVM_TARGET_BPF} == "no" && ${MK_LLVM_TARGET_MIPS} == "no" && \ 13b2689b12SMitchell Horne ${MK_LLVM_TARGET_POWERPC} == "no" && ${MK_LLVM_TARGET_RISCV} == "no" && \ 143b7fd87cSWarner Losh ${MK_LLVM_TARGET_X86} == "no" 15cbafd263SDimitry Andric.error Please enable at least one of: MK_LLVM_TARGET_AARCH64,\ 1689edb881SDimitry Andric MK_LLVM_TARGET_ARM, MK_LLVM_TARGET_BPF, MK_LLVM_TARGET_MIPS, \ 173b7fd87cSWarner Losh MK_LLVM_TARGET_POWERPC, MK_LLVM_TARGET_RISCV, or MK_LLVM_TARGET_X86 18cbafd263SDimitry Andric.endif 19cbafd263SDimitry Andric 203b7fd87cSWarner Losh.for arch in AArch64 ARM BPF Mips PowerPC RISCV X86 21cbafd263SDimitry Andric. if ${MK_LLVM_TARGET_${arch:tu}} != "no" 22986e05bcSDimitry AndricCFLAGS+= -I${LLVM_SRCS}/lib/Target/${arch} 23cbafd263SDimitry Andric. endif 24986e05bcSDimitry Andric.endfor 25986e05bcSDimitry Andric 2681ad6265SDimitry AndricCFLAGS+= -I${LLVM_SRCS}/lib/ObjCopy 2781ad6265SDimitry Andric 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 34*eb81dd84SJohn-Mark Gurney.if ${TARGET_ARCH} != "arm64" 35*eb81dd84SJohn-Mark GurneyCFLAGS+= -DBLAKE3_USE_NEON=0 36*eb81dd84SJohn-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 50a1aaa66bSDimitry Andric 51986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasAnalysis.cpp 52986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasAnalysisEvaluator.cpp 53986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasAnalysisSummary.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 64986e05bcSDimitry AndricSRCS_MIN+= Analysis/CFLAndersAliasAnalysis.cpp 65986e05bcSDimitry AndricSRCS_MIN+= Analysis/CFLSteensAliasAnalysis.cpp 66986e05bcSDimitry AndricSRCS_MIN+= Analysis/CGSCCPassManager.cpp 67986e05bcSDimitry AndricSRCS_MIN+= Analysis/CallGraph.cpp 68986e05bcSDimitry AndricSRCS_MIN+= Analysis/CallGraphSCCPass.cpp 69986e05bcSDimitry AndricSRCS_MIN+= Analysis/CallPrinter.cpp 70986e05bcSDimitry AndricSRCS_MIN+= Analysis/CaptureTracking.cpp 7136cb3905SDimitry AndricSRCS_MIN+= Analysis/CmpInstAnalysis.cpp 72986e05bcSDimitry AndricSRCS_MIN+= Analysis/CodeMetrics.cpp 73986e05bcSDimitry AndricSRCS_MIN+= Analysis/ConstantFolding.cpp 74e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/ConstraintSystem.cpp 75986e05bcSDimitry AndricSRCS_MIN+= Analysis/CostModel.cpp 7604eeddc0SDimitry AndricSRCS_MIN+= Analysis/CycleAnalysis.cpp 779771cac2SDimitry AndricSRCS_MIN+= Analysis/DDG.cpp 78e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/DDGPrinter.cpp 79986e05bcSDimitry AndricSRCS_MIN+= Analysis/Delinearization.cpp 80986e05bcSDimitry AndricSRCS_MIN+= Analysis/DemandedBits.cpp 81986e05bcSDimitry AndricSRCS_MIN+= Analysis/DependenceAnalysis.cpp 829771cac2SDimitry AndricSRCS_MIN+= Analysis/DependenceGraphBuilder.cpp 83986e05bcSDimitry AndricSRCS_MIN+= Analysis/DivergenceAnalysis.cpp 84986e05bcSDimitry AndricSRCS_MIN+= Analysis/DomPrinter.cpp 854014a71fSDimitry AndricSRCS_MIN+= Analysis/DomTreeUpdater.cpp 86986e05bcSDimitry AndricSRCS_MIN+= Analysis/DominanceFrontier.cpp 87986e05bcSDimitry AndricSRCS_MIN+= Analysis/EHPersonalities.cpp 88e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/FunctionPropertiesAnalysis.cpp 89986e05bcSDimitry AndricSRCS_MIN+= Analysis/GlobalsModRef.cpp 905e86819cSDimitry AndricSRCS_MIN+= Analysis/GuardUtils.cpp 9148aaf27bSDimitry AndricSRCS_MIN+= Analysis/HeatUtils.cpp 92e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/IRSimilarityIdentifier.cpp 935e86819cSDimitry AndricSRCS_MIN+= Analysis/IVDescriptors.cpp 94986e05bcSDimitry AndricSRCS_MIN+= Analysis/IVUsers.cpp 95e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/ImportedFunctionsInliningStatistics.cpp 96986e05bcSDimitry AndricSRCS_MIN+= Analysis/IndirectCallPromotionAnalysis.cpp 9748aaf27bSDimitry AndricSRCS_MIN+= Analysis/InlineAdvisor.cpp 98986e05bcSDimitry AndricSRCS_MIN+= Analysis/InlineCost.cpp 9948aaf27bSDimitry AndricSRCS_MIN+= Analysis/InlineSizeEstimatorAnalysis.cpp 100986e05bcSDimitry AndricSRCS_MIN+= Analysis/InstCount.cpp 1015e86819cSDimitry AndricSRCS_MIN+= Analysis/InstructionPrecedenceTracking.cpp 102986e05bcSDimitry AndricSRCS_MIN+= Analysis/InstructionSimplify.cpp 103986e05bcSDimitry AndricSRCS_MIN+= Analysis/Interval.cpp 104986e05bcSDimitry AndricSRCS_MIN+= Analysis/IntervalPartition.cpp 105986e05bcSDimitry AndricSRCS_MIN+= Analysis/LazyBlockFrequencyInfo.cpp 10609bfd043SDimitry AndricSRCS_MIN+= Analysis/LazyBranchProbabilityInfo.cpp 107986e05bcSDimitry AndricSRCS_MIN+= Analysis/LazyCallGraph.cpp 108986e05bcSDimitry AndricSRCS_MIN+= Analysis/LazyValueInfo.cpp 1095e86819cSDimitry AndricSRCS_MIN+= Analysis/LegacyDivergenceAnalysis.cpp 110986e05bcSDimitry AndricSRCS_MIN+= Analysis/Lint.cpp 111986e05bcSDimitry AndricSRCS_MIN+= Analysis/Loads.cpp 112986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopAccessAnalysis.cpp 113f1a29dd3SDimitry AndricSRCS_MIN+= Analysis/LoopAnalysisManager.cpp 1149771cac2SDimitry AndricSRCS_MIN+= Analysis/LoopCacheAnalysis.cpp 115986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopInfo.cpp 11648aaf27bSDimitry AndricSRCS_MIN+= Analysis/LoopNestAnalysis.cpp 117986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopPass.cpp 118986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopUnrollAnalyzer.cpp 119986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemDepPrinter.cpp 120986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemDerefPrinter.cpp 121986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemoryBuiltins.cpp 122986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemoryDependenceAnalysis.cpp 123986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemoryLocation.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 1515e86819cSDimitry AndricSRCS_MIN+= Analysis/SyncDependenceAnalysis.cpp 1529f6e9a9fSDimitry AndricSRCS_MIN+= Analysis/SyntheticCountsUtils.cpp 153986e05bcSDimitry AndricSRCS_MIN+= Analysis/TargetLibraryInfo.cpp 154986e05bcSDimitry AndricSRCS_MIN+= Analysis/TargetTransformInfo.cpp 15581ad6265SDimitry AndricSRCS_MIN+= Analysis/TensorSpec.cpp 156986e05bcSDimitry AndricSRCS_MIN+= Analysis/TypeBasedAliasAnalysis.cpp 157986e05bcSDimitry AndricSRCS_MIN+= Analysis/TypeMetadataUtils.cpp 1589771cac2SDimitry AndricSRCS_MIN+= Analysis/VFABIDemangling.cpp 15936cb3905SDimitry AndricSRCS_MIN+= Analysis/ValueLattice.cpp 16036cb3905SDimitry AndricSRCS_MIN+= Analysis/ValueLatticeUtils.cpp 161986e05bcSDimitry AndricSRCS_MIN+= Analysis/ValueTracking.cpp 162986e05bcSDimitry AndricSRCS_MIN+= Analysis/VectorUtils.cpp 163986e05bcSDimitry AndricSRCS_MIN+= AsmParser/LLLexer.cpp 164986e05bcSDimitry AndricSRCS_MIN+= AsmParser/LLParser.cpp 165986e05bcSDimitry AndricSRCS_MIN+= AsmParser/Parser.cpp 1661b85b68dSCameron KatriSRCS_MIN+= BinaryFormat/AMDGPUMetadataVerifier.cpp 167d781ede6SDimitry AndricSRCS_MIN+= BinaryFormat/COFF.cpp 16844389c28SDimitry AndricSRCS_MIN+= BinaryFormat/Dwarf.cpp 16944389c28SDimitry AndricSRCS_MIN+= BinaryFormat/Magic.cpp 17048aaf27bSDimitry AndricSRCS_MIN+= BinaryFormat/MachO.cpp 1711b85b68dSCameron KatriSRCS_MIN+= BinaryFormat/MsgPackDocument.cpp 1721b85b68dSCameron KatriSRCS_MIN+= BinaryFormat/MsgPackDocumentYAML.cpp 1731b85b68dSCameron KatriSRCS_MIN+= BinaryFormat/MsgPackReader.cpp 17479239b5bSDimitry AndricSRCS_MIN+= BinaryFormat/MsgPackWriter.cpp 1759f6e9a9fSDimitry AndricSRCS_MIN+= BinaryFormat/Wasm.cpp 1769771cac2SDimitry AndricSRCS_MIN+= BinaryFormat/XCOFF.cpp 17709bfd043SDimitry AndricSRCS_MIN+= Bitcode/Reader/BitReader.cpp 17824b8043eSDimitry AndricSRCS_EXT+= Bitcode/Reader/BitcodeAnalyzer.cpp 179986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Reader/BitcodeReader.cpp 18009bfd043SDimitry AndricSRCS_MIN+= Bitcode/Reader/MetadataLoader.cpp 18109bfd043SDimitry AndricSRCS_MIN+= Bitcode/Reader/ValueList.cpp 182986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Writer/BitcodeWriter.cpp 183986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Writer/BitcodeWriterPass.cpp 184986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Writer/ValueEnumerator.cpp 1854014a71fSDimitry AndricSRCS_MIN+= Bitstream/Reader/BitstreamReader.cpp 186986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AggressiveAntiDepBreaker.cpp 187986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AllocationOrder.cpp 188986e05bcSDimitry AndricSRCS_MIN+= CodeGen/Analysis.cpp 189e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AIXException.cpp 190986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/ARMException.cpp 1919f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AccelTable.cpp 192986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AddressPool.cpp 193986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AsmPrinter.cpp 194986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AsmPrinterDwarf.cpp 195986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp 196986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/CodeViewDebug.cpp 197986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DIE.cpp 198986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DIEHash.cpp 1995e86819cSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp 200986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DebugHandlerBase.cpp 201986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DebugLocStream.cpp 202986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfCFIException.cpp 203986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfCompileUnit.cpp 204986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfDebug.cpp 205986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfExpression.cpp 206986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfFile.cpp 207986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfStringPool.cpp 208986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfUnit.cpp 209986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/EHStreamer.cpp 21024b8043eSDimitry AndricSRCS_EXT+= CodeGen/AsmPrinter/ErlangGCPrinter.cpp 211986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/OcamlGCPrinter.cpp 212e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/PseudoProbePrinter.cpp 2135e86819cSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/WasmException.cpp 2149f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/WinCFGuard.cpp 215986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/WinException.cpp 216986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AtomicExpandPass.cpp 217e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/BasicBlockSections.cpp 21881ad6265SDimitry AndricSRCS_MIN+= CodeGen/BasicBlockSectionsProfileReader.cpp 219986e05bcSDimitry AndricSRCS_MIN+= CodeGen/BasicTargetTransformInfo.cpp 220986e05bcSDimitry AndricSRCS_MIN+= CodeGen/BranchFolding.cpp 22109bfd043SDimitry AndricSRCS_MIN+= CodeGen/BranchRelaxation.cpp 2229f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/BreakFalseDeps.cpp 2239771cac2SDimitry AndricSRCS_MIN+= CodeGen/CFGuardLongjmp.cpp 22481ad6265SDimitry AndricSRCS_MIN+= CodeGen/CFIFixup.cpp 2259f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/CFIInstrInserter.cpp 226986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CalcSpillWeights.cpp 227986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CallingConvLower.cpp 228986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CodeGen.cpp 2295e801ac6SDimitry AndricSRCS_MIN+= CodeGen/CodeGenCommonISel.cpp 230986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CodeGenPrepare.cpp 23148aaf27bSDimitry AndricSRCS_EXL+= CodeGen/CommandFlags.cpp 232986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CriticalAntiDepBreaker.cpp 233986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DFAPacketizer.cpp 234986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DeadMachineInstructionElim.cpp 235986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DetectDeadLanes.cpp 236986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DwarfEHPrepare.cpp 237fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/EHContGuardCatchret.cpp 238986e05bcSDimitry AndricSRCS_MIN+= CodeGen/EarlyIfConversion.cpp 239986e05bcSDimitry AndricSRCS_MIN+= CodeGen/EdgeBundles.cpp 2409f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/ExecutionDomainFix.cpp 24136cb3905SDimitry AndricSRCS_MIN+= CodeGen/ExpandMemCmp.cpp 242986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ExpandPostRAPseudos.cpp 2435517e702SDimitry AndricSRCS_MIN+= CodeGen/ExpandReductions.cpp 244fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/ExpandVectorPredication.cpp 2455897d2f0SDimitry AndricSRCS_MIN+= CodeGen/FEntryInserter.cpp 246986e05bcSDimitry AndricSRCS_MIN+= CodeGen/FaultMaps.cpp 2474014a71fSDimitry AndricSRCS_MIN+= CodeGen/FinalizeISel.cpp 24848aaf27bSDimitry AndricSRCS_MIN+= CodeGen/FixupStatepointCallerSaved.cpp 249986e05bcSDimitry AndricSRCS_MIN+= CodeGen/FuncletLayout.cpp 250986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GCMetadata.cpp 25109bfd043SDimitry AndricSRCS_MIN+= CodeGen/GCMetadataPrinter.cpp 252986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GCRootLowering.cpp 2535e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/CSEInfo.cpp 2545e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/CSEMIRBuilder.cpp 2555e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Combiner.cpp 2565e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/CombinerHelper.cpp 2573d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/CallLowering.cpp 2585e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/GISelChangeObserver.cpp 2599771cac2SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/GISelKnownBits.cpp 260986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/GlobalISel.cpp 2613d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/IRTranslator.cpp 26248aaf27bSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/InlineAsmLowering.cpp 2633d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/InstructionSelect.cpp 2643d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/InstructionSelector.cpp 265fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegacyLegalizerInfo.cpp 2669f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalityPredicates.cpp 2679f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalizeMutations.cpp 2683d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Legalizer.cpp 2693d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalizerHelper.cpp 2703d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalizerInfo.cpp 2715e801ac6SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LoadStoreOpt.cpp 272302affcbSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Localizer.cpp 27348aaf27bSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LostDebugLocObserver.cpp 2743d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/MachineIRBuilder.cpp 2753d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/RegBankSelect.cpp 2763d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Utils.cpp 277986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GlobalMerge.cpp 2784014a71fSDimitry AndricSRCS_MIN+= CodeGen/HardwareLoops.cpp 279986e05bcSDimitry AndricSRCS_MIN+= CodeGen/IfConversion.cpp 280986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ImplicitNullChecks.cpp 28107577dfeSDimitry AndricSRCS_MIN+= CodeGen/IndirectBrExpandPass.cpp 282986e05bcSDimitry AndricSRCS_MIN+= CodeGen/InlineSpiller.cpp 283986e05bcSDimitry AndricSRCS_MIN+= CodeGen/InterferenceCache.cpp 284986e05bcSDimitry AndricSRCS_MIN+= CodeGen/InterleavedAccessPass.cpp 2855e86819cSDimitry AndricSRCS_MIN+= CodeGen/InterleavedLoadCombinePass.cpp 286986e05bcSDimitry AndricSRCS_MIN+= CodeGen/IntrinsicLowering.cpp 28781ad6265SDimitry AndricSRCS_MIN+= CodeGen/JMCInstrumenter.cpp 288986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LLVMTargetMachine.cpp 289986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LatencyPriorityQueue.cpp 2905897d2f0SDimitry AndricSRCS_MIN+= CodeGen/LazyMachineBlockFrequencyInfo.cpp 291986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LexicalScopes.cpp 292e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/LiveDebugValues/InstrRefBasedImpl.cpp 293e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/LiveDebugValues/LiveDebugValues.cpp 294e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/LiveDebugValues/VarLocBasedImpl.cpp 295986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveDebugVariables.cpp 296986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveInterval.cpp 29748aaf27bSDimitry AndricSRCS_MIN+= CodeGen/LiveIntervalCalc.cpp 298986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveIntervalUnion.cpp 29944389c28SDimitry AndricSRCS_MIN+= CodeGen/LiveIntervals.cpp 300986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LivePhysRegs.cpp 301986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveRangeCalc.cpp 302986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveRangeEdit.cpp 303f9448bf3SDimitry AndricSRCS_MIN+= CodeGen/LiveRangeShrink.cpp 304986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveRegMatrix.cpp 3055897d2f0SDimitry AndricSRCS_MIN+= CodeGen/LiveRegUnits.cpp 3062757ff7eSDimitry AndricSRCS_MIN+= CodeGen/LiveStacks.cpp 307986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveVariables.cpp 308986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LocalStackSlotAllocation.cpp 3099f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/LoopTraversal.cpp 31009bfd043SDimitry AndricSRCS_MIN+= CodeGen/LowLevelType.cpp 311986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LowerEmuTLS.cpp 31248aaf27bSDimitry AndricSRCS_MIN+= CodeGen/MBFIWrapper.cpp 31336cb3905SDimitry AndricSRCS_MIN+= CodeGen/MIRCanonicalizerPass.cpp 314fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/MIRFSDiscriminator.cpp 3159771cac2SDimitry AndricSRCS_MIN+= CodeGen/MIRNamerPass.cpp 316986e05bcSDimitry AndricSRCS_EXT+= CodeGen/MIRParser/MILexer.cpp 317986e05bcSDimitry AndricSRCS_EXT+= CodeGen/MIRParser/MIParser.cpp 318986e05bcSDimitry AndricSRCS_EXT+= CodeGen/MIRParser/MIRParser.cpp 319986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MIRPrinter.cpp 320986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MIRPrintingPass.cpp 3215e801ac6SDimitry AndricSRCS_MIN+= CodeGen/MIRSampleProfile.cpp 3229771cac2SDimitry AndricSRCS_MIN+= CodeGen/MIRVRegNamerUtils.cpp 32304eeddc0SDimitry AndricSRCS_MIN+= CodeGen/MLRegallocEvictAdvisor.cpp 324986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBasicBlock.cpp 325986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBlockFrequencyInfo.cpp 326986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBlockPlacement.cpp 327986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBranchProbabilityInfo.cpp 328986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineCSE.cpp 329e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/MachineCheckDebugify.cpp 330986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineCombiner.cpp 331986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineCopyPropagation.cpp 33204eeddc0SDimitry AndricSRCS_MIN+= CodeGen/MachineCycleAnalysis.cpp 33348aaf27bSDimitry AndricSRCS_MIN+= CodeGen/MachineDebugify.cpp 334986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineDominanceFrontier.cpp 335986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineDominators.cpp 336f37b6182SDimitry AndricSRCS_MIN+= CodeGen/MachineFrameInfo.cpp 337986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineFunction.cpp 338986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineFunctionPass.cpp 339986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineFunctionPrinterPass.cpp 340e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/MachineFunctionSplitter.cpp 341986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineInstr.cpp 342986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineInstrBundle.cpp 343986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineLICM.cpp 344986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineLoopInfo.cpp 3459771cac2SDimitry AndricSRCS_MIN+= CodeGen/MachineLoopUtils.cpp 346986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineModuleInfo.cpp 347986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineModuleInfoImpls.cpp 348fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/MachineModuleSlotTracker.cpp 34936cb3905SDimitry AndricSRCS_MIN+= CodeGen/MachineOperand.cpp 3505897d2f0SDimitry AndricSRCS_MIN+= CodeGen/MachineOptimizationRemarkEmitter.cpp 3515897d2f0SDimitry AndricSRCS_MIN+= CodeGen/MachineOutliner.cpp 35209bfd043SDimitry AndricSRCS_MIN+= CodeGen/MachinePipeliner.cpp 353986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachinePostDominators.cpp 354986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineRegionInfo.cpp 355986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineRegisterInfo.cpp 35604eeddc0SDimitry AndricSRCS_MIN+= CodeGen/MachineSSAContext.cpp 357986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineSSAUpdater.cpp 358986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineScheduler.cpp 359986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineSink.cpp 3609771cac2SDimitry AndricSRCS_MIN+= CodeGen/MachineSizeOpts.cpp 361e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/MachineStableHash.cpp 36248aaf27bSDimitry AndricSRCS_MIN+= CodeGen/MachineStripDebug.cpp 363986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineTraceMetrics.cpp 364986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineVerifier.cpp 365edd7eaddSDimitry AndricSRCS_MIN+= CodeGen/MacroFusion.cpp 3669771cac2SDimitry AndricSRCS_MIN+= CodeGen/ModuloSchedule.cpp 367e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/MultiHazardRecognizer.cpp 368fcaf7f86SDimitry AndricSRCS_EXT+= CodeGen/NonRelocatableStringpool.cpp 369986e05bcSDimitry AndricSRCS_MIN+= CodeGen/OptimizePHIs.cpp 370986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PHIElimination.cpp 371986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PHIEliminationUtils.cpp 372986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ParallelCG.cpp 373986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PatchableFunction.cpp 374986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PeepholeOptimizer.cpp 375986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PostRAHazardRecognizer.cpp 376986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PostRASchedulerList.cpp 377986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PreISelIntrinsicLowering.cpp 378986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ProcessImplicitDefs.cpp 379986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PrologEpilogInserter.cpp 380e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/PseudoProbeInserter.cpp 381986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PseudoSourceValue.cpp 3829f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/ReachingDefAnalysis.cpp 383fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/ReplaceWithVeclib.cpp 3840946e70aSDimitry AndricSRCS_MIN+= CodeGen/RDFGraph.cpp 3850946e70aSDimitry AndricSRCS_MIN+= CodeGen/RDFLiveness.cpp 3860946e70aSDimitry AndricSRCS_MIN+= CodeGen/RDFRegisters.cpp 387986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocBase.cpp 388986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocBasic.cpp 38904eeddc0SDimitry AndricSRCS_MIN+= CodeGen/RegAllocEvictionAdvisor.cpp 390986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocFast.cpp 391986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocGreedy.cpp 392986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocPBQP.cpp 393986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegUsageInfoCollector.cpp 394986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegUsageInfoPropagate.cpp 39581ad6265SDimitry AndricSRCS_MIN+= CodeGen/RegisterBank.cpp 39681ad6265SDimitry AndricSRCS_MIN+= CodeGen/RegisterBankInfo.cpp 397986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterClassInfo.cpp 398986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterCoalescer.cpp 399986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterPressure.cpp 400986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterScavenging.cpp 401986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterUsageInfo.cpp 402fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/RemoveRedundantDebugValues.cpp 403986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RenameIndependentSubregs.cpp 40409bfd043SDimitry AndricSRCS_MIN+= CodeGen/ResetMachineFunctionPass.cpp 405986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SafeStack.cpp 406986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SafeStackLayout.cpp 407986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScheduleDAG.cpp 408986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScheduleDAGInstrs.cpp 409986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScheduleDAGPrinter.cpp 410986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScoreboardHazardRecognizer.cpp 41181ad6265SDimitry AndricSRCS_MIN+= CodeGen/SelectOptimize.cpp 412986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/DAGCombiner.cpp 413986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/FastISel.cpp 414986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/FunctionLoweringInfo.cpp 415986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/InstrEmitter.cpp 416986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeDAG.cpp 417986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeFloatTypes.cpp 418986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp 419986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeTypes.cpp 420986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp 421986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeVectorOps.cpp 422986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeVectorTypes.cpp 423986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ResourcePriorityQueue.cpp 424986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGFast.cpp 425986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGRRList.cpp 426986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp 427986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp 428986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAG.cpp 42944389c28SDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp 430986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGBuilder.cpp 431986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGDumper.cpp 432986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGISel.cpp 433986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGPrinter.cpp 434986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp 435986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/StatepointLowering.cpp 436986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/TargetLowering.cpp 437986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ShadowStackGCLowering.cpp 438986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ShrinkWrap.cpp 439986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SjLjEHPrepare.cpp 440986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SlotIndexes.cpp 441986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SpillPlacement.cpp 442986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SplitKit.cpp 443986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackColoring.cpp 444986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackMapLivenessAnalysis.cpp 445986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackMaps.cpp 446986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackProtector.cpp 447986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackSlotColoring.cpp 4484014a71fSDimitry AndricSRCS_MIN+= CodeGen/SwiftErrorValueTracking.cpp 4494014a71fSDimitry AndricSRCS_MIN+= CodeGen/SwitchLoweringUtils.cpp 450986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TailDuplication.cpp 451986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TailDuplicator.cpp 452986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetFrameLoweringImpl.cpp 453986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetInstrInfo.cpp 454986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetLoweringBase.cpp 455986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetLoweringObjectFileImpl.cpp 456986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetOptionsImpl.cpp 457986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetPassConfig.cpp 458986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetRegisterInfo.cpp 459986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetSchedule.cpp 46009bfd043SDimitry AndricSRCS_MIN+= CodeGen/TargetSubtargetInfo.cpp 461986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TwoAddressInstructionPass.cpp 4629771cac2SDimitry AndricSRCS_MIN+= CodeGen/TypePromotion.cpp 463986e05bcSDimitry AndricSRCS_MIN+= CodeGen/UnreachableBlockElim.cpp 4649f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/ValueTypes.cpp 465986e05bcSDimitry AndricSRCS_MIN+= CodeGen/VirtRegMap.cpp 4669f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/WasmEHPrepare.cpp 467986e05bcSDimitry AndricSRCS_MIN+= CodeGen/WinEHPrepare.cpp 468986e05bcSDimitry AndricSRCS_MIN+= CodeGen/XRayInstrumentation.cpp 469fcaf7f86SDimitry AndricSRCS_EXT+= DWARFLinker/DWARFLinker.cpp 470fcaf7f86SDimitry AndricSRCS_EXT+= DWARFLinker/DWARFLinkerCompileUnit.cpp 471fcaf7f86SDimitry AndricSRCS_EXT+= DWARFLinker/DWARFLinkerDeclContext.cpp 472fcaf7f86SDimitry AndricSRCS_EXT+= DWARFLinker/DWARFStreamer.cpp 473fe6060f1SDimitry AndricSRCS_EXT+= DWP/DWP.cpp 474fe6060f1SDimitry AndricSRCS_EXT+= DWP/DWPError.cpp 4753cd201a1SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/AppendingTypeTableBuilder.cpp 47609bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CVSymbolVisitor.cpp 477986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CVTypeVisitor.cpp 478986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CodeViewError.cpp 47909bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CodeViewRecordIO.cpp 48036cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/ContinuationRecordBuilder.cpp 4811b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/DebugChecksumsSubsection.cpp 482db17bf38SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugCrossExSubsection.cpp 483db17bf38SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugCrossImpSubsection.cpp 4841b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/DebugFrameDataSubsection.cpp 4851b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp 4861b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/DebugLinesSubsection.cpp 4871b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/DebugStringTableSubsection.cpp 4885e801ac6SDimitry AndricSRCS_MIW+= DebugInfo/CodeView/DebugSubsection.cpp 48989cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSubsectionRecord.cpp 49089cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSubsectionVisitor.cpp 491db17bf38SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSymbolRVASubsection.cpp 49289cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSymbolsSubsection.cpp 4935e86819cSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/EnumTables.cpp 4945897d2f0SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/Formatters.cpp 49536cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/GlobalTypeTableBuilder.cpp 4961b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/LazyRandomTypeCollection.cpp 497986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/Line.cpp 4981b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/MergingTypeTableBuilder.cpp 49936cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/RecordName.cpp 500986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/RecordSerialization.cpp 50136cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/SimpleTypeSerializer.cpp 50224d58133SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/StringsAndChecksums.cpp 503986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/SymbolDumper.cpp 50461cfbce3SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/SymbolRecordHelpers.cpp 50509bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/SymbolRecordMapping.cpp 506050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/SymbolSerializer.cpp 507f1a29dd3SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeDumpVisitor.cpp 50836cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeHashing.cpp 509d8866befSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeIndex.cpp 51006230659SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeIndexDiscovery.cpp 511efa75597SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/TypeRecordHelpers.cpp 51209bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeRecordMapping.cpp 513986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeStreamMerger.cpp 514d8866befSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeTableCollection.cpp 515caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp 516caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFAcceleratorTable.cpp 5170db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFAddressRange.cpp 518caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFCompileUnit.cpp 519caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFContext.cpp 5200db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDataExtractor.cpp 521caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugAbbrev.cpp 52299be4f2aSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugAddr.cpp 5230db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugArangeSet.cpp 524caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugAranges.cpp 525caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugFrame.cpp 5260db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugInfoEntry.cpp 527caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugLine.cpp 528caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugLoc.cpp 5290db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugMacro.cpp 530caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugPubTable.cpp 531caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugRangeList.cpp 53267b158f6SDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugRnglists.cpp 533caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDie.cpp 534e89f883aSDimitry AndricSRCS_MIN+= DebugInfo/DWARF/DWARFExpression.cpp 535caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFFormValue.cpp 536caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFGdbIndex.cpp 53767b158f6SDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFListTable.cpp 53881ad6265SDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFTypePrinter.cpp 539caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFTypeUnit.cpp 540caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFUnit.cpp 541caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFUnitIndex.cpp 542caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFVerifier.cpp 54309bfd043SDimitry AndricSRCS_MIN+= DebugInfo/MSF/MSFBuilder.cpp 54409bfd043SDimitry AndricSRCS_MIN+= DebugInfo/MSF/MSFCommon.cpp 54524b8043eSDimitry AndricSRCS_EXT+= DebugInfo/MSF/MSFError.cpp 54609bfd043SDimitry AndricSRCS_MIN+= DebugInfo/MSF/MappedBlockStream.cpp 547986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/GenericError.cpp 54809bfd043SDimitry AndricSRCS_EXT+= DebugInfo/PDB/IPDBSourceFile.cpp 549f37b6182SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiModuleDescriptor.cpp 550f37b6182SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp 5510f5676f4SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiModuleList.cpp 552050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiStream.cpp 553050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiStreamBuilder.cpp 554050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/EnumTables.cpp 55581ad6265SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/FormatUtil.cpp 5563cd201a1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/GSIStreamBuilder.cpp 557050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/GlobalsStream.cpp 558050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/Hash.cpp 559050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/HashTable.cpp 560050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/InfoStream.cpp 561050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/InfoStreamBuilder.cpp 56224b8043eSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/InjectedSourceStream.cpp 56381ad6265SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/InputFile.cpp 56481ad6265SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/LinePrinter.cpp 565f37b6182SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/ModuleDebugStream.cpp 566050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NamedStreamMap.cpp 567050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeCompilandSymbol.cpp 568efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumGlobals.cpp 56924b8043eSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumInjectedSources.cpp 57048aaf27bSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumLineNumbers.cpp 571050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumModules.cpp 572e8d8bef9SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumSymbols.cpp 57344389c28SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumTypes.cpp 574050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeExeSymbol.cpp 57548aaf27bSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeFunctionSymbol.cpp 576e8d8bef9SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeInlineSiteSymbol.cpp 57748aaf27bSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeLineNumber.cpp 57848aaf27bSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativePublicSymbol.cpp 579050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeRawSymbol.cpp 580050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeSession.cpp 58148aaf27bSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeSourceFile.cpp 582efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeSymbolEnumerator.cpp 583efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeArray.cpp 584efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeBuiltin.cpp 585efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeEnum.cpp 586efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp 587efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypePointer.cpp 588efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeTypedef.cpp 589efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeUDT.cpp 590efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeVTShape.cpp 591050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBFile.cpp 592050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBFileBuilder.cpp 593b174acefSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBStringTable.cpp 594b174acefSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBStringTableBuilder.cpp 5953d54deb3SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PublicsStream.cpp 5963d54deb3SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/RawError.cpp 597efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/SymbolCache.cpp 598050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/SymbolStream.cpp 599050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/TpiHashing.cpp 600050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/TpiStream.cpp 601050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/TpiStreamBuilder.cpp 602986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDB.cpp 603986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBContext.cpp 604986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBExtras.cpp 605986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBInterfaceAnchors.cpp 606986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymDumper.cpp 607986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbol.cpp 608986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolAnnotation.cpp 609986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolBlock.cpp 610986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCompiland.cpp 611986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCompilandDetails.cpp 612986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCompilandEnv.cpp 613986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCustom.cpp 614986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolData.cpp 615986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolExe.cpp 616986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolFunc.cpp 617986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp 618986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp 619986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolLabel.cpp 620986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolPublicSymbol.cpp 621986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolThunk.cpp 622986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeArray.cpp 623986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp 624986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp 625986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeCustom.cpp 626986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeDimension.cpp 627986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeEnum.cpp 628986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeFriend.cpp 629986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp 630986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp 631986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeManaged.cpp 632986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypePointer.cpp 633986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeTypedef.cpp 634986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeUDT.cpp 635986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeVTable.cpp 636986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp 637986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolUnknown.cpp 638986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolUsingNamespace.cpp 639050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/UDTLayout.cpp 640d56accc7SDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/DIFetcher.cpp 6410db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/DIPrinter.cpp 64281ad6265SDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/Markup.cpp 64381ad6265SDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/MarkupFilter.cpp 64409bfd043SDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/SymbolizableObjectFile.cpp 64509bfd043SDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/Symbolize.cpp 646d56accc7SDimitry AndricSRCS_MIW+= Debuginfod/DIFetcher.cpp 64704eeddc0SDimitry AndricSRCS_MIW+= Debuginfod/Debuginfod.cpp 64804eeddc0SDimitry AndricSRCS_MIW+= Debuginfod/HTTPClient.cpp 6495e801ac6SDimitry AndricSRCS_MIN+= Demangle/DLangDemangle.cpp 6505e801ac6SDimitry AndricSRCS_MIN+= Demangle/Demangle.cpp 65109bfd043SDimitry AndricSRCS_MIN+= Demangle/ItaniumDemangle.cpp 6525e801ac6SDimitry AndricSRCS_MIN+= Demangle/MicrosoftDemangle.cpp 6535e801ac6SDimitry AndricSRCS_MIN+= Demangle/MicrosoftDemangleNodes.cpp 6545e801ac6SDimitry AndricSRCS_MIN+= Demangle/RustDemangle.cpp 655986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/ExecutionEngine.cpp 656986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/ExecutionEngineBindings.cpp 657986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/GDBRegistrationListener.cpp 658986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/Interpreter/Execution.cpp 659986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/Interpreter/ExternalFunctions.cpp 660986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/Interpreter/Interpreter.cpp 661753f127fSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/COFF.cpp 662753f127fSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/COFF_x86_64.cpp 663753f127fSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/COFFLinkGraphBuilder.cpp 66481ad6265SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/DWARFRecordSectionSplitter.cpp 665b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/EHFrameSupport.cpp 66648aaf27bSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF.cpp 6675e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF_aarch64.cpp 668fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF_riscv.cpp 66948aaf27bSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF_x86_64.cpp 670fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELFLinkGraphBuilder.cpp 671b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/JITLink.cpp 672b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/JITLinkGeneric.cpp 673b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/JITLinkMemoryManager.cpp 674b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/MachO.cpp 675b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp 676b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/MachO_arm64.cpp 677b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/MachO_x86_64.cpp 6785e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/MemoryFlags.cpp 6795e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/aarch64.cpp 680fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/riscv.cpp 681fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/x86_64.cpp 682986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/MCJIT/MCJIT.cpp 68367b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/CompileOnDemandLayer.cpp 68424b8043eSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/CompileUtils.cpp 68567b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Core.cpp 686fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/DebugObjectManagerPlugin.cpp 68748aaf27bSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/DebugUtils.cpp 6885e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ELFNixPlatform.cpp 689fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/EPCDebugObjectRegistrar.cpp 690fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/EPCEHFrameRegistrar.cpp 6915e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/EPCGenericDylibManager.cpp 6925e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/EPCGenericJITLinkMemoryManager.cpp 6935e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/EPCGenericRTDyldMemoryManager.cpp 694986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ExecutionUtils.cpp 695fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ExecutorProcessControl.cpp 69667b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/IRCompileLayer.cpp 69767b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/IRTransformLayer.cpp 698986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/IndirectionUtils.cpp 699efa75597SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/JITTargetMachineBuilder.cpp 70067b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/LLJIT.cpp 70167b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Layer.cpp 702efa75597SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/LazyReexports.cpp 70381ad6265SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/LookupAndRecordAddrs.cpp 70448aaf27bSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/MachOPlatform.cpp 70548aaf27bSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Mangling.cpp 70604eeddc0SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ObjectFileInterface.cpp 707b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ObjectLinkingLayer.cpp 708b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ObjectTransformLayer.cpp 709986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/OrcABISupport.cpp 71067b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp 71104eeddc0SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Shared/AllocationActions.cpp 712e8d8bef9SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Shared/OrcError.cpp 7135e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Shared/OrcRTBridge.cpp 7145e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Shared/SimpleRemoteEPCUtils.cpp 7155e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/SimpleRemoteEPC.cpp 716b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Speculation.cpp 717fe6060f1SDimitry AndricSRCS_XDB+= ExecutionEngine/Orc/TargetProcess/JITLoaderGDB.cpp 718e8d8bef9SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/TargetProcess/RegisterEHFrames.cpp 719e8d8bef9SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/TargetProcess/TargetExecutionUtils.cpp 7205e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/TaskDispatch.cpp 721efa75597SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ThreadSafeModule.cpp 72209bfd043SDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/JITSymbol.cpp 723986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp 724986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp 725986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp 726986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp 727986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp 728986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp 72909bfd043SDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp 730986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/SectionMemoryManager.cpp 731986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/TargetSelect.cpp 732fe6060f1SDimitry AndricSRCS_MIN+= Frontend/OpenMP/OMP.cpp 73348aaf27bSDimitry AndricSRCS_MIN+= Frontend/OpenMP/OMPContext.cpp 7349771cac2SDimitry AndricSRCS_MIN+= Frontend/OpenMP/OMPIRBuilder.cpp 7354014a71fSDimitry AndricSRCS_MIN+= IR/AbstractCallSite.cpp 736986e05bcSDimitry AndricSRCS_MIN+= IR/AsmWriter.cpp 737e8d8bef9SDimitry AndricSRCS_MIN+= IR/Assumptions.cpp 738986e05bcSDimitry AndricSRCS_MIN+= IR/Attributes.cpp 739986e05bcSDimitry AndricSRCS_MIN+= IR/AutoUpgrade.cpp 740986e05bcSDimitry AndricSRCS_MIN+= IR/BasicBlock.cpp 741fe6060f1SDimitry AndricSRCS_EXT+= IR/BuiltinGCs.cpp 742986e05bcSDimitry AndricSRCS_MIN+= IR/Comdat.cpp 743986e05bcSDimitry AndricSRCS_MIN+= IR/ConstantFold.cpp 744986e05bcSDimitry AndricSRCS_MIN+= IR/ConstantRange.cpp 745986e05bcSDimitry AndricSRCS_MIN+= IR/Constants.cpp 746986e05bcSDimitry AndricSRCS_MIN+= IR/Core.cpp 747986e05bcSDimitry AndricSRCS_MIN+= IR/DIBuilder.cpp 748986e05bcSDimitry AndricSRCS_MIN+= IR/DataLayout.cpp 749986e05bcSDimitry AndricSRCS_MIN+= IR/DebugInfo.cpp 750986e05bcSDimitry AndricSRCS_MIN+= IR/DebugInfoMetadata.cpp 751986e05bcSDimitry AndricSRCS_MIN+= IR/DebugLoc.cpp 75236cb3905SDimitry AndricSRCS_MIN+= IR/DiagnosticHandler.cpp 753986e05bcSDimitry AndricSRCS_MIN+= IR/DiagnosticInfo.cpp 754986e05bcSDimitry AndricSRCS_MIN+= IR/DiagnosticPrinter.cpp 755986e05bcSDimitry AndricSRCS_MIN+= IR/Dominators.cpp 7569771cac2SDimitry AndricSRCS_MIN+= IR/FPEnv.cpp 757986e05bcSDimitry AndricSRCS_MIN+= IR/Function.cpp 758fe6060f1SDimitry AndricSRCS_MIN+= IR/GCStrategy.cpp 759986e05bcSDimitry AndricSRCS_MIN+= IR/GVMaterializer.cpp 760986e05bcSDimitry AndricSRCS_MIN+= IR/Globals.cpp 761986e05bcSDimitry AndricSRCS_MIN+= IR/IRBuilder.cpp 762986e05bcSDimitry AndricSRCS_MIN+= IR/IRPrintingPasses.cpp 763986e05bcSDimitry AndricSRCS_MIN+= IR/InlineAsm.cpp 764986e05bcSDimitry AndricSRCS_MIN+= IR/Instruction.cpp 765986e05bcSDimitry AndricSRCS_MIN+= IR/Instructions.cpp 766986e05bcSDimitry AndricSRCS_MIN+= IR/IntrinsicInst.cpp 767986e05bcSDimitry AndricSRCS_MIN+= IR/LLVMContext.cpp 768986e05bcSDimitry AndricSRCS_MIN+= IR/LLVMContextImpl.cpp 76948aaf27bSDimitry AndricSRCS_MIN+= IR/LLVMRemarkStreamer.cpp 770986e05bcSDimitry AndricSRCS_MIN+= IR/LegacyPassManager.cpp 771986e05bcSDimitry AndricSRCS_MIN+= IR/MDBuilder.cpp 772986e05bcSDimitry AndricSRCS_MIN+= IR/Mangler.cpp 773986e05bcSDimitry AndricSRCS_MIN+= IR/Metadata.cpp 774986e05bcSDimitry AndricSRCS_MIN+= IR/Module.cpp 775986e05bcSDimitry AndricSRCS_MIN+= IR/ModuleSummaryIndex.cpp 776986e05bcSDimitry AndricSRCS_MIN+= IR/Operator.cpp 777986e05bcSDimitry AndricSRCS_MIN+= IR/OptBisect.cpp 778986e05bcSDimitry AndricSRCS_MIN+= IR/Pass.cpp 7795e86819cSDimitry AndricSRCS_MIN+= IR/PassInstrumentation.cpp 780986e05bcSDimitry AndricSRCS_MIN+= IR/PassManager.cpp 781986e05bcSDimitry AndricSRCS_MIN+= IR/PassRegistry.cpp 7825e86819cSDimitry AndricSRCS_MIN+= IR/PassTimingInfo.cpp 783e8d8bef9SDimitry AndricSRCS_MIN+= IR/PrintPasses.cpp 784986e05bcSDimitry AndricSRCS_MIN+= IR/ProfileSummary.cpp 785e8d8bef9SDimitry AndricSRCS_MIN+= IR/PseudoProbe.cpp 786e8d8bef9SDimitry AndricSRCS_MIN+= IR/ReplaceConstant.cpp 78704eeddc0SDimitry AndricSRCS_MIN+= IR/SSAContext.cpp 788c4394386SDimitry AndricSRCS_MIN+= IR/SafepointIRVerifier.cpp 789986e05bcSDimitry AndricSRCS_MIN+= IR/Statepoint.cpp 790986e05bcSDimitry AndricSRCS_MIN+= IR/Type.cpp 791986e05bcSDimitry AndricSRCS_MIN+= IR/TypeFinder.cpp 792986e05bcSDimitry AndricSRCS_MIN+= IR/Use.cpp 793986e05bcSDimitry AndricSRCS_MIN+= IR/User.cpp 794986e05bcSDimitry AndricSRCS_MIN+= IR/Value.cpp 795986e05bcSDimitry AndricSRCS_MIN+= IR/ValueSymbolTable.cpp 796986e05bcSDimitry AndricSRCS_MIN+= IR/Verifier.cpp 797986e05bcSDimitry AndricSRCS_MIN+= IRReader/IRReader.cpp 7985897d2f0SDimitry AndricSRCS_MIN+= LTO/LTO.cpp 79909bfd043SDimitry AndricSRCS_MIN+= LTO/LTOBackend.cpp 80075bc38b9SEd MasteSRCS_EXL+= LTO/LTOCodeGenerator.cpp 80175bc38b9SEd MasteSRCS_EXL+= LTO/LTOModule.cpp 802efa75597SDimitry AndricSRCS_EXL+= LTO/SummaryBasedOptimizations.cpp 80375bc38b9SEd MasteSRCS_EXL+= LTO/ThinLTOCodeGenerator.cpp 80409bfd043SDimitry AndricSRCS_MIN+= LTO/UpdateCompilerUsed.cpp 80531ba4ce8SAlex Richardson# Only needed for clangd/clang-query, uncomment once we build those. 80631ba4ce8SAlex Richardson# SRCS_XDW+= LineEditor/LineEditor.cpp 807986e05bcSDimitry AndricSRCS_MIN+= Linker/IRMover.cpp 808986e05bcSDimitry AndricSRCS_MIN+= Linker/LinkModules.cpp 809986e05bcSDimitry AndricSRCS_MIN+= MC/ConstantPools.cpp 810986e05bcSDimitry AndricSRCS_MIN+= MC/ELFObjectWriter.cpp 811986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmBackend.cpp 812986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfo.cpp 813986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfoCOFF.cpp 814986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfoDarwin.cpp 815986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfoELF.cpp 8164014a71fSDimitry AndricSRCS_MIN+= MC/MCAsmInfoXCOFF.cpp 8179f6e9a9fSDimitry AndricSRCS_MIN+= MC/MCAsmMacro.cpp 818986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmStreamer.cpp 819986e05bcSDimitry AndricSRCS_MIN+= MC/MCAssembler.cpp 820986e05bcSDimitry AndricSRCS_MIN+= MC/MCCodeEmitter.cpp 821986e05bcSDimitry AndricSRCS_MIN+= MC/MCCodeView.cpp 822986e05bcSDimitry AndricSRCS_MIN+= MC/MCContext.cpp 82381ad6265SDimitry AndricSRCS_MIN+= MC/MCDXContainerStreamer.cpp 82481ad6265SDimitry AndricSRCS_MIN+= MC/MCDXContainerWriter.cpp 82575bc38b9SEd MasteSRCS_XDL+= MC/MCDisassembler/Disassembler.cpp 82630d4828eSDimitry AndricSRCS_XDW+= MC/MCDisassembler/MCDisassembler.cpp 82730d4828eSDimitry AndricSRCS_XDW+= MC/MCDisassembler/MCExternalSymbolizer.cpp 828986e05bcSDimitry AndricSRCS_MIN+= MC/MCDisassembler/MCRelocationInfo.cpp 82930d4828eSDimitry AndricSRCS_XDW+= MC/MCDisassembler/MCSymbolizer.cpp 830986e05bcSDimitry AndricSRCS_MIN+= MC/MCDwarf.cpp 831986e05bcSDimitry AndricSRCS_MIN+= MC/MCELFObjectTargetWriter.cpp 832986e05bcSDimitry AndricSRCS_MIN+= MC/MCELFStreamer.cpp 833986e05bcSDimitry AndricSRCS_MIN+= MC/MCExpr.cpp 834986e05bcSDimitry AndricSRCS_MIN+= MC/MCFragment.cpp 835986e05bcSDimitry AndricSRCS_MIN+= MC/MCInst.cpp 836986e05bcSDimitry AndricSRCS_MIN+= MC/MCInstPrinter.cpp 837986e05bcSDimitry AndricSRCS_MIN+= MC/MCInstrAnalysis.cpp 838986e05bcSDimitry AndricSRCS_MIN+= MC/MCInstrDesc.cpp 83948aaf27bSDimitry AndricSRCS_MIN+= MC/MCInstrInfo.cpp 840986e05bcSDimitry AndricSRCS_MIN+= MC/MCLinkerOptimizationHint.cpp 841986e05bcSDimitry AndricSRCS_MIN+= MC/MCMachOStreamer.cpp 842986e05bcSDimitry AndricSRCS_MIN+= MC/MCMachObjectTargetWriter.cpp 843986e05bcSDimitry AndricSRCS_MIN+= MC/MCNullStreamer.cpp 844986e05bcSDimitry AndricSRCS_MIN+= MC/MCObjectFileInfo.cpp 845986e05bcSDimitry AndricSRCS_MIN+= MC/MCObjectStreamer.cpp 846986e05bcSDimitry AndricSRCS_MIN+= MC/MCObjectWriter.cpp 847986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/AsmLexer.cpp 848986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/AsmParser.cpp 849986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/COFFAsmParser.cpp 850986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/DarwinAsmParser.cpp 851986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/ELFAsmParser.cpp 8525e801ac6SDimitry AndricSRCS_MIN+= MC/MCParser/GOFFAsmParser.cpp 853986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCAsmLexer.cpp 854986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCAsmParser.cpp 855986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCAsmParserExtension.cpp 856986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCTargetAsmParser.cpp 8575e86819cSDimitry AndricSRCS_MIN+= MC/MCParser/WasmAsmParser.cpp 858fe6060f1SDimitry AndricSRCS_MIN+= MC/MCParser/XCOFFAsmParser.cpp 859e8d8bef9SDimitry AndricSRCS_MIN+= MC/MCPseudoProbe.cpp 860986e05bcSDimitry AndricSRCS_MIN+= MC/MCRegisterInfo.cpp 86181ad6265SDimitry AndricSRCS_MIN+= MC/MCSPIRVStreamer.cpp 862986e05bcSDimitry AndricSRCS_MIN+= MC/MCSchedule.cpp 863986e05bcSDimitry AndricSRCS_MIN+= MC/MCSection.cpp 864986e05bcSDimitry AndricSRCS_MIN+= MC/MCSectionCOFF.cpp 86581ad6265SDimitry AndricSRCS_MIN+= MC/MCSectionDXContainer.cpp 866986e05bcSDimitry AndricSRCS_MIN+= MC/MCSectionELF.cpp 867986e05bcSDimitry AndricSRCS_MIN+= MC/MCSectionMachO.cpp 8685897d2f0SDimitry AndricSRCS_MIN+= MC/MCSectionWasm.cpp 8694014a71fSDimitry AndricSRCS_MIN+= MC/MCSectionXCOFF.cpp 870986e05bcSDimitry AndricSRCS_MIN+= MC/MCStreamer.cpp 871986e05bcSDimitry AndricSRCS_MIN+= MC/MCSubtargetInfo.cpp 872986e05bcSDimitry AndricSRCS_MIN+= MC/MCSymbol.cpp 873986e05bcSDimitry AndricSRCS_MIN+= MC/MCSymbolELF.cpp 87448aaf27bSDimitry AndricSRCS_MIN+= MC/MCSymbolXCOFF.cpp 875986e05bcSDimitry AndricSRCS_MIN+= MC/MCTargetOptions.cpp 87648aaf27bSDimitry AndricSRCS_MIN+= MC/MCTargetOptionsCommandFlags.cpp 877986e05bcSDimitry AndricSRCS_MIN+= MC/MCValue.cpp 8785897d2f0SDimitry AndricSRCS_MIN+= MC/MCWasmStreamer.cpp 879986e05bcSDimitry AndricSRCS_MIN+= MC/MCWin64EH.cpp 880edd7eaddSDimitry AndricSRCS_MIN+= MC/MCWinCOFFStreamer.cpp 881986e05bcSDimitry AndricSRCS_MIN+= MC/MCWinEH.cpp 8824014a71fSDimitry AndricSRCS_MIN+= MC/MCXCOFFStreamer.cpp 8834014a71fSDimitry AndricSRCS_MIN+= MC/MCXCOFFObjectTargetWriter.cpp 884986e05bcSDimitry AndricSRCS_MIN+= MC/MachObjectWriter.cpp 88581ad6265SDimitry AndricSRCS_MIN+= MC/SPIRVObjectWriter.cpp 886986e05bcSDimitry AndricSRCS_MIN+= MC/StringTableBuilder.cpp 887986e05bcSDimitry AndricSRCS_MIN+= MC/SubtargetFeature.cpp 8885e801ac6SDimitry AndricSRCS_MIN+= MC/TargetRegistry.cpp 8899f6e9a9fSDimitry AndricSRCS_MIN+= MC/WasmObjectWriter.cpp 890986e05bcSDimitry AndricSRCS_MIN+= MC/WinCOFFObjectWriter.cpp 8914014a71fSDimitry AndricSRCS_MIN+= MC/XCOFFObjectWriter.cpp 892b1ae9102SDimitry AndricSRCS_EXT+= MCA/CodeEmitter.cpp 893efa75597SDimitry AndricSRCS_EXT+= MCA/Context.cpp 894fe6060f1SDimitry AndricSRCS_EXT+= MCA/CustomBehaviour.cpp 895efa75597SDimitry AndricSRCS_EXT+= MCA/HWEventListener.cpp 896efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/HardwareUnit.cpp 897efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/LSUnit.cpp 898efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/RegisterFile.cpp 899efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/ResourceManager.cpp 900efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/RetireControlUnit.cpp 901efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/Scheduler.cpp 902efa75597SDimitry AndricSRCS_EXT+= MCA/InstrBuilder.cpp 903efa75597SDimitry AndricSRCS_EXT+= MCA/Instruction.cpp 904efa75597SDimitry AndricSRCS_EXT+= MCA/Pipeline.cpp 905efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/DispatchStage.cpp 906efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/EntryStage.cpp 907efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/ExecuteStage.cpp 908fe6060f1SDimitry AndricSRCS_EXT+= MCA/Stages/InOrderIssueStage.cpp 909efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/InstructionTables.cpp 91024b8043eSDimitry AndricSRCS_EXT+= MCA/Stages/MicroOpQueueStage.cpp 911efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/RetireStage.cpp 912efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/Stage.cpp 913efa75597SDimitry AndricSRCS_EXT+= MCA/Support.cpp 9145e801ac6SDimitry AndricSRCS_EXT+= MCA/View.cpp 91581ad6265SDimitry AndricSRCS_MIW+= ObjCopy/Archive.cpp 91681ad6265SDimitry AndricSRCS_MIW+= ObjCopy/COFF/COFFObjcopy.cpp 91781ad6265SDimitry AndricSRCS_MIW+= ObjCopy/COFF/COFFObject.cpp 91881ad6265SDimitry AndricSRCS_MIW+= ObjCopy/COFF/COFFReader.cpp 91981ad6265SDimitry AndricSRCS_MIW+= ObjCopy/COFF/COFFWriter.cpp 92081ad6265SDimitry AndricSRCS_MIW+= ObjCopy/CommonConfig.cpp 92181ad6265SDimitry AndricSRCS_MIW+= ObjCopy/ConfigManager.cpp 92281ad6265SDimitry AndricSRCS_MIW+= ObjCopy/ELF/ELFObjcopy.cpp 92381ad6265SDimitry AndricSRCS_MIW+= ObjCopy/ELF/ELFObject.cpp 92481ad6265SDimitry AndricSRCS_MIW+= ObjCopy/MachO/MachOLayoutBuilder.cpp 92581ad6265SDimitry AndricSRCS_MIW+= ObjCopy/MachO/MachOObjcopy.cpp 92681ad6265SDimitry AndricSRCS_MIW+= ObjCopy/MachO/MachOObject.cpp 92781ad6265SDimitry AndricSRCS_MIW+= ObjCopy/MachO/MachOReader.cpp 92881ad6265SDimitry AndricSRCS_MIW+= ObjCopy/MachO/MachOWriter.cpp 92981ad6265SDimitry AndricSRCS_MIW+= ObjCopy/ObjCopy.cpp 93081ad6265SDimitry AndricSRCS_MIW+= ObjCopy/XCOFF/XCOFFObjcopy.cpp 93181ad6265SDimitry AndricSRCS_MIW+= ObjCopy/XCOFF/XCOFFReader.cpp 93281ad6265SDimitry AndricSRCS_MIW+= ObjCopy/XCOFF/XCOFFWriter.cpp 93381ad6265SDimitry AndricSRCS_MIW+= ObjCopy/wasm/WasmObjcopy.cpp 93481ad6265SDimitry AndricSRCS_MIW+= ObjCopy/wasm/WasmObject.cpp 93581ad6265SDimitry AndricSRCS_MIW+= ObjCopy/wasm/WasmReader.cpp 93681ad6265SDimitry AndricSRCS_MIW+= ObjCopy/wasm/WasmWriter.cpp 937986e05bcSDimitry AndricSRCS_MIN+= Object/Archive.cpp 938986e05bcSDimitry AndricSRCS_MIN+= Object/ArchiveWriter.cpp 939986e05bcSDimitry AndricSRCS_MIN+= Object/Binary.cpp 9409c954a48SEd MasteSRCS_MIN+= Object/COFFImportFile.cpp 9410db9a49eSDimitry AndricSRCS_MIW+= Object/COFFModuleDefinition.cpp 942986e05bcSDimitry AndricSRCS_MIN+= Object/COFFObjectFile.cpp 943f1a29dd3SDimitry AndricSRCS_MIN+= Object/Decompressor.cpp 944986e05bcSDimitry AndricSRCS_MIN+= Object/ELF.cpp 945986e05bcSDimitry AndricSRCS_MIN+= Object/ELFObjectFile.cpp 946986e05bcSDimitry AndricSRCS_MIN+= Object/Error.cpp 947fe6060f1SDimitry AndricSRCS_MIW+= Object/FaultMapParser.cpp 948986e05bcSDimitry AndricSRCS_MIN+= Object/IRObjectFile.cpp 9495897d2f0SDimitry AndricSRCS_MIN+= Object/IRSymtab.cpp 950986e05bcSDimitry AndricSRCS_MIN+= Object/MachOObjectFile.cpp 9510db9a49eSDimitry AndricSRCS_MIW+= Object/MachOUniversal.cpp 952021385abSAlex RichardsonSRCS_MIW+= Object/MachOUniversalWriter.cpp 9530db9a49eSDimitry AndricSRCS_MIW+= Object/Minidump.cpp 95409bfd043SDimitry AndricSRCS_MIN+= Object/ModuleSymbolTable.cpp 955986e05bcSDimitry AndricSRCS_EXT+= Object/Object.cpp 956986e05bcSDimitry AndricSRCS_MIN+= Object/ObjectFile.cpp 95781ad6265SDimitry AndricSRCS_MIW+= Object/OffloadBinary.cpp 958986e05bcSDimitry AndricSRCS_MIN+= Object/RecordStreamer.cpp 9590db9a49eSDimitry AndricSRCS_MIW+= Object/RelocationResolver.cpp 9600db9a49eSDimitry AndricSRCS_MIW+= Object/SymbolSize.cpp 961986e05bcSDimitry AndricSRCS_MIN+= Object/SymbolicFile.cpp 96248aaf27bSDimitry AndricSRCS_MIW+= Object/TapiFile.cpp 963d311d024SDimitry AndricSRCS_MIW+= Object/TapiUniversal.cpp 96409bfd043SDimitry AndricSRCS_MIN+= Object/WasmObjectFile.cpp 9650db9a49eSDimitry AndricSRCS_MIW+= Object/WindowsMachineFlag.cpp 966bbd32193SDimitry AndricSRCS_MIN+= Object/WindowsResource.cpp 9674014a71fSDimitry AndricSRCS_MIN+= Object/XCOFFObjectFile.cpp 968986e05bcSDimitry AndricSRCS_MIN+= ObjectYAML/COFFYAML.cpp 969f9448bf3SDimitry AndricSRCS_EXT+= ObjectYAML/CodeViewYAMLDebugSections.cpp 970f9448bf3SDimitry AndricSRCS_EXT+= ObjectYAML/CodeViewYAMLSymbols.cpp 971f9448bf3SDimitry AndricSRCS_EXT+= ObjectYAML/CodeViewYAMLTypes.cpp 97209bfd043SDimitry AndricSRCS_MIN+= ObjectYAML/DWARFYAML.cpp 973986e05bcSDimitry AndricSRCS_MIN+= ObjectYAML/ELFYAML.cpp 974986e05bcSDimitry AndricSRCS_MIN+= ObjectYAML/MachOYAML.cpp 97524d58133SDimitry AndricSRCS_EXT+= ObjectYAML/YAML.cpp 976986e05bcSDimitry AndricSRCS_MIN+= Option/Arg.cpp 977986e05bcSDimitry AndricSRCS_MIN+= Option/ArgList.cpp 978986e05bcSDimitry AndricSRCS_MIN+= Option/OptTable.cpp 979986e05bcSDimitry AndricSRCS_MIN+= Option/Option.cpp 9805e801ac6SDimitry AndricSRCS_MIN+= Passes/OptimizationLevel.cpp 98109bfd043SDimitry AndricSRCS_MIN+= Passes/PassBuilder.cpp 9825e801ac6SDimitry AndricSRCS_MIN+= Passes/PassBuilderPipelines.cpp 9834014a71fSDimitry AndricSRCS_MIN+= Passes/PassPlugin.cpp 9849771cac2SDimitry AndricSRCS_MIN+= Passes/StandardInstrumentations.cpp 985986e05bcSDimitry AndricSRCS_MIN+= ProfileData/Coverage/CoverageMapping.cpp 986986e05bcSDimitry AndricSRCS_MIN+= ProfileData/Coverage/CoverageMappingReader.cpp 987986e05bcSDimitry AndricSRCS_MIN+= ProfileData/Coverage/CoverageMappingWriter.cpp 9881b49115aSEd MasteSRCS_MIN+= ProfileData/GCOV.cpp 989986e05bcSDimitry AndricSRCS_MIN+= ProfileData/InstrProf.cpp 99004eeddc0SDimitry AndricSRCS_MIN+= ProfileData/InstrProfCorrelator.cpp 991986e05bcSDimitry AndricSRCS_MIN+= ProfileData/InstrProfReader.cpp 992986e05bcSDimitry AndricSRCS_MIN+= ProfileData/InstrProfWriter.cpp 99381ad6265SDimitry AndricSRCS_MIN+= ProfileData/MemProf.cpp 994986e05bcSDimitry AndricSRCS_MIN+= ProfileData/ProfileSummaryBuilder.cpp 9951838bd0fSDimitry AndricSRCS_MIW+= ProfileData/RawMemProfReader.cpp 996986e05bcSDimitry AndricSRCS_MIN+= ProfileData/SampleProf.cpp 997986e05bcSDimitry AndricSRCS_MIN+= ProfileData/SampleProfReader.cpp 998961eb443SEd MasteSRCS_MIN+= ProfileData/SampleProfWriter.cpp 999a2a9ef4bSDimitry AndricSRCS_MIN+= Remarks/BitstreamRemarkParser.cpp 10009771cac2SDimitry AndricSRCS_MIN+= Remarks/BitstreamRemarkSerializer.cpp 10014014a71fSDimitry AndricSRCS_MIN+= Remarks/RemarkFormat.cpp 1002a2a9ef4bSDimitry AndricSRCS_MIN+= Remarks/RemarkParser.cpp 10039771cac2SDimitry AndricSRCS_MIN+= Remarks/RemarkSerializer.cpp 100448aaf27bSDimitry AndricSRCS_MIN+= Remarks/RemarkStreamer.cpp 10054014a71fSDimitry AndricSRCS_MIN+= Remarks/RemarkStringTable.cpp 1006a2a9ef4bSDimitry AndricSRCS_MIN+= Remarks/YAMLRemarkParser.cpp 10074014a71fSDimitry AndricSRCS_MIN+= Remarks/YAMLRemarkSerializer.cpp 10085e86819cSDimitry AndricSRCS_MIN+= Support/AArch64TargetParser.cpp 1009054f9817SDimitry AndricSRCS_MIN+= Support/ABIBreak.cpp 1010e8d8bef9SDimitry AndricSRCS_MIN+= Support/APFixedPoint.cpp 1011986e05bcSDimitry AndricSRCS_MIN+= Support/APFloat.cpp 1012986e05bcSDimitry AndricSRCS_MIN+= Support/APInt.cpp 1013986e05bcSDimitry AndricSRCS_MIN+= Support/APSInt.cpp 10145897d2f0SDimitry AndricSRCS_MIN+= Support/ARMAttributeParser.cpp 1015986e05bcSDimitry AndricSRCS_MIN+= Support/ARMBuildAttrs.cpp 10165e86819cSDimitry AndricSRCS_MIN+= Support/ARMTargetParser.cpp 10171b85b68dSCameron KatriSRCS_MIN+= Support/ARMWinEH.cpp 1018fcaf7f86SDimitry AndricSRCS_EXT+= Support/AddressRanges.cpp 1019986e05bcSDimitry AndricSRCS_MIN+= Support/Allocator.cpp 102081ad6265SDimitry AndricSRCS_LLD+= Support/BLAKE3/blake3.c 102181ad6265SDimitry AndricSRCS_LLD+= Support/BLAKE3/blake3_dispatch.c 1022fcaf7f86SDimitry Andric.if ${TARGET_ARCH} == "aarch64" 102381ad6265SDimitry AndricSRCS_LLD+= Support/BLAKE3/blake3_neon.c 1024fcaf7f86SDimitry Andric.endif 102581ad6265SDimitry AndricSRCS_LLD+= Support/BLAKE3/blake3_portable.c 1026fcaf7f86SDimitry Andric.if ${TARGET_ARCH} == "amd64" 102781ad6265SDimitry AndricSRCS_LLD+= Support/BLAKE3/blake3_avx2_x86-64_unix.S 102881ad6265SDimitry AndricSRCS_LLD+= Support/BLAKE3/blake3_sse2_x86-64_unix.S 102981ad6265SDimitry AndricSRCS_LLD+= Support/BLAKE3/blake3_sse41_x86-64_unix.S 103081ad6265SDimitry AndricSRCS_LLD+= Support/BLAKE3/blake3_avx512_x86-64_unix.S 1031fcaf7f86SDimitry Andric.endif 10325897d2f0SDimitry AndricSRCS_MIN+= Support/BinaryStreamError.cpp 10335897d2f0SDimitry AndricSRCS_MIN+= Support/BinaryStreamReader.cpp 1034d8866befSDimitry AndricSRCS_MIN+= Support/BinaryStreamRef.cpp 10355897d2f0SDimitry AndricSRCS_MIN+= Support/BinaryStreamWriter.cpp 1036986e05bcSDimitry AndricSRCS_MIN+= Support/BlockFrequency.cpp 1037986e05bcSDimitry AndricSRCS_MIN+= Support/BranchProbability.cpp 10385e86819cSDimitry AndricSRCS_MIN+= Support/BuryPointer.cpp 10390db9a49eSDimitry AndricSRCS_MIW+= Support/COM.cpp 10404d4aa256SDimitry AndricSRCS_MIN+= Support/CRC.cpp 104181ad6265SDimitry AndricSRCS_MIN+= Support/CSKYTargetParser.cpp 104281ad6265SDimitry AndricSRCS_MIN+= Support/CachePruning.cpp 104381ad6265SDimitry AndricSRCS_MIW+= Support/Caching.cpp 104409bfd043SDimitry AndricSRCS_MIN+= Support/Chrono.cpp 104536cb3905SDimitry AndricSRCS_MIN+= Support/CodeGenCoverage.cpp 1046986e05bcSDimitry AndricSRCS_MIN+= Support/CommandLine.cpp 1047986e05bcSDimitry AndricSRCS_MIN+= Support/Compression.cpp 104809bfd043SDimitry AndricSRCS_MIN+= Support/ConvertUTF.cpp 1049986e05bcSDimitry AndricSRCS_MIN+= Support/ConvertUTFWrapper.cpp 1050986e05bcSDimitry AndricSRCS_MIN+= Support/CrashRecoveryContext.cpp 1051986e05bcSDimitry AndricSRCS_MIN+= Support/DAGDeltaAlgorithm.cpp 10529f6e9a9fSDimitry AndricSRCS_MIN+= Support/DJB.cpp 1053986e05bcSDimitry AndricSRCS_MIN+= Support/DataExtractor.cpp 1054986e05bcSDimitry AndricSRCS_MIN+= Support/Debug.cpp 10555897d2f0SDimitry AndricSRCS_MIN+= Support/DebugCounter.cpp 1056986e05bcSDimitry AndricSRCS_MIN+= Support/DeltaAlgorithm.cpp 10575e801ac6SDimitry AndricSRCS_MIN+= Support/DivisionByConstantInfo.cpp 1058986e05bcSDimitry AndricSRCS_MIN+= Support/DynamicLibrary.cpp 105948aaf27bSDimitry AndricSRCS_MIN+= Support/ELFAttributeParser.cpp 106048aaf27bSDimitry AndricSRCS_MIN+= Support/ELFAttributes.cpp 1061986e05bcSDimitry AndricSRCS_MIN+= Support/Errno.cpp 1062986e05bcSDimitry AndricSRCS_MIN+= Support/Error.cpp 1063986e05bcSDimitry AndricSRCS_MIN+= Support/ErrorHandling.cpp 1064fe6060f1SDimitry AndricSRCS_MIN+= Support/ExtensibleRTTI.cpp 1065e8d8bef9SDimitry AndricSRCS_MIN+= Support/FileCollector.cpp 1066021385abSAlex RichardsonSRCS_MIW+= Support/FileOutputBuffer.cpp 10679771cac2SDimitry AndricSRCS_MIN+= Support/FileUtilities.cpp 1068986e05bcSDimitry AndricSRCS_MIN+= Support/FoldingSet.cpp 106909bfd043SDimitry AndricSRCS_MIN+= Support/FormatVariadic.cpp 1070986e05bcSDimitry AndricSRCS_MIN+= Support/FormattedStream.cpp 107109bfd043SDimitry AndricSRCS_MIN+= Support/GlobPattern.cpp 1072986e05bcSDimitry AndricSRCS_MIN+= Support/GraphWriter.cpp 1073986e05bcSDimitry AndricSRCS_MIN+= Support/Hashing.cpp 1074986e05bcSDimitry AndricSRCS_MIN+= Support/Host.cpp 10759f6e9a9fSDimitry AndricSRCS_MIN+= Support/InitLLVM.cpp 1076e8d8bef9SDimitry AndricSRCS_MIN+= Support/InstructionCost.cpp 1077986e05bcSDimitry AndricSRCS_MIN+= Support/IntEqClasses.cpp 1078986e05bcSDimitry AndricSRCS_MIN+= Support/IntervalMap.cpp 10795e86819cSDimitry AndricSRCS_MIN+= Support/ItaniumManglingCanonicalizer.cpp 10802d31b1b8SDimitry AndricSRCS_MIN+= Support/JSON.cpp 108136cb3905SDimitry AndricSRCS_MIN+= Support/KnownBits.cpp 1082986e05bcSDimitry AndricSRCS_MIN+= Support/LEB128.cpp 1083986e05bcSDimitry AndricSRCS_MIN+= Support/LineIterator.cpp 1084986e05bcSDimitry AndricSRCS_MIN+= Support/Locale.cpp 1085986e05bcSDimitry AndricSRCS_MIN+= Support/LockFileManager.cpp 10865897d2f0SDimitry AndricSRCS_MIN+= Support/LowLevelType.cpp 1087986e05bcSDimitry AndricSRCS_MIN+= Support/MD5.cpp 10885e801ac6SDimitry AndricSRCS_MIW+= Support/MSP430AttributeParser.cpp 10895e801ac6SDimitry AndricSRCS_MIW+= Support/MSP430Attributes.cpp 1090986e05bcSDimitry AndricSRCS_MIN+= Support/ManagedStatic.cpp 1091986e05bcSDimitry AndricSRCS_MIN+= Support/MathExtras.cpp 109248aaf27bSDimitry AndricSRCS_MIN+= Support/MemAlloc.cpp 1093021385abSAlex RichardsonSRCS_MIW+= Support/Memory.cpp 1094986e05bcSDimitry AndricSRCS_MIN+= Support/MemoryBuffer.cpp 1095e8d8bef9SDimitry AndricSRCS_MIN+= Support/MemoryBufferRef.cpp 109609bfd043SDimitry AndricSRCS_MIN+= Support/NativeFormatting.cpp 109748aaf27bSDimitry AndricSRCS_MIN+= Support/OptimizedStructLayout.cpp 10984014a71fSDimitry AndricSRCS_MIN+= Support/Optional.cpp 1099e8d8bef9SDimitry AndricSRCS_EXL+= Support/Parallel.cpp 1100986e05bcSDimitry AndricSRCS_MIN+= Support/Path.cpp 1101986e05bcSDimitry AndricSRCS_MIN+= Support/PluginLoader.cpp 1102986e05bcSDimitry AndricSRCS_MIN+= Support/PrettyStackTrace.cpp 1103986e05bcSDimitry AndricSRCS_MIN+= Support/Process.cpp 1104986e05bcSDimitry AndricSRCS_MIN+= Support/Program.cpp 110548aaf27bSDimitry AndricSRCS_MIN+= Support/RISCVAttributeParser.cpp 110648aaf27bSDimitry AndricSRCS_MIN+= Support/RISCVAttributes.cpp 11075e801ac6SDimitry AndricSRCS_MIN+= Support/RISCVISAInfo.cpp 1108986e05bcSDimitry AndricSRCS_MIN+= Support/RWMutex.cpp 1109986e05bcSDimitry AndricSRCS_MIN+= Support/RandomNumberGenerator.cpp 1110986e05bcSDimitry AndricSRCS_MIN+= Support/Regex.cpp 1111986e05bcSDimitry AndricSRCS_MIN+= Support/SHA1.cpp 11125e801ac6SDimitry AndricSRCS_MIN+= Support/SHA256.cpp 1113986e05bcSDimitry AndricSRCS_MIN+= Support/ScaledNumber.cpp 1114986e05bcSDimitry AndricSRCS_MIN+= Support/ScopedPrinter.cpp 1115986e05bcSDimitry AndricSRCS_MIN+= Support/Signals.cpp 11164014a71fSDimitry AndricSRCS_MIN+= Support/Signposts.cpp 1117986e05bcSDimitry AndricSRCS_MIN+= Support/SmallPtrSet.cpp 1118986e05bcSDimitry AndricSRCS_MIN+= Support/SmallVector.cpp 1119986e05bcSDimitry AndricSRCS_MIN+= Support/SourceMgr.cpp 1120986e05bcSDimitry AndricSRCS_MIN+= Support/SpecialCaseList.cpp 1121986e05bcSDimitry AndricSRCS_MIN+= Support/Statistic.cpp 1122986e05bcSDimitry AndricSRCS_MIN+= Support/StringExtras.cpp 1123986e05bcSDimitry AndricSRCS_MIN+= Support/StringMap.cpp 1124986e05bcSDimitry AndricSRCS_MIN+= Support/StringRef.cpp 1125986e05bcSDimitry AndricSRCS_MIN+= Support/StringSaver.cpp 112648aaf27bSDimitry AndricSRCS_MIN+= Support/SuffixTree.cpp 11275e86819cSDimitry AndricSRCS_MIN+= Support/SymbolRemappingReader.cpp 1128986e05bcSDimitry AndricSRCS_EXT+= Support/SystemUtils.cpp 11291ae4f0f6SDimitry AndricSRCS_LLD+= Support/TarWriter.cpp 1130986e05bcSDimitry AndricSRCS_MIN+= Support/TargetParser.cpp 1131986e05bcSDimitry AndricSRCS_MIN+= Support/ThreadLocal.cpp 11320db9a49eSDimitry AndricSRCS_MIW+= Support/ThreadPool.cpp 1133986e05bcSDimitry AndricSRCS_MIN+= Support/Threading.cpp 11344014a71fSDimitry AndricSRCS_MIN+= Support/TimeProfiler.cpp 1135986e05bcSDimitry AndricSRCS_MIN+= Support/Timer.cpp 1136986e05bcSDimitry AndricSRCS_MIN+= Support/ToolOutputFile.cpp 113709bfd043SDimitry AndricSRCS_MIN+= Support/TrigramIndex.cpp 1138986e05bcSDimitry AndricSRCS_MIN+= Support/Triple.cpp 1139986e05bcSDimitry AndricSRCS_MIN+= Support/Twine.cpp 1140fe6060f1SDimitry AndricSRCS_MIN+= Support/TypeSize.cpp 1141986e05bcSDimitry AndricSRCS_MIN+= Support/Unicode.cpp 11429f6e9a9fSDimitry AndricSRCS_MIN+= Support/UnicodeCaseFold.cpp 114381ad6265SDimitry AndricSRCS_MIN+= Support/UnicodeNameToCodepoint.cpp 114481ad6265SDimitry AndricSRCS_MIN+= Support/UnicodeNameToCodepointGenerated.cpp 1145986e05bcSDimitry AndricSRCS_MIN+= Support/Valgrind.cpp 11465e86819cSDimitry AndricSRCS_MIN+= Support/VirtualFileSystem.cpp 11479f6e9a9fSDimitry AndricSRCS_MIN+= Support/VersionTuple.cpp 11484014a71fSDimitry AndricSRCS_MIN+= Support/Watchdog.cpp 114980a8c751SEd MasteSRCS_MIN+= Support/WithColor.cpp 115048aaf27bSDimitry AndricSRCS_MIN+= Support/X86TargetParser.cpp 1151986e05bcSDimitry AndricSRCS_MIN+= Support/YAMLParser.cpp 1152986e05bcSDimitry AndricSRCS_MIN+= Support/YAMLTraits.cpp 115323559b6aSDimitry AndricSRCS_FUL+= Support/Z3Solver.cpp 1154986e05bcSDimitry AndricSRCS_MIN+= Support/circular_raw_ostream.cpp 1155986e05bcSDimitry AndricSRCS_MIN+= Support/raw_os_ostream.cpp 1156986e05bcSDimitry AndricSRCS_MIN+= Support/raw_ostream.cpp 1157986e05bcSDimitry AndricSRCS_MIN+= Support/regcomp.c 1158986e05bcSDimitry AndricSRCS_MIN+= Support/regerror.c 1159986e05bcSDimitry AndricSRCS_MIN+= Support/regexec.c 1160986e05bcSDimitry AndricSRCS_MIN+= Support/regfree.c 1161986e05bcSDimitry AndricSRCS_MIN+= Support/regstrlcpy.c 116280a8c751SEd MasteSRCS_MIN+= Support/xxhash.cpp 1163d409305fSDimitry AndricSRCS_MIN+= TableGen/DetailedRecordsBackend.cpp 1164986e05bcSDimitry AndricSRCS_MIN+= TableGen/Error.cpp 1165d25b9f8fSDimitry AndricSRCS_MIN+= TableGen/JSONBackend.cpp 1166986e05bcSDimitry AndricSRCS_MIN+= TableGen/Main.cpp 1167986e05bcSDimitry AndricSRCS_MIN+= TableGen/Record.cpp 1168986e05bcSDimitry AndricSRCS_MIN+= TableGen/SetTheory.cpp 1169986e05bcSDimitry AndricSRCS_MIN+= TableGen/StringMatcher.cpp 1170986e05bcSDimitry AndricSRCS_MIN+= TableGen/TGLexer.cpp 1171986e05bcSDimitry AndricSRCS_MIN+= TableGen/TGParser.cpp 1172986e05bcSDimitry AndricSRCS_MIN+= TableGen/TableGenBackend.cpp 1173cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no" 1174986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64A53Fix835769.cpp 1175986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64A57FPLoadBalancing.cpp 1176986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64AdvSIMDScalarPass.cpp 1177986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64AsmPrinter.cpp 11785e86819cSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64BranchTargets.cpp 11794014a71fSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CallingConvention.cpp 1180986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp 1181986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CollectLOH.cpp 11825e86819cSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CompressJumpTables.cpp 1183edd7eaddSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CondBrTuning.cpp 1184986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ConditionOptimizer.cpp 1185986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ConditionalCompares.cpp 1186986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp 11874014a71fSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ExpandImm.cpp 1188986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ExpandPseudoInsts.cpp 1189b40b48b8SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64FalkorHWPFFix.cpp 1190986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64FastISel.cpp 1191986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64FrameLowering.cpp 1192986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ISelDAGToDAG.cpp 1193986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ISelLowering.cpp 1194986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64InstrInfo.cpp 1195986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64LoadStoreOptimizer.cpp 1196fe6060f1SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64LowerHomogeneousPrologEpilog.cpp 1197986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MCInstLower.cpp 11985e801ac6SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MIPeepholeOpt.cpp 119948aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MachineFunctionInfo.cpp 120081ad6265SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MachineScheduler.cpp 12015897d2f0SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MacroFusion.cpp 1202986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64PBQPRegAlloc.cpp 1203986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64PromoteConstant.cpp 1204986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64RedundantCopyElimination.cpp 1205986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64RegisterInfo.cpp 120636cb3905SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64SIMDInstrOpt.cpp 120748aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64SLSHardening.cpp 1208986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64SelectionDAGInfo.cpp 12095e86819cSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64SpeculationHardening.cpp 12104014a71fSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64StackTagging.cpp 12119771cac2SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64StackTaggingPreRA.cpp 1212986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64StorePairSuppress.cpp 1213986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64Subtarget.cpp 1214986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64TargetMachine.cpp 1215986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64TargetObjectFile.cpp 1216986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64TargetTransformInfo.cpp 1217986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AsmParser/AArch64AsmParser.cpp 121830d4828eSDimitry AndricSRCS_XDW+= Target/AArch64/Disassembler/AArch64Disassembler.cpp 121930d4828eSDimitry AndricSRCS_XDW+= Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp 122048aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64CallLowering.cpp 1221fe6060f1SDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64GlobalISelUtils.cpp 122248aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64InstructionSelector.cpp 122348aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64LegalizerInfo.cpp 1224fe6060f1SDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64O0PreLegalizerCombiner.cpp 122548aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64PreLegalizerCombiner.cpp 122648aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64PostLegalizerCombiner.cpp 1227e8d8bef9SDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64PostLegalizerLowering.cpp 1228e8d8bef9SDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64PostSelectOptimize.cpp 122948aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64RegisterBankInfo.cpp 1230986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp 1231986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp 1232986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp 12334014a71fSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp 1234986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp 1235986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp 1236986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp 1237986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp 1238986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp 1239986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp 1240a580b014SDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp 1241a580b014SDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp 124248aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/SVEIntrinsicOpts.cpp 1243986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/TargetInfo/AArch64TargetInfo.cpp 1244986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/Utils/AArch64BaseInfo.cpp 1245cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64 1246cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no" 1247986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/A15SDOptimizer.cpp 1248986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMAsmPrinter.cpp 1249986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMBaseInstrInfo.cpp 1250986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMBaseRegisterInfo.cpp 12514014a71fSDimitry AndricSRCS_MIN+= Target/ARM/ARMBasicBlockInfo.cpp 1252e8d8bef9SDimitry AndricSRCS_MIN+= Target/ARM/ARMBlockPlacement.cpp 12534824e7fdSDimitry AndricSRCS_MIN+= Target/ARM/ARMBranchTargets.cpp 12543d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMCallLowering.cpp 12554014a71fSDimitry AndricSRCS_MIN+= Target/ARM/ARMCallingConv.cpp 1256986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMConstantIslandPass.cpp 1257986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMConstantPoolValue.cpp 1258986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMExpandPseudoInsts.cpp 1259986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMFastISel.cpp 126081ad6265SDimitry AndricSRCS_MIN+= Target/ARM/ARMFixCortexA57AES1742098Pass.cpp 1261986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMFrameLowering.cpp 1262986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMHazardRecognizer.cpp 1263986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMISelDAGToDAG.cpp 1264986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMISelLowering.cpp 1265986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMInstrInfo.cpp 12663d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMInstructionSelector.cpp 12673d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMLegalizerInfo.cpp 1268986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMLoadStoreOptimizer.cpp 12694014a71fSDimitry AndricSRCS_MIN+= Target/ARM/ARMLowOverheadLoops.cpp 1270986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMMCInstLower.cpp 1271986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMMachineFunctionInfo.cpp 1272edd7eaddSDimitry AndricSRCS_MIN+= Target/ARM/ARMMacroFusion.cpp 1273986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMOptimizeBarriersPass.cpp 12749f6e9a9fSDimitry AndricSRCS_MIN+= Target/ARM/ARMParallelDSP.cpp 12753d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMRegisterBankInfo.cpp 1276986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMRegisterInfo.cpp 1277e8d8bef9SDimitry AndricSRCS_MIN+= Target/ARM/ARMSLSHardening.cpp 1278986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMSelectionDAGInfo.cpp 1279986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMSubtarget.cpp 1280986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMTargetMachine.cpp 1281986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMTargetObjectFile.cpp 1282986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMTargetTransformInfo.cpp 1283986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/AsmParser/ARMAsmParser.cpp 1284986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Disassembler/ARMDisassembler.cpp 1285986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMAsmBackend.cpp 1286986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp 1287986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMELFStreamer.cpp 12884014a71fSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMInstPrinter.cpp 1289986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp 1290986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp 1291986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCExpr.cpp 1292986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp 1293986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp 1294986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp 1295986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp 1296986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp 1297986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp 1298986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp 1299986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MLxExpansionPass.cpp 13009771cac2SDimitry AndricSRCS_MIN+= Target/ARM/MVEGatherScatterLowering.cpp 1301fe6060f1SDimitry AndricSRCS_MIN+= Target/ARM/MVELaneInterleavingPass.cpp 1302fe6060f1SDimitry AndricSRCS_MIN+= Target/ARM/MVETPAndVPTOptimisationsPass.cpp 13039771cac2SDimitry AndricSRCS_MIN+= Target/ARM/MVETailPredication.cpp 13049771cac2SDimitry AndricSRCS_MIN+= Target/ARM/MVEVPTBlockPass.cpp 1305986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/TargetInfo/ARMTargetInfo.cpp 1306986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb1FrameLowering.cpp 1307986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb1InstrInfo.cpp 1308986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb2ITBlockPass.cpp 1309986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb2InstrInfo.cpp 1310986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb2SizeReduction.cpp 1311986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ThumbRegisterInfo.cpp 131236cb3905SDimitry AndricSRCS_MIN+= Target/ARM/Utils/ARMBaseInfo.cpp 1313cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM 131489edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no" 131589edb881SDimitry AndricSRCS_MIN+= Target/BPF/AsmParser/BPFAsmParser.cpp 1316a9365f4aSDimitry AndricSRCS_MIN+= Target/BPF/BPFAbstractMemberAccess.cpp 1317d30dc78fSDimitry AndricSRCS_MIN+= Target/BPF/BPFAdjustOpt.cpp 131889edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFAsmPrinter.cpp 1319d30dc78fSDimitry AndricSRCS_MIN+= Target/BPF/BPFCheckAndAdjustIR.cpp 132089edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFFrameLowering.cpp 13215e801ac6SDimitry AndricSRCS_MIN+= Target/BPF/BPFIRPeephole.cpp 132289edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFISelDAGToDAG.cpp 132389edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFISelLowering.cpp 132489edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFInstrInfo.cpp 132589edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFMCInstLower.cpp 13260a462115SDimitry AndricSRCS_MIN+= Target/BPF/BPFMIChecking.cpp 1327f9c0a512SDimitry AndricSRCS_MIN+= Target/BPF/BPFMIPeephole.cpp 1328a9365f4aSDimitry AndricSRCS_MIN+= Target/BPF/BPFMISimplifyPatchable.cpp 13291c1ab429SDimitry AndricSRCS_MIN+= Target/BPF/BPFPreserveDIType.cpp 133089edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFRegisterInfo.cpp 1331f9c0a512SDimitry AndricSRCS_MIN+= Target/BPF/BPFSelectionDAGInfo.cpp 133289edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFSubtarget.cpp 133389edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFTargetMachine.cpp 13340a462115SDimitry AndricSRCS_MIN+= Target/BPF/BTFDebug.cpp 133589edb881SDimitry AndricSRCS_MIN+= Target/BPF/Disassembler/BPFDisassembler.cpp 133689edb881SDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFAsmBackend.cpp 133789edb881SDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp 13384014a71fSDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFInstPrinter.cpp 133989edb881SDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp 134089edb881SDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp 134189edb881SDimitry AndricSRCS_MIN+= Target/BPF/TargetInfo/BPFTargetInfo.cpp 134289edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF 1343cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no" 1344986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/AsmParser/MipsAsmParser.cpp 134530d4828eSDimitry AndricSRCS_XDW+= Target/Mips/Disassembler/MipsDisassembler.cpp 1346986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp 1347986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsABIInfo.cpp 1348986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsAsmBackend.cpp 1349986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp 1350986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsELFStreamer.cpp 13514014a71fSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsInstPrinter.cpp 1352986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp 1353986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp 1354986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCExpr.cpp 1355986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp 1356986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp 1357986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsOptionRecord.cpp 1358986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp 1359f37b6182SDimitry AndricSRCS_MIN+= Target/Mips/MicroMipsSizeReduction.cpp 1360986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16FrameLowering.cpp 1361986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16HardFloat.cpp 1362986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16HardFloatInfo.cpp 1363986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16ISelDAGToDAG.cpp 1364986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16ISelLowering.cpp 1365986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16InstrInfo.cpp 1366986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16RegisterInfo.cpp 1367986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsAnalyzeImmediate.cpp 1368986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsAsmPrinter.cpp 13699f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsBranchExpansion.cpp 1370986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsCCState.cpp 13719f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsCallLowering.cpp 1372986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsConstantIslandPass.cpp 1373986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsDelaySlotFiller.cpp 13749f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsExpandPseudo.cpp 1375986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsFastISel.cpp 1376986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsFrameLowering.cpp 1377986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsISelDAGToDAG.cpp 1378986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsISelLowering.cpp 1379986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsInstrInfo.cpp 13809f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsInstructionSelector.cpp 13819f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsLegalizerInfo.cpp 1382986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsMCInstLower.cpp 1383986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsMachineFunction.cpp 1384986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsModuleISelDAGToDAG.cpp 13854b1174e2SDimitry AndricSRCS_MIN+= Target/Mips/MipsMulMulBugPass.cpp 1386986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsOptimizePICCall.cpp 1387986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsOs16.cpp 13885e86819cSDimitry AndricSRCS_MIN+= Target/Mips/MipsPreLegalizerCombiner.cpp 138981ad6265SDimitry AndricSRCS_MIN+= Target/Mips/MipsPostLegalizerCombiner.cpp 13909f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsRegisterBankInfo.cpp 1391986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsRegisterInfo.cpp 1392986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEFrameLowering.cpp 1393986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEISelDAGToDAG.cpp 1394986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEISelLowering.cpp 1395986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEInstrInfo.cpp 1396986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSERegisterInfo.cpp 1397986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSubtarget.cpp 1398986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsTargetMachine.cpp 1399986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsTargetObjectFile.cpp 140081ad6265SDimitry AndricSRCS_MIN+= Target/Mips/MipsTargetTransformInfo.cpp 1401986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/TargetInfo/MipsTargetInfo.cpp 1402cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS 1403cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no" 1404986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/AsmParser/PPCAsmParser.cpp 1405986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/Disassembler/PPCDisassembler.cpp 1406e8d8bef9SDimitry AndricSRCS_MIN+= Target/PowerPC/GISel/PPCCallLowering.cpp 1407e8d8bef9SDimitry AndricSRCS_MIN+= Target/PowerPC/GISel/PPCInstructionSelector.cpp 1408e8d8bef9SDimitry AndricSRCS_MIN+= Target/PowerPC/GISel/PPCLegalizerInfo.cpp 1409e8d8bef9SDimitry AndricSRCS_MIN+= Target/PowerPC/GISel/PPCRegisterBankInfo.cpp 1410986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp 1411986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp 141248aaf27bSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCELFStreamer.cpp 14134014a71fSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCInstPrinter.cpp 1414986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp 1415986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp 1416986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp 1417986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp 1418986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCPredicates.cpp 14194014a71fSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCXCOFFObjectWriter.cpp 1420fe6060f1SDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCXCOFFStreamer.cpp 1421986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCAsmPrinter.cpp 1422986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCBoolRetToInt.cpp 142336cb3905SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCBranchCoalescing.cpp 1424986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCBranchSelector.cpp 1425986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCCCState.cpp 1426986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCCTRLoops.cpp 142781ad6265SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCCTRLoopsVerify.cpp 14284014a71fSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCCallingConv.cpp 1429986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCEarlyReturn.cpp 1430fe6060f1SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCExpandAtomicPseudoInsts.cpp 14315897d2f0SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCExpandISEL.cpp 1432986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCFastISel.cpp 1433986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCFrameLowering.cpp 143481ad6265SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCGenScalarMASSEntries.cpp 1435986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCHazardRecognizers.cpp 1436986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCISelDAGToDAG.cpp 1437986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCISelLowering.cpp 1438986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCInstrInfo.cpp 14399771cac2SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCLoopInstrFormPrep.cpp 14409771cac2SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCLowerMASSVEntries.cpp 144148aaf27bSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMacroFusion.cpp 1442986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMCInstLower.cpp 1443986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMIPeephole.cpp 1444986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMachineFunctionInfo.cpp 14454014a71fSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMachineScheduler.cpp 144636cb3905SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCPreEmitPeephole.cpp 144736cb3905SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCReduceCRLogicals.cpp 1448986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCRegisterInfo.cpp 1449986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCSubtarget.cpp 1450986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTLSDynamicCall.cpp 1451986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTOCRegDeps.cpp 1452986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTargetMachine.cpp 1453986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTargetObjectFile.cpp 1454986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTargetTransformInfo.cpp 1455986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCVSXCopy.cpp 1456986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCVSXFMAMutate.cpp 1457986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCVSXSwapRemoval.cpp 1458986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp 1459cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC 1460b2689b12SMitchell Horne.if ${MK_LLVM_TARGET_RISCV} != "no" 1461b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/AsmParser/RISCVAsmParser.cpp 1462b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/Disassembler/RISCVDisassembler.cpp 1463b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp 1464e8d8bef9SDimitry AndricSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVBaseInfo.cpp 1465b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp 1466b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVELFStreamer.cpp 14674014a71fSDimitry AndricSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVInstPrinter.cpp 1468e8d8bef9SDimitry AndricSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMatInt.cpp 1469b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.cpp 1470b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp 1471b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp 14725e801ac6SDimitry AndricSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMCObjectFileInfo.cpp 1473b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp 1474b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVTargetStreamer.cpp 1475b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVAsmPrinter.cpp 14769771cac2SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVCallLowering.cpp 1477fcaf7f86SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVCodeGenPrepare.cpp 147848aaf27bSDimitry AndricSRCS_MIN+= Target/RISCV/RISCVExpandAtomicPseudoInsts.cpp 1479b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVExpandPseudoInsts.cpp 1480b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVFrameLowering.cpp 14815e801ac6SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVGatherScatterLowering.cpp 1482fe6060f1SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVInsertVSETVLI.cpp 1483b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVInstrInfo.cpp 14849771cac2SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVInstructionSelector.cpp 1485b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVISelDAGToDAG.cpp 1486b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVISelLowering.cpp 14879771cac2SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVLegalizerInfo.cpp 1488b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVMCInstLower.cpp 14893a9a9c0cSDimitry AndricSRCS_MIN+= Target/RISCV/RISCVMachineFunctionInfo.cpp 149081ad6265SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVMacroFusion.cpp 149181ad6265SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVMakeCompressible.cpp 1492b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVMergeBaseOffset.cpp 149381ad6265SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVRedundantCopyElimination.cpp 14949771cac2SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVRegisterBankInfo.cpp 1495b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVRegisterInfo.cpp 149604eeddc0SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVSExtWRemoval.cpp 1497b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVSubtarget.cpp 1498b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVTargetMachine.cpp 1499b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVTargetObjectFile.cpp 1500869fe6d5SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVTargetTransformInfo.cpp 1501b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/TargetInfo/RISCVTargetInfo.cpp 1502b2689b12SMitchell Horne.endif # MK_LLVM_TARGET_RISCV 1503986e05bcSDimitry AndricSRCS_MIN+= Target/Target.cpp 1504986e05bcSDimitry AndricSRCS_MIN+= Target/TargetLoweringObjectFile.cpp 1505986e05bcSDimitry AndricSRCS_MIN+= Target/TargetMachine.cpp 1506986e05bcSDimitry AndricSRCS_MIN+= Target/TargetMachineC.cpp 1507cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no" 1508986e05bcSDimitry AndricSRCS_MIN+= Target/X86/AsmParser/X86AsmParser.cpp 150930d4828eSDimitry AndricSRCS_XDW+= Target/X86/Disassembler/X86Disassembler.cpp 15103a9a9c0cSDimitry AndricSRCS_EXT+= Target/X86/MCA/X86CustomBehaviour.cpp 15114014a71fSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86ATTInstPrinter.cpp 1512986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86AsmBackend.cpp 1513986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp 15144014a71fSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86InstComments.cpp 15154014a71fSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86InstPrinterCommon.cpp 151681ad6265SDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86InstrRelaxTables.cpp 15174014a71fSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86IntelInstPrinter.cpp 1518986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MCAsmInfo.cpp 1519986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp 1520986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MCTargetDesc.cpp 1521986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MachObjectWriter.cpp 152281ad6265SDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MnemonicTables.cpp 152348aaf27bSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86ShuffleDecode.cpp 1524986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp 1525986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp 152636cb3905SDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp 1527986e05bcSDimitry AndricSRCS_MIN+= Target/X86/TargetInfo/X86TargetInfo.cpp 1528986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86AsmPrinter.cpp 15299f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86AvoidStoreForwardingBlocks.cpp 15309771cac2SDimitry AndricSRCS_MIN+= Target/X86/X86AvoidTrailingCall.cpp 1531986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86CallFrameOptimization.cpp 15323d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86CallLowering.cpp 153309bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86CallingConv.cpp 1534b40b48b8SDimitry AndricSRCS_MIN+= Target/X86/X86CmovConversion.cpp 15355e86819cSDimitry AndricSRCS_MIN+= Target/X86/X86DiscriminateMemOps.cpp 153636cb3905SDimitry AndricSRCS_MIN+= Target/X86/X86DomainReassignment.cpp 15375e801ac6SDimitry AndricSRCS_MIN+= Target/X86/X86DynAllocaExpander.cpp 153809bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86EvexToVex.cpp 1539986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ExpandPseudo.cpp 1540986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FastISel.cpp 154181ad6265SDimitry AndricSRCS_MIN+= Target/X86/X86FastPreTileConfig.cpp 1542fe6060f1SDimitry AndricSRCS_MIN+= Target/X86/X86FastTileConfig.cpp 1543986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FixupBWInsts.cpp 1544986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FixupLEAs.cpp 1545986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FixupSetCC.cpp 15460556cfadSDimitry AndricSRCS_MIN+= Target/X86/X86FlagsCopyLowering.cpp 1547986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FloatingPoint.cpp 1548986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FrameLowering.cpp 1549986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ISelDAGToDAG.cpp 1550986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ISelLowering.cpp 15519f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86IndirectBranchTracking.cpp 15520946e70aSDimitry AndricSRCS_MIN+= Target/X86/X86IndirectThunks.cpp 15535e86819cSDimitry AndricSRCS_MIN+= Target/X86/X86InsertPrefetch.cpp 155448aaf27bSDimitry AndricSRCS_MIN+= Target/X86/X86InsertWait.cpp 1555e8d8bef9SDimitry AndricSRCS_MIN+= Target/X86/X86InstCombineIntrinsic.cpp 155609bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86InstrFMA3Info.cpp 15579f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86InstrFoldTables.cpp 1558986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86InstrInfo.cpp 15593d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86InstructionSelector.cpp 156009bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86InterleavedAccess.cpp 15613d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86LegalizerInfo.cpp 15620946e70aSDimitry AndricSRCS_MIN+= Target/X86/X86LoadValueInjectionLoadHardening.cpp 15630946e70aSDimitry AndricSRCS_MIN+= Target/X86/X86LoadValueInjectionRetHardening.cpp 1564fe6060f1SDimitry AndricSRCS_MIN+= Target/X86/X86LowerAMXIntrinsics.cpp 1565e8d8bef9SDimitry AndricSRCS_MIN+= Target/X86/X86LowerAMXType.cpp 1566fe6060f1SDimitry AndricSRCS_MIN+= Target/X86/X86LowerTileCopy.cpp 1567986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86MCInstLower.cpp 1568986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86MachineFunctionInfo.cpp 15695897d2f0SDimitry AndricSRCS_MIN+= Target/X86/X86MacroFusion.cpp 1570986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86OptimizeLEAs.cpp 1571986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86PadShortFunction.cpp 157248aaf27bSDimitry AndricSRCS_MIN+= Target/X86/X86PartialReduction.cpp 1573fe6060f1SDimitry AndricSRCS_MIN+= Target/X86/X86PreAMXConfig.cpp 1574e8d8bef9SDimitry AndricSRCS_MIN+= Target/X86/X86PreTileConfig.cpp 15753d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86RegisterBankInfo.cpp 1576986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86RegisterInfo.cpp 1577753f127fSDimitry AndricSRCS_MIN+= Target/X86/X86ReturnThunks.cpp 1578986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86SelectionDAGInfo.cpp 1579986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ShuffleDecodeConstantPool.cpp 158048aaf27bSDimitry AndricSRCS_MIN+= Target/X86/X86SpeculativeExecutionSideEffectSuppression.cpp 15819f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86SpeculativeLoadHardening.cpp 1582986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86Subtarget.cpp 1583986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86TargetMachine.cpp 1584986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86TargetObjectFile.cpp 1585986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86TargetTransformInfo.cpp 1586e8d8bef9SDimitry AndricSRCS_MIN+= Target/X86/X86TileConfig.cpp 1587986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86VZeroUpper.cpp 1588986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86WinEHState.cpp 1589cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86 1590fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/Architecture.cpp 1591fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/ArchitectureSet.cpp 1592fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/InterfaceFile.cpp 1593fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/PackedVersion.cpp 1594fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/Platform.cpp 1595fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/Target.cpp 1596fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/TextStub.cpp 1597fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/TextStubCommon.cpp 15989c954a48SEd MasteSRCS_MIN+= ToolDrivers/llvm-dlltool/DlltoolDriver.cpp 15990db9a49eSDimitry AndricSRCS_MIW+= ToolDrivers/llvm-lib/LibDriver.cpp 16009f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp 16019f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/AggressiveInstCombine/TruncInstCombine.cpp 16029771cac2SDimitry AndricSRCS_MIN+= Transforms/CFGuard/CFGuard.cpp 160309bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroCleanup.cpp 160481ad6265SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroConditionalWrapper.cpp 160509bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroEarly.cpp 160609bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroElide.cpp 160709bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroFrame.cpp 160809bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroSplit.cpp 160909bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/Coroutines.cpp 161009bfd043SDimitry AndricSRCS_MIN+= Transforms/IPO/AlwaysInliner.cpp 1611e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/IPO/Annotation2Metadata.cpp 1612986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ArgumentPromotion.cpp 16134014a71fSDimitry AndricSRCS_MIN+= Transforms/IPO/Attributor.cpp 161448aaf27bSDimitry AndricSRCS_MIN+= Transforms/IPO/AttributorAttributes.cpp 1615986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/BarrierNoopPass.cpp 1616e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/IPO/BlockExtractor.cpp 161736cb3905SDimitry AndricSRCS_MIN+= Transforms/IPO/CalledValuePropagation.cpp 1618986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ConstantMerge.cpp 1619986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/CrossDSOCFI.cpp 1620986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/DeadArgumentElimination.cpp 1621986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ElimAvailExtern.cpp 1622986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ExtractGV.cpp 1623986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ForceFunctionAttrs.cpp 1624986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/FunctionAttrs.cpp 1625986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/FunctionImport.cpp 1626fe6060f1SDimitry AndricSRCS_MIN+= Transforms/IPO/FunctionSpecialization.cpp 1627986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/GlobalDCE.cpp 1628986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/GlobalOpt.cpp 162909bfd043SDimitry AndricSRCS_MIN+= Transforms/IPO/GlobalSplit.cpp 16305e86819cSDimitry AndricSRCS_MIN+= Transforms/IPO/HotColdSplitting.cpp 1631986e05bcSDimitry AndricSRCS_EXT+= Transforms/IPO/IPO.cpp 1632e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/IPO/IROutliner.cpp 1633986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/InferFunctionAttrs.cpp 1634986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/InlineSimple.cpp 1635986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/Inliner.cpp 1636986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/Internalize.cpp 1637986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/LoopExtractor.cpp 1638986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/LowerTypeTests.cpp 1639986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/MergeFunctions.cpp 16405e801ac6SDimitry AndricSRCS_MIN+= Transforms/IPO/ModuleInliner.cpp 164148aaf27bSDimitry AndricSRCS_MIN+= Transforms/IPO/OpenMPOpt.cpp 1642986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/PartialInlining.cpp 1643986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/PassManagerBuilder.cpp 1644986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/PruneEH.cpp 16459f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/IPO/SCCP.cpp 1646e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/IPO/SampleContextTracker.cpp 1647986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/SampleProfile.cpp 1648e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/IPO/SampleProfileProbe.cpp 1649986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/StripDeadPrototypes.cpp 1650986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/StripSymbols.cpp 16519f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/IPO/SyntheticCountsPropagation.cpp 165209bfd043SDimitry AndricSRCS_MIN+= Transforms/IPO/ThinLTOBitcodeWriter.cpp 1653986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/WholeProgramDevirt.cpp 1654986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineAddSub.cpp 1655986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineAndOrXor.cpp 16564014a71fSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineAtomicRMW.cpp 1657986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineCalls.cpp 1658986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineCasts.cpp 1659986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineCompares.cpp 1660986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp 1661986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineMulDivRem.cpp 166248aaf27bSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineNegator.cpp 1663986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombinePHI.cpp 1664986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineSelect.cpp 1665986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineShifts.cpp 1666986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineSimplifyDemanded.cpp 1667986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineVectorOps.cpp 1668986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstructionCombining.cpp 1669986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/AddressSanitizer.cpp 1670986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/BoundsChecking.cpp 16719f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/CGProfile.cpp 16725e86819cSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/ControlHeightReduction.cpp 1673986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/DataFlowSanitizer.cpp 1674986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/GCOVProfiling.cpp 167536cb3905SDimitry AndricSRCS_MIN+= Transforms/Instrumentation/HWAddressSanitizer.cpp 1676986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/IndirectCallPromotion.cpp 16774014a71fSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/InstrOrderFile.cpp 1678986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/InstrProfiling.cpp 1679986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/Instrumentation.cpp 1680e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Instrumentation/MemProfiler.cpp 1681986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/MemorySanitizer.cpp 1682986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/PGOInstrumentation.cpp 168324d58133SDimitry AndricSRCS_MIN+= Transforms/Instrumentation/PGOMemOPSizeOpt.cpp 16844014a71fSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/PoisonChecking.cpp 1685986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/SanitizerCoverage.cpp 1686986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/ThreadSanitizer.cpp 16879771cac2SDimitry AndricSRCS_MIN+= Transforms/Instrumentation/ValueProfileCollector.cpp 1688986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/DependencyAnalysis.cpp 1689fe6060f1SDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARC.cpp 1690986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCAPElim.cpp 1691986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCContract.cpp 1692986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCExpand.cpp 1693986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCOpts.cpp 1694986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ProvenanceAnalysis.cpp 1695986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp 1696986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/PtrState.cpp 1697986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/ADCE.cpp 1698986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/AlignmentFromAssumptions.cpp 1699e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Scalar/AnnotationRemarks.cpp 1700986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/BDCE.cpp 170136cb3905SDimitry AndricSRCS_MIN+= Transforms/Scalar/CallSiteSplitting.cpp 1702986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/ConstantHoisting.cpp 1703e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Scalar/ConstraintElimination.cpp 1704986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/CorrelatedValuePropagation.cpp 1705986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/DCE.cpp 1706fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Scalar/DFAJumpThreading.cpp 1707986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/DeadStoreElimination.cpp 170836cb3905SDimitry AndricSRCS_MIN+= Transforms/Scalar/DivRemPairs.cpp 1709986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/EarlyCSE.cpp 1710986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/FlattenCFGPass.cpp 1711986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Float2Int.cpp 1712986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/GVN.cpp 1713986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/GVNHoist.cpp 1714302affcbSDimitry AndricSRCS_MIN+= Transforms/Scalar/GVNSink.cpp 1715986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/GuardWidening.cpp 1716f1a29dd3SDimitry AndricSRCS_MIN+= Transforms/Scalar/IVUsersPrinter.cpp 1717986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/IndVarSimplify.cpp 1718986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/InductiveRangeCheckElimination.cpp 1719e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Scalar/InferAddressSpaces.cpp 17209f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Scalar/InstSimplifyPass.cpp 1721986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/JumpThreading.cpp 1722986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LICM.cpp 1723f1a29dd3SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopAccessAnalysisPrinter.cpp 1724fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopBoundSplit.cpp 1725986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopDataPrefetch.cpp 1726986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopDeletion.cpp 1727986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopDistribute.cpp 1728e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopFlatten.cpp 17294014a71fSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopFuse.cpp 1730986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopIdiomRecognize.cpp 173109bfd043SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopInstSimplify.cpp 1732986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopInterchange.cpp 1733986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopLoadElimination.cpp 1734f1a29dd3SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopPassManager.cpp 17355897d2f0SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopPredication.cpp 1736986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopRerollPass.cpp 1737986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopRotation.cpp 1738986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopSimplifyCFG.cpp 173909bfd043SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopSink.cpp 1740986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopStrengthReduce.cpp 1741986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopUnrollPass.cpp 17429f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopUnrollAndJamPass.cpp 1743986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopVersioningLICM.cpp 174481ad6265SDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerAtomicPass.cpp 17459771cac2SDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerConstantIntrinsics.cpp 1746986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerExpectIntrinsic.cpp 1747986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerGuardIntrinsic.cpp 17489771cac2SDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerMatrixIntrinsics.cpp 17494014a71fSDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerWidenableCondition.cpp 17505e86819cSDimitry AndricSRCS_MIN+= Transforms/Scalar/MakeGuardsExplicit.cpp 1751986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/MemCpyOptimizer.cpp 175236cb3905SDimitry AndricSRCS_MIN+= Transforms/Scalar/MergeICmps.cpp 1753986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/MergedLoadStoreMotion.cpp 1754986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/NaryReassociate.cpp 175509bfd043SDimitry AndricSRCS_MIN+= Transforms/Scalar/NewGVN.cpp 1756986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/PartiallyInlineLibCalls.cpp 1757986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/PlaceSafepoints.cpp 1758986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Reassociate.cpp 1759986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Reg2Mem.cpp 1760986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/RewriteStatepointsForGC.cpp 1761986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SCCP.cpp 1762986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SROA.cpp 1763986e05bcSDimitry AndricSRCS_EXT+= Transforms/Scalar/Scalar.cpp 1764e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Scalar/ScalarizeMaskedMemIntrin.cpp 1765986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Scalarizer.cpp 1766986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SeparateConstOffsetFromGEP.cpp 1767f37b6182SDimitry AndricSRCS_MIN+= Transforms/Scalar/SimpleLoopUnswitch.cpp 1768986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SimplifyCFGPass.cpp 1769986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Sink.cpp 1770986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SpeculativeExecution.cpp 1771986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/StraightLineStrengthReduce.cpp 1772986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/StructurizeCFG.cpp 177381ad6265SDimitry AndricSRCS_MIN+= Transforms/Scalar/TLSVariableHoist.cpp 1774986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/TailRecursionElimination.cpp 17755e86819cSDimitry AndricSRCS_MIN+= Transforms/Scalar/WarnMissedTransforms.cpp 177648aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/AMDGPUEmitPrintf.cpp 1777986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/ASanStackFrameLayout.cpp 1778986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/AddDiscriminators.cpp 177948aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/AssumeBundleBuilder.cpp 1780986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BasicBlockUtils.cpp 1781986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BreakCriticalEdges.cpp 1782986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BuildLibCalls.cpp 1783986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BypassSlowDivision.cpp 178448aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/CallGraphUpdater.cpp 178536cb3905SDimitry AndricSRCS_MIN+= Transforms/Utils/CallPromotionUtils.cpp 17865e86819cSDimitry AndricSRCS_MIN+= Transforms/Utils/CanonicalizeAliases.cpp 178748aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/CanonicalizeFreezeInLoops.cpp 1788986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CloneFunction.cpp 1789986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CloneModule.cpp 1790986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CodeExtractor.cpp 179104eeddc0SDimitry AndricSRCS_MIN+= Transforms/Utils/CodeLayout.cpp 17929771cac2SDimitry AndricSRCS_MIN+= Transforms/Utils/CodeMoverUtils.cpp 1793986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CtorUtils.cpp 179448aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/Debugify.cpp 1795986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/DemoteRegToStack.cpp 179636cb3905SDimitry AndricSRCS_MIN+= Transforms/Utils/EntryExitInstrumenter.cpp 179709bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/EscapeEnumerator.cpp 1798986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/Evaluator.cpp 179948aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/FixIrreducible.cpp 1800986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/FlattenCFG.cpp 180109bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/FunctionComparator.cpp 1802986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/FunctionImportUtils.cpp 1803986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/GlobalStatus.cpp 18045e86819cSDimitry AndricSRCS_MIN+= Transforms/Utils/GuardUtils.cpp 1805fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/HelloWorld.cpp 18069771cac2SDimitry AndricSRCS_MIN+= Transforms/Utils/InjectTLIMappings.cpp 1807986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/InlineFunction.cpp 1808986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/InstructionNamer.cpp 1809986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/IntegerDivision.cpp 1810986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LCSSA.cpp 181109bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/LibCallsShrinkWrap.cpp 1812986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/Local.cpp 1813e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Utils/LoopPeel.cpp 1814986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopSimplify.cpp 18159f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopRotationUtils.cpp 1816986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUnroll.cpp 18179f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUnrollAndJam.cpp 1818986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUnrollRuntime.cpp 1819986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUtils.cpp 1820986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopVersioning.cpp 182181ad6265SDimitry AndricSRCS_MIN+= Transforms/Utils/LowerAtomic.cpp 182281ad6265SDimitry AndricSRCS_MIN+= Transforms/Utils/LowerGlobalDtors.cpp 1823986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LowerInvoke.cpp 1824986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LowerSwitch.cpp 1825e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Utils/MatrixUtils.cpp 1826986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/Mem2Reg.cpp 1827986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/MetaRenamer.cpp 1828fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/MemoryOpRemark.cpp 182981ad6265SDimitry AndricSRCS_MIN+= Transforms/Utils/MemoryTaggingSupport.cpp 183081ad6265SDimitry AndricSRCS_MIN+= Transforms/Utils/MisExpect.cpp 1831986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/ModuleUtils.cpp 183209bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/NameAnonGlobals.cpp 18335897d2f0SDimitry AndricSRCS_MIN+= Transforms/Utils/PredicateInfo.cpp 1834986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/PromoteMemoryToRegister.cpp 1835fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/RelLookupTableConverter.cpp 1836fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/SCCPSolver.cpp 1837986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SSAUpdater.cpp 1838fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/SSAUpdaterBulk.cpp 1839986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SanitizerStats.cpp 184048aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/ScalarEvolutionExpander.cpp 18414824e7fdSDimitry AndricSRCS_MIN+= Transforms/Utils/SampleProfileInference.cpp 1842fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/SampleProfileLoaderBaseUtil.cpp 1843986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SimplifyCFG.cpp 1844986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SimplifyIndVar.cpp 1845986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SimplifyLibCalls.cpp 18464014a71fSDimitry AndricSRCS_MIN+= Transforms/Utils/SizeOpts.cpp 1847986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SplitModule.cpp 184809bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/StripGCRelocates.cpp 184909bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/StripNonLineTableDebugInfo.cpp 1850986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SymbolRewriter.cpp 1851986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/UnifyFunctionExitNodes.cpp 185248aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/UnifyLoopExits.cpp 1853986e05bcSDimitry AndricSRCS_EXT+= Transforms/Utils/Utils.cpp 18545897d2f0SDimitry AndricSRCS_MIN+= Transforms/Utils/VNCoercion.cpp 1855986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/ValueMapper.cpp 1856986e05bcSDimitry AndricSRCS_MIN+= Transforms/Vectorize/LoadStoreVectorizer.cpp 18579f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Vectorize/LoopVectorizationLegality.cpp 1858986e05bcSDimitry AndricSRCS_MIN+= Transforms/Vectorize/LoopVectorize.cpp 1859986e05bcSDimitry AndricSRCS_MIN+= Transforms/Vectorize/SLPVectorizer.cpp 186036cb3905SDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlan.cpp 18619f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlanHCFGBuilder.cpp 186281ad6265SDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlanRecipes.cpp 18639771cac2SDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlanTransforms.cpp 18649f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlanVerifier.cpp 186548aaf27bSDimitry AndricSRCS_MIN+= Transforms/Vectorize/VectorCombine.cpp 1866986e05bcSDimitry AndricSRCS_EXT+= Transforms/Vectorize/Vectorize.cpp 186781ad6265SDimitry AndricSRCS_MIN+= WindowsDriver/MSVCPaths.cpp 1868efa75597SDimitry AndricSRCS_EXT+= XRay/BlockIndexer.cpp 1869efa75597SDimitry AndricSRCS_EXT+= XRay/BlockVerifier.cpp 1870efa75597SDimitry AndricSRCS_EXT+= XRay/FDRRecordProducer.cpp 1871efa75597SDimitry AndricSRCS_EXT+= XRay/FDRRecords.cpp 1872efa75597SDimitry AndricSRCS_EXT+= XRay/FDRTraceExpander.cpp 1873efa75597SDimitry AndricSRCS_EXT+= XRay/FileHeaderReader.cpp 1874050e2df1SDimitry AndricSRCS_EXT+= XRay/InstrumentationMap.cpp 1875efa75597SDimitry AndricSRCS_EXT+= XRay/LogBuilderConsumer.cpp 1876efa75597SDimitry AndricSRCS_EXT+= XRay/RecordInitializer.cpp 187767b158f6SDimitry AndricSRCS_EXT+= XRay/Trace.cpp 1878986e05bcSDimitry Andric 1879986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_MIN} 1880caf90252SBryan Drewery.if !defined(TOOLS_PREFIX) || ${MK_LLD_BOOTSTRAP} != "no" 188130d4828eSDimitry AndricSRCS_ALL+= ${SRCS_MIW} 188230d4828eSDimitry Andric.endif 1883986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" 1884986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_EXT} 1885986e05bcSDimitry Andric.endif 1886986e05bcSDimitry Andric.if ${MK_CLANG_FULL} != "no" 1887986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_FUL} 1888986e05bcSDimitry Andric.endif 188978187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLD} != "no" || \ 189078187278SBryan Drewery (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no") 189175bc38b9SEd MasteSRCS_ALL+= ${SRCS_EXL} 189275bc38b9SEd Maste.endif 189378187278SBryan Drewery.if ${MK_LLD} != "no" || \ 189478187278SBryan Drewery (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no") 18950fc5d238SDimitry AndricSRCS_ALL+= ${SRCS_LLD} 18960fc5d238SDimitry Andric.endif 1897986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" 1898986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_XDB} 1899986e05bcSDimitry Andric.endif 190078187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || ${MK_LLD} != "no" || \ 190178187278SBryan Drewery (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no") 190275bc38b9SEd MasteSRCS_ALL+= ${SRCS_XDL} 190375bc38b9SEd Maste.endif 190430d4828eSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || !defined(TOOLS_PREFIX) 190530d4828eSDimitry AndricSRCS_ALL+= ${SRCS_XDW} 190630d4828eSDimitry Andric.endif 190748aaf27bSDimitry AndricSRCS+= ${GENSRCS} 1908986e05bcSDimitry AndricSRCS+= ${SRCS_ALL:O} 1909986e05bcSDimitry Andric 191048aaf27bSDimitry Andricllvm/Frontend/OpenMP/OMP.h.inc: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 191148aaf27bSDimitry Andric ${LLVM_TBLGEN} --gen-directive-decl \ 191248aaf27bSDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 191348aaf27bSDimitry Andric ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 191448aaf27bSDimitry AndricTGHDRS+= llvm/Frontend/OpenMP/OMP.h.inc 191548aaf27bSDimitry Andric 1916e8d8bef9SDimitry Andricllvm/Frontend/OpenMP/OMP.inc: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 1917fe6060f1SDimitry Andric ${LLVM_TBLGEN} --gen-directive-impl \ 191848aaf27bSDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 191948aaf27bSDimitry Andric ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 1920e8d8bef9SDimitry AndricTGHDRS+= llvm/Frontend/OpenMP/OMP.inc 192148aaf27bSDimitry Andric 192248aaf27bSDimitry AndricOMP.cpp: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 192348aaf27bSDimitry Andric ${LLVM_TBLGEN} --gen-directive-impl \ 192448aaf27bSDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 192548aaf27bSDimitry Andric ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 192648aaf27bSDimitry AndricGENSRCS+= OMP.cpp 192748aaf27bSDimitry Andric 19289f6e9a9fSDimitry Andricllvm/IR/Attributes.inc: ${LLVM_SRCS}/include/llvm/IR/Attributes.td 1929986e05bcSDimitry Andric ${LLVM_TBLGEN} -gen-attrs \ 1930050e2df1SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1931986e05bcSDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Attributes.td 19329f6e9a9fSDimitry AndricTGHDRS+= llvm/IR/Attributes.inc 1933986e05bcSDimitry Andric 19349f6e9a9fSDimitry Andricllvm/IR/IntrinsicEnums.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 19359f6e9a9fSDimitry Andric ${LLVM_TBLGEN} -gen-intrinsic-enums \ 1936050e2df1SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1937986e05bcSDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 19389f6e9a9fSDimitry AndricTGHDRS+= llvm/IR/IntrinsicEnums.inc 19399f6e9a9fSDimitry Andric 19409f6e9a9fSDimitry Andricllvm/IR/IntrinsicImpl.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 19419f6e9a9fSDimitry Andric ${LLVM_TBLGEN} -gen-intrinsic-impl \ 19429f6e9a9fSDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 19439f6e9a9fSDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 19449f6e9a9fSDimitry AndricTGHDRS+= llvm/IR/IntrinsicImpl.inc 1945986e05bcSDimitry Andric 19469771cac2SDimitry Andric.for arch in \ 1947753f127fSDimitry Andric AArch64/aarch64 AMDGPU/amdgcn ARM/arm BPF/bpf DirectX/dx \ 194881ad6265SDimitry Andric Hexagon/hexagon Mips/mips NVPTX/nvvm PowerPC/ppc R600/r600 RISCV/riscv \ 194981ad6265SDimitry Andric S390/s390 VE/ve WebAssembly/wasm X86/x86 XCore/xcore 19509771cac2SDimitry Andricllvm/IR/Intrinsics${arch:H}.h: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 19519771cac2SDimitry Andric ${LLVM_TBLGEN} -gen-intrinsic-enums -intrinsic-prefix=${arch:T} \ 19529771cac2SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 19539771cac2SDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 19549771cac2SDimitry AndricTGHDRS+= llvm/IR/Intrinsics${arch:H}.h 19559771cac2SDimitry Andric.endfor 19569771cac2SDimitry Andric 1957b40b48b8SDimitry Andricllvm-lib/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td 1958986e05bcSDimitry Andric ${LLVM_TBLGEN} -gen-opt-parser-defs \ 1959050e2df1SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 19605517e702SDimitry Andric ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td 1961b40b48b8SDimitry AndricTGHDRS+= llvm-lib/Options.inc 1962b40b48b8SDimitry AndricCFLAGS.LibDriver.cpp+= -I${.OBJDIR}/llvm-lib 1963b40b48b8SDimitry Andric 1964b40b48b8SDimitry Andricllvm-dlltool/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td 1965b40b48b8SDimitry Andric ${LLVM_TBLGEN} -gen-opt-parser-defs \ 1966b40b48b8SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1967b40b48b8SDimitry Andric ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td 1968b40b48b8SDimitry AndricTGHDRS+= llvm-dlltool/Options.inc 1969b40b48b8SDimitry AndricCFLAGS.DlltoolDriver.cpp+= -I${.OBJDIR}/llvm-dlltool 1970986e05bcSDimitry Andric 1971cd283100SBryan Drewerybeforebuild: 1972cd283100SBryan Drewery# 20170724 remove stale Options.inc file, of which there are two different 197337cd60a3SDimitry Andric# versions after upstream r308421, one for llvm-lib, one for llvm-dlltool 1974cd283100SBryan Drewery.for f in Options.inc 1975cd283100SBryan Drewery.if exists(${f}) || exists(${f}.d) 1976cd283100SBryan Drewery @echo Removing stale generated ${f} files 1977cd283100SBryan Drewery @rm -f ${f} ${f}.d 1978cd283100SBryan Drewery.endif 1979cd283100SBryan Drewery.endfor 1980cd283100SBryan Drewery 1981986e05bcSDimitry Andric# Note: some rules are superfluous, not every combination is valid. 1982986e05bcSDimitry Andric.for arch in \ 19833b7fd87cSWarner Losh AArch64/AArch64 ARM/ARM BPF/BPF Mips/Mips PowerPC/PPC RISCV/RISCV \ 19843b7fd87cSWarner Losh X86/X86 1985986e05bcSDimitry Andric. for hdr in \ 1986986e05bcSDimitry Andric AsmMatcher/-gen-asm-matcher \ 1987986e05bcSDimitry Andric AsmWriter/-gen-asm-writer \ 198848aaf27bSDimitry Andric AsmWriter1/-gen-asm-writer,-asmwriternum=1 \ 1989986e05bcSDimitry Andric CallingConv/-gen-callingconv \ 1990986e05bcSDimitry Andric CodeEmitter/-gen-emitter \ 1991b2689b12SMitchell Horne CompressInstEmitter/-gen-compress-inst-emitter \ 1992986e05bcSDimitry Andric DAGISel/-gen-dag-isel \ 1993986e05bcSDimitry Andric DisassemblerTables/-gen-disassembler \ 19945897d2f0SDimitry Andric EVEX2VEXTables/-gen-x86-EVEX2VEX-tables \ 1995986e05bcSDimitry Andric FastISel/-gen-fast-isel \ 19963d54deb3SDimitry Andric GlobalISel/-gen-global-isel \ 199781ad6265SDimitry Andric InstrInfo/-gen-instr-info${arch:MX86/X86:C/X86\/X86/,-instr-info-expand-mi-operand-info=0/} \ 1998986e05bcSDimitry Andric MCCodeEmitter/-gen-emitter \ 1999986e05bcSDimitry Andric MCPseudoLowering/-gen-pseudo-lowering \ 200081ad6265SDimitry Andric MnemonicTables/-gen-x86-mnemonic-tables,-asmwriternum=1 \ 2001fe6060f1SDimitry Andric O0PreLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}O0PreLegalizerCombinerHelper \ 200248aaf27bSDimitry Andric PostLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}PostLegalizerCombinerHelper \ 2003e8d8bef9SDimitry Andric PostLegalizeGILowering/-gen-global-isel-combiner,-combiners=${arch:H}PostLegalizerLoweringHelper \ 200448aaf27bSDimitry Andric PreLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}PreLegalizerCombinerHelper \ 20055897d2f0SDimitry Andric RegisterBank/-gen-register-bank \ 2006986e05bcSDimitry Andric RegisterInfo/-gen-register-info \ 2007e8d8bef9SDimitry Andric SearchableTables/-gen-searchable-tables \ 2008986e05bcSDimitry Andric SubtargetInfo/-gen-subtarget \ 200936cb3905SDimitry Andric SystemOperands/-gen-searchable-tables \ 201036cb3905SDimitry Andric SystemRegister/-gen-searchable-tables 2011986e05bcSDimitry Andric${arch:T}Gen${hdr:H}.inc: ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td 2012986e05bcSDimitry Andric ${LLVM_TBLGEN} ${hdr:T:C/,/ /g} \ 2013986e05bcSDimitry Andric -I ${LLVM_SRCS}/include -I ${LLVM_SRCS}/lib/Target/${arch:H} \ 2014050e2df1SDimitry Andric -d ${.TARGET}.d -o ${.TARGET} \ 2015986e05bcSDimitry Andric ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td 2016986e05bcSDimitry Andric. endfor 2017986e05bcSDimitry Andric.endfor 2018cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no" 2019986e05bcSDimitry AndricTGHDRS+= AArch64GenAsmMatcher.inc 2020986e05bcSDimitry AndricTGHDRS+= AArch64GenAsmWriter.inc 2021986e05bcSDimitry AndricTGHDRS+= AArch64GenAsmWriter1.inc 2022986e05bcSDimitry AndricTGHDRS+= AArch64GenCallingConv.inc 2023986e05bcSDimitry AndricTGHDRS+= AArch64GenDAGISel.inc 2024986e05bcSDimitry AndricTGHDRS+= AArch64GenDisassemblerTables.inc 2025986e05bcSDimitry AndricTGHDRS+= AArch64GenFastISel.inc 20263d54deb3SDimitry AndricTGHDRS+= AArch64GenGlobalISel.inc 2027986e05bcSDimitry AndricTGHDRS+= AArch64GenInstrInfo.inc 2028986e05bcSDimitry AndricTGHDRS+= AArch64GenMCCodeEmitter.inc 2029986e05bcSDimitry AndricTGHDRS+= AArch64GenMCPseudoLowering.inc 2030fe6060f1SDimitry AndricTGHDRS+= AArch64GenO0PreLegalizeGICombiner.inc 203148aaf27bSDimitry AndricTGHDRS+= AArch64GenPostLegalizeGICombiner.inc 2032e8d8bef9SDimitry AndricTGHDRS+= AArch64GenPostLegalizeGILowering.inc 203348aaf27bSDimitry AndricTGHDRS+= AArch64GenPreLegalizeGICombiner.inc 20345897d2f0SDimitry AndricTGHDRS+= AArch64GenRegisterBank.inc 2035986e05bcSDimitry AndricTGHDRS+= AArch64GenRegisterInfo.inc 2036986e05bcSDimitry AndricTGHDRS+= AArch64GenSubtargetInfo.inc 2037986e05bcSDimitry AndricTGHDRS+= AArch64GenSystemOperands.inc 2038cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64 2039cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no" 2040986e05bcSDimitry AndricTGHDRS+= ARMGenAsmMatcher.inc 2041986e05bcSDimitry AndricTGHDRS+= ARMGenAsmWriter.inc 2042986e05bcSDimitry AndricTGHDRS+= ARMGenCallingConv.inc 2043986e05bcSDimitry AndricTGHDRS+= ARMGenDAGISel.inc 2044986e05bcSDimitry AndricTGHDRS+= ARMGenDisassemblerTables.inc 2045986e05bcSDimitry AndricTGHDRS+= ARMGenFastISel.inc 20463d54deb3SDimitry AndricTGHDRS+= ARMGenGlobalISel.inc 2047986e05bcSDimitry AndricTGHDRS+= ARMGenInstrInfo.inc 2048986e05bcSDimitry AndricTGHDRS+= ARMGenMCCodeEmitter.inc 2049986e05bcSDimitry AndricTGHDRS+= ARMGenMCPseudoLowering.inc 20505897d2f0SDimitry AndricTGHDRS+= ARMGenRegisterBank.inc 2051986e05bcSDimitry AndricTGHDRS+= ARMGenRegisterInfo.inc 2052986e05bcSDimitry AndricTGHDRS+= ARMGenSubtargetInfo.inc 205336cb3905SDimitry AndricTGHDRS+= ARMGenSystemRegister.inc 2054cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM 205589edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no" 205689edb881SDimitry AndricTGHDRS+= BPFGenAsmMatcher.inc 205789edb881SDimitry AndricTGHDRS+= BPFGenAsmWriter.inc 205889edb881SDimitry AndricTGHDRS+= BPFGenCallingConv.inc 205989edb881SDimitry AndricTGHDRS+= BPFGenDAGISel.inc 206089edb881SDimitry AndricTGHDRS+= BPFGenDisassemblerTables.inc 206189edb881SDimitry AndricTGHDRS+= BPFGenInstrInfo.inc 206289edb881SDimitry AndricTGHDRS+= BPFGenMCCodeEmitter.inc 206389edb881SDimitry AndricTGHDRS+= BPFGenRegisterInfo.inc 206489edb881SDimitry AndricTGHDRS+= BPFGenSubtargetInfo.inc 206589edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF 2066cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no" 2067986e05bcSDimitry AndricTGHDRS+= MipsGenAsmMatcher.inc 2068986e05bcSDimitry AndricTGHDRS+= MipsGenAsmWriter.inc 2069986e05bcSDimitry AndricTGHDRS+= MipsGenCallingConv.inc 2070986e05bcSDimitry AndricTGHDRS+= MipsGenDAGISel.inc 2071986e05bcSDimitry AndricTGHDRS+= MipsGenDisassemblerTables.inc 2072986e05bcSDimitry AndricTGHDRS+= MipsGenFastISel.inc 20739f6e9a9fSDimitry AndricTGHDRS+= MipsGenGlobalISel.inc 2074986e05bcSDimitry AndricTGHDRS+= MipsGenInstrInfo.inc 2075986e05bcSDimitry AndricTGHDRS+= MipsGenMCCodeEmitter.inc 2076986e05bcSDimitry AndricTGHDRS+= MipsGenMCPseudoLowering.inc 207781ad6265SDimitry AndricTGHDRS+= MipsGenPostLegalizeGICombiner.inc 20789f6e9a9fSDimitry AndricTGHDRS+= MipsGenRegisterBank.inc 2079986e05bcSDimitry AndricTGHDRS+= MipsGenRegisterInfo.inc 2080986e05bcSDimitry AndricTGHDRS+= MipsGenSubtargetInfo.inc 2081cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS 2082cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no" 2083986e05bcSDimitry AndricTGHDRS+= PPCGenAsmMatcher.inc 2084986e05bcSDimitry AndricTGHDRS+= PPCGenAsmWriter.inc 2085986e05bcSDimitry AndricTGHDRS+= PPCGenCallingConv.inc 2086986e05bcSDimitry AndricTGHDRS+= PPCGenDAGISel.inc 2087986e05bcSDimitry AndricTGHDRS+= PPCGenDisassemblerTables.inc 2088986e05bcSDimitry AndricTGHDRS+= PPCGenFastISel.inc 2089e8d8bef9SDimitry AndricTGHDRS+= PPCGenGlobalISel.inc 2090986e05bcSDimitry AndricTGHDRS+= PPCGenInstrInfo.inc 2091986e05bcSDimitry AndricTGHDRS+= PPCGenMCCodeEmitter.inc 2092e8d8bef9SDimitry AndricTGHDRS+= PPCGenRegisterBank.inc 2093986e05bcSDimitry AndricTGHDRS+= PPCGenRegisterInfo.inc 2094986e05bcSDimitry AndricTGHDRS+= PPCGenSubtargetInfo.inc 2095cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC 2096b2689b12SMitchell Horne.if ${MK_LLVM_TARGET_RISCV} != "no" 2097b2689b12SMitchell HorneTGHDRS+= RISCVGenAsmMatcher.inc 2098b2689b12SMitchell HorneTGHDRS+= RISCVGenAsmWriter.inc 2099b2689b12SMitchell HorneTGHDRS+= RISCVGenCallingConv.inc 2100b2689b12SMitchell HorneTGHDRS+= RISCVGenCompressInstEmitter.inc 2101b2689b12SMitchell HorneTGHDRS+= RISCVGenDAGISel.inc 2102b2689b12SMitchell HorneTGHDRS+= RISCVGenDisassemblerTables.inc 2103b2689b12SMitchell HorneTGHDRS+= RISCVGenDAGISel.inc 21049771cac2SDimitry AndricTGHDRS+= RISCVGenGlobalISel.inc 2105b2689b12SMitchell HorneTGHDRS+= RISCVGenInstrInfo.inc 2106b2689b12SMitchell HorneTGHDRS+= RISCVGenMCCodeEmitter.inc 2107b2689b12SMitchell HorneTGHDRS+= RISCVGenMCPseudoLowering.inc 21089771cac2SDimitry AndricTGHDRS+= RISCVGenRegisterBank.inc 2109b2689b12SMitchell HorneTGHDRS+= RISCVGenRegisterInfo.inc 2110e8d8bef9SDimitry AndricTGHDRS+= RISCVGenSearchableTables.inc 2111b2689b12SMitchell HorneTGHDRS+= RISCVGenSubtargetInfo.inc 2112b2689b12SMitchell HorneTGHDRS+= RISCVGenSystemOperands.inc 2113b2689b12SMitchell Horne.endif # MK_LLVM_TARGET_RISCV 2114cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no" 2115986e05bcSDimitry AndricTGHDRS+= X86GenAsmMatcher.inc 2116986e05bcSDimitry AndricTGHDRS+= X86GenAsmWriter.inc 2117986e05bcSDimitry AndricTGHDRS+= X86GenAsmWriter1.inc 2118986e05bcSDimitry AndricTGHDRS+= X86GenCallingConv.inc 2119986e05bcSDimitry AndricTGHDRS+= X86GenDAGISel.inc 2120986e05bcSDimitry AndricTGHDRS+= X86GenDisassemblerTables.inc 21215897d2f0SDimitry AndricTGHDRS+= X86GenEVEX2VEXTables.inc 2122986e05bcSDimitry AndricTGHDRS+= X86GenFastISel.inc 21233d54deb3SDimitry AndricTGHDRS+= X86GenGlobalISel.inc 2124986e05bcSDimitry AndricTGHDRS+= X86GenInstrInfo.inc 212581ad6265SDimitry AndricTGHDRS+= X86GenMnemonicTables.inc 21265897d2f0SDimitry AndricTGHDRS+= X86GenRegisterBank.inc 2127986e05bcSDimitry AndricTGHDRS+= X86GenRegisterInfo.inc 2128986e05bcSDimitry AndricTGHDRS+= X86GenSubtargetInfo.inc 2129cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86 2130986e05bcSDimitry Andric 2131ddf95e2aSBryan DreweryDEPENDFILES+= ${TGHDRS:C/$/.d/} 2132986e05bcSDimitry AndricDPSRCS+= ${TGHDRS} 2133986e05bcSDimitry AndricCLEANFILES+= ${TGHDRS} ${TGHDRS:C/$/.d/} 213448aaf27bSDimitry AndricCLEANFILES+= ${GENSRCS} ${GENSRCS:C/$/.d/} 2135986e05bcSDimitry Andric 2136986e05bcSDimitry Andric.include "../llvm.build.mk" 2137986e05bcSDimitry Andric.include <bsd.lib.mk> 2138