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" && \ 1389edb881SDimitry Andric ${MK_LLVM_TARGET_POWERPC} == "no" && ${MK_LLVM_TARGET_SPARC} == "no" && \ 1489edb881SDimitry Andric ${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, \ 1789edb881SDimitry Andric MK_LLVM_TARGET_POWERPC, MK_LLVM_TARGET_SPARC, or MK_LLVM_TARGET_X86 18cbafd263SDimitry Andric.endif 19cbafd263SDimitry Andric 2089edb881SDimitry Andric.for arch in AArch64 ARM BPF Mips PowerPC Sparc 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 26986e05bcSDimitry AndricSRCDIR= lib 27986e05bcSDimitry Andric 28986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasAnalysis.cpp 29986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasAnalysisEvaluator.cpp 30986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasAnalysisSummary.cpp 31986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasSetTracker.cpp 32986e05bcSDimitry AndricSRCS_EXT+= Analysis/Analysis.cpp 33986e05bcSDimitry AndricSRCS_MIN+= Analysis/AssumptionCache.cpp 34986e05bcSDimitry AndricSRCS_MIN+= Analysis/BasicAliasAnalysis.cpp 35986e05bcSDimitry AndricSRCS_MIN+= Analysis/BlockFrequencyInfo.cpp 36986e05bcSDimitry AndricSRCS_MIN+= Analysis/BlockFrequencyInfoImpl.cpp 37986e05bcSDimitry AndricSRCS_MIN+= Analysis/BranchProbabilityInfo.cpp 38986e05bcSDimitry AndricSRCS_MIN+= Analysis/CFG.cpp 39986e05bcSDimitry AndricSRCS_MIN+= Analysis/CFGPrinter.cpp 40986e05bcSDimitry AndricSRCS_MIN+= Analysis/CFLAndersAliasAnalysis.cpp 41986e05bcSDimitry AndricSRCS_MIN+= Analysis/CFLSteensAliasAnalysis.cpp 42986e05bcSDimitry AndricSRCS_MIN+= Analysis/CGSCCPassManager.cpp 43986e05bcSDimitry AndricSRCS_MIN+= Analysis/CallGraph.cpp 44986e05bcSDimitry AndricSRCS_MIN+= Analysis/CallGraphSCCPass.cpp 45986e05bcSDimitry AndricSRCS_MIN+= Analysis/CallPrinter.cpp 46986e05bcSDimitry AndricSRCS_MIN+= Analysis/CaptureTracking.cpp 4736cb3905SDimitry AndricSRCS_MIN+= Analysis/CmpInstAnalysis.cpp 48986e05bcSDimitry AndricSRCS_MIN+= Analysis/CodeMetrics.cpp 49986e05bcSDimitry AndricSRCS_MIN+= Analysis/ConstantFolding.cpp 50986e05bcSDimitry AndricSRCS_MIN+= Analysis/CostModel.cpp 51986e05bcSDimitry AndricSRCS_MIN+= Analysis/Delinearization.cpp 52986e05bcSDimitry AndricSRCS_MIN+= Analysis/DemandedBits.cpp 53986e05bcSDimitry AndricSRCS_MIN+= Analysis/DependenceAnalysis.cpp 54986e05bcSDimitry AndricSRCS_MIN+= Analysis/DivergenceAnalysis.cpp 55986e05bcSDimitry AndricSRCS_MIN+= Analysis/DomPrinter.cpp 56986e05bcSDimitry AndricSRCS_MIN+= Analysis/DominanceFrontier.cpp 57986e05bcSDimitry AndricSRCS_MIN+= Analysis/EHPersonalities.cpp 58986e05bcSDimitry AndricSRCS_MIN+= Analysis/GlobalsModRef.cpp 595e86819cSDimitry AndricSRCS_MIN+= Analysis/GuardUtils.cpp 605e86819cSDimitry AndricSRCS_MIN+= Analysis/IVDescriptors.cpp 61986e05bcSDimitry AndricSRCS_MIN+= Analysis/IVUsers.cpp 62986e05bcSDimitry AndricSRCS_MIN+= Analysis/IndirectCallPromotionAnalysis.cpp 63986e05bcSDimitry AndricSRCS_MIN+= Analysis/InlineCost.cpp 64986e05bcSDimitry AndricSRCS_MIN+= Analysis/InstCount.cpp 655e86819cSDimitry AndricSRCS_MIN+= Analysis/InstructionPrecedenceTracking.cpp 66986e05bcSDimitry AndricSRCS_MIN+= Analysis/InstructionSimplify.cpp 67986e05bcSDimitry AndricSRCS_MIN+= Analysis/Interval.cpp 68986e05bcSDimitry AndricSRCS_MIN+= Analysis/IntervalPartition.cpp 69986e05bcSDimitry AndricSRCS_MIN+= Analysis/IteratedDominanceFrontier.cpp 70986e05bcSDimitry AndricSRCS_MIN+= Analysis/LazyBlockFrequencyInfo.cpp 7109bfd043SDimitry AndricSRCS_MIN+= Analysis/LazyBranchProbabilityInfo.cpp 72986e05bcSDimitry AndricSRCS_MIN+= Analysis/LazyCallGraph.cpp 73986e05bcSDimitry AndricSRCS_MIN+= Analysis/LazyValueInfo.cpp 745e86819cSDimitry AndricSRCS_MIN+= Analysis/LegacyDivergenceAnalysis.cpp 75986e05bcSDimitry AndricSRCS_MIN+= Analysis/Lint.cpp 76986e05bcSDimitry AndricSRCS_MIN+= Analysis/Loads.cpp 77986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopAccessAnalysis.cpp 78f1a29dd3SDimitry AndricSRCS_MIN+= Analysis/LoopAnalysisManager.cpp 79986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopInfo.cpp 80986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopPass.cpp 81986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopUnrollAnalyzer.cpp 82986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemDepPrinter.cpp 83986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemDerefPrinter.cpp 84986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemoryBuiltins.cpp 85986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemoryDependenceAnalysis.cpp 86986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemoryLocation.cpp 875897d2f0SDimitry AndricSRCS_MIN+= Analysis/MemorySSA.cpp 885897d2f0SDimitry AndricSRCS_MIN+= Analysis/MemorySSAUpdater.cpp 89986e05bcSDimitry AndricSRCS_MIN+= Analysis/ModuleDebugInfoPrinter.cpp 90986e05bcSDimitry AndricSRCS_MIN+= Analysis/ModuleSummaryAnalysis.cpp 919f6e9a9fSDimitry AndricSRCS_MIN+= Analysis/MustExecute.cpp 92986e05bcSDimitry AndricSRCS_MIN+= Analysis/ObjCARCAliasAnalysis.cpp 93986e05bcSDimitry AndricSRCS_MIN+= Analysis/ObjCARCAnalysisUtils.cpp 94986e05bcSDimitry AndricSRCS_MIN+= Analysis/ObjCARCInstKind.cpp 9536cb3905SDimitry AndricSRCS_MIN+= Analysis/OptimizationRemarkEmitter.cpp 96986e05bcSDimitry AndricSRCS_MIN+= Analysis/OrderedBasicBlock.cpp 975e86819cSDimitry AndricSRCS_MIN+= Analysis/OrderedInstructions.cpp 98986e05bcSDimitry AndricSRCS_MIN+= Analysis/PHITransAddr.cpp 999f6e9a9fSDimitry AndricSRCS_MIN+= Analysis/PhiValues.cpp 100986e05bcSDimitry AndricSRCS_MIN+= Analysis/PostDominators.cpp 101986e05bcSDimitry AndricSRCS_MIN+= Analysis/ProfileSummaryInfo.cpp 102986e05bcSDimitry AndricSRCS_MIN+= Analysis/PtrUseVisitor.cpp 103986e05bcSDimitry AndricSRCS_MIN+= Analysis/RegionInfo.cpp 104986e05bcSDimitry AndricSRCS_MIN+= Analysis/RegionPass.cpp 105986e05bcSDimitry AndricSRCS_MIN+= Analysis/RegionPrinter.cpp 106986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolution.cpp 107986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolutionAliasAnalysis.cpp 108986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolutionExpander.cpp 109986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolutionNormalization.cpp 110986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScopedNoAliasAA.cpp 1115e86819cSDimitry AndricSRCS_MIN+= Analysis/StackSafetyAnalysis.cpp 1125e86819cSDimitry AndricSRCS_MIN+= Analysis/SyncDependenceAnalysis.cpp 1139f6e9a9fSDimitry AndricSRCS_MIN+= Analysis/SyntheticCountsUtils.cpp 114986e05bcSDimitry AndricSRCS_MIN+= Analysis/TargetLibraryInfo.cpp 115986e05bcSDimitry AndricSRCS_MIN+= Analysis/TargetTransformInfo.cpp 11609bfd043SDimitry AndricSRCS_MIN+= Analysis/Trace.cpp 117986e05bcSDimitry AndricSRCS_MIN+= Analysis/TypeBasedAliasAnalysis.cpp 118986e05bcSDimitry AndricSRCS_MIN+= Analysis/TypeMetadataUtils.cpp 11936cb3905SDimitry AndricSRCS_MIN+= Analysis/ValueLattice.cpp 12036cb3905SDimitry AndricSRCS_MIN+= Analysis/ValueLatticeUtils.cpp 121986e05bcSDimitry AndricSRCS_MIN+= Analysis/ValueTracking.cpp 122986e05bcSDimitry AndricSRCS_MIN+= Analysis/VectorUtils.cpp 123986e05bcSDimitry AndricSRCS_MIN+= AsmParser/LLLexer.cpp 124986e05bcSDimitry AndricSRCS_MIN+= AsmParser/LLParser.cpp 125986e05bcSDimitry AndricSRCS_MIN+= AsmParser/Parser.cpp 12644389c28SDimitry AndricSRCS_MIN+= BinaryFormat/Dwarf.cpp 12744389c28SDimitry AndricSRCS_MIN+= BinaryFormat/Magic.cpp 1289f6e9a9fSDimitry AndricSRCS_MIN+= BinaryFormat/Wasm.cpp 12909bfd043SDimitry AndricSRCS_MIN+= Bitcode/Reader/BitReader.cpp 130986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Reader/BitcodeReader.cpp 131986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Reader/BitstreamReader.cpp 13209bfd043SDimitry AndricSRCS_MIN+= Bitcode/Reader/MetadataLoader.cpp 13309bfd043SDimitry AndricSRCS_MIN+= Bitcode/Reader/ValueList.cpp 13409bfd043SDimitry AndricSRCS_MIN+= Bitcode/Writer/BitWriter.cpp 135986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Writer/BitcodeWriter.cpp 136986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Writer/BitcodeWriterPass.cpp 137986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Writer/ValueEnumerator.cpp 138986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AggressiveAntiDepBreaker.cpp 139986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AllocationOrder.cpp 140986e05bcSDimitry AndricSRCS_MIN+= CodeGen/Analysis.cpp 141986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/ARMException.cpp 1429f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AccelTable.cpp 143986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AddressPool.cpp 144986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AsmPrinter.cpp 145986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AsmPrinterDwarf.cpp 146986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp 147986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/CodeViewDebug.cpp 148986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DIE.cpp 149986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DIEHash.cpp 1505e86819cSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp 151986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DebugHandlerBase.cpp 152986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DebugLocStream.cpp 153986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfCFIException.cpp 154986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfCompileUnit.cpp 155986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfDebug.cpp 156986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfExpression.cpp 157986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfFile.cpp 158986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfStringPool.cpp 159986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfUnit.cpp 160986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/EHStreamer.cpp 161986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/ErlangGCPrinter.cpp 162986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/OcamlGCPrinter.cpp 1635e86819cSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/WasmException.cpp 1649f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/WinCFGuard.cpp 165986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/WinException.cpp 166986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AtomicExpandPass.cpp 167986e05bcSDimitry AndricSRCS_MIN+= CodeGen/BasicTargetTransformInfo.cpp 168986e05bcSDimitry AndricSRCS_MIN+= CodeGen/BranchFolding.cpp 16909bfd043SDimitry AndricSRCS_MIN+= CodeGen/BranchRelaxation.cpp 1709f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/BreakFalseDeps.cpp 171986e05bcSDimitry AndricSRCS_MIN+= CodeGen/BuiltinGCs.cpp 1729f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/CFIInstrInserter.cpp 173986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CalcSpillWeights.cpp 174986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CallingConvLower.cpp 175986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CodeGen.cpp 176986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CodeGenPrepare.cpp 177986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CriticalAntiDepBreaker.cpp 178986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DFAPacketizer.cpp 179986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DeadMachineInstructionElim.cpp 180986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DetectDeadLanes.cpp 181986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DwarfEHPrepare.cpp 182986e05bcSDimitry AndricSRCS_MIN+= CodeGen/EarlyIfConversion.cpp 183986e05bcSDimitry AndricSRCS_MIN+= CodeGen/EdgeBundles.cpp 1849f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/ExecutionDomainFix.cpp 185986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ExpandISelPseudos.cpp 18636cb3905SDimitry AndricSRCS_MIN+= CodeGen/ExpandMemCmp.cpp 187986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ExpandPostRAPseudos.cpp 1885517e702SDimitry AndricSRCS_MIN+= CodeGen/ExpandReductions.cpp 1895897d2f0SDimitry AndricSRCS_MIN+= CodeGen/FEntryInserter.cpp 190986e05bcSDimitry AndricSRCS_MIN+= CodeGen/FaultMaps.cpp 191986e05bcSDimitry AndricSRCS_MIN+= CodeGen/FuncletLayout.cpp 192986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GCMetadata.cpp 19309bfd043SDimitry AndricSRCS_MIN+= CodeGen/GCMetadataPrinter.cpp 194986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GCRootLowering.cpp 19509bfd043SDimitry AndricSRCS_MIN+= CodeGen/GCStrategy.cpp 1965e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/CSEInfo.cpp 1975e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/CSEMIRBuilder.cpp 1985e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Combiner.cpp 1995e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/CombinerHelper.cpp 2003d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/CallLowering.cpp 2015e86819cSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/GISelChangeObserver.cpp 202986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/GlobalISel.cpp 2033d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/IRTranslator.cpp 2043d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/InstructionSelect.cpp 2053d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/InstructionSelector.cpp 2069f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalityPredicates.cpp 2079f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalizeMutations.cpp 2083d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Legalizer.cpp 2093d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalizerHelper.cpp 2103d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalizerInfo.cpp 211302affcbSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Localizer.cpp 2123d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/MachineIRBuilder.cpp 2133d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/RegBankSelect.cpp 2143d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/RegisterBank.cpp 2153d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/RegisterBankInfo.cpp 2163d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Utils.cpp 217986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GlobalMerge.cpp 218986e05bcSDimitry AndricSRCS_MIN+= CodeGen/IfConversion.cpp 219986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ImplicitNullChecks.cpp 22007577dfeSDimitry AndricSRCS_MIN+= CodeGen/IndirectBrExpandPass.cpp 221986e05bcSDimitry AndricSRCS_MIN+= CodeGen/InlineSpiller.cpp 222986e05bcSDimitry AndricSRCS_MIN+= CodeGen/InterferenceCache.cpp 223986e05bcSDimitry AndricSRCS_MIN+= CodeGen/InterleavedAccessPass.cpp 2245e86819cSDimitry AndricSRCS_MIN+= CodeGen/InterleavedLoadCombinePass.cpp 225986e05bcSDimitry AndricSRCS_MIN+= CodeGen/IntrinsicLowering.cpp 226986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LLVMTargetMachine.cpp 227986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LatencyPriorityQueue.cpp 2285897d2f0SDimitry AndricSRCS_MIN+= CodeGen/LazyMachineBlockFrequencyInfo.cpp 229986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LexicalScopes.cpp 230986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveDebugValues.cpp 231986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveDebugVariables.cpp 232986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveInterval.cpp 233986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveIntervalUnion.cpp 23444389c28SDimitry AndricSRCS_MIN+= CodeGen/LiveIntervals.cpp 235986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LivePhysRegs.cpp 236986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveRangeCalc.cpp 237986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveRangeEdit.cpp 238f9448bf3SDimitry AndricSRCS_MIN+= CodeGen/LiveRangeShrink.cpp 239986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveRegMatrix.cpp 2405897d2f0SDimitry AndricSRCS_MIN+= CodeGen/LiveRegUnits.cpp 2412757ff7eSDimitry AndricSRCS_MIN+= CodeGen/LiveStacks.cpp 242986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveVariables.cpp 243986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LocalStackSlotAllocation.cpp 2449f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/LoopTraversal.cpp 24509bfd043SDimitry AndricSRCS_MIN+= CodeGen/LowLevelType.cpp 246986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LowerEmuTLS.cpp 24736cb3905SDimitry AndricSRCS_MIN+= CodeGen/MIRCanonicalizerPass.cpp 248986e05bcSDimitry AndricSRCS_EXT+= CodeGen/MIRParser/MILexer.cpp 249986e05bcSDimitry AndricSRCS_EXT+= CodeGen/MIRParser/MIParser.cpp 250986e05bcSDimitry AndricSRCS_EXT+= CodeGen/MIRParser/MIRParser.cpp 251986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MIRPrinter.cpp 252986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MIRPrintingPass.cpp 253986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBasicBlock.cpp 254986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBlockFrequencyInfo.cpp 255986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBlockPlacement.cpp 256986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBranchProbabilityInfo.cpp 257986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineCSE.cpp 258986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineCombiner.cpp 259986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineCopyPropagation.cpp 260986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineDominanceFrontier.cpp 261986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineDominators.cpp 262f37b6182SDimitry AndricSRCS_MIN+= CodeGen/MachineFrameInfo.cpp 263986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineFunction.cpp 264986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineFunctionPass.cpp 265986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineFunctionPrinterPass.cpp 266986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineInstr.cpp 267986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineInstrBundle.cpp 268986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineLICM.cpp 269986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineLoopInfo.cpp 270986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineModuleInfo.cpp 271986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineModuleInfoImpls.cpp 27236cb3905SDimitry AndricSRCS_MIN+= CodeGen/MachineOperand.cpp 2735897d2f0SDimitry AndricSRCS_MIN+= CodeGen/MachineOptimizationRemarkEmitter.cpp 2745897d2f0SDimitry AndricSRCS_MIN+= CodeGen/MachineOutliner.cpp 27509bfd043SDimitry AndricSRCS_MIN+= CodeGen/MachinePipeliner.cpp 276986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachinePostDominators.cpp 277986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineRegionInfo.cpp 278986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineRegisterInfo.cpp 279986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineSSAUpdater.cpp 280986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineScheduler.cpp 281986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineSink.cpp 282986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineTraceMetrics.cpp 283986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineVerifier.cpp 284edd7eaddSDimitry AndricSRCS_MIN+= CodeGen/MacroFusion.cpp 285986e05bcSDimitry AndricSRCS_MIN+= CodeGen/OptimizePHIs.cpp 286986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PHIElimination.cpp 287986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PHIEliminationUtils.cpp 288986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ParallelCG.cpp 289986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PatchableFunction.cpp 290986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PeepholeOptimizer.cpp 291986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PostRAHazardRecognizer.cpp 292986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PostRASchedulerList.cpp 293986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PreISelIntrinsicLowering.cpp 294986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ProcessImplicitDefs.cpp 295986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PrologEpilogInserter.cpp 296986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PseudoSourceValue.cpp 2979f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/ReachingDefAnalysis.cpp 298986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocBase.cpp 299986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocBasic.cpp 300986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocFast.cpp 301986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocGreedy.cpp 302986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocPBQP.cpp 303986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegUsageInfoCollector.cpp 304986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegUsageInfoPropagate.cpp 305986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterClassInfo.cpp 306986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterCoalescer.cpp 307986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterPressure.cpp 308986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterScavenging.cpp 309986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterUsageInfo.cpp 310986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RenameIndependentSubregs.cpp 31109bfd043SDimitry AndricSRCS_MIN+= CodeGen/ResetMachineFunctionPass.cpp 312986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SafeStack.cpp 313986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SafeStackColoring.cpp 314986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SafeStackLayout.cpp 3155517e702SDimitry AndricSRCS_MIN+= CodeGen/ScalarizeMaskedMemIntrin.cpp 316986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScheduleDAG.cpp 317986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScheduleDAGInstrs.cpp 318986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScheduleDAGPrinter.cpp 319986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScoreboardHazardRecognizer.cpp 320986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/DAGCombiner.cpp 321986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/FastISel.cpp 322986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/FunctionLoweringInfo.cpp 323986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/InstrEmitter.cpp 324986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeDAG.cpp 325986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeFloatTypes.cpp 326986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp 327986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeTypes.cpp 328986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp 329986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeVectorOps.cpp 330986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeVectorTypes.cpp 331986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ResourcePriorityQueue.cpp 332986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGFast.cpp 333986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGRRList.cpp 334986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp 335986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp 336986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAG.cpp 33744389c28SDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp 338986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGBuilder.cpp 339986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGDumper.cpp 340986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGISel.cpp 341986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGPrinter.cpp 342986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp 343986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/StatepointLowering.cpp 344986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/TargetLowering.cpp 345986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ShadowStackGCLowering.cpp 346986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ShrinkWrap.cpp 347986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SjLjEHPrepare.cpp 348986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SlotIndexes.cpp 349986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SpillPlacement.cpp 350986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SplitKit.cpp 351986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackColoring.cpp 352986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackMapLivenessAnalysis.cpp 353986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackMaps.cpp 354986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackProtector.cpp 355986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackSlotColoring.cpp 356986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TailDuplication.cpp 357986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TailDuplicator.cpp 358986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetFrameLoweringImpl.cpp 359986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetInstrInfo.cpp 360986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetLoweringBase.cpp 361986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetLoweringObjectFileImpl.cpp 362986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetOptionsImpl.cpp 363986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetPassConfig.cpp 364986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetRegisterInfo.cpp 365986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetSchedule.cpp 36609bfd043SDimitry AndricSRCS_MIN+= CodeGen/TargetSubtargetInfo.cpp 367986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TwoAddressInstructionPass.cpp 368986e05bcSDimitry AndricSRCS_MIN+= CodeGen/UnreachableBlockElim.cpp 3699f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/ValueTypes.cpp 370986e05bcSDimitry AndricSRCS_MIN+= CodeGen/VirtRegMap.cpp 3719f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/WasmEHPrepare.cpp 372986e05bcSDimitry AndricSRCS_MIN+= CodeGen/WinEHPrepare.cpp 373986e05bcSDimitry AndricSRCS_MIN+= CodeGen/XRayInstrumentation.cpp 3743cd201a1SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/AppendingTypeTableBuilder.cpp 37509bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CVSymbolVisitor.cpp 376986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CVTypeVisitor.cpp 377986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CodeViewError.cpp 37809bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CodeViewRecordIO.cpp 37936cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/ContinuationRecordBuilder.cpp 38089cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugChecksumsSubsection.cpp 381db17bf38SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugCrossExSubsection.cpp 382db17bf38SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugCrossImpSubsection.cpp 38389cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugFrameDataSubsection.cpp 38489cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp 38589cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugLinesSubsection.cpp 38689cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugStringTableSubsection.cpp 38789cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSubsection.cpp 38889cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSubsectionRecord.cpp 38989cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSubsectionVisitor.cpp 390db17bf38SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSymbolRVASubsection.cpp 39189cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSymbolsSubsection.cpp 3925e86819cSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/EnumTables.cpp 3935897d2f0SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/Formatters.cpp 39436cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/GlobalTypeTableBuilder.cpp 3952a1b82cfSDimitry AndricSRCS_EXT+= DebugInfo/CodeView/LazyRandomTypeCollection.cpp 396986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/Line.cpp 3973cd201a1SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/MergingTypeTableBuilder.cpp 39836cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/RecordName.cpp 399986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/RecordSerialization.cpp 40036cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/SimpleTypeSerializer.cpp 40124d58133SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/StringsAndChecksums.cpp 402986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/SymbolDumper.cpp 40309bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/SymbolRecordMapping.cpp 404050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/SymbolSerializer.cpp 405f1a29dd3SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeDumpVisitor.cpp 40636cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeHashing.cpp 407d8866befSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeIndex.cpp 40806230659SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeIndexDiscovery.cpp 409efa75597SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/TypeRecordHelpers.cpp 41009bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeRecordMapping.cpp 411986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeStreamMerger.cpp 412d8866befSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeTableCollection.cpp 413caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp 414caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFAcceleratorTable.cpp 41567b158f6SDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFAddressRange.cpp 416caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFCompileUnit.cpp 417caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFContext.cpp 418caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDataExtractor.cpp 419caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugAbbrev.cpp 42099be4f2aSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugAddr.cpp 421caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugArangeSet.cpp 422caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugAranges.cpp 423caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugFrame.cpp 424caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugInfoEntry.cpp 425caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugLine.cpp 426caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugLoc.cpp 427caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugMacro.cpp 428caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugPubTable.cpp 429caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugRangeList.cpp 43067b158f6SDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugRnglists.cpp 431caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDie.cpp 432caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFExpression.cpp 433caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFFormValue.cpp 434caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFGdbIndex.cpp 43567b158f6SDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFListTable.cpp 436caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFTypeUnit.cpp 437caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFUnit.cpp 438caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFUnitIndex.cpp 439caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFVerifier.cpp 44009bfd043SDimitry AndricSRCS_MIN+= DebugInfo/MSF/MSFBuilder.cpp 44109bfd043SDimitry AndricSRCS_MIN+= DebugInfo/MSF/MSFCommon.cpp 44209bfd043SDimitry AndricSRCS_MIN+= DebugInfo/MSF/MSFError.cpp 44309bfd043SDimitry AndricSRCS_MIN+= DebugInfo/MSF/MappedBlockStream.cpp 444986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/GenericError.cpp 44509bfd043SDimitry AndricSRCS_EXT+= DebugInfo/PDB/IPDBSourceFile.cpp 446f37b6182SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiModuleDescriptor.cpp 447f37b6182SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp 4480f5676f4SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiModuleList.cpp 449050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiStream.cpp 450050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiStreamBuilder.cpp 451050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/EnumTables.cpp 4523cd201a1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/GSIStreamBuilder.cpp 453050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/GlobalsStream.cpp 454050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/Hash.cpp 455050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/HashTable.cpp 456050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/InfoStream.cpp 457050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/InfoStreamBuilder.cpp 458f37b6182SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/ModuleDebugStream.cpp 459050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NamedStreamMap.cpp 460050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeCompilandSymbol.cpp 461efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumGlobals.cpp 462050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumModules.cpp 46344389c28SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumTypes.cpp 464050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeExeSymbol.cpp 465050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeRawSymbol.cpp 466050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeSession.cpp 467efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeSymbolEnumerator.cpp 468efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeArray.cpp 469efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeBuiltin.cpp 470efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeEnum.cpp 471efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp 472efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypePointer.cpp 473efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeTypedef.cpp 474efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeUDT.cpp 475efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeTypeVTShape.cpp 476050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBFile.cpp 477050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBFileBuilder.cpp 478b174acefSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBStringTable.cpp 479b174acefSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBStringTableBuilder.cpp 4803d54deb3SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PublicsStream.cpp 4813d54deb3SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/RawError.cpp 482efa75597SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/SymbolCache.cpp 483050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/SymbolStream.cpp 484050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/TpiHashing.cpp 485050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/TpiStream.cpp 486050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/TpiStreamBuilder.cpp 487986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDB.cpp 488986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBContext.cpp 489986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBExtras.cpp 490986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBInterfaceAnchors.cpp 491986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymDumper.cpp 492986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbol.cpp 493986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolAnnotation.cpp 494986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolBlock.cpp 495986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCompiland.cpp 496986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCompilandDetails.cpp 497986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCompilandEnv.cpp 498986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCustom.cpp 499986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolData.cpp 500986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolExe.cpp 501986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolFunc.cpp 502986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp 503986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp 504986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolLabel.cpp 505986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolPublicSymbol.cpp 506986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolThunk.cpp 507986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeArray.cpp 508986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp 509986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp 510986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeCustom.cpp 511986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeDimension.cpp 512986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeEnum.cpp 513986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeFriend.cpp 514986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp 515986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp 516986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeManaged.cpp 517986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypePointer.cpp 518986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeTypedef.cpp 519986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeUDT.cpp 520986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeVTable.cpp 521986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp 522986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolUnknown.cpp 523986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolUsingNamespace.cpp 524050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/UDTLayout.cpp 525986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/Symbolize/DIPrinter.cpp 52609bfd043SDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/SymbolizableObjectFile.cpp 52709bfd043SDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/Symbolize.cpp 52809bfd043SDimitry AndricSRCS_MIN+= Demangle/ItaniumDemangle.cpp 529efa75597SDimitry AndricSRCS_MIW+= Demangle/MicrosoftDemangle.cpp 530efa75597SDimitry AndricSRCS_MIW+= Demangle/MicrosoftDemangleNodes.cpp 531986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/ExecutionEngine.cpp 532986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/ExecutionEngineBindings.cpp 533986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/GDBRegistrationListener.cpp 534986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/Interpreter/Execution.cpp 535986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/Interpreter/ExternalFunctions.cpp 536986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/Interpreter/Interpreter.cpp 537986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/MCJIT/MCJIT.cpp 53867b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/CompileOnDemandLayer.cpp 53967b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Core.cpp 540986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ExecutionUtils.cpp 54167b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/IRCompileLayer.cpp 54267b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/IRTransformLayer.cpp 543986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/IndirectionUtils.cpp 544efa75597SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/JITTargetMachineBuilder.cpp 54567b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/LLJIT.cpp 54667b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Layer.cpp 547efa75597SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/LazyReexports.cpp 54867b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Legacy.cpp 549986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/NullResolver.cpp 550986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/OrcABISupport.cpp 551986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/OrcCBindings.cpp 552986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/OrcError.cpp 553986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/OrcMCJITReplacement.cpp 554050e2df1SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/RPCUtils.cpp 55567b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp 556efa75597SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ThreadSafeModule.cpp 55709bfd043SDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/JITSymbol.cpp 558986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp 559986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp 560986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp 561986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp 562986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp 563986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp 56409bfd043SDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp 565986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/SectionMemoryManager.cpp 566986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/TargetSelect.cpp 567986e05bcSDimitry AndricSRCS_MIN+= IR/AsmWriter.cpp 568986e05bcSDimitry AndricSRCS_MIN+= IR/Attributes.cpp 569986e05bcSDimitry AndricSRCS_MIN+= IR/AutoUpgrade.cpp 570986e05bcSDimitry AndricSRCS_MIN+= IR/BasicBlock.cpp 571986e05bcSDimitry AndricSRCS_MIN+= IR/Comdat.cpp 572986e05bcSDimitry AndricSRCS_MIN+= IR/ConstantFold.cpp 573986e05bcSDimitry AndricSRCS_MIN+= IR/ConstantRange.cpp 574986e05bcSDimitry AndricSRCS_MIN+= IR/Constants.cpp 575986e05bcSDimitry AndricSRCS_MIN+= IR/Core.cpp 576986e05bcSDimitry AndricSRCS_MIN+= IR/DIBuilder.cpp 577986e05bcSDimitry AndricSRCS_MIN+= IR/DataLayout.cpp 578986e05bcSDimitry AndricSRCS_MIN+= IR/DebugInfo.cpp 579986e05bcSDimitry AndricSRCS_MIN+= IR/DebugInfoMetadata.cpp 580986e05bcSDimitry AndricSRCS_MIN+= IR/DebugLoc.cpp 58136cb3905SDimitry AndricSRCS_MIN+= IR/DiagnosticHandler.cpp 582986e05bcSDimitry AndricSRCS_MIN+= IR/DiagnosticInfo.cpp 583986e05bcSDimitry AndricSRCS_MIN+= IR/DiagnosticPrinter.cpp 5849f6e9a9fSDimitry AndricSRCS_MIN+= IR/DomTreeUpdater.cpp 585986e05bcSDimitry AndricSRCS_MIN+= IR/Dominators.cpp 586986e05bcSDimitry AndricSRCS_MIN+= IR/Function.cpp 587986e05bcSDimitry AndricSRCS_MIN+= IR/GVMaterializer.cpp 588986e05bcSDimitry AndricSRCS_MIN+= IR/Globals.cpp 589986e05bcSDimitry AndricSRCS_MIN+= IR/IRBuilder.cpp 590986e05bcSDimitry AndricSRCS_MIN+= IR/IRPrintingPasses.cpp 591986e05bcSDimitry AndricSRCS_MIN+= IR/InlineAsm.cpp 592986e05bcSDimitry AndricSRCS_MIN+= IR/Instruction.cpp 593986e05bcSDimitry AndricSRCS_MIN+= IR/Instructions.cpp 594986e05bcSDimitry AndricSRCS_MIN+= IR/IntrinsicInst.cpp 595986e05bcSDimitry AndricSRCS_MIN+= IR/LLVMContext.cpp 596986e05bcSDimitry AndricSRCS_MIN+= IR/LLVMContextImpl.cpp 597986e05bcSDimitry AndricSRCS_MIN+= IR/LegacyPassManager.cpp 598986e05bcSDimitry AndricSRCS_MIN+= IR/MDBuilder.cpp 599986e05bcSDimitry AndricSRCS_MIN+= IR/Mangler.cpp 600986e05bcSDimitry AndricSRCS_MIN+= IR/Metadata.cpp 601986e05bcSDimitry AndricSRCS_MIN+= IR/Module.cpp 602986e05bcSDimitry AndricSRCS_MIN+= IR/ModuleSummaryIndex.cpp 603986e05bcSDimitry AndricSRCS_MIN+= IR/Operator.cpp 604986e05bcSDimitry AndricSRCS_MIN+= IR/OptBisect.cpp 605986e05bcSDimitry AndricSRCS_MIN+= IR/Pass.cpp 6065e86819cSDimitry AndricSRCS_MIN+= IR/PassInstrumentation.cpp 607986e05bcSDimitry AndricSRCS_MIN+= IR/PassManager.cpp 608986e05bcSDimitry AndricSRCS_MIN+= IR/PassRegistry.cpp 6095e86819cSDimitry AndricSRCS_MIN+= IR/PassTimingInfo.cpp 610986e05bcSDimitry AndricSRCS_MIN+= IR/ProfileSummary.cpp 611c4394386SDimitry AndricSRCS_MIN+= IR/SafepointIRVerifier.cpp 612986e05bcSDimitry AndricSRCS_MIN+= IR/Statepoint.cpp 613986e05bcSDimitry AndricSRCS_MIN+= IR/Type.cpp 614986e05bcSDimitry AndricSRCS_MIN+= IR/TypeFinder.cpp 615986e05bcSDimitry AndricSRCS_MIN+= IR/Use.cpp 616986e05bcSDimitry AndricSRCS_MIN+= IR/User.cpp 617986e05bcSDimitry AndricSRCS_MIN+= IR/Value.cpp 618986e05bcSDimitry AndricSRCS_MIN+= IR/ValueSymbolTable.cpp 619986e05bcSDimitry AndricSRCS_MIN+= IR/Verifier.cpp 620986e05bcSDimitry AndricSRCS_MIN+= IRReader/IRReader.cpp 62109bfd043SDimitry AndricSRCS_EXL+= LTO/Caching.cpp 6225897d2f0SDimitry AndricSRCS_MIN+= LTO/LTO.cpp 62309bfd043SDimitry AndricSRCS_MIN+= LTO/LTOBackend.cpp 62475bc38b9SEd MasteSRCS_EXL+= LTO/LTOCodeGenerator.cpp 62575bc38b9SEd MasteSRCS_EXL+= LTO/LTOModule.cpp 626efa75597SDimitry AndricSRCS_EXL+= LTO/SummaryBasedOptimizations.cpp 62775bc38b9SEd MasteSRCS_EXL+= LTO/ThinLTOCodeGenerator.cpp 62809bfd043SDimitry AndricSRCS_MIN+= LTO/UpdateCompilerUsed.cpp 629986e05bcSDimitry AndricSRCS_MIN+= LineEditor/LineEditor.cpp 630986e05bcSDimitry AndricSRCS_MIN+= Linker/IRMover.cpp 631986e05bcSDimitry AndricSRCS_MIN+= Linker/LinkModules.cpp 632986e05bcSDimitry AndricSRCS_MIN+= MC/ConstantPools.cpp 633986e05bcSDimitry AndricSRCS_MIN+= MC/ELFObjectWriter.cpp 634986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmBackend.cpp 635986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfo.cpp 636986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfoCOFF.cpp 637986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfoDarwin.cpp 638986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfoELF.cpp 6399f6e9a9fSDimitry AndricSRCS_MIN+= MC/MCAsmMacro.cpp 640986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmStreamer.cpp 641986e05bcSDimitry AndricSRCS_MIN+= MC/MCAssembler.cpp 642986e05bcSDimitry AndricSRCS_MIN+= MC/MCCodeEmitter.cpp 64336cb3905SDimitry AndricSRCS_MIN+= MC/MCCodePadder.cpp 644986e05bcSDimitry AndricSRCS_MIN+= MC/MCCodeView.cpp 645986e05bcSDimitry AndricSRCS_MIN+= MC/MCContext.cpp 64675bc38b9SEd MasteSRCS_XDL+= MC/MCDisassembler/Disassembler.cpp 64730d4828eSDimitry AndricSRCS_XDW+= MC/MCDisassembler/MCDisassembler.cpp 64830d4828eSDimitry AndricSRCS_XDW+= MC/MCDisassembler/MCExternalSymbolizer.cpp 649986e05bcSDimitry AndricSRCS_MIN+= MC/MCDisassembler/MCRelocationInfo.cpp 65030d4828eSDimitry AndricSRCS_XDW+= MC/MCDisassembler/MCSymbolizer.cpp 651986e05bcSDimitry AndricSRCS_MIN+= MC/MCDwarf.cpp 652986e05bcSDimitry AndricSRCS_MIN+= MC/MCELFObjectTargetWriter.cpp 653986e05bcSDimitry AndricSRCS_MIN+= MC/MCELFStreamer.cpp 654986e05bcSDimitry AndricSRCS_MIN+= MC/MCExpr.cpp 655986e05bcSDimitry AndricSRCS_MIN+= MC/MCFragment.cpp 656986e05bcSDimitry AndricSRCS_MIN+= MC/MCInst.cpp 657986e05bcSDimitry AndricSRCS_MIN+= MC/MCInstPrinter.cpp 658986e05bcSDimitry AndricSRCS_MIN+= MC/MCInstrAnalysis.cpp 659986e05bcSDimitry AndricSRCS_MIN+= MC/MCInstrDesc.cpp 660986e05bcSDimitry AndricSRCS_MIN+= MC/MCLinkerOptimizationHint.cpp 661986e05bcSDimitry AndricSRCS_MIN+= MC/MCMachOStreamer.cpp 662986e05bcSDimitry AndricSRCS_MIN+= MC/MCMachObjectTargetWriter.cpp 663986e05bcSDimitry AndricSRCS_MIN+= MC/MCNullStreamer.cpp 664986e05bcSDimitry AndricSRCS_MIN+= MC/MCObjectFileInfo.cpp 665986e05bcSDimitry AndricSRCS_MIN+= MC/MCObjectStreamer.cpp 666986e05bcSDimitry AndricSRCS_MIN+= MC/MCObjectWriter.cpp 667986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/AsmLexer.cpp 668986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/AsmParser.cpp 669986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/COFFAsmParser.cpp 670986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/DarwinAsmParser.cpp 671986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/ELFAsmParser.cpp 672986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCAsmLexer.cpp 673986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCAsmParser.cpp 674986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCAsmParserExtension.cpp 675986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCTargetAsmParser.cpp 6765e86819cSDimitry AndricSRCS_MIN+= MC/MCParser/WasmAsmParser.cpp 677986e05bcSDimitry AndricSRCS_MIN+= MC/MCRegisterInfo.cpp 678986e05bcSDimitry AndricSRCS_MIN+= MC/MCSchedule.cpp 679986e05bcSDimitry AndricSRCS_MIN+= MC/MCSection.cpp 680986e05bcSDimitry AndricSRCS_MIN+= MC/MCSectionCOFF.cpp 681986e05bcSDimitry AndricSRCS_MIN+= MC/MCSectionELF.cpp 682986e05bcSDimitry AndricSRCS_MIN+= MC/MCSectionMachO.cpp 6835897d2f0SDimitry AndricSRCS_MIN+= MC/MCSectionWasm.cpp 684986e05bcSDimitry AndricSRCS_MIN+= MC/MCStreamer.cpp 685986e05bcSDimitry AndricSRCS_MIN+= MC/MCSubtargetInfo.cpp 686986e05bcSDimitry AndricSRCS_MIN+= MC/MCSymbol.cpp 687986e05bcSDimitry AndricSRCS_MIN+= MC/MCSymbolELF.cpp 688986e05bcSDimitry AndricSRCS_MIN+= MC/MCTargetOptions.cpp 689986e05bcSDimitry AndricSRCS_MIN+= MC/MCValue.cpp 6905897d2f0SDimitry AndricSRCS_MIN+= MC/MCWasmStreamer.cpp 691986e05bcSDimitry AndricSRCS_MIN+= MC/MCWin64EH.cpp 692edd7eaddSDimitry AndricSRCS_MIN+= MC/MCWinCOFFStreamer.cpp 693986e05bcSDimitry AndricSRCS_MIN+= MC/MCWinEH.cpp 694986e05bcSDimitry AndricSRCS_MIN+= MC/MachObjectWriter.cpp 695986e05bcSDimitry AndricSRCS_MIN+= MC/StringTableBuilder.cpp 696986e05bcSDimitry AndricSRCS_MIN+= MC/SubtargetFeature.cpp 6979f6e9a9fSDimitry AndricSRCS_MIN+= MC/WasmObjectWriter.cpp 698986e05bcSDimitry AndricSRCS_MIN+= MC/WinCOFFObjectWriter.cpp 699efa75597SDimitry AndricSRCS_EXT+= MCA/Context.cpp 700efa75597SDimitry AndricSRCS_EXT+= MCA/HWEventListener.cpp 701efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/HardwareUnit.cpp 702efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/LSUnit.cpp 703efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/RegisterFile.cpp 704efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/ResourceManager.cpp 705efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/RetireControlUnit.cpp 706efa75597SDimitry AndricSRCS_EXT+= MCA/HardwareUnits/Scheduler.cpp 707efa75597SDimitry AndricSRCS_EXT+= MCA/InstrBuilder.cpp 708efa75597SDimitry AndricSRCS_EXT+= MCA/Instruction.cpp 709efa75597SDimitry AndricSRCS_EXT+= MCA/Pipeline.cpp 710efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/DispatchStage.cpp 711efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/EntryStage.cpp 712efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/ExecuteStage.cpp 713efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/InstructionTables.cpp 714efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/RetireStage.cpp 715efa75597SDimitry AndricSRCS_EXT+= MCA/Stages/Stage.cpp 716efa75597SDimitry AndricSRCS_EXT+= MCA/Support.cpp 717986e05bcSDimitry AndricSRCS_MIN+= Object/Archive.cpp 718986e05bcSDimitry AndricSRCS_MIN+= Object/ArchiveWriter.cpp 719986e05bcSDimitry AndricSRCS_MIN+= Object/Binary.cpp 720b40b48b8SDimitry AndricSRCS_EXT+= Object/COFFImportFile.cpp 721b40b48b8SDimitry AndricSRCS_EXT+= Object/COFFModuleDefinition.cpp 722986e05bcSDimitry AndricSRCS_MIN+= Object/COFFObjectFile.cpp 723f1a29dd3SDimitry AndricSRCS_MIN+= Object/Decompressor.cpp 724986e05bcSDimitry AndricSRCS_MIN+= Object/ELF.cpp 725986e05bcSDimitry AndricSRCS_MIN+= Object/ELFObjectFile.cpp 726986e05bcSDimitry AndricSRCS_MIN+= Object/Error.cpp 727986e05bcSDimitry AndricSRCS_MIN+= Object/IRObjectFile.cpp 7285897d2f0SDimitry AndricSRCS_MIN+= Object/IRSymtab.cpp 729986e05bcSDimitry AndricSRCS_MIN+= Object/MachOObjectFile.cpp 730986e05bcSDimitry AndricSRCS_MIN+= Object/MachOUniversal.cpp 73109bfd043SDimitry AndricSRCS_MIN+= Object/ModuleSymbolTable.cpp 732986e05bcSDimitry AndricSRCS_EXT+= Object/Object.cpp 733986e05bcSDimitry AndricSRCS_MIN+= Object/ObjectFile.cpp 734986e05bcSDimitry AndricSRCS_MIN+= Object/RecordStreamer.cpp 73509bfd043SDimitry AndricSRCS_MIW+= Object/SymbolSize.cpp 736986e05bcSDimitry AndricSRCS_MIN+= Object/SymbolicFile.cpp 73709bfd043SDimitry AndricSRCS_MIN+= Object/WasmObjectFile.cpp 738bbd32193SDimitry AndricSRCS_MIN+= Object/WindowsResource.cpp 739986e05bcSDimitry AndricSRCS_MIN+= ObjectYAML/COFFYAML.cpp 740f9448bf3SDimitry AndricSRCS_EXT+= ObjectYAML/CodeViewYAMLDebugSections.cpp 741f9448bf3SDimitry AndricSRCS_EXT+= ObjectYAML/CodeViewYAMLSymbols.cpp 742f9448bf3SDimitry AndricSRCS_EXT+= ObjectYAML/CodeViewYAMLTypes.cpp 74309bfd043SDimitry AndricSRCS_MIN+= ObjectYAML/DWARFYAML.cpp 744986e05bcSDimitry AndricSRCS_MIN+= ObjectYAML/ELFYAML.cpp 745986e05bcSDimitry AndricSRCS_MIN+= ObjectYAML/MachOYAML.cpp 74624d58133SDimitry AndricSRCS_EXT+= ObjectYAML/YAML.cpp 747986e05bcSDimitry AndricSRCS_MIN+= Option/Arg.cpp 748986e05bcSDimitry AndricSRCS_MIN+= Option/ArgList.cpp 749986e05bcSDimitry AndricSRCS_MIN+= Option/OptTable.cpp 750986e05bcSDimitry AndricSRCS_MIN+= Option/Option.cpp 75109bfd043SDimitry AndricSRCS_MIN+= Passes/PassBuilder.cpp 75267b158f6SDimitry AndricSRCS_EXT+= Passes/PassPlugin.cpp 753efa75597SDimitry AndricSRCS_EXT+= Passes/StandardInstrumentations.cpp 754986e05bcSDimitry AndricSRCS_MIN+= ProfileData/Coverage/CoverageMapping.cpp 755986e05bcSDimitry AndricSRCS_MIN+= ProfileData/Coverage/CoverageMappingReader.cpp 756986e05bcSDimitry AndricSRCS_MIN+= ProfileData/Coverage/CoverageMappingWriter.cpp 7571b49115aSEd MasteSRCS_MIN+= ProfileData/GCOV.cpp 758986e05bcSDimitry AndricSRCS_MIN+= ProfileData/InstrProf.cpp 759986e05bcSDimitry AndricSRCS_MIN+= ProfileData/InstrProfReader.cpp 760986e05bcSDimitry AndricSRCS_MIN+= ProfileData/InstrProfWriter.cpp 761986e05bcSDimitry AndricSRCS_MIN+= ProfileData/ProfileSummaryBuilder.cpp 762986e05bcSDimitry AndricSRCS_MIN+= ProfileData/SampleProf.cpp 763986e05bcSDimitry AndricSRCS_MIN+= ProfileData/SampleProfReader.cpp 764961eb443SEd MasteSRCS_MIN+= ProfileData/SampleProfWriter.cpp 7655e86819cSDimitry AndricSRCS_MIN+= Support/AArch64TargetParser.cpp 766986e05bcSDimitry AndricSRCS_MIN+= Support/APFloat.cpp 767986e05bcSDimitry AndricSRCS_MIN+= Support/APInt.cpp 768986e05bcSDimitry AndricSRCS_MIN+= Support/APSInt.cpp 7695897d2f0SDimitry AndricSRCS_MIN+= Support/ARMAttributeParser.cpp 770986e05bcSDimitry AndricSRCS_MIN+= Support/ARMBuildAttrs.cpp 7715e86819cSDimitry AndricSRCS_MIN+= Support/ARMTargetParser.cpp 772986e05bcSDimitry AndricSRCS_MIN+= Support/Allocator.cpp 773986e05bcSDimitry AndricSRCS_MIN+= Support/Atomic.cpp 7745897d2f0SDimitry AndricSRCS_MIN+= Support/BinaryStreamError.cpp 7755897d2f0SDimitry AndricSRCS_MIN+= Support/BinaryStreamReader.cpp 776d8866befSDimitry AndricSRCS_MIN+= Support/BinaryStreamRef.cpp 7775897d2f0SDimitry AndricSRCS_MIN+= Support/BinaryStreamWriter.cpp 778986e05bcSDimitry AndricSRCS_MIN+= Support/BlockFrequency.cpp 779986e05bcSDimitry AndricSRCS_MIN+= Support/BranchProbability.cpp 7805e86819cSDimitry AndricSRCS_MIN+= Support/BuryPointer.cpp 781986e05bcSDimitry AndricSRCS_EXT+= Support/COM.cpp 782986e05bcSDimitry AndricSRCS_MIN+= Support/CachePruning.cpp 78309bfd043SDimitry AndricSRCS_MIN+= Support/Chrono.cpp 78436cb3905SDimitry AndricSRCS_MIN+= Support/CodeGenCoverage.cpp 785986e05bcSDimitry AndricSRCS_MIN+= Support/CommandLine.cpp 786986e05bcSDimitry AndricSRCS_MIN+= Support/Compression.cpp 78709bfd043SDimitry AndricSRCS_MIN+= Support/ConvertUTF.cpp 788986e05bcSDimitry AndricSRCS_MIN+= Support/ConvertUTFWrapper.cpp 789986e05bcSDimitry AndricSRCS_MIN+= Support/CrashRecoveryContext.cpp 790986e05bcSDimitry AndricSRCS_MIN+= Support/DAGDeltaAlgorithm.cpp 7919f6e9a9fSDimitry AndricSRCS_MIN+= Support/DJB.cpp 792986e05bcSDimitry AndricSRCS_MIN+= Support/DataExtractor.cpp 793986e05bcSDimitry AndricSRCS_MIN+= Support/Debug.cpp 7945897d2f0SDimitry AndricSRCS_MIN+= Support/DebugCounter.cpp 795986e05bcSDimitry AndricSRCS_MIN+= Support/DeltaAlgorithm.cpp 796986e05bcSDimitry AndricSRCS_MIN+= Support/DynamicLibrary.cpp 797986e05bcSDimitry AndricSRCS_MIN+= Support/Errno.cpp 798986e05bcSDimitry AndricSRCS_MIN+= Support/Error.cpp 799986e05bcSDimitry AndricSRCS_MIN+= Support/ErrorHandling.cpp 80075bc38b9SEd MasteSRCS_EXL+= Support/FileOutputBuffer.cpp 801986e05bcSDimitry AndricSRCS_EXT+= Support/FileUtilities.cpp 802986e05bcSDimitry AndricSRCS_MIN+= Support/FoldingSet.cpp 80309bfd043SDimitry AndricSRCS_MIN+= Support/FormatVariadic.cpp 804986e05bcSDimitry AndricSRCS_MIN+= Support/FormattedStream.cpp 80509bfd043SDimitry AndricSRCS_MIN+= Support/GlobPattern.cpp 806986e05bcSDimitry AndricSRCS_MIN+= Support/GraphWriter.cpp 807986e05bcSDimitry AndricSRCS_MIN+= Support/Hashing.cpp 808986e05bcSDimitry AndricSRCS_MIN+= Support/Host.cpp 8099f6e9a9fSDimitry AndricSRCS_MIN+= Support/InitLLVM.cpp 810986e05bcSDimitry AndricSRCS_MIN+= Support/IntEqClasses.cpp 811986e05bcSDimitry AndricSRCS_MIN+= Support/IntervalMap.cpp 8125e86819cSDimitry AndricSRCS_MIN+= Support/ItaniumManglingCanonicalizer.cpp 8132d31b1b8SDimitry AndricSRCS_MIN+= Support/JSON.cpp 814986e05bcSDimitry AndricSRCS_MIN+= Support/JamCRC.cpp 81536cb3905SDimitry AndricSRCS_MIN+= Support/KnownBits.cpp 816986e05bcSDimitry AndricSRCS_MIN+= Support/LEB128.cpp 817986e05bcSDimitry AndricSRCS_MIN+= Support/LineIterator.cpp 818986e05bcSDimitry AndricSRCS_MIN+= Support/Locale.cpp 819986e05bcSDimitry AndricSRCS_MIN+= Support/LockFileManager.cpp 8205897d2f0SDimitry AndricSRCS_MIN+= Support/LowLevelType.cpp 821986e05bcSDimitry AndricSRCS_MIN+= Support/MD5.cpp 822986e05bcSDimitry AndricSRCS_MIN+= Support/ManagedStatic.cpp 823986e05bcSDimitry AndricSRCS_MIN+= Support/MathExtras.cpp 8247bfc2d0fSDimitry AndricSRCS_XDL+= Support/Memory.cpp 825986e05bcSDimitry AndricSRCS_MIN+= Support/MemoryBuffer.cpp 826986e05bcSDimitry AndricSRCS_MIN+= Support/Mutex.cpp 82709bfd043SDimitry AndricSRCS_MIN+= Support/NativeFormatting.cpp 828986e05bcSDimitry AndricSRCS_MIN+= Support/Options.cpp 8295517e702SDimitry AndricSRCS_LLD+= Support/Parallel.cpp 830986e05bcSDimitry AndricSRCS_MIN+= Support/Path.cpp 831986e05bcSDimitry AndricSRCS_MIN+= Support/PluginLoader.cpp 832986e05bcSDimitry AndricSRCS_MIN+= Support/PrettyStackTrace.cpp 833986e05bcSDimitry AndricSRCS_MIN+= Support/Process.cpp 834986e05bcSDimitry AndricSRCS_MIN+= Support/Program.cpp 835986e05bcSDimitry AndricSRCS_MIN+= Support/RWMutex.cpp 836986e05bcSDimitry AndricSRCS_MIN+= Support/RandomNumberGenerator.cpp 837986e05bcSDimitry AndricSRCS_MIN+= Support/Regex.cpp 838986e05bcSDimitry AndricSRCS_MIN+= Support/SHA1.cpp 839986e05bcSDimitry AndricSRCS_MIN+= Support/ScaledNumber.cpp 840986e05bcSDimitry AndricSRCS_MIN+= Support/ScopedPrinter.cpp 841986e05bcSDimitry AndricSRCS_MIN+= Support/Signals.cpp 842986e05bcSDimitry AndricSRCS_MIN+= Support/SmallPtrSet.cpp 843986e05bcSDimitry AndricSRCS_MIN+= Support/SmallVector.cpp 844986e05bcSDimitry AndricSRCS_MIN+= Support/SourceMgr.cpp 845986e05bcSDimitry AndricSRCS_MIN+= Support/SpecialCaseList.cpp 846986e05bcSDimitry AndricSRCS_MIN+= Support/Statistic.cpp 847986e05bcSDimitry AndricSRCS_MIN+= Support/StringExtras.cpp 848986e05bcSDimitry AndricSRCS_MIN+= Support/StringMap.cpp 849986e05bcSDimitry AndricSRCS_MIN+= Support/StringRef.cpp 850986e05bcSDimitry AndricSRCS_MIN+= Support/StringSaver.cpp 8515e86819cSDimitry AndricSRCS_MIN+= Support/SymbolRemappingReader.cpp 852986e05bcSDimitry AndricSRCS_EXT+= Support/SystemUtils.cpp 8531ae4f0f6SDimitry AndricSRCS_LLD+= Support/TarWriter.cpp 854986e05bcSDimitry AndricSRCS_MIN+= Support/TargetParser.cpp 855986e05bcSDimitry AndricSRCS_MIN+= Support/TargetRegistry.cpp 856986e05bcSDimitry AndricSRCS_MIN+= Support/ThreadLocal.cpp 85709bfd043SDimitry AndricSRCS_MIN+= Support/ThreadPool.cpp 858986e05bcSDimitry AndricSRCS_MIN+= Support/Threading.cpp 859986e05bcSDimitry AndricSRCS_MIN+= Support/Timer.cpp 860986e05bcSDimitry AndricSRCS_MIN+= Support/ToolOutputFile.cpp 86109bfd043SDimitry AndricSRCS_MIN+= Support/TrigramIndex.cpp 862986e05bcSDimitry AndricSRCS_MIN+= Support/Triple.cpp 863986e05bcSDimitry AndricSRCS_MIN+= Support/Twine.cpp 864986e05bcSDimitry AndricSRCS_MIN+= Support/Unicode.cpp 8659f6e9a9fSDimitry AndricSRCS_MIN+= Support/UnicodeCaseFold.cpp 866986e05bcSDimitry AndricSRCS_MIN+= Support/Valgrind.cpp 8675e86819cSDimitry AndricSRCS_MIN+= Support/VirtualFileSystem.cpp 8689f6e9a9fSDimitry AndricSRCS_MIN+= Support/VersionTuple.cpp 869*80a8c751SEd MasteSRCS_MIN+= Support/WithColor.cpp 870986e05bcSDimitry AndricSRCS_MIN+= Support/YAMLParser.cpp 871986e05bcSDimitry AndricSRCS_MIN+= Support/YAMLTraits.cpp 872986e05bcSDimitry AndricSRCS_MIN+= Support/circular_raw_ostream.cpp 873986e05bcSDimitry AndricSRCS_MIN+= Support/raw_os_ostream.cpp 874986e05bcSDimitry AndricSRCS_MIN+= Support/raw_ostream.cpp 875986e05bcSDimitry AndricSRCS_MIN+= Support/regcomp.c 876986e05bcSDimitry AndricSRCS_MIN+= Support/regerror.c 877986e05bcSDimitry AndricSRCS_MIN+= Support/regexec.c 878986e05bcSDimitry AndricSRCS_MIN+= Support/regfree.c 879986e05bcSDimitry AndricSRCS_MIN+= Support/regstrlcpy.c 880*80a8c751SEd MasteSRCS_MIN+= Support/xxhash.cpp 881986e05bcSDimitry AndricSRCS_MIN+= TableGen/Error.cpp 882d25b9f8fSDimitry AndricSRCS_MIN+= TableGen/JSONBackend.cpp 883986e05bcSDimitry AndricSRCS_MIN+= TableGen/Main.cpp 884986e05bcSDimitry AndricSRCS_MIN+= TableGen/Record.cpp 885986e05bcSDimitry AndricSRCS_MIN+= TableGen/SetTheory.cpp 886986e05bcSDimitry AndricSRCS_MIN+= TableGen/StringMatcher.cpp 887986e05bcSDimitry AndricSRCS_MIN+= TableGen/TGLexer.cpp 888986e05bcSDimitry AndricSRCS_MIN+= TableGen/TGParser.cpp 889986e05bcSDimitry AndricSRCS_MIN+= TableGen/TableGenBackend.cpp 890cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no" 891986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64A53Fix835769.cpp 892986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64A57FPLoadBalancing.cpp 893986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64AdvSIMDScalarPass.cpp 894986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64AsmPrinter.cpp 8955e86819cSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64BranchTargets.cpp 8963d54deb3SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CallLowering.cpp 897986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp 898986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CollectLOH.cpp 8995e86819cSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CompressJumpTables.cpp 900edd7eaddSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CondBrTuning.cpp 901986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ConditionOptimizer.cpp 902986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ConditionalCompares.cpp 903986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp 904986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ExpandPseudoInsts.cpp 905b40b48b8SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64FalkorHWPFFix.cpp 906986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64FastISel.cpp 907986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64FrameLowering.cpp 908986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ISelDAGToDAG.cpp 909986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ISelLowering.cpp 910986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64InstrInfo.cpp 9113d54deb3SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64InstructionSelector.cpp 9123d54deb3SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64LegalizerInfo.cpp 913986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64LoadStoreOptimizer.cpp 914986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MCInstLower.cpp 9155897d2f0SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MacroFusion.cpp 916986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64PBQPRegAlloc.cpp 9175e86819cSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64PreLegalizerCombiner.cpp 918986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64PromoteConstant.cpp 919986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64RedundantCopyElimination.cpp 9203d54deb3SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64RegisterBankInfo.cpp 921986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64RegisterInfo.cpp 92236cb3905SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64SIMDInstrOpt.cpp 923986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64SelectionDAGInfo.cpp 9245e86819cSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64SpeculationHardening.cpp 925986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64StorePairSuppress.cpp 926986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64Subtarget.cpp 927986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64TargetMachine.cpp 928986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64TargetObjectFile.cpp 929986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64TargetTransformInfo.cpp 930986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AsmParser/AArch64AsmParser.cpp 93130d4828eSDimitry AndricSRCS_XDW+= Target/AArch64/Disassembler/AArch64Disassembler.cpp 93230d4828eSDimitry AndricSRCS_XDW+= Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp 933986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/InstPrinter/AArch64InstPrinter.cpp 934986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp 935986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp 936986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp 937986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp 938986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp 939986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp 940986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp 941986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp 942986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp 943a580b014SDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp 944a580b014SDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp 945986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/TargetInfo/AArch64TargetInfo.cpp 946986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/Utils/AArch64BaseInfo.cpp 947cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64 948cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no" 949986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/A15SDOptimizer.cpp 950986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMAsmPrinter.cpp 951986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMBaseInstrInfo.cpp 952986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMBaseRegisterInfo.cpp 9533d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMCallLowering.cpp 9549f6e9a9fSDimitry AndricSRCS_MIN+= Target/ARM/ARMCodeGenPrepare.cpp 95509bfd043SDimitry AndricSRCS_MIN+= Target/ARM/ARMComputeBlockSize.cpp 956986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMConstantIslandPass.cpp 957986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMConstantPoolValue.cpp 958986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMExpandPseudoInsts.cpp 959986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMFastISel.cpp 960986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMFrameLowering.cpp 961986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMHazardRecognizer.cpp 962986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMISelDAGToDAG.cpp 963986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMISelLowering.cpp 964986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMInstrInfo.cpp 9653d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMInstructionSelector.cpp 9663d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMLegalizerInfo.cpp 967986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMLoadStoreOptimizer.cpp 968986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMMCInstLower.cpp 969986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMMachineFunctionInfo.cpp 970edd7eaddSDimitry AndricSRCS_MIN+= Target/ARM/ARMMacroFusion.cpp 971986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMOptimizeBarriersPass.cpp 9729f6e9a9fSDimitry AndricSRCS_MIN+= Target/ARM/ARMParallelDSP.cpp 9733d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMRegisterBankInfo.cpp 974986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMRegisterInfo.cpp 975986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMSelectionDAGInfo.cpp 976986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMSubtarget.cpp 977986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMTargetMachine.cpp 978986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMTargetObjectFile.cpp 979986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMTargetTransformInfo.cpp 980986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/AsmParser/ARMAsmParser.cpp 981986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Disassembler/ARMDisassembler.cpp 982986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/InstPrinter/ARMInstPrinter.cpp 983986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMAsmBackend.cpp 984986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp 985986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMELFStreamer.cpp 986986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp 987986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp 988986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCExpr.cpp 989986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp 990986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp 991986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp 992986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp 993986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp 994986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp 995986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp 996986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MLxExpansionPass.cpp 997986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/TargetInfo/ARMTargetInfo.cpp 998986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb1FrameLowering.cpp 999986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb1InstrInfo.cpp 1000986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb2ITBlockPass.cpp 1001986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb2InstrInfo.cpp 1002986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb2SizeReduction.cpp 1003986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ThumbRegisterInfo.cpp 100436cb3905SDimitry AndricSRCS_MIN+= Target/ARM/Utils/ARMBaseInfo.cpp 1005cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM 100689edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no" 100789edb881SDimitry AndricSRCS_MIN+= Target/BPF/AsmParser/BPFAsmParser.cpp 100889edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFAsmPrinter.cpp 100989edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFFrameLowering.cpp 101089edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFISelDAGToDAG.cpp 101189edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFISelLowering.cpp 101289edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFInstrInfo.cpp 101389edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFMCInstLower.cpp 1014f9c0a512SDimitry AndricSRCS_MIN+= Target/BPF/BPFMIPeephole.cpp 101589edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFRegisterInfo.cpp 1016f9c0a512SDimitry AndricSRCS_MIN+= Target/BPF/BPFSelectionDAGInfo.cpp 101789edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFSubtarget.cpp 101889edb881SDimitry AndricSRCS_MIN+= Target/BPF/BPFTargetMachine.cpp 101989edb881SDimitry AndricSRCS_MIN+= Target/BPF/Disassembler/BPFDisassembler.cpp 102089edb881SDimitry AndricSRCS_MIN+= Target/BPF/InstPrinter/BPFInstPrinter.cpp 102189edb881SDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFAsmBackend.cpp 102289edb881SDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp 102389edb881SDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp 102489edb881SDimitry AndricSRCS_MIN+= Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp 102589edb881SDimitry AndricSRCS_MIN+= Target/BPF/TargetInfo/BPFTargetInfo.cpp 102689edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF 1027cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no" 1028986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/AsmParser/MipsAsmParser.cpp 102930d4828eSDimitry AndricSRCS_XDW+= Target/Mips/Disassembler/MipsDisassembler.cpp 1030986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/InstPrinter/MipsInstPrinter.cpp 1031986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp 1032986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsABIInfo.cpp 1033986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsAsmBackend.cpp 1034986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp 1035986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsELFStreamer.cpp 1036986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp 1037986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp 1038986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCExpr.cpp 1039986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp 1040986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp 1041986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsOptionRecord.cpp 1042986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp 1043f37b6182SDimitry AndricSRCS_MIN+= Target/Mips/MicroMipsSizeReduction.cpp 1044986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16FrameLowering.cpp 1045986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16HardFloat.cpp 1046986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16HardFloatInfo.cpp 1047986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16ISelDAGToDAG.cpp 1048986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16ISelLowering.cpp 1049986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16InstrInfo.cpp 1050986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16RegisterInfo.cpp 1051986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsAnalyzeImmediate.cpp 1052986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsAsmPrinter.cpp 10539f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsBranchExpansion.cpp 1054986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsCCState.cpp 10559f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsCallLowering.cpp 1056986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsConstantIslandPass.cpp 1057986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsDelaySlotFiller.cpp 10589f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsExpandPseudo.cpp 1059986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsFastISel.cpp 1060986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsFrameLowering.cpp 1061986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsISelDAGToDAG.cpp 1062986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsISelLowering.cpp 1063986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsInstrInfo.cpp 10649f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsInstructionSelector.cpp 10659f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsLegalizerInfo.cpp 1066986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsMCInstLower.cpp 1067986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsMachineFunction.cpp 1068986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsModuleISelDAGToDAG.cpp 1069986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsOptimizePICCall.cpp 1070986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsOs16.cpp 10715e86819cSDimitry AndricSRCS_MIN+= Target/Mips/MipsPreLegalizerCombiner.cpp 10729f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsRegisterBankInfo.cpp 1073986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsRegisterInfo.cpp 1074986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEFrameLowering.cpp 1075986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEISelDAGToDAG.cpp 1076986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEISelLowering.cpp 1077986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEInstrInfo.cpp 1078986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSERegisterInfo.cpp 1079986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSubtarget.cpp 1080986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsTargetMachine.cpp 1081986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsTargetObjectFile.cpp 1082986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/TargetInfo/MipsTargetInfo.cpp 1083cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS 1084cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no" 1085986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/AsmParser/PPCAsmParser.cpp 1086986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/Disassembler/PPCDisassembler.cpp 1087986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/InstPrinter/PPCInstPrinter.cpp 1088986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp 1089986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp 1090986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp 1091986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp 1092986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp 1093986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp 1094986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp 1095986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCPredicates.cpp 1096986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCAsmPrinter.cpp 1097986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCBoolRetToInt.cpp 109836cb3905SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCBranchCoalescing.cpp 1099986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCBranchSelector.cpp 1100986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCCCState.cpp 1101986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCCTRLoops.cpp 1102986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCEarlyReturn.cpp 11035897d2f0SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCExpandISEL.cpp 1104986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCFastISel.cpp 1105986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCFrameLowering.cpp 1106986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCHazardRecognizers.cpp 1107986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCISelDAGToDAG.cpp 1108986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCISelLowering.cpp 1109986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCInstrInfo.cpp 1110986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCLoopPreIncPrep.cpp 1111986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMCInstLower.cpp 1112986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMIPeephole.cpp 1113986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMachineFunctionInfo.cpp 111436cb3905SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCPreEmitPeephole.cpp 1115986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCQPXLoadSplat.cpp 111636cb3905SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCReduceCRLogicals.cpp 1117986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCRegisterInfo.cpp 1118986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCSubtarget.cpp 1119986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTLSDynamicCall.cpp 1120986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTOCRegDeps.cpp 1121986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTargetMachine.cpp 1122986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTargetObjectFile.cpp 1123986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTargetTransformInfo.cpp 1124986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCVSXCopy.cpp 1125986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCVSXFMAMutate.cpp 1126986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCVSXSwapRemoval.cpp 1127986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp 1128cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC 1129cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_SPARC} != "no" 1130986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/AsmParser/SparcAsmParser.cpp 1131986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/DelaySlotFiller.cpp 113230d4828eSDimitry AndricSRCS_XDW+= Target/Sparc/Disassembler/SparcDisassembler.cpp 1133986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/InstPrinter/SparcInstPrinter.cpp 1134986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/LeonPasses.cpp 1135986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp 1136986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp 1137986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp 1138986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/MCTargetDesc/SparcMCCodeEmitter.cpp 1139986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/MCTargetDesc/SparcMCExpr.cpp 1140986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp 1141986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/MCTargetDesc/SparcTargetStreamer.cpp 1142986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcAsmPrinter.cpp 1143986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcFrameLowering.cpp 1144986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcISelDAGToDAG.cpp 1145986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcISelLowering.cpp 1146986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcInstrInfo.cpp 1147986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcMCInstLower.cpp 1148986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcMachineFunctionInfo.cpp 1149986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcRegisterInfo.cpp 1150986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcSubtarget.cpp 1151986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcTargetMachine.cpp 1152986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcTargetObjectFile.cpp 1153986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/TargetInfo/SparcTargetInfo.cpp 1154cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_SPARC 1155986e05bcSDimitry AndricSRCS_MIN+= Target/Target.cpp 115609bfd043SDimitry AndricSRCS_MIN+= Target/TargetIntrinsicInfo.cpp 1157986e05bcSDimitry AndricSRCS_MIN+= Target/TargetLoweringObjectFile.cpp 1158986e05bcSDimitry AndricSRCS_MIN+= Target/TargetMachine.cpp 1159986e05bcSDimitry AndricSRCS_MIN+= Target/TargetMachineC.cpp 1160cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no" 1161986e05bcSDimitry AndricSRCS_MIN+= Target/X86/AsmParser/X86AsmInstrumentation.cpp 1162986e05bcSDimitry AndricSRCS_MIN+= Target/X86/AsmParser/X86AsmParser.cpp 116330d4828eSDimitry AndricSRCS_XDW+= Target/X86/Disassembler/X86Disassembler.cpp 116430d4828eSDimitry AndricSRCS_XDW+= Target/X86/Disassembler/X86DisassemblerDecoder.cpp 1165986e05bcSDimitry AndricSRCS_MIN+= Target/X86/InstPrinter/X86ATTInstPrinter.cpp 1166986e05bcSDimitry AndricSRCS_MIN+= Target/X86/InstPrinter/X86InstComments.cpp 11679f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/InstPrinter/X86InstPrinterCommon.cpp 1168986e05bcSDimitry AndricSRCS_MIN+= Target/X86/InstPrinter/X86IntelInstPrinter.cpp 1169986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86AsmBackend.cpp 1170986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp 1171986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MCAsmInfo.cpp 1172986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp 1173986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MCTargetDesc.cpp 1174986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MachObjectWriter.cpp 1175986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp 1176986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp 117736cb3905SDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp 1178986e05bcSDimitry AndricSRCS_MIN+= Target/X86/TargetInfo/X86TargetInfo.cpp 1179986e05bcSDimitry AndricSRCS_MIN+= Target/X86/Utils/X86ShuffleDecode.cpp 11809f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/ShadowCallStack.cpp 1181986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86AsmPrinter.cpp 11829f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86AvoidStoreForwardingBlocks.cpp 1183986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86CallFrameOptimization.cpp 11843d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86CallLowering.cpp 118509bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86CallingConv.cpp 1186b40b48b8SDimitry AndricSRCS_MIN+= Target/X86/X86CmovConversion.cpp 11875e86819cSDimitry AndricSRCS_MIN+= Target/X86/X86CondBrFolding.cpp 11885e86819cSDimitry AndricSRCS_MIN+= Target/X86/X86DiscriminateMemOps.cpp 118936cb3905SDimitry AndricSRCS_MIN+= Target/X86/X86DomainReassignment.cpp 119009bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86EvexToVex.cpp 1191986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ExpandPseudo.cpp 1192986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FastISel.cpp 1193986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FixupBWInsts.cpp 1194986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FixupLEAs.cpp 1195986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FixupSetCC.cpp 11960556cfadSDimitry AndricSRCS_MIN+= Target/X86/X86FlagsCopyLowering.cpp 1197986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FloatingPoint.cpp 1198986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FrameLowering.cpp 1199986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ISelDAGToDAG.cpp 1200986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ISelLowering.cpp 12019f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86IndirectBranchTracking.cpp 12025e86819cSDimitry AndricSRCS_MIN+= Target/X86/X86InsertPrefetch.cpp 120309bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86InstrFMA3Info.cpp 12049f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86InstrFoldTables.cpp 1205986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86InstrInfo.cpp 12063d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86InstructionSelector.cpp 120709bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86InterleavedAccess.cpp 12083d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86LegalizerInfo.cpp 1209986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86MCInstLower.cpp 1210986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86MachineFunctionInfo.cpp 12115897d2f0SDimitry AndricSRCS_MIN+= Target/X86/X86MacroFusion.cpp 1212986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86OptimizeLEAs.cpp 1213986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86PadShortFunction.cpp 12143d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86RegisterBankInfo.cpp 1215986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86RegisterInfo.cpp 121607577dfeSDimitry AndricSRCS_MIN+= Target/X86/X86RetpolineThunks.cpp 1217986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86SelectionDAGInfo.cpp 1218986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ShuffleDecodeConstantPool.cpp 12199f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86SpeculativeLoadHardening.cpp 1220986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86Subtarget.cpp 1221986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86TargetMachine.cpp 1222986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86TargetObjectFile.cpp 1223986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86TargetTransformInfo.cpp 1224986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86VZeroUpper.cpp 1225986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86WinAllocaExpander.cpp 1226986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86WinEHState.cpp 1227cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86 1228b40b48b8SDimitry AndricSRCS_EXT+= ToolDrivers/llvm-dlltool/DlltoolDriver.cpp 12295517e702SDimitry AndricSRCS_EXL+= ToolDrivers/llvm-lib/LibDriver.cpp 12309f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp 12319f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/AggressiveInstCombine/TruncInstCombine.cpp 123209bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroCleanup.cpp 123309bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroEarly.cpp 123409bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroElide.cpp 123509bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroFrame.cpp 123609bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroSplit.cpp 123709bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/Coroutines.cpp 123809bfd043SDimitry AndricSRCS_MIN+= Transforms/IPO/AlwaysInliner.cpp 1239986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ArgumentPromotion.cpp 1240986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/BarrierNoopPass.cpp 124167b158f6SDimitry AndricSRCS_EXT+= Transforms/IPO/BlockExtractor.cpp 124236cb3905SDimitry AndricSRCS_MIN+= Transforms/IPO/CalledValuePropagation.cpp 1243986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ConstantMerge.cpp 1244986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/CrossDSOCFI.cpp 1245986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/DeadArgumentElimination.cpp 1246986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ElimAvailExtern.cpp 1247986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ExtractGV.cpp 1248986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ForceFunctionAttrs.cpp 1249986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/FunctionAttrs.cpp 1250986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/FunctionImport.cpp 1251986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/GlobalDCE.cpp 1252986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/GlobalOpt.cpp 125309bfd043SDimitry AndricSRCS_MIN+= Transforms/IPO/GlobalSplit.cpp 12545e86819cSDimitry AndricSRCS_MIN+= Transforms/IPO/HotColdSplitting.cpp 1255986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/IPConstantPropagation.cpp 1256986e05bcSDimitry AndricSRCS_EXT+= Transforms/IPO/IPO.cpp 1257986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/InferFunctionAttrs.cpp 1258986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/InlineSimple.cpp 1259986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/Inliner.cpp 1260986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/Internalize.cpp 1261986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/LoopExtractor.cpp 1262986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/LowerTypeTests.cpp 1263986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/MergeFunctions.cpp 1264986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/PartialInlining.cpp 1265986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/PassManagerBuilder.cpp 1266986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/PruneEH.cpp 12679f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/IPO/SCCP.cpp 1268986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/SampleProfile.cpp 1269986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/StripDeadPrototypes.cpp 1270986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/StripSymbols.cpp 12719f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/IPO/SyntheticCountsPropagation.cpp 127209bfd043SDimitry AndricSRCS_MIN+= Transforms/IPO/ThinLTOBitcodeWriter.cpp 1273986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/WholeProgramDevirt.cpp 1274986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineAddSub.cpp 1275986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineAndOrXor.cpp 1276986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineCalls.cpp 1277986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineCasts.cpp 1278986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineCompares.cpp 1279986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp 1280986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineMulDivRem.cpp 1281986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombinePHI.cpp 1282986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineSelect.cpp 1283986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineShifts.cpp 1284986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineSimplifyDemanded.cpp 1285986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineVectorOps.cpp 1286986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstructionCombining.cpp 1287986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/AddressSanitizer.cpp 1288986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/BoundsChecking.cpp 12899f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/CGProfile.cpp 12905e86819cSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/ControlHeightReduction.cpp 1291986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/DataFlowSanitizer.cpp 1292986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/EfficiencySanitizer.cpp 1293986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/GCOVProfiling.cpp 129436cb3905SDimitry AndricSRCS_MIN+= Transforms/Instrumentation/HWAddressSanitizer.cpp 1295986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/IndirectCallPromotion.cpp 1296986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/InstrProfiling.cpp 1297986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/Instrumentation.cpp 1298986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/MemorySanitizer.cpp 1299986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/PGOInstrumentation.cpp 130024d58133SDimitry AndricSRCS_MIN+= Transforms/Instrumentation/PGOMemOPSizeOpt.cpp 1301986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/SanitizerCoverage.cpp 1302986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/ThreadSanitizer.cpp 1303986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/DependencyAnalysis.cpp 1304986e05bcSDimitry AndricSRCS_EXT+= Transforms/ObjCARC/ObjCARC.cpp 1305986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCAPElim.cpp 1306986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCContract.cpp 1307986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCExpand.cpp 1308986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCOpts.cpp 1309986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ProvenanceAnalysis.cpp 1310986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp 1311986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/PtrState.cpp 1312986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/ADCE.cpp 1313986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/AlignmentFromAssumptions.cpp 1314986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/BDCE.cpp 131536cb3905SDimitry AndricSRCS_MIN+= Transforms/Scalar/CallSiteSplitting.cpp 1316986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/ConstantHoisting.cpp 1317986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/ConstantProp.cpp 1318986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/CorrelatedValuePropagation.cpp 1319986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/DCE.cpp 1320986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/DeadStoreElimination.cpp 132136cb3905SDimitry AndricSRCS_MIN+= Transforms/Scalar/DivRemPairs.cpp 1322986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/EarlyCSE.cpp 1323986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/FlattenCFGPass.cpp 1324986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Float2Int.cpp 1325986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/GVN.cpp 1326986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/GVNHoist.cpp 1327302affcbSDimitry AndricSRCS_MIN+= Transforms/Scalar/GVNSink.cpp 1328986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/GuardWidening.cpp 1329f1a29dd3SDimitry AndricSRCS_MIN+= Transforms/Scalar/IVUsersPrinter.cpp 1330986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/IndVarSimplify.cpp 1331986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/InductiveRangeCheckElimination.cpp 1332050e2df1SDimitry AndricSRCS_EXT+= Transforms/Scalar/InferAddressSpaces.cpp 13339f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Scalar/InstSimplifyPass.cpp 1334986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/JumpThreading.cpp 1335986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LICM.cpp 1336f1a29dd3SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopAccessAnalysisPrinter.cpp 1337986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopDataPrefetch.cpp 1338986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopDeletion.cpp 1339986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopDistribute.cpp 1340986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopIdiomRecognize.cpp 134109bfd043SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopInstSimplify.cpp 1342986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopInterchange.cpp 1343986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopLoadElimination.cpp 1344f1a29dd3SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopPassManager.cpp 13455897d2f0SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopPredication.cpp 1346986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopRerollPass.cpp 1347986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopRotation.cpp 1348986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopSimplifyCFG.cpp 134909bfd043SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopSink.cpp 1350986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopStrengthReduce.cpp 1351986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopUnrollPass.cpp 13529f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopUnrollAndJamPass.cpp 1353986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopUnswitch.cpp 1354986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopVersioningLICM.cpp 1355986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerAtomic.cpp 1356986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerExpectIntrinsic.cpp 1357986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerGuardIntrinsic.cpp 13585e86819cSDimitry AndricSRCS_MIN+= Transforms/Scalar/MakeGuardsExplicit.cpp 1359986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/MemCpyOptimizer.cpp 136036cb3905SDimitry AndricSRCS_MIN+= Transforms/Scalar/MergeICmps.cpp 1361986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/MergedLoadStoreMotion.cpp 1362986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/NaryReassociate.cpp 136309bfd043SDimitry AndricSRCS_MIN+= Transforms/Scalar/NewGVN.cpp 1364986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/PartiallyInlineLibCalls.cpp 1365986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/PlaceSafepoints.cpp 1366986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Reassociate.cpp 1367986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Reg2Mem.cpp 1368986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/RewriteStatepointsForGC.cpp 1369986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SCCP.cpp 1370986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SROA.cpp 1371986e05bcSDimitry AndricSRCS_EXT+= Transforms/Scalar/Scalar.cpp 1372986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Scalarizer.cpp 1373986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SeparateConstOffsetFromGEP.cpp 1374f37b6182SDimitry AndricSRCS_MIN+= Transforms/Scalar/SimpleLoopUnswitch.cpp 1375986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SimplifyCFGPass.cpp 1376986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Sink.cpp 137736cb3905SDimitry AndricSRCS_MIN+= Transforms/Scalar/SpeculateAroundPHIs.cpp 1378986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SpeculativeExecution.cpp 1379986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/StraightLineStrengthReduce.cpp 1380986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/StructurizeCFG.cpp 1381986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/TailRecursionElimination.cpp 13825e86819cSDimitry AndricSRCS_MIN+= Transforms/Scalar/WarnMissedTransforms.cpp 1383986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/ASanStackFrameLayout.cpp 1384986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/AddDiscriminators.cpp 1385986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BasicBlockUtils.cpp 1386986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BreakCriticalEdges.cpp 1387986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BuildLibCalls.cpp 1388986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BypassSlowDivision.cpp 138936cb3905SDimitry AndricSRCS_MIN+= Transforms/Utils/CallPromotionUtils.cpp 13905e86819cSDimitry AndricSRCS_MIN+= Transforms/Utils/CanonicalizeAliases.cpp 1391986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CloneFunction.cpp 1392986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CloneModule.cpp 1393986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CodeExtractor.cpp 1394986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CtorUtils.cpp 1395986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/DemoteRegToStack.cpp 139636cb3905SDimitry AndricSRCS_MIN+= Transforms/Utils/EntryExitInstrumenter.cpp 139709bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/EscapeEnumerator.cpp 1398986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/Evaluator.cpp 1399986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/FlattenCFG.cpp 140009bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/FunctionComparator.cpp 1401986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/FunctionImportUtils.cpp 1402986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/GlobalStatus.cpp 14035e86819cSDimitry AndricSRCS_MIN+= Transforms/Utils/GuardUtils.cpp 140409bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/ImportedFunctionsInliningStatistics.cpp 1405986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/InlineFunction.cpp 1406986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/InstructionNamer.cpp 1407986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/IntegerDivision.cpp 1408986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LCSSA.cpp 140909bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/LibCallsShrinkWrap.cpp 1410986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/Local.cpp 1411986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopSimplify.cpp 14129f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopRotationUtils.cpp 1413986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUnroll.cpp 14149f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUnrollAndJam.cpp 141509bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUnrollPeel.cpp 1416986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUnrollRuntime.cpp 1417986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUtils.cpp 1418986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopVersioning.cpp 1419986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LowerInvoke.cpp 1420986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LowerSwitch.cpp 1421986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/Mem2Reg.cpp 1422986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/MetaRenamer.cpp 1423986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/ModuleUtils.cpp 142409bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/NameAnonGlobals.cpp 14255897d2f0SDimitry AndricSRCS_MIN+= Transforms/Utils/PredicateInfo.cpp 1426986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/PromoteMemoryToRegister.cpp 1427986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SSAUpdater.cpp 1428986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SanitizerStats.cpp 1429986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SimplifyCFG.cpp 1430986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SimplifyIndVar.cpp 1431986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SimplifyLibCalls.cpp 1432986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SplitModule.cpp 143309bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/StripGCRelocates.cpp 143409bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/StripNonLineTableDebugInfo.cpp 1435986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SymbolRewriter.cpp 1436986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/UnifyFunctionExitNodes.cpp 1437986e05bcSDimitry AndricSRCS_EXT+= Transforms/Utils/Utils.cpp 14385897d2f0SDimitry AndricSRCS_MIN+= Transforms/Utils/VNCoercion.cpp 1439986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/ValueMapper.cpp 1440986e05bcSDimitry AndricSRCS_MIN+= Transforms/Vectorize/LoadStoreVectorizer.cpp 14419f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Vectorize/LoopVectorizationLegality.cpp 1442986e05bcSDimitry AndricSRCS_MIN+= Transforms/Vectorize/LoopVectorize.cpp 1443986e05bcSDimitry AndricSRCS_MIN+= Transforms/Vectorize/SLPVectorizer.cpp 144436cb3905SDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlan.cpp 14459f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlanHCFGBuilder.cpp 14465e86819cSDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlanHCFGTransforms.cpp 14479f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlanVerifier.cpp 1448986e05bcSDimitry AndricSRCS_EXT+= Transforms/Vectorize/Vectorize.cpp 1449efa75597SDimitry AndricSRCS_EXT+= XRay/BlockIndexer.cpp 1450efa75597SDimitry AndricSRCS_EXT+= XRay/BlockVerifier.cpp 1451efa75597SDimitry AndricSRCS_EXT+= XRay/FDRRecordProducer.cpp 1452efa75597SDimitry AndricSRCS_EXT+= XRay/FDRRecords.cpp 1453efa75597SDimitry AndricSRCS_EXT+= XRay/FDRTraceExpander.cpp 1454efa75597SDimitry AndricSRCS_EXT+= XRay/FileHeaderReader.cpp 1455050e2df1SDimitry AndricSRCS_EXT+= XRay/InstrumentationMap.cpp 1456efa75597SDimitry AndricSRCS_EXT+= XRay/LogBuilderConsumer.cpp 1457efa75597SDimitry AndricSRCS_EXT+= XRay/RecordInitializer.cpp 145867b158f6SDimitry AndricSRCS_EXT+= XRay/Trace.cpp 1459986e05bcSDimitry Andric 1460986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_MIN} 1461caf90252SBryan Drewery.if !defined(TOOLS_PREFIX) || ${MK_LLD_BOOTSTRAP} != "no" 146230d4828eSDimitry AndricSRCS_ALL+= ${SRCS_MIW} 146330d4828eSDimitry Andric.endif 1464986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" 1465986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_EXT} 1466986e05bcSDimitry Andric.endif 1467986e05bcSDimitry Andric.if ${MK_CLANG_FULL} != "no" 1468986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_FUL} 1469986e05bcSDimitry Andric.endif 147078187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLD} != "no" || \ 147178187278SBryan Drewery (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no") 147275bc38b9SEd MasteSRCS_ALL+= ${SRCS_EXL} 147375bc38b9SEd Maste.endif 147478187278SBryan Drewery.if ${MK_LLD} != "no" || \ 147578187278SBryan Drewery (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no") 14760fc5d238SDimitry AndricSRCS_ALL+= ${SRCS_LLD} 14770fc5d238SDimitry Andric.endif 1478986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" 1479986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_XDB} 1480986e05bcSDimitry Andric.endif 148178187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || ${MK_LLD} != "no" || \ 148278187278SBryan Drewery (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no") 148375bc38b9SEd MasteSRCS_ALL+= ${SRCS_XDL} 148475bc38b9SEd Maste.endif 148530d4828eSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || !defined(TOOLS_PREFIX) 148630d4828eSDimitry AndricSRCS_ALL+= ${SRCS_XDW} 148730d4828eSDimitry Andric.endif 1488986e05bcSDimitry AndricSRCS+= ${SRCS_ALL:O} 1489986e05bcSDimitry Andric 14909f6e9a9fSDimitry Andricllvm/IR/Attributes.inc: ${LLVM_SRCS}/include/llvm/IR/Attributes.td 1491986e05bcSDimitry Andric ${LLVM_TBLGEN} -gen-attrs \ 1492050e2df1SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1493986e05bcSDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Attributes.td 14949f6e9a9fSDimitry AndricTGHDRS+= llvm/IR/Attributes.inc 1495986e05bcSDimitry Andric 14969f6e9a9fSDimitry Andricllvm/IR/IntrinsicEnums.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 14979f6e9a9fSDimitry Andric ${LLVM_TBLGEN} -gen-intrinsic-enums \ 1498050e2df1SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1499986e05bcSDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 15009f6e9a9fSDimitry AndricTGHDRS+= llvm/IR/IntrinsicEnums.inc 15019f6e9a9fSDimitry Andric 15029f6e9a9fSDimitry Andricllvm/IR/IntrinsicImpl.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 15039f6e9a9fSDimitry Andric ${LLVM_TBLGEN} -gen-intrinsic-impl \ 15049f6e9a9fSDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 15059f6e9a9fSDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 15069f6e9a9fSDimitry AndricTGHDRS+= llvm/IR/IntrinsicImpl.inc 1507986e05bcSDimitry Andric 1508986e05bcSDimitry AndricAttributesCompatFunc.inc: ${LLVM_SRCS}/lib/IR/AttributesCompatFunc.td 1509986e05bcSDimitry Andric ${LLVM_TBLGEN} -gen-attrs \ 1510050e2df1SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1511986e05bcSDimitry Andric ${LLVM_SRCS}/lib/IR/AttributesCompatFunc.td 1512986e05bcSDimitry AndricTGHDRS+= AttributesCompatFunc.inc 1513986e05bcSDimitry Andric 15149f6e9a9fSDimitry AndricInstCombineTables.inc: ${LLVM_SRCS}/lib/Transforms/InstCombine/InstCombineTables.td 15159f6e9a9fSDimitry Andric ${LLVM_TBLGEN} -gen-searchable-tables \ 15169f6e9a9fSDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 15179f6e9a9fSDimitry Andric ${LLVM_SRCS}/lib/Transforms/InstCombine/InstCombineTables.td 15189f6e9a9fSDimitry AndricTGHDRS+= InstCombineTables.inc 15199f6e9a9fSDimitry Andric 1520b40b48b8SDimitry Andricllvm-lib/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td 1521986e05bcSDimitry Andric ${LLVM_TBLGEN} -gen-opt-parser-defs \ 1522050e2df1SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 15235517e702SDimitry Andric ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td 1524b40b48b8SDimitry AndricTGHDRS+= llvm-lib/Options.inc 1525b40b48b8SDimitry AndricCFLAGS.LibDriver.cpp+= -I${.OBJDIR}/llvm-lib 1526b40b48b8SDimitry Andric 1527b40b48b8SDimitry Andricllvm-dlltool/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td 1528b40b48b8SDimitry Andric ${LLVM_TBLGEN} -gen-opt-parser-defs \ 1529b40b48b8SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1530b40b48b8SDimitry Andric ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td 1531b40b48b8SDimitry AndricTGHDRS+= llvm-dlltool/Options.inc 1532b40b48b8SDimitry AndricCFLAGS.DlltoolDriver.cpp+= -I${.OBJDIR}/llvm-dlltool 1533986e05bcSDimitry Andric 1534cd283100SBryan Drewerybeforebuild: 1535cd283100SBryan Drewery# 20170724 remove stale Options.inc file, of which there are two different 153637cd60a3SDimitry Andric# versions after upstream r308421, one for llvm-lib, one for llvm-dlltool 1537cd283100SBryan Drewery.for f in Options.inc 1538cd283100SBryan Drewery.if exists(${f}) || exists(${f}.d) 1539cd283100SBryan Drewery @echo Removing stale generated ${f} files 1540cd283100SBryan Drewery @rm -f ${f} ${f}.d 1541cd283100SBryan Drewery.endif 1542cd283100SBryan Drewery.endfor 1543cd283100SBryan Drewery 1544986e05bcSDimitry Andric# Note: some rules are superfluous, not every combination is valid. 1545986e05bcSDimitry Andric.for arch in \ 154689edb881SDimitry Andric AArch64/AArch64 ARM/ARM BPF/BPF Mips/Mips PowerPC/PPC Sparc/Sparc X86/X86 1547986e05bcSDimitry Andric. for hdr in \ 1548986e05bcSDimitry Andric AsmMatcher/-gen-asm-matcher \ 1549986e05bcSDimitry Andric AsmWriter1/-gen-asm-writer,-asmwriternum=1 \ 1550986e05bcSDimitry Andric AsmWriter/-gen-asm-writer \ 1551986e05bcSDimitry Andric CallingConv/-gen-callingconv \ 1552986e05bcSDimitry Andric CodeEmitter/-gen-emitter \ 1553986e05bcSDimitry Andric DAGISel/-gen-dag-isel \ 1554986e05bcSDimitry Andric DisassemblerTables/-gen-disassembler \ 15555897d2f0SDimitry Andric EVEX2VEXTables/-gen-x86-EVEX2VEX-tables \ 1556986e05bcSDimitry Andric FastISel/-gen-fast-isel \ 15573d54deb3SDimitry Andric GlobalISel/-gen-global-isel \ 1558986e05bcSDimitry Andric InstrInfo/-gen-instr-info \ 1559986e05bcSDimitry Andric MCCodeEmitter/-gen-emitter \ 1560986e05bcSDimitry Andric MCPseudoLowering/-gen-pseudo-lowering \ 15615897d2f0SDimitry Andric RegisterBank/-gen-register-bank \ 1562986e05bcSDimitry Andric RegisterInfo/-gen-register-info \ 1563986e05bcSDimitry Andric SubtargetInfo/-gen-subtarget \ 156436cb3905SDimitry Andric SystemOperands/-gen-searchable-tables \ 156536cb3905SDimitry Andric SystemRegister/-gen-searchable-tables 1566986e05bcSDimitry Andric${arch:T}Gen${hdr:H}.inc: ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td 1567986e05bcSDimitry Andric ${LLVM_TBLGEN} ${hdr:T:C/,/ /g} \ 1568986e05bcSDimitry Andric -I ${LLVM_SRCS}/include -I ${LLVM_SRCS}/lib/Target/${arch:H} \ 1569050e2df1SDimitry Andric -d ${.TARGET}.d -o ${.TARGET} \ 1570986e05bcSDimitry Andric ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td 1571986e05bcSDimitry Andric. endfor 1572986e05bcSDimitry Andric.endfor 1573cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no" 1574986e05bcSDimitry AndricTGHDRS+= AArch64GenAsmMatcher.inc 1575986e05bcSDimitry AndricTGHDRS+= AArch64GenAsmWriter.inc 1576986e05bcSDimitry AndricTGHDRS+= AArch64GenAsmWriter1.inc 1577986e05bcSDimitry AndricTGHDRS+= AArch64GenCallingConv.inc 1578986e05bcSDimitry AndricTGHDRS+= AArch64GenDAGISel.inc 1579986e05bcSDimitry AndricTGHDRS+= AArch64GenDisassemblerTables.inc 1580986e05bcSDimitry AndricTGHDRS+= AArch64GenFastISel.inc 15813d54deb3SDimitry AndricTGHDRS+= AArch64GenGlobalISel.inc 1582986e05bcSDimitry AndricTGHDRS+= AArch64GenInstrInfo.inc 1583986e05bcSDimitry AndricTGHDRS+= AArch64GenMCCodeEmitter.inc 1584986e05bcSDimitry AndricTGHDRS+= AArch64GenMCPseudoLowering.inc 15855897d2f0SDimitry AndricTGHDRS+= AArch64GenRegisterBank.inc 1586986e05bcSDimitry AndricTGHDRS+= AArch64GenRegisterInfo.inc 1587986e05bcSDimitry AndricTGHDRS+= AArch64GenSubtargetInfo.inc 1588986e05bcSDimitry AndricTGHDRS+= AArch64GenSystemOperands.inc 1589cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64 1590cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no" 1591986e05bcSDimitry AndricTGHDRS+= ARMGenAsmMatcher.inc 1592986e05bcSDimitry AndricTGHDRS+= ARMGenAsmWriter.inc 1593986e05bcSDimitry AndricTGHDRS+= ARMGenCallingConv.inc 1594986e05bcSDimitry AndricTGHDRS+= ARMGenDAGISel.inc 1595986e05bcSDimitry AndricTGHDRS+= ARMGenDisassemblerTables.inc 1596986e05bcSDimitry AndricTGHDRS+= ARMGenFastISel.inc 15973d54deb3SDimitry AndricTGHDRS+= ARMGenGlobalISel.inc 1598986e05bcSDimitry AndricTGHDRS+= ARMGenInstrInfo.inc 1599986e05bcSDimitry AndricTGHDRS+= ARMGenMCCodeEmitter.inc 1600986e05bcSDimitry AndricTGHDRS+= ARMGenMCPseudoLowering.inc 16015897d2f0SDimitry AndricTGHDRS+= ARMGenRegisterBank.inc 1602986e05bcSDimitry AndricTGHDRS+= ARMGenRegisterInfo.inc 1603986e05bcSDimitry AndricTGHDRS+= ARMGenSubtargetInfo.inc 160436cb3905SDimitry AndricTGHDRS+= ARMGenSystemRegister.inc 1605cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM 160689edb881SDimitry Andric.if ${MK_LLVM_TARGET_BPF} != "no" 160789edb881SDimitry AndricTGHDRS+= BPFGenAsmMatcher.inc 160889edb881SDimitry AndricTGHDRS+= BPFGenAsmWriter.inc 160989edb881SDimitry AndricTGHDRS+= BPFGenCallingConv.inc 161089edb881SDimitry AndricTGHDRS+= BPFGenDAGISel.inc 161189edb881SDimitry AndricTGHDRS+= BPFGenDisassemblerTables.inc 161289edb881SDimitry AndricTGHDRS+= BPFGenInstrInfo.inc 161389edb881SDimitry AndricTGHDRS+= BPFGenMCCodeEmitter.inc 161489edb881SDimitry AndricTGHDRS+= BPFGenRegisterInfo.inc 161589edb881SDimitry AndricTGHDRS+= BPFGenSubtargetInfo.inc 161689edb881SDimitry Andric.endif # MK_LLVM_TARGET_BPF 1617cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no" 1618986e05bcSDimitry AndricTGHDRS+= MipsGenAsmMatcher.inc 1619986e05bcSDimitry AndricTGHDRS+= MipsGenAsmWriter.inc 1620986e05bcSDimitry AndricTGHDRS+= MipsGenCallingConv.inc 1621986e05bcSDimitry AndricTGHDRS+= MipsGenDAGISel.inc 1622986e05bcSDimitry AndricTGHDRS+= MipsGenDisassemblerTables.inc 1623986e05bcSDimitry AndricTGHDRS+= MipsGenFastISel.inc 16249f6e9a9fSDimitry AndricTGHDRS+= MipsGenGlobalISel.inc 1625986e05bcSDimitry AndricTGHDRS+= MipsGenInstrInfo.inc 1626986e05bcSDimitry AndricTGHDRS+= MipsGenMCCodeEmitter.inc 1627986e05bcSDimitry AndricTGHDRS+= MipsGenMCPseudoLowering.inc 16289f6e9a9fSDimitry AndricTGHDRS+= MipsGenRegisterBank.inc 1629986e05bcSDimitry AndricTGHDRS+= MipsGenRegisterInfo.inc 1630986e05bcSDimitry AndricTGHDRS+= MipsGenSubtargetInfo.inc 1631cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS 1632cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no" 1633986e05bcSDimitry AndricTGHDRS+= PPCGenAsmMatcher.inc 1634986e05bcSDimitry AndricTGHDRS+= PPCGenAsmWriter.inc 1635986e05bcSDimitry AndricTGHDRS+= PPCGenCallingConv.inc 1636986e05bcSDimitry AndricTGHDRS+= PPCGenDAGISel.inc 1637986e05bcSDimitry AndricTGHDRS+= PPCGenDisassemblerTables.inc 1638986e05bcSDimitry AndricTGHDRS+= PPCGenFastISel.inc 1639986e05bcSDimitry AndricTGHDRS+= PPCGenInstrInfo.inc 1640986e05bcSDimitry AndricTGHDRS+= PPCGenMCCodeEmitter.inc 1641986e05bcSDimitry AndricTGHDRS+= PPCGenRegisterInfo.inc 1642986e05bcSDimitry AndricTGHDRS+= PPCGenSubtargetInfo.inc 1643cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC 1644cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_SPARC} != "no" 1645986e05bcSDimitry AndricTGHDRS+= SparcGenAsmMatcher.inc 1646986e05bcSDimitry AndricTGHDRS+= SparcGenAsmWriter.inc 1647986e05bcSDimitry AndricTGHDRS+= SparcGenCallingConv.inc 1648986e05bcSDimitry AndricTGHDRS+= SparcGenDAGISel.inc 1649986e05bcSDimitry AndricTGHDRS+= SparcGenDisassemblerTables.inc 1650986e05bcSDimitry AndricTGHDRS+= SparcGenInstrInfo.inc 1651986e05bcSDimitry AndricTGHDRS+= SparcGenMCCodeEmitter.inc 1652986e05bcSDimitry AndricTGHDRS+= SparcGenRegisterInfo.inc 1653986e05bcSDimitry AndricTGHDRS+= SparcGenSubtargetInfo.inc 1654cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_SPARC 1655cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no" 1656986e05bcSDimitry AndricTGHDRS+= X86GenAsmMatcher.inc 1657986e05bcSDimitry AndricTGHDRS+= X86GenAsmWriter.inc 1658986e05bcSDimitry AndricTGHDRS+= X86GenAsmWriter1.inc 1659986e05bcSDimitry AndricTGHDRS+= X86GenCallingConv.inc 1660986e05bcSDimitry AndricTGHDRS+= X86GenDAGISel.inc 1661986e05bcSDimitry AndricTGHDRS+= X86GenDisassemblerTables.inc 16625897d2f0SDimitry AndricTGHDRS+= X86GenEVEX2VEXTables.inc 1663986e05bcSDimitry AndricTGHDRS+= X86GenFastISel.inc 16643d54deb3SDimitry AndricTGHDRS+= X86GenGlobalISel.inc 1665986e05bcSDimitry AndricTGHDRS+= X86GenInstrInfo.inc 16665897d2f0SDimitry AndricTGHDRS+= X86GenRegisterBank.inc 1667986e05bcSDimitry AndricTGHDRS+= X86GenRegisterInfo.inc 1668986e05bcSDimitry AndricTGHDRS+= X86GenSubtargetInfo.inc 1669cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86 1670986e05bcSDimitry Andric 1671ddf95e2aSBryan DreweryDEPENDFILES+= ${TGHDRS:C/$/.d/} 1672986e05bcSDimitry AndricDPSRCS+= ${TGHDRS} 1673986e05bcSDimitry AndricCLEANFILES+= ${TGHDRS} ${TGHDRS:C/$/.d/} 1674986e05bcSDimitry Andric 1675986e05bcSDimitry Andric.include "../llvm.build.mk" 1676986e05bcSDimitry Andric.include <bsd.lib.mk> 1677