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 260b57cec5SDimitry AndricSRCDIR= llvm/lib 27986e05bcSDimitry Andric 28a1aaa66bSDimitry Andric# Explanation of different SRCS variants below: 29a1aaa66bSDimitry Andric# SRCS_MIN: always required, even for bootstrap 30a1aaa66bSDimitry Andric# SRCS_MIW: required for world stage (after cross-tools) 31a1aaa66bSDimitry Andric# SRCS_EXT: required for MK_CLANG_EXTRAS 32a1aaa66bSDimitry Andric# SRCS_EXL: required for MK_CLANG_EXTRAS and MK_LLD 33a1aaa66bSDimitry Andric# SRCS_FUL: required for MK_CLANG_FULL 34a1aaa66bSDimitry Andric# SRCS_LLD: required for MK_LLD 35a1aaa66bSDimitry Andric# SRCS_XDB: required for MK_CLANG_EXTRAS and MK_LLDB 36a1aaa66bSDimitry Andric# SRCS_XDL: required for MK_CLANG_EXTRAS, MK_LLD and MK_LLDB 37a1aaa66bSDimitry Andric# SRCS_XDW: required for MK_CLANG_EXTRAS and MK_LLDB in world stage 38a1aaa66bSDimitry Andric 39986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasAnalysis.cpp 40986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasAnalysisEvaluator.cpp 41986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasAnalysisSummary.cpp 42986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasSetTracker.cpp 43986e05bcSDimitry AndricSRCS_EXT+= Analysis/Analysis.cpp 4448aaf27bSDimitry AndricSRCS_MIN+= Analysis/AssumeBundleQueries.cpp 45986e05bcSDimitry AndricSRCS_MIN+= Analysis/AssumptionCache.cpp 46986e05bcSDimitry AndricSRCS_MIN+= Analysis/BasicAliasAnalysis.cpp 47986e05bcSDimitry AndricSRCS_MIN+= Analysis/BlockFrequencyInfo.cpp 48986e05bcSDimitry AndricSRCS_MIN+= Analysis/BlockFrequencyInfoImpl.cpp 49986e05bcSDimitry AndricSRCS_MIN+= Analysis/BranchProbabilityInfo.cpp 50986e05bcSDimitry AndricSRCS_MIN+= Analysis/CFG.cpp 51986e05bcSDimitry AndricSRCS_MIN+= Analysis/CFGPrinter.cpp 52986e05bcSDimitry AndricSRCS_MIN+= Analysis/CFLAndersAliasAnalysis.cpp 53986e05bcSDimitry AndricSRCS_MIN+= Analysis/CFLSteensAliasAnalysis.cpp 54986e05bcSDimitry AndricSRCS_MIN+= Analysis/CGSCCPassManager.cpp 55986e05bcSDimitry AndricSRCS_MIN+= Analysis/CallGraph.cpp 56986e05bcSDimitry AndricSRCS_MIN+= Analysis/CallGraphSCCPass.cpp 57986e05bcSDimitry AndricSRCS_MIN+= Analysis/CallPrinter.cpp 58986e05bcSDimitry AndricSRCS_MIN+= Analysis/CaptureTracking.cpp 5936cb3905SDimitry AndricSRCS_MIN+= Analysis/CmpInstAnalysis.cpp 60986e05bcSDimitry AndricSRCS_MIN+= Analysis/CodeMetrics.cpp 61986e05bcSDimitry AndricSRCS_MIN+= Analysis/ConstantFolding.cpp 62e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/ConstraintSystem.cpp 63986e05bcSDimitry AndricSRCS_MIN+= Analysis/CostModel.cpp 6404eeddc0SDimitry AndricSRCS_MIN+= Analysis/CycleAnalysis.cpp 659771cac2SDimitry AndricSRCS_MIN+= Analysis/DDG.cpp 66e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/DDGPrinter.cpp 67986e05bcSDimitry AndricSRCS_MIN+= Analysis/Delinearization.cpp 68986e05bcSDimitry AndricSRCS_MIN+= Analysis/DemandedBits.cpp 69986e05bcSDimitry AndricSRCS_MIN+= Analysis/DependenceAnalysis.cpp 709771cac2SDimitry AndricSRCS_MIN+= Analysis/DependenceGraphBuilder.cpp 71986e05bcSDimitry AndricSRCS_MIN+= Analysis/DivergenceAnalysis.cpp 72986e05bcSDimitry AndricSRCS_MIN+= Analysis/DomPrinter.cpp 734014a71fSDimitry AndricSRCS_MIN+= Analysis/DomTreeUpdater.cpp 74986e05bcSDimitry AndricSRCS_MIN+= Analysis/DominanceFrontier.cpp 75986e05bcSDimitry AndricSRCS_MIN+= Analysis/EHPersonalities.cpp 76e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/FunctionPropertiesAnalysis.cpp 77986e05bcSDimitry AndricSRCS_MIN+= Analysis/GlobalsModRef.cpp 785e86819cSDimitry AndricSRCS_MIN+= Analysis/GuardUtils.cpp 7948aaf27bSDimitry AndricSRCS_MIN+= Analysis/HeatUtils.cpp 80e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/IRSimilarityIdentifier.cpp 815e86819cSDimitry AndricSRCS_MIN+= Analysis/IVDescriptors.cpp 82986e05bcSDimitry AndricSRCS_MIN+= Analysis/IVUsers.cpp 83e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/ImportedFunctionsInliningStatistics.cpp 84986e05bcSDimitry AndricSRCS_MIN+= Analysis/IndirectCallPromotionAnalysis.cpp 8548aaf27bSDimitry AndricSRCS_MIN+= Analysis/InlineAdvisor.cpp 86986e05bcSDimitry AndricSRCS_MIN+= Analysis/InlineCost.cpp 8748aaf27bSDimitry AndricSRCS_MIN+= Analysis/InlineSizeEstimatorAnalysis.cpp 88986e05bcSDimitry AndricSRCS_MIN+= Analysis/InstCount.cpp 895e86819cSDimitry AndricSRCS_MIN+= Analysis/InstructionPrecedenceTracking.cpp 90986e05bcSDimitry AndricSRCS_MIN+= Analysis/InstructionSimplify.cpp 91986e05bcSDimitry AndricSRCS_MIN+= Analysis/Interval.cpp 92986e05bcSDimitry AndricSRCS_MIN+= Analysis/IntervalPartition.cpp 93986e05bcSDimitry AndricSRCS_MIN+= Analysis/LazyBlockFrequencyInfo.cpp 9409bfd043SDimitry AndricSRCS_MIN+= Analysis/LazyBranchProbabilityInfo.cpp 95986e05bcSDimitry AndricSRCS_MIN+= Analysis/LazyCallGraph.cpp 96986e05bcSDimitry AndricSRCS_MIN+= Analysis/LazyValueInfo.cpp 975e86819cSDimitry AndricSRCS_MIN+= Analysis/LegacyDivergenceAnalysis.cpp 98986e05bcSDimitry AndricSRCS_MIN+= Analysis/Lint.cpp 99986e05bcSDimitry AndricSRCS_MIN+= Analysis/Loads.cpp 100986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopAccessAnalysis.cpp 101f1a29dd3SDimitry AndricSRCS_MIN+= Analysis/LoopAnalysisManager.cpp 1029771cac2SDimitry AndricSRCS_MIN+= Analysis/LoopCacheAnalysis.cpp 103986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopInfo.cpp 10448aaf27bSDimitry AndricSRCS_MIN+= Analysis/LoopNestAnalysis.cpp 105986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopPass.cpp 106986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopUnrollAnalyzer.cpp 107986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemDepPrinter.cpp 108986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemDerefPrinter.cpp 109986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemoryBuiltins.cpp 110986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemoryDependenceAnalysis.cpp 111986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemoryLocation.cpp 1125897d2f0SDimitry AndricSRCS_MIN+= Analysis/MemorySSA.cpp 1135897d2f0SDimitry AndricSRCS_MIN+= Analysis/MemorySSAUpdater.cpp 114986e05bcSDimitry AndricSRCS_MIN+= Analysis/ModuleDebugInfoPrinter.cpp 115986e05bcSDimitry AndricSRCS_MIN+= Analysis/ModuleSummaryAnalysis.cpp 1169f6e9a9fSDimitry AndricSRCS_MIN+= Analysis/MustExecute.cpp 117986e05bcSDimitry AndricSRCS_MIN+= Analysis/ObjCARCAliasAnalysis.cpp 118986e05bcSDimitry AndricSRCS_MIN+= Analysis/ObjCARCAnalysisUtils.cpp 119986e05bcSDimitry AndricSRCS_MIN+= Analysis/ObjCARCInstKind.cpp 12036cb3905SDimitry AndricSRCS_MIN+= Analysis/OptimizationRemarkEmitter.cpp 121fe6060f1SDimitry AndricSRCS_MIN+= Analysis/OverflowInstAnalysis.cpp 122986e05bcSDimitry AndricSRCS_MIN+= Analysis/PHITransAddr.cpp 1239f6e9a9fSDimitry AndricSRCS_MIN+= Analysis/PhiValues.cpp 124986e05bcSDimitry AndricSRCS_MIN+= Analysis/PostDominators.cpp 125986e05bcSDimitry AndricSRCS_MIN+= Analysis/ProfileSummaryInfo.cpp 126986e05bcSDimitry AndricSRCS_MIN+= Analysis/PtrUseVisitor.cpp 127986e05bcSDimitry AndricSRCS_MIN+= Analysis/RegionInfo.cpp 128986e05bcSDimitry AndricSRCS_MIN+= Analysis/RegionPass.cpp 129986e05bcSDimitry AndricSRCS_MIN+= Analysis/RegionPrinter.cpp 130e8d8bef9SDimitry AndricSRCS_MIN+= Analysis/ReplayInlineAdvisor.cpp 131986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolution.cpp 13248aaf27bSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolution.cpp 133986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolutionAliasAnalysis.cpp 13448aaf27bSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolutionDivision.cpp 135986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolutionNormalization.cpp 136986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScopedNoAliasAA.cpp 13748aaf27bSDimitry AndricSRCS_MIN+= Analysis/StackLifetime.cpp 1385e86819cSDimitry AndricSRCS_MIN+= Analysis/StackSafetyAnalysis.cpp 1395e86819cSDimitry AndricSRCS_MIN+= Analysis/SyncDependenceAnalysis.cpp 1409f6e9a9fSDimitry AndricSRCS_MIN+= Analysis/SyntheticCountsUtils.cpp 141986e05bcSDimitry AndricSRCS_MIN+= Analysis/TargetLibraryInfo.cpp 142986e05bcSDimitry AndricSRCS_MIN+= Analysis/TargetTransformInfo.cpp 143986e05bcSDimitry AndricSRCS_MIN+= Analysis/TypeBasedAliasAnalysis.cpp 144986e05bcSDimitry AndricSRCS_MIN+= Analysis/TypeMetadataUtils.cpp 1459771cac2SDimitry AndricSRCS_MIN+= Analysis/VFABIDemangling.cpp 14636cb3905SDimitry AndricSRCS_MIN+= Analysis/ValueLattice.cpp 14736cb3905SDimitry AndricSRCS_MIN+= Analysis/ValueLatticeUtils.cpp 148986e05bcSDimitry AndricSRCS_MIN+= Analysis/ValueTracking.cpp 149986e05bcSDimitry AndricSRCS_MIN+= Analysis/VectorUtils.cpp 150986e05bcSDimitry AndricSRCS_MIN+= AsmParser/LLLexer.cpp 151986e05bcSDimitry AndricSRCS_MIN+= AsmParser/LLParser.cpp 152986e05bcSDimitry AndricSRCS_MIN+= AsmParser/Parser.cpp 1531b85b68dSCameron KatriSRCS_MIN+= BinaryFormat/AMDGPUMetadataVerifier.cpp 15444389c28SDimitry AndricSRCS_MIN+= BinaryFormat/Dwarf.cpp 15544389c28SDimitry AndricSRCS_MIN+= BinaryFormat/Magic.cpp 15648aaf27bSDimitry AndricSRCS_MIN+= BinaryFormat/MachO.cpp 1571b85b68dSCameron KatriSRCS_MIN+= BinaryFormat/MsgPackDocument.cpp 1581b85b68dSCameron KatriSRCS_MIN+= BinaryFormat/MsgPackDocumentYAML.cpp 1591b85b68dSCameron KatriSRCS_MIN+= BinaryFormat/MsgPackReader.cpp 16079239b5bSDimitry AndricSRCS_MIN+= BinaryFormat/MsgPackWriter.cpp 1619f6e9a9fSDimitry AndricSRCS_MIN+= BinaryFormat/Wasm.cpp 1629771cac2SDimitry AndricSRCS_MIN+= BinaryFormat/XCOFF.cpp 16309bfd043SDimitry AndricSRCS_MIN+= Bitcode/Reader/BitReader.cpp 16424b8043eSDimitry AndricSRCS_EXT+= Bitcode/Reader/BitcodeAnalyzer.cpp 165986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Reader/BitcodeReader.cpp 16609bfd043SDimitry AndricSRCS_MIN+= Bitcode/Reader/MetadataLoader.cpp 16709bfd043SDimitry AndricSRCS_MIN+= Bitcode/Reader/ValueList.cpp 168986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Writer/BitcodeWriter.cpp 169986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Writer/BitcodeWriterPass.cpp 170986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Writer/ValueEnumerator.cpp 1714014a71fSDimitry AndricSRCS_MIN+= Bitstream/Reader/BitstreamReader.cpp 172986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AggressiveAntiDepBreaker.cpp 173986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AllocationOrder.cpp 174986e05bcSDimitry AndricSRCS_MIN+= CodeGen/Analysis.cpp 175e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AIXException.cpp 176986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/ARMException.cpp 1779f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AccelTable.cpp 178986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AddressPool.cpp 179986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AsmPrinter.cpp 180986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AsmPrinterDwarf.cpp 181986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp 182986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/CodeViewDebug.cpp 183986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DIE.cpp 184986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DIEHash.cpp 1855e86819cSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp 186986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DebugHandlerBase.cpp 187986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DebugLocStream.cpp 188986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfCFIException.cpp 189986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfCompileUnit.cpp 190986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfDebug.cpp 191986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfExpression.cpp 192986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfFile.cpp 193986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfStringPool.cpp 194986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfUnit.cpp 195986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/EHStreamer.cpp 19624b8043eSDimitry AndricSRCS_EXT+= CodeGen/AsmPrinter/ErlangGCPrinter.cpp 197986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/OcamlGCPrinter.cpp 198e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/PseudoProbePrinter.cpp 1995e86819cSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/WasmException.cpp 2009f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/WinCFGuard.cpp 201986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/WinException.cpp 202986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AtomicExpandPass.cpp 203e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/BasicBlockSections.cpp 204986e05bcSDimitry AndricSRCS_MIN+= CodeGen/BasicTargetTransformInfo.cpp 205986e05bcSDimitry AndricSRCS_MIN+= CodeGen/BranchFolding.cpp 20609bfd043SDimitry AndricSRCS_MIN+= CodeGen/BranchRelaxation.cpp 2079f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/BreakFalseDeps.cpp 2089771cac2SDimitry AndricSRCS_MIN+= CodeGen/CFGuardLongjmp.cpp 2099f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/CFIInstrInserter.cpp 210986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CalcSpillWeights.cpp 211986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CallingConvLower.cpp 212986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CodeGen.cpp 2135e801ac6SDimitry AndricSRCS_MIN+= CodeGen/CodeGenCommonISel.cpp 214986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CodeGenPrepare.cpp 21548aaf27bSDimitry AndricSRCS_EXL+= CodeGen/CommandFlags.cpp 216986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CriticalAntiDepBreaker.cpp 217986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DFAPacketizer.cpp 218986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DeadMachineInstructionElim.cpp 219986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DetectDeadLanes.cpp 220986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DwarfEHPrepare.cpp 221fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/EHContGuardCatchret.cpp 222986e05bcSDimitry AndricSRCS_MIN+= CodeGen/EarlyIfConversion.cpp 223986e05bcSDimitry AndricSRCS_MIN+= CodeGen/EdgeBundles.cpp 2249f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/ExecutionDomainFix.cpp 22536cb3905SDimitry AndricSRCS_MIN+= CodeGen/ExpandMemCmp.cpp 226986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ExpandPostRAPseudos.cpp 2275517e702SDimitry AndricSRCS_MIN+= CodeGen/ExpandReductions.cpp 228fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/ExpandVectorPredication.cpp 2295897d2f0SDimitry AndricSRCS_MIN+= CodeGen/FEntryInserter.cpp 230986e05bcSDimitry AndricSRCS_MIN+= CodeGen/FaultMaps.cpp 2314014a71fSDimitry AndricSRCS_MIN+= CodeGen/FinalizeISel.cpp 23248aaf27bSDimitry AndricSRCS_MIN+= CodeGen/FixupStatepointCallerSaved.cpp 233986e05bcSDimitry AndricSRCS_MIN+= CodeGen/FuncletLayout.cpp 234986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GCMetadata.cpp 23509bfd043SDimitry AndricSRCS_MIN+= CodeGen/GCMetadataPrinter.cpp 236986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GCRootLowering.cpp 2375e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/CSEInfo.cpp 2385e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/CSEMIRBuilder.cpp 2395e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Combiner.cpp 2405e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/CombinerHelper.cpp 2413d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/CallLowering.cpp 2425e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/GISelChangeObserver.cpp 2439771cac2SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/GISelKnownBits.cpp 244986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/GlobalISel.cpp 2453d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/IRTranslator.cpp 24648aaf27bSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/InlineAsmLowering.cpp 2473d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/InstructionSelect.cpp 2483d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/InstructionSelector.cpp 249fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegacyLegalizerInfo.cpp 2509f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalityPredicates.cpp 2519f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalizeMutations.cpp 2523d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Legalizer.cpp 2533d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalizerHelper.cpp 2543d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalizerInfo.cpp 2555e801ac6SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LoadStoreOpt.cpp 256302affcbSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Localizer.cpp 25748aaf27bSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LostDebugLocObserver.cpp 2583d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/MachineIRBuilder.cpp 2593d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/RegBankSelect.cpp 2603d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/RegisterBank.cpp 2613d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/RegisterBankInfo.cpp 2623d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Utils.cpp 263986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GlobalMerge.cpp 2644014a71fSDimitry AndricSRCS_MIN+= CodeGen/HardwareLoops.cpp 265986e05bcSDimitry AndricSRCS_MIN+= CodeGen/IfConversion.cpp 266986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ImplicitNullChecks.cpp 26707577dfeSDimitry AndricSRCS_MIN+= CodeGen/IndirectBrExpandPass.cpp 268986e05bcSDimitry AndricSRCS_MIN+= CodeGen/InlineSpiller.cpp 269986e05bcSDimitry AndricSRCS_MIN+= CodeGen/InterferenceCache.cpp 270986e05bcSDimitry AndricSRCS_MIN+= CodeGen/InterleavedAccessPass.cpp 2715e86819cSDimitry AndricSRCS_MIN+= CodeGen/InterleavedLoadCombinePass.cpp 272986e05bcSDimitry AndricSRCS_MIN+= CodeGen/IntrinsicLowering.cpp 273986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LLVMTargetMachine.cpp 274986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LatencyPriorityQueue.cpp 2755897d2f0SDimitry AndricSRCS_MIN+= CodeGen/LazyMachineBlockFrequencyInfo.cpp 276986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LexicalScopes.cpp 277e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/LiveDebugValues/InstrRefBasedImpl.cpp 278e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/LiveDebugValues/LiveDebugValues.cpp 279e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/LiveDebugValues/VarLocBasedImpl.cpp 280986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveDebugVariables.cpp 281986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveInterval.cpp 28248aaf27bSDimitry AndricSRCS_MIN+= CodeGen/LiveIntervalCalc.cpp 283986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveIntervalUnion.cpp 28444389c28SDimitry AndricSRCS_MIN+= CodeGen/LiveIntervals.cpp 285986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LivePhysRegs.cpp 286986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveRangeCalc.cpp 287986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveRangeEdit.cpp 288f9448bf3SDimitry AndricSRCS_MIN+= CodeGen/LiveRangeShrink.cpp 289986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveRegMatrix.cpp 2905897d2f0SDimitry AndricSRCS_MIN+= CodeGen/LiveRegUnits.cpp 2912757ff7eSDimitry AndricSRCS_MIN+= CodeGen/LiveStacks.cpp 292986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveVariables.cpp 293986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LocalStackSlotAllocation.cpp 2949f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/LoopTraversal.cpp 29509bfd043SDimitry AndricSRCS_MIN+= CodeGen/LowLevelType.cpp 296986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LowerEmuTLS.cpp 29748aaf27bSDimitry AndricSRCS_MIN+= CodeGen/MBFIWrapper.cpp 29836cb3905SDimitry AndricSRCS_MIN+= CodeGen/MIRCanonicalizerPass.cpp 299fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/MIRFSDiscriminator.cpp 3009771cac2SDimitry AndricSRCS_MIN+= CodeGen/MIRNamerPass.cpp 301986e05bcSDimitry AndricSRCS_EXT+= CodeGen/MIRParser/MILexer.cpp 302986e05bcSDimitry AndricSRCS_EXT+= CodeGen/MIRParser/MIParser.cpp 303986e05bcSDimitry AndricSRCS_EXT+= CodeGen/MIRParser/MIRParser.cpp 304986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MIRPrinter.cpp 305986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MIRPrintingPass.cpp 3065e801ac6SDimitry AndricSRCS_MIN+= CodeGen/MIRSampleProfile.cpp 3079771cac2SDimitry AndricSRCS_MIN+= CodeGen/MIRVRegNamerUtils.cpp 30804eeddc0SDimitry AndricSRCS_MIN+= CodeGen/MLRegallocEvictAdvisor.cpp 309986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBasicBlock.cpp 310986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBlockFrequencyInfo.cpp 311986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBlockPlacement.cpp 312986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBranchProbabilityInfo.cpp 313986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineCSE.cpp 314e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/MachineCheckDebugify.cpp 315986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineCombiner.cpp 316986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineCopyPropagation.cpp 31704eeddc0SDimitry AndricSRCS_MIN+= CodeGen/MachineCycleAnalysis.cpp 31848aaf27bSDimitry AndricSRCS_MIN+= CodeGen/MachineDebugify.cpp 319986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineDominanceFrontier.cpp 320986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineDominators.cpp 321f37b6182SDimitry AndricSRCS_MIN+= CodeGen/MachineFrameInfo.cpp 322986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineFunction.cpp 323986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineFunctionPass.cpp 324986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineFunctionPrinterPass.cpp 325e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/MachineFunctionSplitter.cpp 326986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineInstr.cpp 327986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineInstrBundle.cpp 328986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineLICM.cpp 329986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineLoopInfo.cpp 3309771cac2SDimitry AndricSRCS_MIN+= CodeGen/MachineLoopUtils.cpp 331986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineModuleInfo.cpp 332986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineModuleInfoImpls.cpp 333fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/MachineModuleSlotTracker.cpp 33436cb3905SDimitry AndricSRCS_MIN+= CodeGen/MachineOperand.cpp 3355897d2f0SDimitry AndricSRCS_MIN+= CodeGen/MachineOptimizationRemarkEmitter.cpp 3365897d2f0SDimitry AndricSRCS_MIN+= CodeGen/MachineOutliner.cpp 33709bfd043SDimitry AndricSRCS_MIN+= CodeGen/MachinePipeliner.cpp 338986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachinePostDominators.cpp 339986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineRegionInfo.cpp 340986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineRegisterInfo.cpp 34104eeddc0SDimitry AndricSRCS_MIN+= CodeGen/MachineSSAContext.cpp 342986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineSSAUpdater.cpp 343986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineScheduler.cpp 344986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineSink.cpp 3459771cac2SDimitry AndricSRCS_MIN+= CodeGen/MachineSizeOpts.cpp 346e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/MachineStableHash.cpp 34748aaf27bSDimitry AndricSRCS_MIN+= CodeGen/MachineStripDebug.cpp 348986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineTraceMetrics.cpp 349986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineVerifier.cpp 350edd7eaddSDimitry AndricSRCS_MIN+= CodeGen/MacroFusion.cpp 3519771cac2SDimitry AndricSRCS_MIN+= CodeGen/ModuloSchedule.cpp 352e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/MultiHazardRecognizer.cpp 353986e05bcSDimitry AndricSRCS_MIN+= CodeGen/OptimizePHIs.cpp 354986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PHIElimination.cpp 355986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PHIEliminationUtils.cpp 356986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ParallelCG.cpp 357986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PatchableFunction.cpp 358986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PeepholeOptimizer.cpp 359986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PostRAHazardRecognizer.cpp 360986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PostRASchedulerList.cpp 361986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PreISelIntrinsicLowering.cpp 362986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ProcessImplicitDefs.cpp 363986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PrologEpilogInserter.cpp 364e8d8bef9SDimitry AndricSRCS_MIN+= CodeGen/PseudoProbeInserter.cpp 365986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PseudoSourceValue.cpp 3669f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/ReachingDefAnalysis.cpp 367fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/ReplaceWithVeclib.cpp 3680946e70aSDimitry AndricSRCS_MIN+= CodeGen/RDFGraph.cpp 3690946e70aSDimitry AndricSRCS_MIN+= CodeGen/RDFLiveness.cpp 3700946e70aSDimitry AndricSRCS_MIN+= CodeGen/RDFRegisters.cpp 371986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocBase.cpp 372986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocBasic.cpp 37304eeddc0SDimitry AndricSRCS_MIN+= CodeGen/RegAllocEvictionAdvisor.cpp 374986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocFast.cpp 375986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocGreedy.cpp 376986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocPBQP.cpp 377986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegUsageInfoCollector.cpp 378986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegUsageInfoPropagate.cpp 379986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterClassInfo.cpp 380986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterCoalescer.cpp 381986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterPressure.cpp 382986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterScavenging.cpp 383986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterUsageInfo.cpp 384fe6060f1SDimitry AndricSRCS_MIN+= CodeGen/RemoveRedundantDebugValues.cpp 385986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RenameIndependentSubregs.cpp 38609bfd043SDimitry AndricSRCS_MIN+= CodeGen/ResetMachineFunctionPass.cpp 387986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SafeStack.cpp 388986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SafeStackLayout.cpp 389986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScheduleDAG.cpp 390986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScheduleDAGInstrs.cpp 391986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScheduleDAGPrinter.cpp 392986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScoreboardHazardRecognizer.cpp 393986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/DAGCombiner.cpp 394986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/FastISel.cpp 395986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/FunctionLoweringInfo.cpp 396986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/InstrEmitter.cpp 397986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeDAG.cpp 398986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeFloatTypes.cpp 399986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp 400986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeTypes.cpp 401986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp 402986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeVectorOps.cpp 403986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeVectorTypes.cpp 404986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ResourcePriorityQueue.cpp 405986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGFast.cpp 406986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGRRList.cpp 407986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp 408986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp 409986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAG.cpp 41044389c28SDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp 411986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGBuilder.cpp 412986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGDumper.cpp 413986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGISel.cpp 414986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGPrinter.cpp 415986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp 416986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/StatepointLowering.cpp 417986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/TargetLowering.cpp 418986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ShadowStackGCLowering.cpp 419986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ShrinkWrap.cpp 420986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SjLjEHPrepare.cpp 421986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SlotIndexes.cpp 422986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SpillPlacement.cpp 423986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SplitKit.cpp 424986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackColoring.cpp 425986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackMapLivenessAnalysis.cpp 426986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackMaps.cpp 427986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackProtector.cpp 428986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackSlotColoring.cpp 4294014a71fSDimitry AndricSRCS_MIN+= CodeGen/SwiftErrorValueTracking.cpp 4304014a71fSDimitry AndricSRCS_MIN+= CodeGen/SwitchLoweringUtils.cpp 431986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TailDuplication.cpp 432986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TailDuplicator.cpp 433986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetFrameLoweringImpl.cpp 434986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetInstrInfo.cpp 435986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetLoweringBase.cpp 436986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetLoweringObjectFileImpl.cpp 437986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetOptionsImpl.cpp 438986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetPassConfig.cpp 439986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetRegisterInfo.cpp 440986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetSchedule.cpp 44109bfd043SDimitry AndricSRCS_MIN+= CodeGen/TargetSubtargetInfo.cpp 442986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TwoAddressInstructionPass.cpp 4439771cac2SDimitry AndricSRCS_MIN+= CodeGen/TypePromotion.cpp 444986e05bcSDimitry AndricSRCS_MIN+= CodeGen/UnreachableBlockElim.cpp 4459f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/ValueTypes.cpp 446986e05bcSDimitry AndricSRCS_MIN+= CodeGen/VirtRegMap.cpp 4479f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/WasmEHPrepare.cpp 448986e05bcSDimitry AndricSRCS_MIN+= CodeGen/WinEHPrepare.cpp 449986e05bcSDimitry AndricSRCS_MIN+= CodeGen/XRayInstrumentation.cpp 450fe6060f1SDimitry AndricSRCS_EXT+= DWP/DWP.cpp 451fe6060f1SDimitry AndricSRCS_EXT+= DWP/DWPError.cpp 4523cd201a1SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/AppendingTypeTableBuilder.cpp 45309bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CVSymbolVisitor.cpp 454986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CVTypeVisitor.cpp 455986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CodeViewError.cpp 45609bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CodeViewRecordIO.cpp 45736cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/ContinuationRecordBuilder.cpp 4581b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/DebugChecksumsSubsection.cpp 459db17bf38SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugCrossExSubsection.cpp 460db17bf38SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugCrossImpSubsection.cpp 4611b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/DebugFrameDataSubsection.cpp 4621b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp 4631b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/DebugLinesSubsection.cpp 4641b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/DebugStringTableSubsection.cpp 4655e801ac6SDimitry AndricSRCS_MIW+= DebugInfo/CodeView/DebugSubsection.cpp 46689cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSubsectionRecord.cpp 46789cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSubsectionVisitor.cpp 468db17bf38SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSymbolRVASubsection.cpp 46989cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSymbolsSubsection.cpp 4705e86819cSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/EnumTables.cpp 4715897d2f0SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/Formatters.cpp 47236cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/GlobalTypeTableBuilder.cpp 4731b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/LazyRandomTypeCollection.cpp 474986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/Line.cpp 4751b85b68dSCameron KatriSRCS_MIN+= DebugInfo/CodeView/MergingTypeTableBuilder.cpp 47636cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/RecordName.cpp 477986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/RecordSerialization.cpp 47836cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/SimpleTypeSerializer.cpp 47924d58133SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/StringsAndChecksums.cpp 480986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/SymbolDumper.cpp 48109bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/SymbolRecordMapping.cpp 482050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/SymbolSerializer.cpp 483f1a29dd3SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeDumpVisitor.cpp 48436cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeHashing.cpp 485d8866befSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeIndex.cpp 48606230659SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeIndexDiscovery.cpp 487efa75597SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/TypeRecordHelpers.cpp 48809bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeRecordMapping.cpp 489986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeStreamMerger.cpp 490d8866befSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeTableCollection.cpp 491caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp 492caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFAcceleratorTable.cpp 4930db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFAddressRange.cpp 494caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFCompileUnit.cpp 495caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFContext.cpp 4960db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDataExtractor.cpp 497caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugAbbrev.cpp 49899be4f2aSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugAddr.cpp 4990db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugArangeSet.cpp 500caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugAranges.cpp 501caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugFrame.cpp 5020db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugInfoEntry.cpp 503caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugLine.cpp 504caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugLoc.cpp 5050db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugMacro.cpp 506caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugPubTable.cpp 507caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugRangeList.cpp 50867b158f6SDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugRnglists.cpp 509caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDie.cpp 510e89f883aSDimitry AndricSRCS_MIN+= DebugInfo/DWARF/DWARFExpression.cpp 511caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFFormValue.cpp 512caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFGdbIndex.cpp 51367b158f6SDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFListTable.cpp 514caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFTypeUnit.cpp 515caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFUnit.cpp 516caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFUnitIndex.cpp 517caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFVerifier.cpp 51809bfd043SDimitry AndricSRCS_MIN+= DebugInfo/MSF/MSFBuilder.cpp 51909bfd043SDimitry AndricSRCS_MIN+= DebugInfo/MSF/MSFCommon.cpp 52024b8043eSDimitry AndricSRCS_EXT+= DebugInfo/MSF/MSFError.cpp 52109bfd043SDimitry AndricSRCS_MIN+= DebugInfo/MSF/MappedBlockStream.cpp 522986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/GenericError.cpp 52309bfd043SDimitry AndricSRCS_EXT+= DebugInfo/PDB/IPDBSourceFile.cpp 524f37b6182SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiModuleDescriptor.cpp 525f37b6182SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp 5260f5676f4SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiModuleList.cpp 527050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiStream.cpp 528050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiStreamBuilder.cpp 529050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/EnumTables.cpp 5303cd201a1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/GSIStreamBuilder.cpp 531050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/GlobalsStream.cpp 532050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/Hash.cpp 533050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/HashTable.cpp 534050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/InfoStream.cpp 535050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/InfoStreamBuilder.cpp 53624b8043eSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/InjectedSourceStream.cpp 537f37b6182SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/ModuleDebugStream.cpp 538050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NamedStreamMap.cpp 539050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeCompilandSymbol.cpp 540efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumGlobals.cpp 54124b8043eSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumInjectedSources.cpp 54248aaf27bSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumLineNumbers.cpp 543050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumModules.cpp 544e8d8bef9SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumSymbols.cpp 54544389c28SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumTypes.cpp 546050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeExeSymbol.cpp 54748aaf27bSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeFunctionSymbol.cpp 548e8d8bef9SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeInlineSiteSymbol.cpp 54948aaf27bSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeLineNumber.cpp 55048aaf27bSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativePublicSymbol.cpp 551050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeRawSymbol.cpp 552050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeSession.cpp 55348aaf27bSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeSourceFile.cpp 554efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeSymbolEnumerator.cpp 555efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeArray.cpp 556efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeBuiltin.cpp 557efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeEnum.cpp 558efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp 559efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypePointer.cpp 560efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeTypedef.cpp 561efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeUDT.cpp 562efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeVTShape.cpp 563050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBFile.cpp 564050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBFileBuilder.cpp 565b174acefSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBStringTable.cpp 566b174acefSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBStringTableBuilder.cpp 5673d54deb3SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PublicsStream.cpp 5683d54deb3SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/RawError.cpp 569efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/SymbolCache.cpp 570050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/SymbolStream.cpp 571050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/TpiHashing.cpp 572050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/TpiStream.cpp 573050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/TpiStreamBuilder.cpp 574986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDB.cpp 575986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBContext.cpp 576986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBExtras.cpp 577986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBInterfaceAnchors.cpp 578986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymDumper.cpp 579986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbol.cpp 580986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolAnnotation.cpp 581986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolBlock.cpp 582986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCompiland.cpp 583986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCompilandDetails.cpp 584986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCompilandEnv.cpp 585986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCustom.cpp 586986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolData.cpp 587986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolExe.cpp 588986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolFunc.cpp 589986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp 590986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp 591986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolLabel.cpp 592986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolPublicSymbol.cpp 593986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolThunk.cpp 594986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeArray.cpp 595986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp 596986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp 597986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeCustom.cpp 598986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeDimension.cpp 599986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeEnum.cpp 600986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeFriend.cpp 601986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp 602986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp 603986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeManaged.cpp 604986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypePointer.cpp 605986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeTypedef.cpp 606986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeUDT.cpp 607986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeVTable.cpp 608986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp 609986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolUnknown.cpp 610986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolUsingNamespace.cpp 611050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/UDTLayout.cpp 612*d56accc7SDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/DIFetcher.cpp 6130db9a49eSDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/DIPrinter.cpp 61409bfd043SDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/SymbolizableObjectFile.cpp 61509bfd043SDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/Symbolize.cpp 616*d56accc7SDimitry AndricSRCS_MIW+= Debuginfod/DIFetcher.cpp 61704eeddc0SDimitry AndricSRCS_MIW+= Debuginfod/Debuginfod.cpp 61804eeddc0SDimitry AndricSRCS_MIW+= Debuginfod/HTTPClient.cpp 6195e801ac6SDimitry AndricSRCS_MIN+= Demangle/DLangDemangle.cpp 6205e801ac6SDimitry AndricSRCS_MIN+= Demangle/Demangle.cpp 62109bfd043SDimitry AndricSRCS_MIN+= Demangle/ItaniumDemangle.cpp 6225e801ac6SDimitry AndricSRCS_MIN+= Demangle/MicrosoftDemangle.cpp 6235e801ac6SDimitry AndricSRCS_MIN+= Demangle/MicrosoftDemangleNodes.cpp 6245e801ac6SDimitry AndricSRCS_MIN+= Demangle/RustDemangle.cpp 625986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/ExecutionEngine.cpp 626986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/ExecutionEngineBindings.cpp 627986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/GDBRegistrationListener.cpp 628986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/Interpreter/Execution.cpp 629986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/Interpreter/ExternalFunctions.cpp 630986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/Interpreter/Interpreter.cpp 631b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/EHFrameSupport.cpp 63248aaf27bSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF.cpp 6335e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF_aarch64.cpp 634fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF_riscv.cpp 63548aaf27bSDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELF_x86_64.cpp 636fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/ELFLinkGraphBuilder.cpp 637b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/JITLink.cpp 638b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/JITLinkGeneric.cpp 639b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/JITLinkMemoryManager.cpp 640b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/MachO.cpp 641b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp 642b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/MachO_arm64.cpp 643b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/MachO_x86_64.cpp 6445e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/MemoryFlags.cpp 6455e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/aarch64.cpp 646fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/riscv.cpp 647fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/JITLink/x86_64.cpp 648986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/MCJIT/MCJIT.cpp 64967b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/CompileOnDemandLayer.cpp 65024b8043eSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/CompileUtils.cpp 65167b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Core.cpp 652fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/DebugObjectManagerPlugin.cpp 65348aaf27bSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/DebugUtils.cpp 6545e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ELFNixPlatform.cpp 655fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/EPCDebugObjectRegistrar.cpp 656fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/EPCEHFrameRegistrar.cpp 6575e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/EPCGenericDylibManager.cpp 6585e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/EPCGenericJITLinkMemoryManager.cpp 6595e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/EPCGenericRTDyldMemoryManager.cpp 660986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ExecutionUtils.cpp 661fe6060f1SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ExecutorProcessControl.cpp 66267b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/IRCompileLayer.cpp 66367b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/IRTransformLayer.cpp 664986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/IndirectionUtils.cpp 665efa75597SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/JITTargetMachineBuilder.cpp 66667b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/LLJIT.cpp 66767b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Layer.cpp 668efa75597SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/LazyReexports.cpp 66948aaf27bSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/MachOPlatform.cpp 67048aaf27bSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Mangling.cpp 67104eeddc0SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ObjectFileInterface.cpp 672b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ObjectLinkingLayer.cpp 673b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ObjectTransformLayer.cpp 674986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/OrcABISupport.cpp 67567b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp 67604eeddc0SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Shared/AllocationActions.cpp 677e8d8bef9SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Shared/OrcError.cpp 6785e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Shared/OrcRTBridge.cpp 6795e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Shared/SimpleRemoteEPCUtils.cpp 6805e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/SimpleRemoteEPC.cpp 681b1ae9102SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Speculation.cpp 682fe6060f1SDimitry AndricSRCS_XDB+= ExecutionEngine/Orc/TargetProcess/JITLoaderGDB.cpp 683e8d8bef9SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/TargetProcess/RegisterEHFrames.cpp 684e8d8bef9SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/TargetProcess/TargetExecutionUtils.cpp 6855e801ac6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/TaskDispatch.cpp 686efa75597SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ThreadSafeModule.cpp 68709bfd043SDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/JITSymbol.cpp 688986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp 689986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp 690986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp 691986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp 692986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp 693986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp 69409bfd043SDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp 695986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/SectionMemoryManager.cpp 696986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/TargetSelect.cpp 697fe6060f1SDimitry AndricSRCS_MIN+= Frontend/OpenMP/OMP.cpp 69848aaf27bSDimitry AndricSRCS_MIN+= Frontend/OpenMP/OMPContext.cpp 6999771cac2SDimitry AndricSRCS_MIN+= Frontend/OpenMP/OMPIRBuilder.cpp 7004014a71fSDimitry AndricSRCS_MIN+= IR/AbstractCallSite.cpp 701986e05bcSDimitry AndricSRCS_MIN+= IR/AsmWriter.cpp 702e8d8bef9SDimitry AndricSRCS_MIN+= IR/Assumptions.cpp 703986e05bcSDimitry AndricSRCS_MIN+= IR/Attributes.cpp 704986e05bcSDimitry AndricSRCS_MIN+= IR/AutoUpgrade.cpp 705986e05bcSDimitry AndricSRCS_MIN+= IR/BasicBlock.cpp 706fe6060f1SDimitry AndricSRCS_EXT+= IR/BuiltinGCs.cpp 707986e05bcSDimitry AndricSRCS_MIN+= IR/Comdat.cpp 708986e05bcSDimitry AndricSRCS_MIN+= IR/ConstantFold.cpp 709986e05bcSDimitry AndricSRCS_MIN+= IR/ConstantRange.cpp 710986e05bcSDimitry AndricSRCS_MIN+= IR/Constants.cpp 711986e05bcSDimitry AndricSRCS_MIN+= IR/Core.cpp 712986e05bcSDimitry AndricSRCS_MIN+= IR/DIBuilder.cpp 713986e05bcSDimitry AndricSRCS_MIN+= IR/DataLayout.cpp 714986e05bcSDimitry AndricSRCS_MIN+= IR/DebugInfo.cpp 715986e05bcSDimitry AndricSRCS_MIN+= IR/DebugInfoMetadata.cpp 716986e05bcSDimitry AndricSRCS_MIN+= IR/DebugLoc.cpp 71736cb3905SDimitry AndricSRCS_MIN+= IR/DiagnosticHandler.cpp 718986e05bcSDimitry AndricSRCS_MIN+= IR/DiagnosticInfo.cpp 719986e05bcSDimitry AndricSRCS_MIN+= IR/DiagnosticPrinter.cpp 720986e05bcSDimitry AndricSRCS_MIN+= IR/Dominators.cpp 7219771cac2SDimitry AndricSRCS_MIN+= IR/FPEnv.cpp 722986e05bcSDimitry AndricSRCS_MIN+= IR/Function.cpp 723fe6060f1SDimitry AndricSRCS_MIN+= IR/GCStrategy.cpp 724986e05bcSDimitry AndricSRCS_MIN+= IR/GVMaterializer.cpp 725986e05bcSDimitry AndricSRCS_MIN+= IR/Globals.cpp 726986e05bcSDimitry AndricSRCS_MIN+= IR/IRBuilder.cpp 727986e05bcSDimitry AndricSRCS_MIN+= IR/IRPrintingPasses.cpp 728986e05bcSDimitry AndricSRCS_MIN+= IR/InlineAsm.cpp 729986e05bcSDimitry AndricSRCS_MIN+= IR/Instruction.cpp 730986e05bcSDimitry AndricSRCS_MIN+= IR/Instructions.cpp 731986e05bcSDimitry AndricSRCS_MIN+= IR/IntrinsicInst.cpp 732986e05bcSDimitry AndricSRCS_MIN+= IR/LLVMContext.cpp 733986e05bcSDimitry AndricSRCS_MIN+= IR/LLVMContextImpl.cpp 73448aaf27bSDimitry AndricSRCS_MIN+= IR/LLVMRemarkStreamer.cpp 735986e05bcSDimitry AndricSRCS_MIN+= IR/LegacyPassManager.cpp 736986e05bcSDimitry AndricSRCS_MIN+= IR/MDBuilder.cpp 737986e05bcSDimitry AndricSRCS_MIN+= IR/Mangler.cpp 738986e05bcSDimitry AndricSRCS_MIN+= IR/Metadata.cpp 739986e05bcSDimitry AndricSRCS_MIN+= IR/Module.cpp 740986e05bcSDimitry AndricSRCS_MIN+= IR/ModuleSummaryIndex.cpp 741986e05bcSDimitry AndricSRCS_MIN+= IR/Operator.cpp 742986e05bcSDimitry AndricSRCS_MIN+= IR/OptBisect.cpp 743986e05bcSDimitry AndricSRCS_MIN+= IR/Pass.cpp 7445e86819cSDimitry AndricSRCS_MIN+= IR/PassInstrumentation.cpp 745986e05bcSDimitry AndricSRCS_MIN+= IR/PassManager.cpp 746986e05bcSDimitry AndricSRCS_MIN+= IR/PassRegistry.cpp 7475e86819cSDimitry AndricSRCS_MIN+= IR/PassTimingInfo.cpp 748e8d8bef9SDimitry AndricSRCS_MIN+= IR/PrintPasses.cpp 749986e05bcSDimitry AndricSRCS_MIN+= IR/ProfileSummary.cpp 750e8d8bef9SDimitry AndricSRCS_MIN+= IR/PseudoProbe.cpp 751e8d8bef9SDimitry AndricSRCS_MIN+= IR/ReplaceConstant.cpp 75204eeddc0SDimitry AndricSRCS_MIN+= IR/SSAContext.cpp 753c4394386SDimitry AndricSRCS_MIN+= IR/SafepointIRVerifier.cpp 754986e05bcSDimitry AndricSRCS_MIN+= IR/Statepoint.cpp 755986e05bcSDimitry AndricSRCS_MIN+= IR/Type.cpp 756986e05bcSDimitry AndricSRCS_MIN+= IR/TypeFinder.cpp 757986e05bcSDimitry AndricSRCS_MIN+= IR/Use.cpp 758986e05bcSDimitry AndricSRCS_MIN+= IR/User.cpp 759986e05bcSDimitry AndricSRCS_MIN+= IR/Value.cpp 760986e05bcSDimitry AndricSRCS_MIN+= IR/ValueSymbolTable.cpp 761986e05bcSDimitry AndricSRCS_MIN+= IR/Verifier.cpp 762986e05bcSDimitry AndricSRCS_MIN+= IRReader/IRReader.cpp 7635897d2f0SDimitry AndricSRCS_MIN+= LTO/LTO.cpp 76409bfd043SDimitry AndricSRCS_MIN+= LTO/LTOBackend.cpp 76575bc38b9SEd MasteSRCS_EXL+= LTO/LTOCodeGenerator.cpp 76675bc38b9SEd MasteSRCS_EXL+= LTO/LTOModule.cpp 767efa75597SDimitry AndricSRCS_EXL+= LTO/SummaryBasedOptimizations.cpp 76875bc38b9SEd MasteSRCS_EXL+= LTO/ThinLTOCodeGenerator.cpp 76909bfd043SDimitry AndricSRCS_MIN+= LTO/UpdateCompilerUsed.cpp 77031ba4ce8SAlex Richardson# Only needed for clangd/clang-query, uncomment once we build those. 77131ba4ce8SAlex Richardson# SRCS_XDW+= LineEditor/LineEditor.cpp 772986e05bcSDimitry AndricSRCS_MIN+= Linker/IRMover.cpp 773986e05bcSDimitry AndricSRCS_MIN+= Linker/LinkModules.cpp 774986e05bcSDimitry AndricSRCS_MIN+= MC/ConstantPools.cpp 775986e05bcSDimitry AndricSRCS_MIN+= MC/ELFObjectWriter.cpp 776986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmBackend.cpp 777986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfo.cpp 778986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfoCOFF.cpp 779986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfoDarwin.cpp 780986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfoELF.cpp 7814014a71fSDimitry AndricSRCS_MIN+= MC/MCAsmInfoXCOFF.cpp 7829f6e9a9fSDimitry AndricSRCS_MIN+= MC/MCAsmMacro.cpp 783986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmStreamer.cpp 784986e05bcSDimitry AndricSRCS_MIN+= MC/MCAssembler.cpp 785986e05bcSDimitry AndricSRCS_MIN+= MC/MCCodeEmitter.cpp 786986e05bcSDimitry AndricSRCS_MIN+= MC/MCCodeView.cpp 787986e05bcSDimitry AndricSRCS_MIN+= MC/MCContext.cpp 78875bc38b9SEd MasteSRCS_XDL+= MC/MCDisassembler/Disassembler.cpp 78930d4828eSDimitry AndricSRCS_XDW+= MC/MCDisassembler/MCDisassembler.cpp 79030d4828eSDimitry AndricSRCS_XDW+= MC/MCDisassembler/MCExternalSymbolizer.cpp 791986e05bcSDimitry AndricSRCS_MIN+= MC/MCDisassembler/MCRelocationInfo.cpp 79230d4828eSDimitry AndricSRCS_XDW+= MC/MCDisassembler/MCSymbolizer.cpp 793986e05bcSDimitry AndricSRCS_MIN+= MC/MCDwarf.cpp 794986e05bcSDimitry AndricSRCS_MIN+= MC/MCELFObjectTargetWriter.cpp 795986e05bcSDimitry AndricSRCS_MIN+= MC/MCELFStreamer.cpp 796986e05bcSDimitry AndricSRCS_MIN+= MC/MCExpr.cpp 797986e05bcSDimitry AndricSRCS_MIN+= MC/MCFragment.cpp 798986e05bcSDimitry AndricSRCS_MIN+= MC/MCInst.cpp 799986e05bcSDimitry AndricSRCS_MIN+= MC/MCInstPrinter.cpp 800986e05bcSDimitry AndricSRCS_MIN+= MC/MCInstrAnalysis.cpp 801986e05bcSDimitry AndricSRCS_MIN+= MC/MCInstrDesc.cpp 80248aaf27bSDimitry AndricSRCS_MIN+= MC/MCInstrInfo.cpp 803986e05bcSDimitry AndricSRCS_MIN+= MC/MCLinkerOptimizationHint.cpp 804986e05bcSDimitry AndricSRCS_MIN+= MC/MCMachOStreamer.cpp 805986e05bcSDimitry AndricSRCS_MIN+= MC/MCMachObjectTargetWriter.cpp 806986e05bcSDimitry AndricSRCS_MIN+= MC/MCNullStreamer.cpp 807986e05bcSDimitry AndricSRCS_MIN+= MC/MCObjectFileInfo.cpp 808986e05bcSDimitry AndricSRCS_MIN+= MC/MCObjectStreamer.cpp 809986e05bcSDimitry AndricSRCS_MIN+= MC/MCObjectWriter.cpp 810986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/AsmLexer.cpp 811986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/AsmParser.cpp 812986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/COFFAsmParser.cpp 813986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/DarwinAsmParser.cpp 814986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/ELFAsmParser.cpp 8155e801ac6SDimitry AndricSRCS_MIN+= MC/MCParser/GOFFAsmParser.cpp 816986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCAsmLexer.cpp 817986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCAsmParser.cpp 818986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCAsmParserExtension.cpp 819986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCTargetAsmParser.cpp 8205e86819cSDimitry AndricSRCS_MIN+= MC/MCParser/WasmAsmParser.cpp 821fe6060f1SDimitry AndricSRCS_MIN+= MC/MCParser/XCOFFAsmParser.cpp 822e8d8bef9SDimitry AndricSRCS_MIN+= MC/MCPseudoProbe.cpp 823986e05bcSDimitry AndricSRCS_MIN+= MC/MCRegisterInfo.cpp 824986e05bcSDimitry AndricSRCS_MIN+= MC/MCSchedule.cpp 825986e05bcSDimitry AndricSRCS_MIN+= MC/MCSection.cpp 826986e05bcSDimitry AndricSRCS_MIN+= MC/MCSectionCOFF.cpp 827986e05bcSDimitry AndricSRCS_MIN+= MC/MCSectionELF.cpp 828986e05bcSDimitry AndricSRCS_MIN+= MC/MCSectionMachO.cpp 8295897d2f0SDimitry AndricSRCS_MIN+= MC/MCSectionWasm.cpp 8304014a71fSDimitry AndricSRCS_MIN+= MC/MCSectionXCOFF.cpp 831986e05bcSDimitry AndricSRCS_MIN+= MC/MCStreamer.cpp 832986e05bcSDimitry AndricSRCS_MIN+= MC/MCSubtargetInfo.cpp 833986e05bcSDimitry AndricSRCS_MIN+= MC/MCSymbol.cpp 834986e05bcSDimitry AndricSRCS_MIN+= MC/MCSymbolELF.cpp 83548aaf27bSDimitry AndricSRCS_MIN+= MC/MCSymbolXCOFF.cpp 836986e05bcSDimitry AndricSRCS_MIN+= MC/MCTargetOptions.cpp 83748aaf27bSDimitry AndricSRCS_MIN+= MC/MCTargetOptionsCommandFlags.cpp 838986e05bcSDimitry AndricSRCS_MIN+= MC/MCValue.cpp 8395897d2f0SDimitry AndricSRCS_MIN+= MC/MCWasmStreamer.cpp 840986e05bcSDimitry AndricSRCS_MIN+= MC/MCWin64EH.cpp 841edd7eaddSDimitry AndricSRCS_MIN+= MC/MCWinCOFFStreamer.cpp 842986e05bcSDimitry AndricSRCS_MIN+= MC/MCWinEH.cpp 8434014a71fSDimitry AndricSRCS_MIN+= MC/MCXCOFFStreamer.cpp 8444014a71fSDimitry AndricSRCS_MIN+= MC/MCXCOFFObjectTargetWriter.cpp 845986e05bcSDimitry AndricSRCS_MIN+= MC/MachObjectWriter.cpp 846986e05bcSDimitry AndricSRCS_MIN+= MC/StringTableBuilder.cpp 847986e05bcSDimitry AndricSRCS_MIN+= MC/SubtargetFeature.cpp 8485e801ac6SDimitry AndricSRCS_MIN+= MC/TargetRegistry.cpp 8499f6e9a9fSDimitry AndricSRCS_MIN+= MC/WasmObjectWriter.cpp 850986e05bcSDimitry AndricSRCS_MIN+= MC/WinCOFFObjectWriter.cpp 8514014a71fSDimitry AndricSRCS_MIN+= MC/XCOFFObjectWriter.cpp 852b1ae9102SDimitry AndricSRCS_EXT+= MCA/CodeEmitter.cpp 853efa75597SDimitry AndricSRCS_EXT+= MCA/Context.cpp 854fe6060f1SDimitry AndricSRCS_EXT+= MCA/CustomBehaviour.cpp 855efa75597SDimitry AndricSRCS_EXT+= MCA/HWEventListener.cpp 856efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/HardwareUnit.cpp 857efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/LSUnit.cpp 858efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/RegisterFile.cpp 859efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/ResourceManager.cpp 860efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/RetireControlUnit.cpp 861efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/Scheduler.cpp 862efa75597SDimitry AndricSRCS_EXT+= MCA/InstrBuilder.cpp 863efa75597SDimitry AndricSRCS_EXT+= MCA/Instruction.cpp 864efa75597SDimitry AndricSRCS_EXT+= MCA/Pipeline.cpp 865efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/DispatchStage.cpp 866efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/EntryStage.cpp 867efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/ExecuteStage.cpp 868fe6060f1SDimitry AndricSRCS_EXT+= MCA/Stages/InOrderIssueStage.cpp 869efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/InstructionTables.cpp 87024b8043eSDimitry AndricSRCS_EXT+= MCA/Stages/MicroOpQueueStage.cpp 871efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/RetireStage.cpp 872efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/Stage.cpp 873efa75597SDimitry AndricSRCS_EXT+= MCA/Support.cpp 8745e801ac6SDimitry AndricSRCS_EXT+= MCA/View.cpp 875986e05bcSDimitry AndricSRCS_MIN+= Object/Archive.cpp 876986e05bcSDimitry AndricSRCS_MIN+= Object/ArchiveWriter.cpp 877986e05bcSDimitry AndricSRCS_MIN+= Object/Binary.cpp 8789c954a48SEd MasteSRCS_MIN+= Object/COFFImportFile.cpp 8790db9a49eSDimitry AndricSRCS_MIW+= Object/COFFModuleDefinition.cpp 880986e05bcSDimitry AndricSRCS_MIN+= Object/COFFObjectFile.cpp 881f1a29dd3SDimitry AndricSRCS_MIN+= Object/Decompressor.cpp 882986e05bcSDimitry AndricSRCS_MIN+= Object/ELF.cpp 883986e05bcSDimitry AndricSRCS_MIN+= Object/ELFObjectFile.cpp 884986e05bcSDimitry AndricSRCS_MIN+= Object/Error.cpp 885fe6060f1SDimitry AndricSRCS_MIW+= Object/FaultMapParser.cpp 886986e05bcSDimitry AndricSRCS_MIN+= Object/IRObjectFile.cpp 8875897d2f0SDimitry AndricSRCS_MIN+= Object/IRSymtab.cpp 888986e05bcSDimitry AndricSRCS_MIN+= Object/MachOObjectFile.cpp 8890db9a49eSDimitry AndricSRCS_MIW+= Object/MachOUniversal.cpp 890021385abSAlex RichardsonSRCS_MIW+= Object/MachOUniversalWriter.cpp 8910db9a49eSDimitry AndricSRCS_MIW+= Object/Minidump.cpp 89209bfd043SDimitry AndricSRCS_MIN+= Object/ModuleSymbolTable.cpp 893986e05bcSDimitry AndricSRCS_EXT+= Object/Object.cpp 894986e05bcSDimitry AndricSRCS_MIN+= Object/ObjectFile.cpp 895986e05bcSDimitry AndricSRCS_MIN+= Object/RecordStreamer.cpp 8960db9a49eSDimitry AndricSRCS_MIW+= Object/RelocationResolver.cpp 8970db9a49eSDimitry AndricSRCS_MIW+= Object/SymbolSize.cpp 898986e05bcSDimitry AndricSRCS_MIN+= Object/SymbolicFile.cpp 89948aaf27bSDimitry AndricSRCS_MIW+= Object/TapiFile.cpp 900d311d024SDimitry AndricSRCS_MIW+= Object/TapiUniversal.cpp 90109bfd043SDimitry AndricSRCS_MIN+= Object/WasmObjectFile.cpp 9020db9a49eSDimitry AndricSRCS_MIW+= Object/WindowsMachineFlag.cpp 903bbd32193SDimitry AndricSRCS_MIN+= Object/WindowsResource.cpp 9044014a71fSDimitry AndricSRCS_MIN+= Object/XCOFFObjectFile.cpp 905986e05bcSDimitry AndricSRCS_MIN+= ObjectYAML/COFFYAML.cpp 906f9448bf3SDimitry AndricSRCS_EXT+= ObjectYAML/CodeViewYAMLDebugSections.cpp 907f9448bf3SDimitry AndricSRCS_EXT+= ObjectYAML/CodeViewYAMLSymbols.cpp 908f9448bf3SDimitry AndricSRCS_EXT+= ObjectYAML/CodeViewYAMLTypes.cpp 90909bfd043SDimitry AndricSRCS_MIN+= ObjectYAML/DWARFYAML.cpp 910986e05bcSDimitry AndricSRCS_MIN+= ObjectYAML/ELFYAML.cpp 911986e05bcSDimitry AndricSRCS_MIN+= ObjectYAML/MachOYAML.cpp 91224d58133SDimitry AndricSRCS_EXT+= ObjectYAML/YAML.cpp 913986e05bcSDimitry AndricSRCS_MIN+= Option/Arg.cpp 914986e05bcSDimitry AndricSRCS_MIN+= Option/ArgList.cpp 915986e05bcSDimitry AndricSRCS_MIN+= Option/OptTable.cpp 916986e05bcSDimitry AndricSRCS_MIN+= Option/Option.cpp 9175e801ac6SDimitry AndricSRCS_MIN+= Passes/OptimizationLevel.cpp 91809bfd043SDimitry AndricSRCS_MIN+= Passes/PassBuilder.cpp 9195e801ac6SDimitry AndricSRCS_MIN+= Passes/PassBuilderPipelines.cpp 9204014a71fSDimitry AndricSRCS_MIN+= Passes/PassPlugin.cpp 9219771cac2SDimitry AndricSRCS_MIN+= Passes/StandardInstrumentations.cpp 922986e05bcSDimitry AndricSRCS_MIN+= ProfileData/Coverage/CoverageMapping.cpp 923986e05bcSDimitry AndricSRCS_MIN+= ProfileData/Coverage/CoverageMappingReader.cpp 924986e05bcSDimitry AndricSRCS_MIN+= ProfileData/Coverage/CoverageMappingWriter.cpp 9251b49115aSEd MasteSRCS_MIN+= ProfileData/GCOV.cpp 926986e05bcSDimitry AndricSRCS_MIN+= ProfileData/InstrProf.cpp 92704eeddc0SDimitry AndricSRCS_MIN+= ProfileData/InstrProfCorrelator.cpp 928986e05bcSDimitry AndricSRCS_MIN+= ProfileData/InstrProfReader.cpp 929986e05bcSDimitry AndricSRCS_MIN+= ProfileData/InstrProfWriter.cpp 930986e05bcSDimitry AndricSRCS_MIN+= ProfileData/ProfileSummaryBuilder.cpp 9311838bd0fSDimitry AndricSRCS_MIW+= ProfileData/RawMemProfReader.cpp 932986e05bcSDimitry AndricSRCS_MIN+= ProfileData/SampleProf.cpp 933986e05bcSDimitry AndricSRCS_MIN+= ProfileData/SampleProfReader.cpp 934961eb443SEd MasteSRCS_MIN+= ProfileData/SampleProfWriter.cpp 935a2a9ef4bSDimitry AndricSRCS_MIN+= Remarks/BitstreamRemarkParser.cpp 9369771cac2SDimitry AndricSRCS_MIN+= Remarks/BitstreamRemarkSerializer.cpp 9374014a71fSDimitry AndricSRCS_MIN+= Remarks/RemarkFormat.cpp 938a2a9ef4bSDimitry AndricSRCS_MIN+= Remarks/RemarkParser.cpp 9399771cac2SDimitry AndricSRCS_MIN+= Remarks/RemarkSerializer.cpp 94048aaf27bSDimitry AndricSRCS_MIN+= Remarks/RemarkStreamer.cpp 9414014a71fSDimitry AndricSRCS_MIN+= Remarks/RemarkStringTable.cpp 942a2a9ef4bSDimitry AndricSRCS_MIN+= Remarks/YAMLRemarkParser.cpp 9434014a71fSDimitry AndricSRCS_MIN+= Remarks/YAMLRemarkSerializer.cpp 9445e86819cSDimitry AndricSRCS_MIN+= Support/AArch64TargetParser.cpp 945054f9817SDimitry AndricSRCS_MIN+= Support/ABIBreak.cpp 946e8d8bef9SDimitry AndricSRCS_MIN+= Support/APFixedPoint.cpp 947986e05bcSDimitry AndricSRCS_MIN+= Support/APFloat.cpp 948986e05bcSDimitry AndricSRCS_MIN+= Support/APInt.cpp 949986e05bcSDimitry AndricSRCS_MIN+= Support/APSInt.cpp 9505897d2f0SDimitry AndricSRCS_MIN+= Support/ARMAttributeParser.cpp 951986e05bcSDimitry AndricSRCS_MIN+= Support/ARMBuildAttrs.cpp 9525e86819cSDimitry AndricSRCS_MIN+= Support/ARMTargetParser.cpp 9531b85b68dSCameron KatriSRCS_MIN+= Support/ARMWinEH.cpp 954986e05bcSDimitry AndricSRCS_MIN+= Support/Allocator.cpp 9555897d2f0SDimitry AndricSRCS_MIN+= Support/BinaryStreamError.cpp 9565897d2f0SDimitry AndricSRCS_MIN+= Support/BinaryStreamReader.cpp 957d8866befSDimitry AndricSRCS_MIN+= Support/BinaryStreamRef.cpp 9585897d2f0SDimitry AndricSRCS_MIN+= Support/BinaryStreamWriter.cpp 959986e05bcSDimitry AndricSRCS_MIN+= Support/BlockFrequency.cpp 960986e05bcSDimitry AndricSRCS_MIN+= Support/BranchProbability.cpp 9615e86819cSDimitry AndricSRCS_MIN+= Support/BuryPointer.cpp 962986e05bcSDimitry AndricSRCS_MIN+= Support/CachePruning.cpp 96304eeddc0SDimitry AndricSRCS_MIW+= Support/Caching.cpp 9640db9a49eSDimitry AndricSRCS_MIW+= Support/COM.cpp 9654d4aa256SDimitry AndricSRCS_MIN+= Support/CRC.cpp 96609bfd043SDimitry AndricSRCS_MIN+= Support/Chrono.cpp 96736cb3905SDimitry AndricSRCS_MIN+= Support/CodeGenCoverage.cpp 968986e05bcSDimitry AndricSRCS_MIN+= Support/CommandLine.cpp 969986e05bcSDimitry AndricSRCS_MIN+= Support/Compression.cpp 97009bfd043SDimitry AndricSRCS_MIN+= Support/ConvertUTF.cpp 971986e05bcSDimitry AndricSRCS_MIN+= Support/ConvertUTFWrapper.cpp 972986e05bcSDimitry AndricSRCS_MIN+= Support/CrashRecoveryContext.cpp 973986e05bcSDimitry AndricSRCS_MIN+= Support/DAGDeltaAlgorithm.cpp 9749f6e9a9fSDimitry AndricSRCS_MIN+= Support/DJB.cpp 975986e05bcSDimitry AndricSRCS_MIN+= Support/DataExtractor.cpp 976986e05bcSDimitry AndricSRCS_MIN+= Support/Debug.cpp 9775897d2f0SDimitry AndricSRCS_MIN+= Support/DebugCounter.cpp 978986e05bcSDimitry AndricSRCS_MIN+= Support/DeltaAlgorithm.cpp 9795e801ac6SDimitry AndricSRCS_MIN+= Support/DivisionByConstantInfo.cpp 980986e05bcSDimitry AndricSRCS_MIN+= Support/DynamicLibrary.cpp 98148aaf27bSDimitry AndricSRCS_MIN+= Support/ELFAttributeParser.cpp 98248aaf27bSDimitry AndricSRCS_MIN+= Support/ELFAttributes.cpp 983986e05bcSDimitry AndricSRCS_MIN+= Support/Errno.cpp 984986e05bcSDimitry AndricSRCS_MIN+= Support/Error.cpp 985986e05bcSDimitry AndricSRCS_MIN+= Support/ErrorHandling.cpp 986fe6060f1SDimitry AndricSRCS_MIN+= Support/ExtensibleRTTI.cpp 987e8d8bef9SDimitry AndricSRCS_MIN+= Support/FileCollector.cpp 988021385abSAlex RichardsonSRCS_MIW+= Support/FileOutputBuffer.cpp 9899771cac2SDimitry AndricSRCS_MIN+= Support/FileUtilities.cpp 990986e05bcSDimitry AndricSRCS_MIN+= Support/FoldingSet.cpp 99109bfd043SDimitry AndricSRCS_MIN+= Support/FormatVariadic.cpp 992986e05bcSDimitry AndricSRCS_MIN+= Support/FormattedStream.cpp 99309bfd043SDimitry AndricSRCS_MIN+= Support/GlobPattern.cpp 994986e05bcSDimitry AndricSRCS_MIN+= Support/GraphWriter.cpp 995986e05bcSDimitry AndricSRCS_MIN+= Support/Hashing.cpp 996986e05bcSDimitry AndricSRCS_MIN+= Support/Host.cpp 9979f6e9a9fSDimitry AndricSRCS_MIN+= Support/InitLLVM.cpp 998e8d8bef9SDimitry AndricSRCS_MIN+= Support/InstructionCost.cpp 999986e05bcSDimitry AndricSRCS_MIN+= Support/IntEqClasses.cpp 1000986e05bcSDimitry AndricSRCS_MIN+= Support/IntervalMap.cpp 10015e86819cSDimitry AndricSRCS_MIN+= Support/ItaniumManglingCanonicalizer.cpp 10022d31b1b8SDimitry AndricSRCS_MIN+= Support/JSON.cpp 100336cb3905SDimitry AndricSRCS_MIN+= Support/KnownBits.cpp 1004986e05bcSDimitry AndricSRCS_MIN+= Support/LEB128.cpp 1005986e05bcSDimitry AndricSRCS_MIN+= Support/LineIterator.cpp 1006986e05bcSDimitry AndricSRCS_MIN+= Support/Locale.cpp 1007986e05bcSDimitry AndricSRCS_MIN+= Support/LockFileManager.cpp 10085897d2f0SDimitry AndricSRCS_MIN+= Support/LowLevelType.cpp 1009986e05bcSDimitry AndricSRCS_MIN+= Support/MD5.cpp 10105e801ac6SDimitry AndricSRCS_MIW+= Support/MSP430AttributeParser.cpp 10115e801ac6SDimitry AndricSRCS_MIW+= Support/MSP430Attributes.cpp 1012986e05bcSDimitry AndricSRCS_MIN+= Support/ManagedStatic.cpp 1013986e05bcSDimitry AndricSRCS_MIN+= Support/MathExtras.cpp 101448aaf27bSDimitry AndricSRCS_MIN+= Support/MemAlloc.cpp 1015021385abSAlex RichardsonSRCS_MIW+= Support/Memory.cpp 1016986e05bcSDimitry AndricSRCS_MIN+= Support/MemoryBuffer.cpp 1017e8d8bef9SDimitry AndricSRCS_MIN+= Support/MemoryBufferRef.cpp 101809bfd043SDimitry AndricSRCS_MIN+= Support/NativeFormatting.cpp 101948aaf27bSDimitry AndricSRCS_MIN+= Support/OptimizedStructLayout.cpp 10204014a71fSDimitry AndricSRCS_MIN+= Support/Optional.cpp 1021e8d8bef9SDimitry AndricSRCS_EXL+= Support/Parallel.cpp 1022986e05bcSDimitry AndricSRCS_MIN+= Support/Path.cpp 1023986e05bcSDimitry AndricSRCS_MIN+= Support/PluginLoader.cpp 1024986e05bcSDimitry AndricSRCS_MIN+= Support/PrettyStackTrace.cpp 1025986e05bcSDimitry AndricSRCS_MIN+= Support/Process.cpp 1026986e05bcSDimitry AndricSRCS_MIN+= Support/Program.cpp 102748aaf27bSDimitry AndricSRCS_MIN+= Support/RISCVAttributeParser.cpp 102848aaf27bSDimitry AndricSRCS_MIN+= Support/RISCVAttributes.cpp 10295e801ac6SDimitry AndricSRCS_MIN+= Support/RISCVISAInfo.cpp 1030986e05bcSDimitry AndricSRCS_MIN+= Support/RWMutex.cpp 1031986e05bcSDimitry AndricSRCS_MIN+= Support/RandomNumberGenerator.cpp 1032986e05bcSDimitry AndricSRCS_MIN+= Support/Regex.cpp 1033986e05bcSDimitry AndricSRCS_MIN+= Support/SHA1.cpp 10345e801ac6SDimitry AndricSRCS_MIN+= Support/SHA256.cpp 1035986e05bcSDimitry AndricSRCS_MIN+= Support/ScaledNumber.cpp 1036986e05bcSDimitry AndricSRCS_MIN+= Support/ScopedPrinter.cpp 1037986e05bcSDimitry AndricSRCS_MIN+= Support/Signals.cpp 10384014a71fSDimitry AndricSRCS_MIN+= Support/Signposts.cpp 1039986e05bcSDimitry AndricSRCS_MIN+= Support/SmallPtrSet.cpp 1040986e05bcSDimitry AndricSRCS_MIN+= Support/SmallVector.cpp 1041986e05bcSDimitry AndricSRCS_MIN+= Support/SourceMgr.cpp 1042986e05bcSDimitry AndricSRCS_MIN+= Support/SpecialCaseList.cpp 1043986e05bcSDimitry AndricSRCS_MIN+= Support/Statistic.cpp 1044986e05bcSDimitry AndricSRCS_MIN+= Support/StringExtras.cpp 1045986e05bcSDimitry AndricSRCS_MIN+= Support/StringMap.cpp 1046986e05bcSDimitry AndricSRCS_MIN+= Support/StringRef.cpp 1047986e05bcSDimitry AndricSRCS_MIN+= Support/StringSaver.cpp 104848aaf27bSDimitry AndricSRCS_MIN+= Support/SuffixTree.cpp 10495e86819cSDimitry AndricSRCS_MIN+= Support/SymbolRemappingReader.cpp 1050986e05bcSDimitry AndricSRCS_EXT+= Support/SystemUtils.cpp 10511ae4f0f6SDimitry AndricSRCS_LLD+= Support/TarWriter.cpp 1052986e05bcSDimitry AndricSRCS_MIN+= Support/TargetParser.cpp 1053986e05bcSDimitry AndricSRCS_MIN+= Support/ThreadLocal.cpp 10540db9a49eSDimitry AndricSRCS_MIW+= Support/ThreadPool.cpp 1055986e05bcSDimitry AndricSRCS_MIN+= Support/Threading.cpp 10564014a71fSDimitry AndricSRCS_MIN+= Support/TimeProfiler.cpp 1057986e05bcSDimitry AndricSRCS_MIN+= Support/Timer.cpp 1058986e05bcSDimitry AndricSRCS_MIN+= Support/ToolOutputFile.cpp 105909bfd043SDimitry AndricSRCS_MIN+= Support/TrigramIndex.cpp 1060986e05bcSDimitry AndricSRCS_MIN+= Support/Triple.cpp 1061986e05bcSDimitry AndricSRCS_MIN+= Support/Twine.cpp 1062fe6060f1SDimitry AndricSRCS_MIN+= Support/TypeSize.cpp 1063986e05bcSDimitry AndricSRCS_MIN+= Support/Unicode.cpp 10649f6e9a9fSDimitry AndricSRCS_MIN+= Support/UnicodeCaseFold.cpp 1065986e05bcSDimitry AndricSRCS_MIN+= Support/Valgrind.cpp 10665e86819cSDimitry AndricSRCS_MIN+= Support/VirtualFileSystem.cpp 10679f6e9a9fSDimitry AndricSRCS_MIN+= Support/VersionTuple.cpp 10684014a71fSDimitry AndricSRCS_MIN+= Support/Watchdog.cpp 106980a8c751SEd MasteSRCS_MIN+= Support/WithColor.cpp 107048aaf27bSDimitry AndricSRCS_MIN+= Support/X86TargetParser.cpp 1071986e05bcSDimitry AndricSRCS_MIN+= Support/YAMLParser.cpp 1072986e05bcSDimitry AndricSRCS_MIN+= Support/YAMLTraits.cpp 107323559b6aSDimitry AndricSRCS_FUL+= Support/Z3Solver.cpp 1074986e05bcSDimitry AndricSRCS_MIN+= Support/circular_raw_ostream.cpp 1075986e05bcSDimitry AndricSRCS_MIN+= Support/raw_os_ostream.cpp 1076986e05bcSDimitry AndricSRCS_MIN+= Support/raw_ostream.cpp 1077986e05bcSDimitry AndricSRCS_MIN+= Support/regcomp.c 1078986e05bcSDimitry AndricSRCS_MIN+= Support/regerror.c 1079986e05bcSDimitry AndricSRCS_MIN+= Support/regexec.c 1080986e05bcSDimitry AndricSRCS_MIN+= Support/regfree.c 1081986e05bcSDimitry AndricSRCS_MIN+= Support/regstrlcpy.c 108280a8c751SEd MasteSRCS_MIN+= Support/xxhash.cpp 1083d409305fSDimitry AndricSRCS_MIN+= TableGen/DetailedRecordsBackend.cpp 1084986e05bcSDimitry AndricSRCS_MIN+= TableGen/Error.cpp 1085d25b9f8fSDimitry AndricSRCS_MIN+= TableGen/JSONBackend.cpp 1086986e05bcSDimitry AndricSRCS_MIN+= TableGen/Main.cpp 1087986e05bcSDimitry AndricSRCS_MIN+= TableGen/Record.cpp 1088986e05bcSDimitry AndricSRCS_MIN+= TableGen/SetTheory.cpp 1089986e05bcSDimitry AndricSRCS_MIN+= TableGen/StringMatcher.cpp 1090986e05bcSDimitry AndricSRCS_MIN+= TableGen/TGLexer.cpp 1091986e05bcSDimitry AndricSRCS_MIN+= TableGen/TGParser.cpp 1092986e05bcSDimitry AndricSRCS_MIN+= TableGen/TableGenBackend.cpp 1093cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no" 1094986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64A53Fix835769.cpp 1095986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64A57FPLoadBalancing.cpp 1096986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64AdvSIMDScalarPass.cpp 1097986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64AsmPrinter.cpp 10985e86819cSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64BranchTargets.cpp 10994014a71fSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CallingConvention.cpp 1100986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp 1101986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CollectLOH.cpp 11025e86819cSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CompressJumpTables.cpp 1103edd7eaddSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CondBrTuning.cpp 1104986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ConditionOptimizer.cpp 1105986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ConditionalCompares.cpp 1106986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp 11074014a71fSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ExpandImm.cpp 1108986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ExpandPseudoInsts.cpp 1109b40b48b8SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64FalkorHWPFFix.cpp 1110986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64FastISel.cpp 1111986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64FrameLowering.cpp 1112986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ISelDAGToDAG.cpp 1113986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ISelLowering.cpp 1114986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64InstrInfo.cpp 1115986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64LoadStoreOptimizer.cpp 1116fe6060f1SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64LowerHomogeneousPrologEpilog.cpp 1117986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MCInstLower.cpp 11185e801ac6SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MIPeepholeOpt.cpp 111948aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MachineFunctionInfo.cpp 11205897d2f0SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MacroFusion.cpp 1121986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64PBQPRegAlloc.cpp 1122986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64PromoteConstant.cpp 1123986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64RedundantCopyElimination.cpp 1124986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64RegisterInfo.cpp 112536cb3905SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64SIMDInstrOpt.cpp 112648aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64SLSHardening.cpp 1127986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64SelectionDAGInfo.cpp 11285e86819cSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64SpeculationHardening.cpp 11294014a71fSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64StackTagging.cpp 11309771cac2SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64StackTaggingPreRA.cpp 1131986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64StorePairSuppress.cpp 1132986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64Subtarget.cpp 1133986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64TargetMachine.cpp 1134986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64TargetObjectFile.cpp 1135986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64TargetTransformInfo.cpp 1136986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AsmParser/AArch64AsmParser.cpp 113730d4828eSDimitry AndricSRCS_XDW+= Target/AArch64/Disassembler/AArch64Disassembler.cpp 113830d4828eSDimitry AndricSRCS_XDW+= Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp 113948aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64CallLowering.cpp 1140fe6060f1SDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64GlobalISelUtils.cpp 114148aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64InstructionSelector.cpp 114248aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64LegalizerInfo.cpp 1143fe6060f1SDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64O0PreLegalizerCombiner.cpp 114448aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64PreLegalizerCombiner.cpp 114548aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64PostLegalizerCombiner.cpp 1146e8d8bef9SDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64PostLegalizerLowering.cpp 1147e8d8bef9SDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64PostSelectOptimize.cpp 114848aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/GISel/AArch64RegisterBankInfo.cpp 1149986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp 1150986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp 1151986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp 11524014a71fSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp 1153986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp 1154986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp 1155986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp 1156986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp 1157986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp 1158986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp 1159a580b014SDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp 1160a580b014SDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp 116148aaf27bSDimitry AndricSRCS_MIN+= Target/AArch64/SVEIntrinsicOpts.cpp 1162986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/TargetInfo/AArch64TargetInfo.cpp 1163986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/Utils/AArch64BaseInfo.cpp 1164cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64 1165cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no" 1166986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/A15SDOptimizer.cpp 1167986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMAsmPrinter.cpp 1168986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMBaseInstrInfo.cpp 1169986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMBaseRegisterInfo.cpp 11704014a71fSDimitry AndricSRCS_MIN+= Target/ARM/ARMBasicBlockInfo.cpp 1171e8d8bef9SDimitry AndricSRCS_MIN+= Target/ARM/ARMBlockPlacement.cpp 11724824e7fdSDimitry AndricSRCS_MIN+= Target/ARM/ARMBranchTargets.cpp 11733d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMCallLowering.cpp 11744014a71fSDimitry AndricSRCS_MIN+= Target/ARM/ARMCallingConv.cpp 1175986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMConstantIslandPass.cpp 1176986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMConstantPoolValue.cpp 1177986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMExpandPseudoInsts.cpp 1178986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMFastISel.cpp 1179986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMFrameLowering.cpp 1180986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMHazardRecognizer.cpp 1181986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMISelDAGToDAG.cpp 1182986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMISelLowering.cpp 1183986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMInstrInfo.cpp 11843d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMInstructionSelector.cpp 11853d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMLegalizerInfo.cpp 1186986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMLoadStoreOptimizer.cpp 11874014a71fSDimitry AndricSRCS_MIN+= Target/ARM/ARMLowOverheadLoops.cpp 1188986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMMCInstLower.cpp 1189986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMMachineFunctionInfo.cpp 1190edd7eaddSDimitry AndricSRCS_MIN+= Target/ARM/ARMMacroFusion.cpp 1191986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMOptimizeBarriersPass.cpp 11929f6e9a9fSDimitry AndricSRCS_MIN+= Target/ARM/ARMParallelDSP.cpp 11933d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMRegisterBankInfo.cpp 1194986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMRegisterInfo.cpp 1195e8d8bef9SDimitry AndricSRCS_MIN+= Target/ARM/ARMSLSHardening.cpp 1196986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMSelectionDAGInfo.cpp 1197986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMSubtarget.cpp 1198986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMTargetMachine.cpp 1199986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMTargetObjectFile.cpp 1200986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMTargetTransformInfo.cpp 1201986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/AsmParser/ARMAsmParser.cpp 1202986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Disassembler/ARMDisassembler.cpp 1203986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMAsmBackend.cpp 1204986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp 1205986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMELFStreamer.cpp 12064014a71fSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMInstPrinter.cpp 1207986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp 1208986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp 1209986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCExpr.cpp 1210986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp 1211986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp 1212986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp 1213986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp 1214986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp 1215986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp 1216986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp 1217986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MLxExpansionPass.cpp 12189771cac2SDimitry AndricSRCS_MIN+= Target/ARM/MVEGatherScatterLowering.cpp 1219fe6060f1SDimitry AndricSRCS_MIN+= Target/ARM/MVELaneInterleavingPass.cpp 1220fe6060f1SDimitry AndricSRCS_MIN+= Target/ARM/MVETPAndVPTOptimisationsPass.cpp 12219771cac2SDimitry AndricSRCS_MIN+= Target/ARM/MVETailPredication.cpp 12229771cac2SDimitry AndricSRCS_MIN+= Target/ARM/MVEVPTBlockPass.cpp 1223986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/TargetInfo/ARMTargetInfo.cpp 1224986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb1FrameLowering.cpp 1225986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb1InstrInfo.cpp 1226986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb2ITBlockPass.cpp 1227986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb2InstrInfo.cpp 1228986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb2SizeReduction.cpp 1229986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ThumbRegisterInfo.cpp 123036cb3905SDimitry AndricSRCS_MIN+= Target/ARM/Utils/ARMBaseInfo.cpp 1231cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM 123289edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no" 123389edb881SDimitry AndricSRCS_MIN+= Target/BPF/AsmParser/BPFAsmParser.cpp 1234a9365f4aSDimitry AndricSRCS_MIN+= Target/BPF/BPFAbstractMemberAccess.cpp 1235d30dc78fSDimitry AndricSRCS_MIN+= Target/BPF/BPFAdjustOpt.cpp 123689edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFAsmPrinter.cpp 1237d30dc78fSDimitry AndricSRCS_MIN+= Target/BPF/BPFCheckAndAdjustIR.cpp 123889edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFFrameLowering.cpp 12395e801ac6SDimitry AndricSRCS_MIN+= Target/BPF/BPFIRPeephole.cpp 124089edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFISelDAGToDAG.cpp 124189edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFISelLowering.cpp 124289edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFInstrInfo.cpp 124389edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFMCInstLower.cpp 12440a462115SDimitry AndricSRCS_MIN+= Target/BPF/BPFMIChecking.cpp 1245f9c0a512SDimitry AndricSRCS_MIN+= Target/BPF/BPFMIPeephole.cpp 1246a9365f4aSDimitry AndricSRCS_MIN+= Target/BPF/BPFMISimplifyPatchable.cpp 12471c1ab429SDimitry AndricSRCS_MIN+= Target/BPF/BPFPreserveDIType.cpp 124889edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFRegisterInfo.cpp 1249f9c0a512SDimitry AndricSRCS_MIN+= Target/BPF/BPFSelectionDAGInfo.cpp 125089edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFSubtarget.cpp 125189edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFTargetMachine.cpp 12520a462115SDimitry AndricSRCS_MIN+= Target/BPF/BTFDebug.cpp 125389edb881SDimitry AndricSRCS_MIN+= Target/BPF/Disassembler/BPFDisassembler.cpp 125489edb881SDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFAsmBackend.cpp 125589edb881SDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp 12564014a71fSDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFInstPrinter.cpp 125789edb881SDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp 125889edb881SDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp 125989edb881SDimitry AndricSRCS_MIN+= Target/BPF/TargetInfo/BPFTargetInfo.cpp 126089edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF 1261cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no" 1262986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/AsmParser/MipsAsmParser.cpp 126330d4828eSDimitry AndricSRCS_XDW+= Target/Mips/Disassembler/MipsDisassembler.cpp 1264986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp 1265986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsABIInfo.cpp 1266986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsAsmBackend.cpp 1267986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp 1268986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsELFStreamer.cpp 12694014a71fSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsInstPrinter.cpp 1270986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp 1271986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp 1272986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCExpr.cpp 1273986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp 1274986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp 1275986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsOptionRecord.cpp 1276986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp 1277f37b6182SDimitry AndricSRCS_MIN+= Target/Mips/MicroMipsSizeReduction.cpp 1278986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16FrameLowering.cpp 1279986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16HardFloat.cpp 1280986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16HardFloatInfo.cpp 1281986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16ISelDAGToDAG.cpp 1282986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16ISelLowering.cpp 1283986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16InstrInfo.cpp 1284986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16RegisterInfo.cpp 1285986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsAnalyzeImmediate.cpp 1286986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsAsmPrinter.cpp 12879f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsBranchExpansion.cpp 1288986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsCCState.cpp 12899f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsCallLowering.cpp 1290986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsConstantIslandPass.cpp 1291986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsDelaySlotFiller.cpp 12929f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsExpandPseudo.cpp 1293986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsFastISel.cpp 1294986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsFrameLowering.cpp 1295986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsISelDAGToDAG.cpp 1296986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsISelLowering.cpp 1297986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsInstrInfo.cpp 12989f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsInstructionSelector.cpp 12999f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsLegalizerInfo.cpp 1300986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsMCInstLower.cpp 1301986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsMachineFunction.cpp 1302986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsModuleISelDAGToDAG.cpp 1303986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsOptimizePICCall.cpp 1304986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsOs16.cpp 13055e86819cSDimitry AndricSRCS_MIN+= Target/Mips/MipsPreLegalizerCombiner.cpp 13069f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsRegisterBankInfo.cpp 1307986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsRegisterInfo.cpp 1308986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEFrameLowering.cpp 1309986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEISelDAGToDAG.cpp 1310986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEISelLowering.cpp 1311986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEInstrInfo.cpp 1312986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSERegisterInfo.cpp 1313986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSubtarget.cpp 1314986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsTargetMachine.cpp 1315986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsTargetObjectFile.cpp 1316986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/TargetInfo/MipsTargetInfo.cpp 1317cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS 1318cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no" 1319986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/AsmParser/PPCAsmParser.cpp 1320986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/Disassembler/PPCDisassembler.cpp 1321e8d8bef9SDimitry AndricSRCS_MIN+= Target/PowerPC/GISel/PPCCallLowering.cpp 1322e8d8bef9SDimitry AndricSRCS_MIN+= Target/PowerPC/GISel/PPCInstructionSelector.cpp 1323e8d8bef9SDimitry AndricSRCS_MIN+= Target/PowerPC/GISel/PPCLegalizerInfo.cpp 1324e8d8bef9SDimitry AndricSRCS_MIN+= Target/PowerPC/GISel/PPCRegisterBankInfo.cpp 1325986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp 1326986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp 132748aaf27bSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCELFStreamer.cpp 13284014a71fSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCInstPrinter.cpp 1329986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp 1330986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp 1331986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp 1332986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp 1333986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCPredicates.cpp 13344014a71fSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCXCOFFObjectWriter.cpp 1335fe6060f1SDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCXCOFFStreamer.cpp 1336986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCAsmPrinter.cpp 1337986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCBoolRetToInt.cpp 133836cb3905SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCBranchCoalescing.cpp 1339986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCBranchSelector.cpp 1340986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCCCState.cpp 1341986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCCTRLoops.cpp 13424014a71fSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCCallingConv.cpp 1343986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCEarlyReturn.cpp 1344fe6060f1SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCExpandAtomicPseudoInsts.cpp 13455897d2f0SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCExpandISEL.cpp 1346986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCFastISel.cpp 1347986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCFrameLowering.cpp 1348986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCHazardRecognizers.cpp 1349986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCISelDAGToDAG.cpp 1350986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCISelLowering.cpp 1351986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCInstrInfo.cpp 13529771cac2SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCLoopInstrFormPrep.cpp 13539771cac2SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCLowerMASSVEntries.cpp 135448aaf27bSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMacroFusion.cpp 1355986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMCInstLower.cpp 1356986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMIPeephole.cpp 1357986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMachineFunctionInfo.cpp 13584014a71fSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMachineScheduler.cpp 135936cb3905SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCPreEmitPeephole.cpp 136036cb3905SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCReduceCRLogicals.cpp 1361986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCRegisterInfo.cpp 1362986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCSubtarget.cpp 1363986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTLSDynamicCall.cpp 1364986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTOCRegDeps.cpp 1365986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTargetMachine.cpp 1366986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTargetObjectFile.cpp 1367986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTargetTransformInfo.cpp 1368986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCVSXCopy.cpp 1369986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCVSXFMAMutate.cpp 1370986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCVSXSwapRemoval.cpp 1371986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp 1372cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC 1373b2689b12SMitchell Horne.if ${MK_LLVM_TARGET_RISCV} != "no" 1374b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/AsmParser/RISCVAsmParser.cpp 1375b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/Disassembler/RISCVDisassembler.cpp 1376b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp 1377e8d8bef9SDimitry AndricSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVBaseInfo.cpp 1378b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp 1379b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVELFStreamer.cpp 13804014a71fSDimitry AndricSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVInstPrinter.cpp 1381e8d8bef9SDimitry AndricSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMatInt.cpp 1382b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.cpp 1383b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp 1384b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp 13855e801ac6SDimitry AndricSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMCObjectFileInfo.cpp 1386b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp 1387b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/MCTargetDesc/RISCVTargetStreamer.cpp 1388b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVAsmPrinter.cpp 13899771cac2SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVCallLowering.cpp 139048aaf27bSDimitry AndricSRCS_MIN+= Target/RISCV/RISCVExpandAtomicPseudoInsts.cpp 1391b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVExpandPseudoInsts.cpp 1392b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVFrameLowering.cpp 13935e801ac6SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVGatherScatterLowering.cpp 1394fe6060f1SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVInsertVSETVLI.cpp 1395b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVInstrInfo.cpp 13969771cac2SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVInstructionSelector.cpp 1397b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVISelDAGToDAG.cpp 1398b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVISelLowering.cpp 13999771cac2SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVLegalizerInfo.cpp 1400b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVMCInstLower.cpp 1401b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVMergeBaseOffset.cpp 14029771cac2SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVRegisterBankInfo.cpp 1403b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVRegisterInfo.cpp 140404eeddc0SDimitry AndricSRCS_MIN+= Target/RISCV/RISCVSExtWRemoval.cpp 1405b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVSubtarget.cpp 1406b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVTargetMachine.cpp 1407b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVTargetObjectFile.cpp 1408869fe6d5SMitchell HorneSRCS_MIN+= Target/RISCV/RISCVTargetTransformInfo.cpp 1409b2689b12SMitchell HorneSRCS_MIN+= Target/RISCV/TargetInfo/RISCVTargetInfo.cpp 1410b2689b12SMitchell Horne.endif # MK_LLVM_TARGET_RISCV 1411986e05bcSDimitry AndricSRCS_MIN+= Target/Target.cpp 1412986e05bcSDimitry AndricSRCS_MIN+= Target/TargetLoweringObjectFile.cpp 1413986e05bcSDimitry AndricSRCS_MIN+= Target/TargetMachine.cpp 1414986e05bcSDimitry AndricSRCS_MIN+= Target/TargetMachineC.cpp 1415cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no" 1416986e05bcSDimitry AndricSRCS_MIN+= Target/X86/AsmParser/X86AsmParser.cpp 141730d4828eSDimitry AndricSRCS_XDW+= Target/X86/Disassembler/X86Disassembler.cpp 14184014a71fSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86ATTInstPrinter.cpp 1419986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86AsmBackend.cpp 1420986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp 14214014a71fSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86InstComments.cpp 14224014a71fSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86InstPrinterCommon.cpp 14234014a71fSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86IntelInstPrinter.cpp 1424986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MCAsmInfo.cpp 1425986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp 1426986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MCTargetDesc.cpp 1427986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MachObjectWriter.cpp 142848aaf27bSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86ShuffleDecode.cpp 1429986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp 1430986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp 143136cb3905SDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp 1432986e05bcSDimitry AndricSRCS_MIN+= Target/X86/TargetInfo/X86TargetInfo.cpp 1433986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86AsmPrinter.cpp 14349f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86AvoidStoreForwardingBlocks.cpp 14359771cac2SDimitry AndricSRCS_MIN+= Target/X86/X86AvoidTrailingCall.cpp 1436986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86CallFrameOptimization.cpp 14373d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86CallLowering.cpp 143809bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86CallingConv.cpp 1439b40b48b8SDimitry AndricSRCS_MIN+= Target/X86/X86CmovConversion.cpp 14405e86819cSDimitry AndricSRCS_MIN+= Target/X86/X86DiscriminateMemOps.cpp 144136cb3905SDimitry AndricSRCS_MIN+= Target/X86/X86DomainReassignment.cpp 14425e801ac6SDimitry AndricSRCS_MIN+= Target/X86/X86DynAllocaExpander.cpp 144309bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86EvexToVex.cpp 1444986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ExpandPseudo.cpp 1445986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FastISel.cpp 1446fe6060f1SDimitry AndricSRCS_MIN+= Target/X86/X86FastTileConfig.cpp 1447986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FixupBWInsts.cpp 1448986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FixupLEAs.cpp 1449986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FixupSetCC.cpp 14500556cfadSDimitry AndricSRCS_MIN+= Target/X86/X86FlagsCopyLowering.cpp 1451986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FloatingPoint.cpp 1452986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FrameLowering.cpp 1453986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ISelDAGToDAG.cpp 1454986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ISelLowering.cpp 14559f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86IndirectBranchTracking.cpp 14560946e70aSDimitry AndricSRCS_MIN+= Target/X86/X86IndirectThunks.cpp 14575e86819cSDimitry AndricSRCS_MIN+= Target/X86/X86InsertPrefetch.cpp 145848aaf27bSDimitry AndricSRCS_MIN+= Target/X86/X86InsertWait.cpp 1459e8d8bef9SDimitry AndricSRCS_MIN+= Target/X86/X86InstCombineIntrinsic.cpp 146009bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86InstrFMA3Info.cpp 14619f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86InstrFoldTables.cpp 1462986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86InstrInfo.cpp 14633d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86InstructionSelector.cpp 146409bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86InterleavedAccess.cpp 14653d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86LegalizerInfo.cpp 14660946e70aSDimitry AndricSRCS_MIN+= Target/X86/X86LoadValueInjectionLoadHardening.cpp 14670946e70aSDimitry AndricSRCS_MIN+= Target/X86/X86LoadValueInjectionRetHardening.cpp 1468fe6060f1SDimitry AndricSRCS_MIN+= Target/X86/X86LowerAMXIntrinsics.cpp 1469e8d8bef9SDimitry AndricSRCS_MIN+= Target/X86/X86LowerAMXType.cpp 1470fe6060f1SDimitry AndricSRCS_MIN+= Target/X86/X86LowerTileCopy.cpp 1471986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86MCInstLower.cpp 1472986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86MachineFunctionInfo.cpp 14735897d2f0SDimitry AndricSRCS_MIN+= Target/X86/X86MacroFusion.cpp 1474986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86OptimizeLEAs.cpp 1475986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86PadShortFunction.cpp 147648aaf27bSDimitry AndricSRCS_MIN+= Target/X86/X86PartialReduction.cpp 1477fe6060f1SDimitry AndricSRCS_MIN+= Target/X86/X86PreAMXConfig.cpp 1478e8d8bef9SDimitry AndricSRCS_MIN+= Target/X86/X86PreTileConfig.cpp 14793d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86RegisterBankInfo.cpp 1480986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86RegisterInfo.cpp 1481986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86SelectionDAGInfo.cpp 1482986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ShuffleDecodeConstantPool.cpp 148348aaf27bSDimitry AndricSRCS_MIN+= Target/X86/X86SpeculativeExecutionSideEffectSuppression.cpp 14849f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86SpeculativeLoadHardening.cpp 1485986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86Subtarget.cpp 1486986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86TargetMachine.cpp 1487986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86TargetObjectFile.cpp 1488986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86TargetTransformInfo.cpp 1489e8d8bef9SDimitry AndricSRCS_MIN+= Target/X86/X86TileConfig.cpp 1490986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86VZeroUpper.cpp 1491986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86WinEHState.cpp 1492cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86 1493fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/Architecture.cpp 1494fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/ArchitectureSet.cpp 1495fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/InterfaceFile.cpp 1496fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/PackedVersion.cpp 1497fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/Platform.cpp 1498fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/Target.cpp 1499fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/TextStub.cpp 1500fe6060f1SDimitry AndricSRCS_MIW+= TextAPI/TextStubCommon.cpp 15019c954a48SEd MasteSRCS_MIN+= ToolDrivers/llvm-dlltool/DlltoolDriver.cpp 15020db9a49eSDimitry AndricSRCS_MIW+= ToolDrivers/llvm-lib/LibDriver.cpp 15039f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp 15049f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/AggressiveInstCombine/TruncInstCombine.cpp 15059771cac2SDimitry AndricSRCS_MIN+= Transforms/CFGuard/CFGuard.cpp 150609bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroCleanup.cpp 150709bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroEarly.cpp 150809bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroElide.cpp 150909bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroFrame.cpp 151009bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroSplit.cpp 151109bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/Coroutines.cpp 151209bfd043SDimitry AndricSRCS_MIN+= Transforms/IPO/AlwaysInliner.cpp 1513e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/IPO/Annotation2Metadata.cpp 1514986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ArgumentPromotion.cpp 15154014a71fSDimitry AndricSRCS_MIN+= Transforms/IPO/Attributor.cpp 151648aaf27bSDimitry AndricSRCS_MIN+= Transforms/IPO/AttributorAttributes.cpp 1517986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/BarrierNoopPass.cpp 1518e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/IPO/BlockExtractor.cpp 151936cb3905SDimitry AndricSRCS_MIN+= Transforms/IPO/CalledValuePropagation.cpp 1520986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ConstantMerge.cpp 1521986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/CrossDSOCFI.cpp 1522986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/DeadArgumentElimination.cpp 1523986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ElimAvailExtern.cpp 1524986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ExtractGV.cpp 1525986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ForceFunctionAttrs.cpp 1526986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/FunctionAttrs.cpp 1527986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/FunctionImport.cpp 1528fe6060f1SDimitry AndricSRCS_MIN+= Transforms/IPO/FunctionSpecialization.cpp 1529986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/GlobalDCE.cpp 1530986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/GlobalOpt.cpp 153109bfd043SDimitry AndricSRCS_MIN+= Transforms/IPO/GlobalSplit.cpp 15325e86819cSDimitry AndricSRCS_MIN+= Transforms/IPO/HotColdSplitting.cpp 1533986e05bcSDimitry AndricSRCS_EXT+= Transforms/IPO/IPO.cpp 1534e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/IPO/IROutliner.cpp 1535986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/InferFunctionAttrs.cpp 1536986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/InlineSimple.cpp 1537986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/Inliner.cpp 1538986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/Internalize.cpp 1539986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/LoopExtractor.cpp 1540986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/LowerTypeTests.cpp 1541986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/MergeFunctions.cpp 15425e801ac6SDimitry AndricSRCS_MIN+= Transforms/IPO/ModuleInliner.cpp 154348aaf27bSDimitry AndricSRCS_MIN+= Transforms/IPO/OpenMPOpt.cpp 1544986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/PartialInlining.cpp 1545986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/PassManagerBuilder.cpp 1546986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/PruneEH.cpp 15479f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/IPO/SCCP.cpp 1548e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/IPO/SampleContextTracker.cpp 1549986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/SampleProfile.cpp 1550e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/IPO/SampleProfileProbe.cpp 1551986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/StripDeadPrototypes.cpp 1552986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/StripSymbols.cpp 15539f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/IPO/SyntheticCountsPropagation.cpp 155409bfd043SDimitry AndricSRCS_MIN+= Transforms/IPO/ThinLTOBitcodeWriter.cpp 1555986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/WholeProgramDevirt.cpp 1556986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineAddSub.cpp 1557986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineAndOrXor.cpp 15584014a71fSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineAtomicRMW.cpp 1559986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineCalls.cpp 1560986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineCasts.cpp 1561986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineCompares.cpp 1562986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp 1563986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineMulDivRem.cpp 156448aaf27bSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineNegator.cpp 1565986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombinePHI.cpp 1566986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineSelect.cpp 1567986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineShifts.cpp 1568986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineSimplifyDemanded.cpp 1569986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineVectorOps.cpp 1570986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstructionCombining.cpp 1571986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/AddressSanitizer.cpp 1572986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/BoundsChecking.cpp 15739f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/CGProfile.cpp 15745e86819cSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/ControlHeightReduction.cpp 1575986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/DataFlowSanitizer.cpp 1576986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/GCOVProfiling.cpp 157736cb3905SDimitry AndricSRCS_MIN+= Transforms/Instrumentation/HWAddressSanitizer.cpp 1578986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/IndirectCallPromotion.cpp 15794014a71fSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/InstrOrderFile.cpp 1580986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/InstrProfiling.cpp 1581986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/Instrumentation.cpp 1582e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Instrumentation/MemProfiler.cpp 1583986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/MemorySanitizer.cpp 1584986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/PGOInstrumentation.cpp 158524d58133SDimitry AndricSRCS_MIN+= Transforms/Instrumentation/PGOMemOPSizeOpt.cpp 15864014a71fSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/PoisonChecking.cpp 1587986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/SanitizerCoverage.cpp 1588986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/ThreadSanitizer.cpp 15899771cac2SDimitry AndricSRCS_MIN+= Transforms/Instrumentation/ValueProfileCollector.cpp 1590986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/DependencyAnalysis.cpp 1591fe6060f1SDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARC.cpp 1592986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCAPElim.cpp 1593986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCContract.cpp 1594986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCExpand.cpp 1595986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCOpts.cpp 1596986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ProvenanceAnalysis.cpp 1597986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp 1598986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/PtrState.cpp 1599986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/ADCE.cpp 1600986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/AlignmentFromAssumptions.cpp 1601e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Scalar/AnnotationRemarks.cpp 1602986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/BDCE.cpp 160336cb3905SDimitry AndricSRCS_MIN+= Transforms/Scalar/CallSiteSplitting.cpp 1604986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/ConstantHoisting.cpp 1605e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Scalar/ConstraintElimination.cpp 1606986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/CorrelatedValuePropagation.cpp 1607986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/DCE.cpp 1608fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Scalar/DFAJumpThreading.cpp 1609986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/DeadStoreElimination.cpp 161036cb3905SDimitry AndricSRCS_MIN+= Transforms/Scalar/DivRemPairs.cpp 1611986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/EarlyCSE.cpp 1612986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/FlattenCFGPass.cpp 1613986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Float2Int.cpp 1614986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/GVN.cpp 1615986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/GVNHoist.cpp 1616302affcbSDimitry AndricSRCS_MIN+= Transforms/Scalar/GVNSink.cpp 1617986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/GuardWidening.cpp 1618f1a29dd3SDimitry AndricSRCS_MIN+= Transforms/Scalar/IVUsersPrinter.cpp 1619986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/IndVarSimplify.cpp 1620986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/InductiveRangeCheckElimination.cpp 1621e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Scalar/InferAddressSpaces.cpp 16229f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Scalar/InstSimplifyPass.cpp 1623986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/JumpThreading.cpp 1624986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LICM.cpp 1625f1a29dd3SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopAccessAnalysisPrinter.cpp 1626fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopBoundSplit.cpp 1627986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopDataPrefetch.cpp 1628986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopDeletion.cpp 1629986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopDistribute.cpp 1630e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopFlatten.cpp 16314014a71fSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopFuse.cpp 1632986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopIdiomRecognize.cpp 163309bfd043SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopInstSimplify.cpp 1634986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopInterchange.cpp 1635986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopLoadElimination.cpp 1636f1a29dd3SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopPassManager.cpp 16375897d2f0SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopPredication.cpp 1638986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopRerollPass.cpp 1639986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopRotation.cpp 1640986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopSimplifyCFG.cpp 164109bfd043SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopSink.cpp 1642986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopStrengthReduce.cpp 1643986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopUnrollPass.cpp 16449f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopUnrollAndJamPass.cpp 1645986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopUnswitch.cpp 1646986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopVersioningLICM.cpp 1647986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerAtomic.cpp 16489771cac2SDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerConstantIntrinsics.cpp 1649986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerExpectIntrinsic.cpp 1650986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerGuardIntrinsic.cpp 16519771cac2SDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerMatrixIntrinsics.cpp 16524014a71fSDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerWidenableCondition.cpp 16535e86819cSDimitry AndricSRCS_MIN+= Transforms/Scalar/MakeGuardsExplicit.cpp 1654986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/MemCpyOptimizer.cpp 165536cb3905SDimitry AndricSRCS_MIN+= Transforms/Scalar/MergeICmps.cpp 1656986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/MergedLoadStoreMotion.cpp 1657986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/NaryReassociate.cpp 165809bfd043SDimitry AndricSRCS_MIN+= Transforms/Scalar/NewGVN.cpp 1659986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/PartiallyInlineLibCalls.cpp 1660986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/PlaceSafepoints.cpp 1661986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Reassociate.cpp 1662986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Reg2Mem.cpp 1663986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/RewriteStatepointsForGC.cpp 1664986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SCCP.cpp 1665986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SROA.cpp 1666986e05bcSDimitry AndricSRCS_EXT+= Transforms/Scalar/Scalar.cpp 1667e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Scalar/ScalarizeMaskedMemIntrin.cpp 1668986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Scalarizer.cpp 1669986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SeparateConstOffsetFromGEP.cpp 1670f37b6182SDimitry AndricSRCS_MIN+= Transforms/Scalar/SimpleLoopUnswitch.cpp 1671986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SimplifyCFGPass.cpp 1672986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Sink.cpp 1673986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SpeculativeExecution.cpp 1674986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/StraightLineStrengthReduce.cpp 1675986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/StructurizeCFG.cpp 1676986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/TailRecursionElimination.cpp 16775e86819cSDimitry AndricSRCS_MIN+= Transforms/Scalar/WarnMissedTransforms.cpp 167848aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/AMDGPUEmitPrintf.cpp 1679986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/ASanStackFrameLayout.cpp 1680986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/AddDiscriminators.cpp 168148aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/AssumeBundleBuilder.cpp 1682986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BasicBlockUtils.cpp 1683986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BreakCriticalEdges.cpp 1684986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BuildLibCalls.cpp 1685986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BypassSlowDivision.cpp 168648aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/CallGraphUpdater.cpp 168736cb3905SDimitry AndricSRCS_MIN+= Transforms/Utils/CallPromotionUtils.cpp 16885e86819cSDimitry AndricSRCS_MIN+= Transforms/Utils/CanonicalizeAliases.cpp 168948aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/CanonicalizeFreezeInLoops.cpp 1690986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CloneFunction.cpp 1691986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CloneModule.cpp 1692986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CodeExtractor.cpp 169304eeddc0SDimitry AndricSRCS_MIN+= Transforms/Utils/CodeLayout.cpp 16949771cac2SDimitry AndricSRCS_MIN+= Transforms/Utils/CodeMoverUtils.cpp 1695986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CtorUtils.cpp 169648aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/Debugify.cpp 1697986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/DemoteRegToStack.cpp 169836cb3905SDimitry AndricSRCS_MIN+= Transforms/Utils/EntryExitInstrumenter.cpp 169909bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/EscapeEnumerator.cpp 1700986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/Evaluator.cpp 170148aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/FixIrreducible.cpp 1702986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/FlattenCFG.cpp 170309bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/FunctionComparator.cpp 1704986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/FunctionImportUtils.cpp 1705986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/GlobalStatus.cpp 17065e86819cSDimitry AndricSRCS_MIN+= Transforms/Utils/GuardUtils.cpp 1707fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/HelloWorld.cpp 17089771cac2SDimitry AndricSRCS_MIN+= Transforms/Utils/InjectTLIMappings.cpp 1709986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/InlineFunction.cpp 1710986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/InstructionNamer.cpp 1711986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/IntegerDivision.cpp 1712986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LCSSA.cpp 171309bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/LibCallsShrinkWrap.cpp 1714986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/Local.cpp 1715e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Utils/LoopPeel.cpp 1716986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopSimplify.cpp 17179f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopRotationUtils.cpp 1718986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUnroll.cpp 17199f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUnrollAndJam.cpp 1720986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUnrollRuntime.cpp 1721986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUtils.cpp 1722986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopVersioning.cpp 1723986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LowerInvoke.cpp 1724986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LowerSwitch.cpp 1725e8d8bef9SDimitry AndricSRCS_MIN+= Transforms/Utils/MatrixUtils.cpp 1726986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/Mem2Reg.cpp 1727986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/MetaRenamer.cpp 1728fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/MemoryOpRemark.cpp 1729986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/ModuleUtils.cpp 173009bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/NameAnonGlobals.cpp 17315897d2f0SDimitry AndricSRCS_MIN+= Transforms/Utils/PredicateInfo.cpp 1732986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/PromoteMemoryToRegister.cpp 1733fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/RelLookupTableConverter.cpp 1734fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/SCCPSolver.cpp 1735986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SSAUpdater.cpp 1736fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/SSAUpdaterBulk.cpp 1737986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SanitizerStats.cpp 173848aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/ScalarEvolutionExpander.cpp 17394824e7fdSDimitry AndricSRCS_MIN+= Transforms/Utils/SampleProfileInference.cpp 1740fe6060f1SDimitry AndricSRCS_MIN+= Transforms/Utils/SampleProfileLoaderBaseUtil.cpp 1741986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SimplifyCFG.cpp 1742986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SimplifyIndVar.cpp 1743986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SimplifyLibCalls.cpp 17444014a71fSDimitry AndricSRCS_MIN+= Transforms/Utils/SizeOpts.cpp 1745986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SplitModule.cpp 174609bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/StripGCRelocates.cpp 174709bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/StripNonLineTableDebugInfo.cpp 1748986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SymbolRewriter.cpp 1749986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/UnifyFunctionExitNodes.cpp 175048aaf27bSDimitry AndricSRCS_MIN+= Transforms/Utils/UnifyLoopExits.cpp 1751986e05bcSDimitry AndricSRCS_EXT+= Transforms/Utils/Utils.cpp 17525897d2f0SDimitry AndricSRCS_MIN+= Transforms/Utils/VNCoercion.cpp 1753986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/ValueMapper.cpp 1754986e05bcSDimitry AndricSRCS_MIN+= Transforms/Vectorize/LoadStoreVectorizer.cpp 17559f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Vectorize/LoopVectorizationLegality.cpp 1756986e05bcSDimitry AndricSRCS_MIN+= Transforms/Vectorize/LoopVectorize.cpp 1757986e05bcSDimitry AndricSRCS_MIN+= Transforms/Vectorize/SLPVectorizer.cpp 175836cb3905SDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlan.cpp 17599f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlanHCFGBuilder.cpp 17604014a71fSDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlanPredicator.cpp 17619771cac2SDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlanTransforms.cpp 17629f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlanVerifier.cpp 176348aaf27bSDimitry AndricSRCS_MIN+= Transforms/Vectorize/VectorCombine.cpp 1764986e05bcSDimitry AndricSRCS_EXT+= Transforms/Vectorize/Vectorize.cpp 1765efa75597SDimitry AndricSRCS_EXT+= XRay/BlockIndexer.cpp 1766efa75597SDimitry AndricSRCS_EXT+= XRay/BlockVerifier.cpp 1767efa75597SDimitry AndricSRCS_EXT+= XRay/FDRRecordProducer.cpp 1768efa75597SDimitry AndricSRCS_EXT+= XRay/FDRRecords.cpp 1769efa75597SDimitry AndricSRCS_EXT+= XRay/FDRTraceExpander.cpp 1770efa75597SDimitry AndricSRCS_EXT+= XRay/FileHeaderReader.cpp 1771050e2df1SDimitry AndricSRCS_EXT+= XRay/InstrumentationMap.cpp 1772efa75597SDimitry AndricSRCS_EXT+= XRay/LogBuilderConsumer.cpp 1773efa75597SDimitry AndricSRCS_EXT+= XRay/RecordInitializer.cpp 177467b158f6SDimitry AndricSRCS_EXT+= XRay/Trace.cpp 1775986e05bcSDimitry Andric 1776986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_MIN} 1777caf90252SBryan Drewery.if !defined(TOOLS_PREFIX) || ${MK_LLD_BOOTSTRAP} != "no" 177830d4828eSDimitry AndricSRCS_ALL+= ${SRCS_MIW} 177930d4828eSDimitry Andric.endif 1780986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" 1781986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_EXT} 1782986e05bcSDimitry Andric.endif 1783986e05bcSDimitry Andric.if ${MK_CLANG_FULL} != "no" 1784986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_FUL} 1785986e05bcSDimitry Andric.endif 178678187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLD} != "no" || \ 178778187278SBryan Drewery (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no") 178875bc38b9SEd MasteSRCS_ALL+= ${SRCS_EXL} 178975bc38b9SEd Maste.endif 179078187278SBryan Drewery.if ${MK_LLD} != "no" || \ 179178187278SBryan Drewery (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no") 17920fc5d238SDimitry AndricSRCS_ALL+= ${SRCS_LLD} 17930fc5d238SDimitry Andric.endif 1794986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" 1795986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_XDB} 1796986e05bcSDimitry Andric.endif 179778187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || ${MK_LLD} != "no" || \ 179878187278SBryan Drewery (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no") 179975bc38b9SEd MasteSRCS_ALL+= ${SRCS_XDL} 180075bc38b9SEd Maste.endif 180130d4828eSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || !defined(TOOLS_PREFIX) 180230d4828eSDimitry AndricSRCS_ALL+= ${SRCS_XDW} 180330d4828eSDimitry Andric.endif 180448aaf27bSDimitry AndricSRCS+= ${GENSRCS} 1805986e05bcSDimitry AndricSRCS+= ${SRCS_ALL:O} 1806986e05bcSDimitry Andric 180748aaf27bSDimitry Andricllvm/Frontend/OpenMP/OMP.h.inc: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 180848aaf27bSDimitry Andric ${LLVM_TBLGEN} --gen-directive-decl \ 180948aaf27bSDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 181048aaf27bSDimitry Andric ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 181148aaf27bSDimitry AndricTGHDRS+= llvm/Frontend/OpenMP/OMP.h.inc 181248aaf27bSDimitry Andric 1813e8d8bef9SDimitry Andricllvm/Frontend/OpenMP/OMP.inc: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 1814fe6060f1SDimitry Andric ${LLVM_TBLGEN} --gen-directive-impl \ 181548aaf27bSDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 181648aaf27bSDimitry Andric ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 1817e8d8bef9SDimitry AndricTGHDRS+= llvm/Frontend/OpenMP/OMP.inc 181848aaf27bSDimitry Andric 181948aaf27bSDimitry AndricOMP.cpp: ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 182048aaf27bSDimitry Andric ${LLVM_TBLGEN} --gen-directive-impl \ 182148aaf27bSDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 182248aaf27bSDimitry Andric ${LLVM_SRCS}/include/llvm/Frontend/OpenMP/OMP.td 182348aaf27bSDimitry AndricGENSRCS+= OMP.cpp 182448aaf27bSDimitry Andric 18259f6e9a9fSDimitry Andricllvm/IR/Attributes.inc: ${LLVM_SRCS}/include/llvm/IR/Attributes.td 1826986e05bcSDimitry Andric ${LLVM_TBLGEN} -gen-attrs \ 1827050e2df1SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1828986e05bcSDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Attributes.td 18299f6e9a9fSDimitry AndricTGHDRS+= llvm/IR/Attributes.inc 1830986e05bcSDimitry Andric 18319f6e9a9fSDimitry Andricllvm/IR/IntrinsicEnums.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 18329f6e9a9fSDimitry Andric ${LLVM_TBLGEN} -gen-intrinsic-enums \ 1833050e2df1SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1834986e05bcSDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 18359f6e9a9fSDimitry AndricTGHDRS+= llvm/IR/IntrinsicEnums.inc 18369f6e9a9fSDimitry Andric 18379f6e9a9fSDimitry Andricllvm/IR/IntrinsicImpl.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 18389f6e9a9fSDimitry Andric ${LLVM_TBLGEN} -gen-intrinsic-impl \ 18399f6e9a9fSDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 18409f6e9a9fSDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 18419f6e9a9fSDimitry AndricTGHDRS+= llvm/IR/IntrinsicImpl.inc 1842986e05bcSDimitry Andric 18439771cac2SDimitry Andric.for arch in \ 18449771cac2SDimitry Andric AArch64/aarch64 AMDGPU/amdgcn ARM/arm BPF/bpf Hexagon/hexagon \ 18459771cac2SDimitry Andric Mips/mips NVPTX/nvvm PowerPC/ppc R600/r600 RISCV/riscv S390/s390 \ 1846e8d8bef9SDimitry Andric VE/ve WebAssembly/wasm X86/x86 XCore/xcore 18479771cac2SDimitry Andricllvm/IR/Intrinsics${arch:H}.h: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 18489771cac2SDimitry Andric ${LLVM_TBLGEN} -gen-intrinsic-enums -intrinsic-prefix=${arch:T} \ 18499771cac2SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 18509771cac2SDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 18519771cac2SDimitry AndricTGHDRS+= llvm/IR/Intrinsics${arch:H}.h 18529771cac2SDimitry Andric.endfor 18539771cac2SDimitry Andric 1854b40b48b8SDimitry Andricllvm-lib/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td 1855986e05bcSDimitry Andric ${LLVM_TBLGEN} -gen-opt-parser-defs \ 1856050e2df1SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 18575517e702SDimitry Andric ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td 1858b40b48b8SDimitry AndricTGHDRS+= llvm-lib/Options.inc 1859b40b48b8SDimitry AndricCFLAGS.LibDriver.cpp+= -I${.OBJDIR}/llvm-lib 1860b40b48b8SDimitry Andric 1861b40b48b8SDimitry Andricllvm-dlltool/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td 1862b40b48b8SDimitry Andric ${LLVM_TBLGEN} -gen-opt-parser-defs \ 1863b40b48b8SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1864b40b48b8SDimitry Andric ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td 1865b40b48b8SDimitry AndricTGHDRS+= llvm-dlltool/Options.inc 1866b40b48b8SDimitry AndricCFLAGS.DlltoolDriver.cpp+= -I${.OBJDIR}/llvm-dlltool 1867986e05bcSDimitry Andric 1868cd283100SBryan Drewerybeforebuild: 1869cd283100SBryan Drewery# 20170724 remove stale Options.inc file, of which there are two different 187037cd60a3SDimitry Andric# versions after upstream r308421, one for llvm-lib, one for llvm-dlltool 1871cd283100SBryan Drewery.for f in Options.inc 1872cd283100SBryan Drewery.if exists(${f}) || exists(${f}.d) 1873cd283100SBryan Drewery @echo Removing stale generated ${f} files 1874cd283100SBryan Drewery @rm -f ${f} ${f}.d 1875cd283100SBryan Drewery.endif 1876cd283100SBryan Drewery.endfor 1877cd283100SBryan Drewery 1878986e05bcSDimitry Andric# Note: some rules are superfluous, not every combination is valid. 1879986e05bcSDimitry Andric.for arch in \ 18803b7fd87cSWarner Losh AArch64/AArch64 ARM/ARM BPF/BPF Mips/Mips PowerPC/PPC RISCV/RISCV \ 18813b7fd87cSWarner Losh X86/X86 1882986e05bcSDimitry Andric. for hdr in \ 1883986e05bcSDimitry Andric AsmMatcher/-gen-asm-matcher \ 1884986e05bcSDimitry Andric AsmWriter/-gen-asm-writer \ 188548aaf27bSDimitry Andric AsmWriter1/-gen-asm-writer,-asmwriternum=1 \ 1886986e05bcSDimitry Andric CallingConv/-gen-callingconv \ 1887986e05bcSDimitry Andric CodeEmitter/-gen-emitter \ 1888b2689b12SMitchell Horne CompressInstEmitter/-gen-compress-inst-emitter \ 1889986e05bcSDimitry Andric DAGISel/-gen-dag-isel \ 1890986e05bcSDimitry Andric DisassemblerTables/-gen-disassembler \ 18915897d2f0SDimitry Andric EVEX2VEXTables/-gen-x86-EVEX2VEX-tables \ 1892986e05bcSDimitry Andric FastISel/-gen-fast-isel \ 18933d54deb3SDimitry Andric GlobalISel/-gen-global-isel \ 1894986e05bcSDimitry Andric InstrInfo/-gen-instr-info \ 1895986e05bcSDimitry Andric MCCodeEmitter/-gen-emitter \ 1896986e05bcSDimitry Andric MCPseudoLowering/-gen-pseudo-lowering \ 1897fe6060f1SDimitry Andric O0PreLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}O0PreLegalizerCombinerHelper \ 189848aaf27bSDimitry Andric PostLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}PostLegalizerCombinerHelper \ 1899e8d8bef9SDimitry Andric PostLegalizeGILowering/-gen-global-isel-combiner,-combiners=${arch:H}PostLegalizerLoweringHelper \ 190048aaf27bSDimitry Andric PreLegalizeGICombiner/-gen-global-isel-combiner,-combiners=${arch:H}PreLegalizerCombinerHelper \ 19015897d2f0SDimitry Andric RegisterBank/-gen-register-bank \ 1902986e05bcSDimitry Andric RegisterInfo/-gen-register-info \ 1903e8d8bef9SDimitry Andric SearchableTables/-gen-searchable-tables \ 1904986e05bcSDimitry Andric SubtargetInfo/-gen-subtarget \ 190536cb3905SDimitry Andric SystemOperands/-gen-searchable-tables \ 190636cb3905SDimitry Andric SystemRegister/-gen-searchable-tables 1907986e05bcSDimitry Andric${arch:T}Gen${hdr:H}.inc: ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td 1908986e05bcSDimitry Andric ${LLVM_TBLGEN} ${hdr:T:C/,/ /g} \ 1909986e05bcSDimitry Andric -I ${LLVM_SRCS}/include -I ${LLVM_SRCS}/lib/Target/${arch:H} \ 1910050e2df1SDimitry Andric -d ${.TARGET}.d -o ${.TARGET} \ 1911986e05bcSDimitry Andric ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td 1912986e05bcSDimitry Andric. endfor 1913986e05bcSDimitry Andric.endfor 1914cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no" 1915986e05bcSDimitry AndricTGHDRS+= AArch64GenAsmMatcher.inc 1916986e05bcSDimitry AndricTGHDRS+= AArch64GenAsmWriter.inc 1917986e05bcSDimitry AndricTGHDRS+= AArch64GenAsmWriter1.inc 1918986e05bcSDimitry AndricTGHDRS+= AArch64GenCallingConv.inc 1919986e05bcSDimitry AndricTGHDRS+= AArch64GenDAGISel.inc 1920986e05bcSDimitry AndricTGHDRS+= AArch64GenDisassemblerTables.inc 1921986e05bcSDimitry AndricTGHDRS+= AArch64GenFastISel.inc 19223d54deb3SDimitry AndricTGHDRS+= AArch64GenGlobalISel.inc 1923986e05bcSDimitry AndricTGHDRS+= AArch64GenInstrInfo.inc 1924986e05bcSDimitry AndricTGHDRS+= AArch64GenMCCodeEmitter.inc 1925986e05bcSDimitry AndricTGHDRS+= AArch64GenMCPseudoLowering.inc 1926fe6060f1SDimitry AndricTGHDRS+= AArch64GenO0PreLegalizeGICombiner.inc 192748aaf27bSDimitry AndricTGHDRS+= AArch64GenPostLegalizeGICombiner.inc 1928e8d8bef9SDimitry AndricTGHDRS+= AArch64GenPostLegalizeGILowering.inc 192948aaf27bSDimitry AndricTGHDRS+= AArch64GenPreLegalizeGICombiner.inc 19305897d2f0SDimitry AndricTGHDRS+= AArch64GenRegisterBank.inc 1931986e05bcSDimitry AndricTGHDRS+= AArch64GenRegisterInfo.inc 1932986e05bcSDimitry AndricTGHDRS+= AArch64GenSubtargetInfo.inc 1933986e05bcSDimitry AndricTGHDRS+= AArch64GenSystemOperands.inc 1934cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64 1935cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no" 1936986e05bcSDimitry AndricTGHDRS+= ARMGenAsmMatcher.inc 1937986e05bcSDimitry AndricTGHDRS+= ARMGenAsmWriter.inc 1938986e05bcSDimitry AndricTGHDRS+= ARMGenCallingConv.inc 1939986e05bcSDimitry AndricTGHDRS+= ARMGenDAGISel.inc 1940986e05bcSDimitry AndricTGHDRS+= ARMGenDisassemblerTables.inc 1941986e05bcSDimitry AndricTGHDRS+= ARMGenFastISel.inc 19423d54deb3SDimitry AndricTGHDRS+= ARMGenGlobalISel.inc 1943986e05bcSDimitry AndricTGHDRS+= ARMGenInstrInfo.inc 1944986e05bcSDimitry AndricTGHDRS+= ARMGenMCCodeEmitter.inc 1945986e05bcSDimitry AndricTGHDRS+= ARMGenMCPseudoLowering.inc 19465897d2f0SDimitry AndricTGHDRS+= ARMGenRegisterBank.inc 1947986e05bcSDimitry AndricTGHDRS+= ARMGenRegisterInfo.inc 1948986e05bcSDimitry AndricTGHDRS+= ARMGenSubtargetInfo.inc 194936cb3905SDimitry AndricTGHDRS+= ARMGenSystemRegister.inc 1950cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM 195189edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no" 195289edb881SDimitry AndricTGHDRS+= BPFGenAsmMatcher.inc 195389edb881SDimitry AndricTGHDRS+= BPFGenAsmWriter.inc 195489edb881SDimitry AndricTGHDRS+= BPFGenCallingConv.inc 195589edb881SDimitry AndricTGHDRS+= BPFGenDAGISel.inc 195689edb881SDimitry AndricTGHDRS+= BPFGenDisassemblerTables.inc 195789edb881SDimitry AndricTGHDRS+= BPFGenInstrInfo.inc 195889edb881SDimitry AndricTGHDRS+= BPFGenMCCodeEmitter.inc 195989edb881SDimitry AndricTGHDRS+= BPFGenRegisterInfo.inc 196089edb881SDimitry AndricTGHDRS+= BPFGenSubtargetInfo.inc 196189edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF 1962cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no" 1963986e05bcSDimitry AndricTGHDRS+= MipsGenAsmMatcher.inc 1964986e05bcSDimitry AndricTGHDRS+= MipsGenAsmWriter.inc 1965986e05bcSDimitry AndricTGHDRS+= MipsGenCallingConv.inc 1966986e05bcSDimitry AndricTGHDRS+= MipsGenDAGISel.inc 1967986e05bcSDimitry AndricTGHDRS+= MipsGenDisassemblerTables.inc 1968986e05bcSDimitry AndricTGHDRS+= MipsGenFastISel.inc 19699f6e9a9fSDimitry AndricTGHDRS+= MipsGenGlobalISel.inc 1970986e05bcSDimitry AndricTGHDRS+= MipsGenInstrInfo.inc 1971986e05bcSDimitry AndricTGHDRS+= MipsGenMCCodeEmitter.inc 1972986e05bcSDimitry AndricTGHDRS+= MipsGenMCPseudoLowering.inc 19739f6e9a9fSDimitry AndricTGHDRS+= MipsGenRegisterBank.inc 1974986e05bcSDimitry AndricTGHDRS+= MipsGenRegisterInfo.inc 1975986e05bcSDimitry AndricTGHDRS+= MipsGenSubtargetInfo.inc 1976cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS 1977cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no" 1978986e05bcSDimitry AndricTGHDRS+= PPCGenAsmMatcher.inc 1979986e05bcSDimitry AndricTGHDRS+= PPCGenAsmWriter.inc 1980986e05bcSDimitry AndricTGHDRS+= PPCGenCallingConv.inc 1981986e05bcSDimitry AndricTGHDRS+= PPCGenDAGISel.inc 1982986e05bcSDimitry AndricTGHDRS+= PPCGenDisassemblerTables.inc 1983986e05bcSDimitry AndricTGHDRS+= PPCGenFastISel.inc 1984e8d8bef9SDimitry AndricTGHDRS+= PPCGenGlobalISel.inc 1985986e05bcSDimitry AndricTGHDRS+= PPCGenInstrInfo.inc 1986986e05bcSDimitry AndricTGHDRS+= PPCGenMCCodeEmitter.inc 1987e8d8bef9SDimitry AndricTGHDRS+= PPCGenRegisterBank.inc 1988986e05bcSDimitry AndricTGHDRS+= PPCGenRegisterInfo.inc 1989986e05bcSDimitry AndricTGHDRS+= PPCGenSubtargetInfo.inc 1990cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC 1991b2689b12SMitchell Horne.if ${MK_LLVM_TARGET_RISCV} != "no" 1992b2689b12SMitchell HorneTGHDRS+= RISCVGenAsmMatcher.inc 1993b2689b12SMitchell HorneTGHDRS+= RISCVGenAsmWriter.inc 1994b2689b12SMitchell HorneTGHDRS+= RISCVGenCallingConv.inc 1995b2689b12SMitchell HorneTGHDRS+= RISCVGenCompressInstEmitter.inc 1996b2689b12SMitchell HorneTGHDRS+= RISCVGenDAGISel.inc 1997b2689b12SMitchell HorneTGHDRS+= RISCVGenDisassemblerTables.inc 1998b2689b12SMitchell HorneTGHDRS+= RISCVGenDAGISel.inc 19999771cac2SDimitry AndricTGHDRS+= RISCVGenGlobalISel.inc 2000b2689b12SMitchell HorneTGHDRS+= RISCVGenInstrInfo.inc 2001b2689b12SMitchell HorneTGHDRS+= RISCVGenMCCodeEmitter.inc 2002b2689b12SMitchell HorneTGHDRS+= RISCVGenMCPseudoLowering.inc 20039771cac2SDimitry AndricTGHDRS+= RISCVGenRegisterBank.inc 2004b2689b12SMitchell HorneTGHDRS+= RISCVGenRegisterInfo.inc 2005e8d8bef9SDimitry AndricTGHDRS+= RISCVGenSearchableTables.inc 2006b2689b12SMitchell HorneTGHDRS+= RISCVGenSubtargetInfo.inc 2007b2689b12SMitchell HorneTGHDRS+= RISCVGenSystemOperands.inc 2008b2689b12SMitchell Horne.endif # MK_LLVM_TARGET_RISCV 2009cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no" 2010986e05bcSDimitry AndricTGHDRS+= X86GenAsmMatcher.inc 2011986e05bcSDimitry AndricTGHDRS+= X86GenAsmWriter.inc 2012986e05bcSDimitry AndricTGHDRS+= X86GenAsmWriter1.inc 2013986e05bcSDimitry AndricTGHDRS+= X86GenCallingConv.inc 2014986e05bcSDimitry AndricTGHDRS+= X86GenDAGISel.inc 2015986e05bcSDimitry AndricTGHDRS+= X86GenDisassemblerTables.inc 20165897d2f0SDimitry AndricTGHDRS+= X86GenEVEX2VEXTables.inc 2017986e05bcSDimitry AndricTGHDRS+= X86GenFastISel.inc 20183d54deb3SDimitry AndricTGHDRS+= X86GenGlobalISel.inc 2019986e05bcSDimitry AndricTGHDRS+= X86GenInstrInfo.inc 20205897d2f0SDimitry AndricTGHDRS+= X86GenRegisterBank.inc 2021986e05bcSDimitry AndricTGHDRS+= X86GenRegisterInfo.inc 2022986e05bcSDimitry AndricTGHDRS+= X86GenSubtargetInfo.inc 2023cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86 2024986e05bcSDimitry Andric 2025ddf95e2aSBryan DreweryDEPENDFILES+= ${TGHDRS:C/$/.d/} 2026986e05bcSDimitry AndricDPSRCS+= ${TGHDRS} 2027986e05bcSDimitry AndricCLEANFILES+= ${TGHDRS} ${TGHDRS:C/$/.d/} 202848aaf27bSDimitry AndricCLEANFILES+= ${GENSRCS} ${GENSRCS:C/$/.d/} 2029986e05bcSDimitry Andric 2030986e05bcSDimitry Andric.include "../llvm.build.mk" 2031986e05bcSDimitry Andric.include <bsd.lib.mk> 2032