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" && \ 12cbafd263SDimitry Andric ${MK_LLVM_TARGET_MIPS} == "no" && ${MK_LLVM_TARGET_POWERPC} == "no" && \ 13cbafd263SDimitry Andric ${MK_LLVM_TARGET_SPARC} == "no" && ${MK_LLVM_TARGET_X86} == "no" 14cbafd263SDimitry Andric.error Please enable at least one of: MK_LLVM_TARGET_AARCH64,\ 15cbafd263SDimitry Andric MK_LLVM_TARGET_ARM, MK_LLVM_TARGET_MIPS, MK_LLVM_TARGET_POWERPC,\ 16cbafd263SDimitry Andric MK_LLVM_TARGET_SPARC, or MK_LLVM_TARGET_X86 17cbafd263SDimitry Andric.endif 18cbafd263SDimitry Andric 19986e05bcSDimitry Andric.for arch in AArch64 ARM Mips PowerPC Sparc X86 20cbafd263SDimitry Andric. if ${MK_LLVM_TARGET_${arch:tu}} != "no" 21986e05bcSDimitry AndricCFLAGS+= -I${LLVM_SRCS}/lib/Target/${arch} 22cbafd263SDimitry Andric. endif 23986e05bcSDimitry Andric.endfor 24986e05bcSDimitry Andric 25986e05bcSDimitry AndricSRCDIR= lib 26986e05bcSDimitry Andric 27986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasAnalysis.cpp 28986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasAnalysisEvaluator.cpp 29986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasAnalysisSummary.cpp 30986e05bcSDimitry AndricSRCS_MIN+= Analysis/AliasSetTracker.cpp 31986e05bcSDimitry AndricSRCS_EXT+= Analysis/Analysis.cpp 32986e05bcSDimitry AndricSRCS_MIN+= Analysis/AssumptionCache.cpp 33986e05bcSDimitry AndricSRCS_MIN+= Analysis/BasicAliasAnalysis.cpp 34986e05bcSDimitry AndricSRCS_MIN+= Analysis/BlockFrequencyInfo.cpp 35986e05bcSDimitry AndricSRCS_MIN+= Analysis/BlockFrequencyInfoImpl.cpp 36986e05bcSDimitry AndricSRCS_MIN+= Analysis/BranchProbabilityInfo.cpp 37986e05bcSDimitry AndricSRCS_MIN+= Analysis/CFG.cpp 38986e05bcSDimitry AndricSRCS_MIN+= Analysis/CFGPrinter.cpp 39986e05bcSDimitry AndricSRCS_MIN+= Analysis/CFLAndersAliasAnalysis.cpp 40986e05bcSDimitry AndricSRCS_MIN+= Analysis/CFLSteensAliasAnalysis.cpp 41986e05bcSDimitry AndricSRCS_MIN+= Analysis/CGSCCPassManager.cpp 42986e05bcSDimitry AndricSRCS_MIN+= Analysis/CallGraph.cpp 43986e05bcSDimitry AndricSRCS_MIN+= Analysis/CallGraphSCCPass.cpp 44986e05bcSDimitry AndricSRCS_MIN+= Analysis/CallPrinter.cpp 45986e05bcSDimitry AndricSRCS_MIN+= Analysis/CaptureTracking.cpp 4636cb3905SDimitry AndricSRCS_MIN+= Analysis/CmpInstAnalysis.cpp 47986e05bcSDimitry AndricSRCS_MIN+= Analysis/CodeMetrics.cpp 48986e05bcSDimitry AndricSRCS_MIN+= Analysis/ConstantFolding.cpp 49986e05bcSDimitry AndricSRCS_MIN+= Analysis/CostModel.cpp 50986e05bcSDimitry AndricSRCS_MIN+= Analysis/Delinearization.cpp 51986e05bcSDimitry AndricSRCS_MIN+= Analysis/DemandedBits.cpp 52986e05bcSDimitry AndricSRCS_MIN+= Analysis/DependenceAnalysis.cpp 53986e05bcSDimitry AndricSRCS_MIN+= Analysis/DivergenceAnalysis.cpp 54986e05bcSDimitry AndricSRCS_MIN+= Analysis/DomPrinter.cpp 55986e05bcSDimitry AndricSRCS_MIN+= Analysis/DominanceFrontier.cpp 56986e05bcSDimitry AndricSRCS_MIN+= Analysis/EHPersonalities.cpp 57986e05bcSDimitry AndricSRCS_MIN+= Analysis/GlobalsModRef.cpp 58986e05bcSDimitry AndricSRCS_MIN+= Analysis/IVUsers.cpp 59986e05bcSDimitry AndricSRCS_MIN+= Analysis/IndirectCallPromotionAnalysis.cpp 60986e05bcSDimitry AndricSRCS_MIN+= Analysis/InlineCost.cpp 61986e05bcSDimitry AndricSRCS_MIN+= Analysis/InstCount.cpp 62986e05bcSDimitry AndricSRCS_MIN+= Analysis/InstructionSimplify.cpp 63986e05bcSDimitry AndricSRCS_MIN+= Analysis/Interval.cpp 64986e05bcSDimitry AndricSRCS_MIN+= Analysis/IntervalPartition.cpp 65986e05bcSDimitry AndricSRCS_MIN+= Analysis/IteratedDominanceFrontier.cpp 66986e05bcSDimitry AndricSRCS_MIN+= Analysis/LazyBlockFrequencyInfo.cpp 6709bfd043SDimitry AndricSRCS_MIN+= Analysis/LazyBranchProbabilityInfo.cpp 68986e05bcSDimitry AndricSRCS_MIN+= Analysis/LazyCallGraph.cpp 69986e05bcSDimitry AndricSRCS_MIN+= Analysis/LazyValueInfo.cpp 70986e05bcSDimitry AndricSRCS_MIN+= Analysis/Lint.cpp 71986e05bcSDimitry AndricSRCS_MIN+= Analysis/Loads.cpp 72986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopAccessAnalysis.cpp 73f1a29dd3SDimitry AndricSRCS_MIN+= Analysis/LoopAnalysisManager.cpp 74986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopInfo.cpp 75986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopPass.cpp 76986e05bcSDimitry AndricSRCS_MIN+= Analysis/LoopUnrollAnalyzer.cpp 77986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemDepPrinter.cpp 78986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemDerefPrinter.cpp 79986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemoryBuiltins.cpp 80986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemoryDependenceAnalysis.cpp 81986e05bcSDimitry AndricSRCS_MIN+= Analysis/MemoryLocation.cpp 825897d2f0SDimitry AndricSRCS_MIN+= Analysis/MemorySSA.cpp 835897d2f0SDimitry AndricSRCS_MIN+= Analysis/MemorySSAUpdater.cpp 84986e05bcSDimitry AndricSRCS_MIN+= Analysis/ModuleDebugInfoPrinter.cpp 85986e05bcSDimitry AndricSRCS_MIN+= Analysis/ModuleSummaryAnalysis.cpp 869f6e9a9fSDimitry AndricSRCS_MIN+= Analysis/MustExecute.cpp 87986e05bcSDimitry AndricSRCS_MIN+= Analysis/ObjCARCAliasAnalysis.cpp 88986e05bcSDimitry AndricSRCS_MIN+= Analysis/ObjCARCAnalysisUtils.cpp 89986e05bcSDimitry AndricSRCS_MIN+= Analysis/ObjCARCInstKind.cpp 9036cb3905SDimitry AndricSRCS_MIN+= Analysis/OptimizationRemarkEmitter.cpp 91986e05bcSDimitry AndricSRCS_MIN+= Analysis/OrderedBasicBlock.cpp 92986e05bcSDimitry AndricSRCS_MIN+= Analysis/PHITransAddr.cpp 939f6e9a9fSDimitry AndricSRCS_MIN+= Analysis/PhiValues.cpp 94986e05bcSDimitry AndricSRCS_MIN+= Analysis/PostDominators.cpp 95986e05bcSDimitry AndricSRCS_MIN+= Analysis/ProfileSummaryInfo.cpp 96986e05bcSDimitry AndricSRCS_MIN+= Analysis/PtrUseVisitor.cpp 97986e05bcSDimitry AndricSRCS_MIN+= Analysis/RegionInfo.cpp 98986e05bcSDimitry AndricSRCS_MIN+= Analysis/RegionPass.cpp 99986e05bcSDimitry AndricSRCS_MIN+= Analysis/RegionPrinter.cpp 100986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolution.cpp 101986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolutionAliasAnalysis.cpp 102986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolutionExpander.cpp 103986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScalarEvolutionNormalization.cpp 104986e05bcSDimitry AndricSRCS_MIN+= Analysis/ScopedNoAliasAA.cpp 1059f6e9a9fSDimitry AndricSRCS_MIN+= Analysis/SyntheticCountsUtils.cpp 106986e05bcSDimitry AndricSRCS_MIN+= Analysis/TargetLibraryInfo.cpp 107986e05bcSDimitry AndricSRCS_MIN+= Analysis/TargetTransformInfo.cpp 10809bfd043SDimitry AndricSRCS_MIN+= Analysis/Trace.cpp 109986e05bcSDimitry AndricSRCS_MIN+= Analysis/TypeBasedAliasAnalysis.cpp 110986e05bcSDimitry AndricSRCS_MIN+= Analysis/TypeMetadataUtils.cpp 11136cb3905SDimitry AndricSRCS_MIN+= Analysis/ValueLattice.cpp 11236cb3905SDimitry AndricSRCS_MIN+= Analysis/ValueLatticeUtils.cpp 113986e05bcSDimitry AndricSRCS_MIN+= Analysis/ValueTracking.cpp 114986e05bcSDimitry AndricSRCS_MIN+= Analysis/VectorUtils.cpp 115986e05bcSDimitry AndricSRCS_MIN+= AsmParser/LLLexer.cpp 116986e05bcSDimitry AndricSRCS_MIN+= AsmParser/LLParser.cpp 117986e05bcSDimitry AndricSRCS_MIN+= AsmParser/Parser.cpp 11844389c28SDimitry AndricSRCS_MIN+= BinaryFormat/Dwarf.cpp 11944389c28SDimitry AndricSRCS_MIN+= BinaryFormat/Magic.cpp 1209f6e9a9fSDimitry AndricSRCS_MIN+= BinaryFormat/Wasm.cpp 12109bfd043SDimitry AndricSRCS_MIN+= Bitcode/Reader/BitReader.cpp 122986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Reader/BitcodeReader.cpp 123986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Reader/BitstreamReader.cpp 12409bfd043SDimitry AndricSRCS_MIN+= Bitcode/Reader/MetadataLoader.cpp 12509bfd043SDimitry AndricSRCS_MIN+= Bitcode/Reader/ValueList.cpp 12609bfd043SDimitry AndricSRCS_MIN+= Bitcode/Writer/BitWriter.cpp 127986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Writer/BitcodeWriter.cpp 128986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Writer/BitcodeWriterPass.cpp 129986e05bcSDimitry AndricSRCS_MIN+= Bitcode/Writer/ValueEnumerator.cpp 130986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AggressiveAntiDepBreaker.cpp 131986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AllocationOrder.cpp 132986e05bcSDimitry AndricSRCS_MIN+= CodeGen/Analysis.cpp 133986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/ARMException.cpp 1349f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AccelTable.cpp 135986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AddressPool.cpp 136986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AsmPrinter.cpp 137986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AsmPrinterDwarf.cpp 138986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp 139986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/CodeViewDebug.cpp 140986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DIE.cpp 141986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DIEHash.cpp 142986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DbgValueHistoryCalculator.cpp 143986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DebugHandlerBase.cpp 144986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DebugLocStream.cpp 145986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfCFIException.cpp 146986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfCompileUnit.cpp 147986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfDebug.cpp 148986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfExpression.cpp 149986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfFile.cpp 150986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfStringPool.cpp 151986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/DwarfUnit.cpp 152986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/EHStreamer.cpp 153986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/ErlangGCPrinter.cpp 154986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/OcamlGCPrinter.cpp 1559f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/WinCFGuard.cpp 156986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AsmPrinter/WinException.cpp 157986e05bcSDimitry AndricSRCS_MIN+= CodeGen/AtomicExpandPass.cpp 158986e05bcSDimitry AndricSRCS_MIN+= CodeGen/BasicTargetTransformInfo.cpp 159986e05bcSDimitry AndricSRCS_MIN+= CodeGen/BranchFolding.cpp 16009bfd043SDimitry AndricSRCS_MIN+= CodeGen/BranchRelaxation.cpp 1619f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/BreakFalseDeps.cpp 162986e05bcSDimitry AndricSRCS_MIN+= CodeGen/BuiltinGCs.cpp 1639f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/CFIInstrInserter.cpp 164986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CalcSpillWeights.cpp 165986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CallingConvLower.cpp 166986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CodeGen.cpp 167986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CodeGenPrepare.cpp 168986e05bcSDimitry AndricSRCS_MIN+= CodeGen/CriticalAntiDepBreaker.cpp 169986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DFAPacketizer.cpp 170986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DeadMachineInstructionElim.cpp 171986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DetectDeadLanes.cpp 172986e05bcSDimitry AndricSRCS_MIN+= CodeGen/DwarfEHPrepare.cpp 173986e05bcSDimitry AndricSRCS_MIN+= CodeGen/EarlyIfConversion.cpp 174986e05bcSDimitry AndricSRCS_MIN+= CodeGen/EdgeBundles.cpp 1759f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/ExecutionDomainFix.cpp 176986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ExpandISelPseudos.cpp 17736cb3905SDimitry AndricSRCS_MIN+= CodeGen/ExpandMemCmp.cpp 178986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ExpandPostRAPseudos.cpp 1795517e702SDimitry AndricSRCS_MIN+= CodeGen/ExpandReductions.cpp 1805897d2f0SDimitry AndricSRCS_MIN+= CodeGen/FEntryInserter.cpp 181986e05bcSDimitry AndricSRCS_MIN+= CodeGen/FaultMaps.cpp 182986e05bcSDimitry AndricSRCS_MIN+= CodeGen/FuncletLayout.cpp 183986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GCMetadata.cpp 18409bfd043SDimitry AndricSRCS_MIN+= CodeGen/GCMetadataPrinter.cpp 185986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GCRootLowering.cpp 18609bfd043SDimitry AndricSRCS_MIN+= CodeGen/GCStrategy.cpp 1873d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/CallLowering.cpp 188986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/GlobalISel.cpp 1893d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/IRTranslator.cpp 1903d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/InstructionSelect.cpp 1913d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/InstructionSelector.cpp 1929f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalityPredicates.cpp 1939f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalizeMutations.cpp 1943d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Legalizer.cpp 1953d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalizerHelper.cpp 1963d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/LegalizerInfo.cpp 197302affcbSDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Localizer.cpp 1983d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/MachineIRBuilder.cpp 1993d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/RegBankSelect.cpp 2003d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/RegisterBank.cpp 2013d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/RegisterBankInfo.cpp 2023d54deb3SDimitry AndricSRCS_MIN+= CodeGen/GlobalISel/Utils.cpp 203986e05bcSDimitry AndricSRCS_MIN+= CodeGen/GlobalMerge.cpp 204986e05bcSDimitry AndricSRCS_MIN+= CodeGen/IfConversion.cpp 205986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ImplicitNullChecks.cpp 20607577dfeSDimitry AndricSRCS_MIN+= CodeGen/IndirectBrExpandPass.cpp 207986e05bcSDimitry AndricSRCS_MIN+= CodeGen/InlineSpiller.cpp 208986e05bcSDimitry AndricSRCS_MIN+= CodeGen/InterferenceCache.cpp 209986e05bcSDimitry AndricSRCS_MIN+= CodeGen/InterleavedAccessPass.cpp 210986e05bcSDimitry AndricSRCS_MIN+= CodeGen/IntrinsicLowering.cpp 211986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LLVMTargetMachine.cpp 212986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LatencyPriorityQueue.cpp 2135897d2f0SDimitry AndricSRCS_MIN+= CodeGen/LazyMachineBlockFrequencyInfo.cpp 214986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LexicalScopes.cpp 215986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveDebugValues.cpp 216986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveDebugVariables.cpp 217986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveInterval.cpp 218986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveIntervalUnion.cpp 21944389c28SDimitry AndricSRCS_MIN+= CodeGen/LiveIntervals.cpp 220986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LivePhysRegs.cpp 221986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveRangeCalc.cpp 222986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveRangeEdit.cpp 223f9448bf3SDimitry AndricSRCS_MIN+= CodeGen/LiveRangeShrink.cpp 224986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveRegMatrix.cpp 2255897d2f0SDimitry AndricSRCS_MIN+= CodeGen/LiveRegUnits.cpp 2262757ff7eSDimitry AndricSRCS_MIN+= CodeGen/LiveStacks.cpp 227986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LiveVariables.cpp 228986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LocalStackSlotAllocation.cpp 2299f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/LoopTraversal.cpp 23009bfd043SDimitry AndricSRCS_MIN+= CodeGen/LowLevelType.cpp 231986e05bcSDimitry AndricSRCS_MIN+= CodeGen/LowerEmuTLS.cpp 23236cb3905SDimitry AndricSRCS_MIN+= CodeGen/MIRCanonicalizerPass.cpp 233986e05bcSDimitry AndricSRCS_EXT+= CodeGen/MIRParser/MILexer.cpp 234986e05bcSDimitry AndricSRCS_EXT+= CodeGen/MIRParser/MIParser.cpp 235986e05bcSDimitry AndricSRCS_EXT+= CodeGen/MIRParser/MIRParser.cpp 236986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MIRPrinter.cpp 237986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MIRPrintingPass.cpp 238986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBasicBlock.cpp 239986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBlockFrequencyInfo.cpp 240986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBlockPlacement.cpp 241986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineBranchProbabilityInfo.cpp 242986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineCSE.cpp 243986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineCombiner.cpp 244986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineCopyPropagation.cpp 245986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineDominanceFrontier.cpp 246986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineDominators.cpp 247f37b6182SDimitry AndricSRCS_MIN+= CodeGen/MachineFrameInfo.cpp 248986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineFunction.cpp 249986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineFunctionPass.cpp 250986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineFunctionPrinterPass.cpp 251986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineInstr.cpp 252986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineInstrBundle.cpp 253986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineLICM.cpp 254986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineLoopInfo.cpp 255986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineModuleInfo.cpp 256986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineModuleInfoImpls.cpp 25736cb3905SDimitry AndricSRCS_MIN+= CodeGen/MachineOperand.cpp 2585897d2f0SDimitry AndricSRCS_MIN+= CodeGen/MachineOptimizationRemarkEmitter.cpp 2595897d2f0SDimitry AndricSRCS_MIN+= CodeGen/MachineOutliner.cpp 260986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachinePassRegistry.cpp 26109bfd043SDimitry AndricSRCS_MIN+= CodeGen/MachinePipeliner.cpp 262986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachinePostDominators.cpp 263986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineRegionInfo.cpp 264986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineRegisterInfo.cpp 265986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineSSAUpdater.cpp 266986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineScheduler.cpp 267986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineSink.cpp 268986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineTraceMetrics.cpp 269986e05bcSDimitry AndricSRCS_MIN+= CodeGen/MachineVerifier.cpp 270edd7eaddSDimitry AndricSRCS_MIN+= CodeGen/MacroFusion.cpp 271986e05bcSDimitry AndricSRCS_MIN+= CodeGen/OptimizePHIs.cpp 272986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PHIElimination.cpp 273986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PHIEliminationUtils.cpp 274986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ParallelCG.cpp 275986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PatchableFunction.cpp 276986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PeepholeOptimizer.cpp 277986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PostRAHazardRecognizer.cpp 278986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PostRASchedulerList.cpp 279986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PreISelIntrinsicLowering.cpp 280986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ProcessImplicitDefs.cpp 281986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PrologEpilogInserter.cpp 282986e05bcSDimitry AndricSRCS_MIN+= CodeGen/PseudoSourceValue.cpp 2839f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/ReachingDefAnalysis.cpp 284986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocBase.cpp 285986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocBasic.cpp 286986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocFast.cpp 287986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocGreedy.cpp 288986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegAllocPBQP.cpp 289986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegUsageInfoCollector.cpp 290986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegUsageInfoPropagate.cpp 291986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterClassInfo.cpp 292986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterCoalescer.cpp 293986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterPressure.cpp 294986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterScavenging.cpp 295986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RegisterUsageInfo.cpp 296986e05bcSDimitry AndricSRCS_MIN+= CodeGen/RenameIndependentSubregs.cpp 29709bfd043SDimitry AndricSRCS_MIN+= CodeGen/ResetMachineFunctionPass.cpp 298986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SafeStack.cpp 299986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SafeStackColoring.cpp 300986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SafeStackLayout.cpp 3015517e702SDimitry AndricSRCS_MIN+= CodeGen/ScalarizeMaskedMemIntrin.cpp 302986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScheduleDAG.cpp 303986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScheduleDAGInstrs.cpp 304986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScheduleDAGPrinter.cpp 305986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ScoreboardHazardRecognizer.cpp 306986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/DAGCombiner.cpp 307986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/FastISel.cpp 308986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/FunctionLoweringInfo.cpp 309986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/InstrEmitter.cpp 310986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeDAG.cpp 311986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeFloatTypes.cpp 312986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp 313986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeTypes.cpp 314986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp 315986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeVectorOps.cpp 316986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/LegalizeVectorTypes.cpp 317986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ResourcePriorityQueue.cpp 318986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGFast.cpp 319986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGRRList.cpp 320986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp 321986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp 322986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAG.cpp 32344389c28SDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp 324986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGBuilder.cpp 325986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGDumper.cpp 326986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGISel.cpp 327986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGPrinter.cpp 328986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp 329986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/StatepointLowering.cpp 330986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SelectionDAG/TargetLowering.cpp 331986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ShadowStackGCLowering.cpp 332986e05bcSDimitry AndricSRCS_MIN+= CodeGen/ShrinkWrap.cpp 333986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SjLjEHPrepare.cpp 334986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SlotIndexes.cpp 335986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SpillPlacement.cpp 336986e05bcSDimitry AndricSRCS_MIN+= CodeGen/SplitKit.cpp 337986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackColoring.cpp 338986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackMapLivenessAnalysis.cpp 339986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackMaps.cpp 340986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackProtector.cpp 341986e05bcSDimitry AndricSRCS_MIN+= CodeGen/StackSlotColoring.cpp 342986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TailDuplication.cpp 343986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TailDuplicator.cpp 344986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetFrameLoweringImpl.cpp 345986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetInstrInfo.cpp 346986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetLoweringBase.cpp 347986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetLoweringObjectFileImpl.cpp 348986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetOptionsImpl.cpp 349986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetPassConfig.cpp 350986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetRegisterInfo.cpp 351986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TargetSchedule.cpp 35209bfd043SDimitry AndricSRCS_MIN+= CodeGen/TargetSubtargetInfo.cpp 353986e05bcSDimitry AndricSRCS_MIN+= CodeGen/TwoAddressInstructionPass.cpp 354986e05bcSDimitry AndricSRCS_MIN+= CodeGen/UnreachableBlockElim.cpp 3559f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/ValueTypes.cpp 356986e05bcSDimitry AndricSRCS_MIN+= CodeGen/VirtRegMap.cpp 3579f6e9a9fSDimitry AndricSRCS_MIN+= CodeGen/WasmEHPrepare.cpp 358986e05bcSDimitry AndricSRCS_MIN+= CodeGen/WinEHPrepare.cpp 359986e05bcSDimitry AndricSRCS_MIN+= CodeGen/XRayInstrumentation.cpp 3603cd201a1SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/AppendingTypeTableBuilder.cpp 36109bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CVSymbolVisitor.cpp 362986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CVTypeVisitor.cpp 363986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CodeViewError.cpp 36409bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/CodeViewRecordIO.cpp 36536cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/ContinuationRecordBuilder.cpp 36689cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugChecksumsSubsection.cpp 367db17bf38SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugCrossExSubsection.cpp 368db17bf38SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugCrossImpSubsection.cpp 36989cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugFrameDataSubsection.cpp 37089cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp 37189cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugLinesSubsection.cpp 37289cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugStringTableSubsection.cpp 37389cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSubsection.cpp 37489cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSubsectionRecord.cpp 37589cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSubsectionVisitor.cpp 376db17bf38SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSymbolRVASubsection.cpp 37789cb50c9SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/DebugSymbolsSubsection.cpp 378986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/CodeView/EnumTables.cpp 3795897d2f0SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/Formatters.cpp 38036cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/GlobalTypeTableBuilder.cpp 3812a1b82cfSDimitry AndricSRCS_EXT+= DebugInfo/CodeView/LazyRandomTypeCollection.cpp 382986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/Line.cpp 3833cd201a1SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/MergingTypeTableBuilder.cpp 38436cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/RecordName.cpp 385986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/RecordSerialization.cpp 38636cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/SimpleTypeSerializer.cpp 38724d58133SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/StringsAndChecksums.cpp 388986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/SymbolDumper.cpp 38909bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/SymbolRecordMapping.cpp 390050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/CodeView/SymbolSerializer.cpp 391f1a29dd3SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeDumpVisitor.cpp 39236cb3905SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeHashing.cpp 393d8866befSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeIndex.cpp 39406230659SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeIndexDiscovery.cpp 39509bfd043SDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeRecordMapping.cpp 396986e05bcSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeStreamMerger.cpp 397d8866befSDimitry AndricSRCS_MIN+= DebugInfo/CodeView/TypeTableCollection.cpp 398caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp 399caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFAcceleratorTable.cpp 40067b158f6SDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFAddressRange.cpp 401caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFCompileUnit.cpp 402caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFContext.cpp 403caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDataExtractor.cpp 404caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugAbbrev.cpp 405*99be4f2aSDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugAddr.cpp 406caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugArangeSet.cpp 407caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugAranges.cpp 408caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugFrame.cpp 409caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugInfoEntry.cpp 410caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugLine.cpp 411caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugLoc.cpp 412caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugMacro.cpp 413caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugPubTable.cpp 414caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDebugRangeList.cpp 41567b158f6SDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFDebugRnglists.cpp 416caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFDie.cpp 417caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFExpression.cpp 418caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFFormValue.cpp 419caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFGdbIndex.cpp 42067b158f6SDimitry AndricSRCS_MIW+= DebugInfo/DWARF/DWARFListTable.cpp 421caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFTypeUnit.cpp 422caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFUnit.cpp 423caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFUnitIndex.cpp 424caf90252SBryan DrewerySRCS_MIW+= DebugInfo/DWARF/DWARFVerifier.cpp 42509bfd043SDimitry AndricSRCS_MIN+= DebugInfo/MSF/MSFBuilder.cpp 42609bfd043SDimitry AndricSRCS_MIN+= DebugInfo/MSF/MSFCommon.cpp 42709bfd043SDimitry AndricSRCS_MIN+= DebugInfo/MSF/MSFError.cpp 42809bfd043SDimitry AndricSRCS_MIN+= DebugInfo/MSF/MappedBlockStream.cpp 429986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/GenericError.cpp 43009bfd043SDimitry AndricSRCS_EXT+= DebugInfo/PDB/IPDBSourceFile.cpp 431f37b6182SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiModuleDescriptor.cpp 432f37b6182SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp 4330f5676f4SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiModuleList.cpp 434050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiStream.cpp 435050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/DbiStreamBuilder.cpp 436050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/EnumTables.cpp 4373cd201a1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/GSIStreamBuilder.cpp 438050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/GlobalsStream.cpp 439050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/Hash.cpp 440050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/HashTable.cpp 441050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/InfoStream.cpp 442050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/InfoStreamBuilder.cpp 443f37b6182SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/ModuleDebugStream.cpp 444050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NamedStreamMap.cpp 445c4394386SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeBuiltinSymbol.cpp 446050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeCompilandSymbol.cpp 447050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumModules.cpp 4483cd201a1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumSymbol.cpp 44944389c28SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeEnumTypes.cpp 450050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeExeSymbol.cpp 451050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeRawSymbol.cpp 452050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/NativeSession.cpp 453050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBFile.cpp 454050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBFileBuilder.cpp 455b174acefSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBStringTable.cpp 456b174acefSDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PDBStringTableBuilder.cpp 4573d54deb3SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/PublicsStream.cpp 4583d54deb3SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/RawError.cpp 459050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/SymbolStream.cpp 460050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/TpiHashing.cpp 461050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/TpiStream.cpp 462050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/Native/TpiStreamBuilder.cpp 463986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDB.cpp 464986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBContext.cpp 465986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBExtras.cpp 466986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBInterfaceAnchors.cpp 467986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymDumper.cpp 468986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbol.cpp 469986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolAnnotation.cpp 470986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolBlock.cpp 471986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCompiland.cpp 472986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCompilandDetails.cpp 473986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCompilandEnv.cpp 474986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolCustom.cpp 475986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolData.cpp 476986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolExe.cpp 477986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolFunc.cpp 478986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp 479986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp 480986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolLabel.cpp 481986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolPublicSymbol.cpp 482986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolThunk.cpp 483986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeArray.cpp 484986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp 485986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp 486986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeCustom.cpp 487986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeDimension.cpp 488986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeEnum.cpp 489986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeFriend.cpp 490986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp 491986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp 492986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeManaged.cpp 493986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypePointer.cpp 494986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeTypedef.cpp 495986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeUDT.cpp 496986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeVTable.cpp 497986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp 498986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolUnknown.cpp 499986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/PDB/PDBSymbolUsingNamespace.cpp 500050e2df1SDimitry AndricSRCS_EXT+= DebugInfo/PDB/UDTLayout.cpp 501986e05bcSDimitry AndricSRCS_EXT+= DebugInfo/Symbolize/DIPrinter.cpp 50209bfd043SDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/SymbolizableObjectFile.cpp 50309bfd043SDimitry AndricSRCS_MIW+= DebugInfo/Symbolize/Symbolize.cpp 50409bfd043SDimitry AndricSRCS_MIN+= Demangle/ItaniumDemangle.cpp 505986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/ExecutionEngine.cpp 506986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/ExecutionEngineBindings.cpp 507986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/GDBRegistrationListener.cpp 508986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/Interpreter/Execution.cpp 509986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/Interpreter/ExternalFunctions.cpp 510986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/Interpreter/Interpreter.cpp 511986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/MCJIT/MCJIT.cpp 51267b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/CompileOnDemandLayer.cpp 51367b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Core.cpp 514986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/ExecutionUtils.cpp 51567b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/IRCompileLayer.cpp 51667b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/IRTransformLayer.cpp 517986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/IndirectionUtils.cpp 51867b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/LLJIT.cpp 51967b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Layer.cpp 52067b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/Legacy.cpp 521986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/NullResolver.cpp 522986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/OrcABISupport.cpp 523986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/OrcCBindings.cpp 524986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/OrcError.cpp 525986e05bcSDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/OrcMCJITReplacement.cpp 526050e2df1SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/RPCUtils.cpp 52767b158f6SDimitry AndricSRCS_EXT+= ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp 52809bfd043SDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/JITSymbol.cpp 529986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp 530986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp 531986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp 532986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp 533986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp 534986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp 53509bfd043SDimitry AndricSRCS_XDB+= ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp 536986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/SectionMemoryManager.cpp 537986e05bcSDimitry AndricSRCS_XDB+= ExecutionEngine/TargetSelect.cpp 538986e05bcSDimitry AndricSRCS_MIN+= IR/AsmWriter.cpp 539986e05bcSDimitry AndricSRCS_MIN+= IR/Attributes.cpp 540986e05bcSDimitry AndricSRCS_MIN+= IR/AutoUpgrade.cpp 541986e05bcSDimitry AndricSRCS_MIN+= IR/BasicBlock.cpp 542986e05bcSDimitry AndricSRCS_MIN+= IR/Comdat.cpp 543986e05bcSDimitry AndricSRCS_MIN+= IR/ConstantFold.cpp 544986e05bcSDimitry AndricSRCS_MIN+= IR/ConstantRange.cpp 545986e05bcSDimitry AndricSRCS_MIN+= IR/Constants.cpp 546986e05bcSDimitry AndricSRCS_MIN+= IR/Core.cpp 547986e05bcSDimitry AndricSRCS_MIN+= IR/DIBuilder.cpp 548986e05bcSDimitry AndricSRCS_MIN+= IR/DataLayout.cpp 549986e05bcSDimitry AndricSRCS_MIN+= IR/DebugInfo.cpp 550986e05bcSDimitry AndricSRCS_MIN+= IR/DebugInfoMetadata.cpp 551986e05bcSDimitry AndricSRCS_MIN+= IR/DebugLoc.cpp 55236cb3905SDimitry AndricSRCS_MIN+= IR/DiagnosticHandler.cpp 553986e05bcSDimitry AndricSRCS_MIN+= IR/DiagnosticInfo.cpp 554986e05bcSDimitry AndricSRCS_MIN+= IR/DiagnosticPrinter.cpp 5559f6e9a9fSDimitry AndricSRCS_MIN+= IR/DomTreeUpdater.cpp 556986e05bcSDimitry AndricSRCS_MIN+= IR/Dominators.cpp 557986e05bcSDimitry AndricSRCS_MIN+= IR/Function.cpp 558986e05bcSDimitry AndricSRCS_MIN+= IR/GVMaterializer.cpp 559986e05bcSDimitry AndricSRCS_MIN+= IR/Globals.cpp 560986e05bcSDimitry AndricSRCS_MIN+= IR/IRBuilder.cpp 561986e05bcSDimitry AndricSRCS_MIN+= IR/IRPrintingPasses.cpp 562986e05bcSDimitry AndricSRCS_MIN+= IR/InlineAsm.cpp 563986e05bcSDimitry AndricSRCS_MIN+= IR/Instruction.cpp 564986e05bcSDimitry AndricSRCS_MIN+= IR/Instructions.cpp 565986e05bcSDimitry AndricSRCS_MIN+= IR/IntrinsicInst.cpp 566986e05bcSDimitry AndricSRCS_MIN+= IR/LLVMContext.cpp 567986e05bcSDimitry AndricSRCS_MIN+= IR/LLVMContextImpl.cpp 568986e05bcSDimitry AndricSRCS_MIN+= IR/LegacyPassManager.cpp 569986e05bcSDimitry AndricSRCS_MIN+= IR/MDBuilder.cpp 570986e05bcSDimitry AndricSRCS_MIN+= IR/Mangler.cpp 571986e05bcSDimitry AndricSRCS_MIN+= IR/Metadata.cpp 572986e05bcSDimitry AndricSRCS_MIN+= IR/Module.cpp 573986e05bcSDimitry AndricSRCS_MIN+= IR/ModuleSummaryIndex.cpp 574986e05bcSDimitry AndricSRCS_MIN+= IR/Operator.cpp 575986e05bcSDimitry AndricSRCS_MIN+= IR/OptBisect.cpp 576986e05bcSDimitry AndricSRCS_MIN+= IR/Pass.cpp 577986e05bcSDimitry AndricSRCS_MIN+= IR/PassManager.cpp 578986e05bcSDimitry AndricSRCS_MIN+= IR/PassRegistry.cpp 579986e05bcSDimitry AndricSRCS_MIN+= IR/ProfileSummary.cpp 580c4394386SDimitry AndricSRCS_MIN+= IR/SafepointIRVerifier.cpp 581986e05bcSDimitry AndricSRCS_MIN+= IR/Statepoint.cpp 582986e05bcSDimitry AndricSRCS_MIN+= IR/Type.cpp 583986e05bcSDimitry AndricSRCS_MIN+= IR/TypeFinder.cpp 584986e05bcSDimitry AndricSRCS_MIN+= IR/Use.cpp 585986e05bcSDimitry AndricSRCS_MIN+= IR/User.cpp 586986e05bcSDimitry AndricSRCS_MIN+= IR/Value.cpp 587986e05bcSDimitry AndricSRCS_MIN+= IR/ValueSymbolTable.cpp 588986e05bcSDimitry AndricSRCS_MIN+= IR/Verifier.cpp 589986e05bcSDimitry AndricSRCS_MIN+= IRReader/IRReader.cpp 59009bfd043SDimitry AndricSRCS_EXL+= LTO/Caching.cpp 5915897d2f0SDimitry AndricSRCS_MIN+= LTO/LTO.cpp 59209bfd043SDimitry AndricSRCS_MIN+= LTO/LTOBackend.cpp 59375bc38b9SEd MasteSRCS_EXL+= LTO/LTOCodeGenerator.cpp 59475bc38b9SEd MasteSRCS_EXL+= LTO/LTOModule.cpp 59575bc38b9SEd MasteSRCS_EXL+= LTO/ThinLTOCodeGenerator.cpp 59609bfd043SDimitry AndricSRCS_MIN+= LTO/UpdateCompilerUsed.cpp 597986e05bcSDimitry AndricSRCS_MIN+= LineEditor/LineEditor.cpp 598986e05bcSDimitry AndricSRCS_MIN+= Linker/IRMover.cpp 599986e05bcSDimitry AndricSRCS_MIN+= Linker/LinkModules.cpp 600986e05bcSDimitry AndricSRCS_MIN+= MC/ConstantPools.cpp 601986e05bcSDimitry AndricSRCS_MIN+= MC/ELFObjectWriter.cpp 602986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmBackend.cpp 603986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfo.cpp 604986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfoCOFF.cpp 605986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfoDarwin.cpp 606986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmInfoELF.cpp 6079f6e9a9fSDimitry AndricSRCS_MIN+= MC/MCAsmMacro.cpp 608986e05bcSDimitry AndricSRCS_MIN+= MC/MCAsmStreamer.cpp 609986e05bcSDimitry AndricSRCS_MIN+= MC/MCAssembler.cpp 610986e05bcSDimitry AndricSRCS_MIN+= MC/MCCodeEmitter.cpp 61136cb3905SDimitry AndricSRCS_MIN+= MC/MCCodePadder.cpp 612986e05bcSDimitry AndricSRCS_MIN+= MC/MCCodeView.cpp 613986e05bcSDimitry AndricSRCS_MIN+= MC/MCContext.cpp 61475bc38b9SEd MasteSRCS_XDL+= MC/MCDisassembler/Disassembler.cpp 61530d4828eSDimitry AndricSRCS_XDW+= MC/MCDisassembler/MCDisassembler.cpp 61630d4828eSDimitry AndricSRCS_XDW+= MC/MCDisassembler/MCExternalSymbolizer.cpp 617986e05bcSDimitry AndricSRCS_MIN+= MC/MCDisassembler/MCRelocationInfo.cpp 61830d4828eSDimitry AndricSRCS_XDW+= MC/MCDisassembler/MCSymbolizer.cpp 619986e05bcSDimitry AndricSRCS_MIN+= MC/MCDwarf.cpp 620986e05bcSDimitry AndricSRCS_MIN+= MC/MCELFObjectTargetWriter.cpp 621986e05bcSDimitry AndricSRCS_MIN+= MC/MCELFStreamer.cpp 622986e05bcSDimitry AndricSRCS_MIN+= MC/MCExpr.cpp 623986e05bcSDimitry AndricSRCS_MIN+= MC/MCFragment.cpp 624986e05bcSDimitry AndricSRCS_MIN+= MC/MCInst.cpp 625986e05bcSDimitry AndricSRCS_MIN+= MC/MCInstPrinter.cpp 626986e05bcSDimitry AndricSRCS_MIN+= MC/MCInstrAnalysis.cpp 627986e05bcSDimitry AndricSRCS_MIN+= MC/MCInstrDesc.cpp 628986e05bcSDimitry AndricSRCS_MIN+= MC/MCLinkerOptimizationHint.cpp 629986e05bcSDimitry AndricSRCS_MIN+= MC/MCMachOStreamer.cpp 630986e05bcSDimitry AndricSRCS_MIN+= MC/MCMachObjectTargetWriter.cpp 631986e05bcSDimitry AndricSRCS_MIN+= MC/MCNullStreamer.cpp 632986e05bcSDimitry AndricSRCS_MIN+= MC/MCObjectFileInfo.cpp 633986e05bcSDimitry AndricSRCS_MIN+= MC/MCObjectStreamer.cpp 634986e05bcSDimitry AndricSRCS_MIN+= MC/MCObjectWriter.cpp 635986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/AsmLexer.cpp 636986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/AsmParser.cpp 637986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/COFFAsmParser.cpp 638986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/DarwinAsmParser.cpp 639986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/ELFAsmParser.cpp 640986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCAsmLexer.cpp 641986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCAsmParser.cpp 642986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCAsmParserExtension.cpp 643986e05bcSDimitry AndricSRCS_MIN+= MC/MCParser/MCTargetAsmParser.cpp 644986e05bcSDimitry AndricSRCS_MIN+= MC/MCRegisterInfo.cpp 645986e05bcSDimitry AndricSRCS_MIN+= MC/MCSchedule.cpp 646986e05bcSDimitry AndricSRCS_MIN+= MC/MCSection.cpp 647986e05bcSDimitry AndricSRCS_MIN+= MC/MCSectionCOFF.cpp 648986e05bcSDimitry AndricSRCS_MIN+= MC/MCSectionELF.cpp 649986e05bcSDimitry AndricSRCS_MIN+= MC/MCSectionMachO.cpp 6505897d2f0SDimitry AndricSRCS_MIN+= MC/MCSectionWasm.cpp 651986e05bcSDimitry AndricSRCS_MIN+= MC/MCStreamer.cpp 652986e05bcSDimitry AndricSRCS_MIN+= MC/MCSubtargetInfo.cpp 653986e05bcSDimitry AndricSRCS_MIN+= MC/MCSymbol.cpp 654986e05bcSDimitry AndricSRCS_MIN+= MC/MCSymbolELF.cpp 655986e05bcSDimitry AndricSRCS_MIN+= MC/MCTargetOptions.cpp 656986e05bcSDimitry AndricSRCS_MIN+= MC/MCValue.cpp 6575897d2f0SDimitry AndricSRCS_MIN+= MC/MCWasmStreamer.cpp 658986e05bcSDimitry AndricSRCS_MIN+= MC/MCWin64EH.cpp 659edd7eaddSDimitry AndricSRCS_MIN+= MC/MCWinCOFFStreamer.cpp 660986e05bcSDimitry AndricSRCS_MIN+= MC/MCWinEH.cpp 661986e05bcSDimitry AndricSRCS_MIN+= MC/MachObjectWriter.cpp 662986e05bcSDimitry AndricSRCS_MIN+= MC/StringTableBuilder.cpp 663986e05bcSDimitry AndricSRCS_MIN+= MC/SubtargetFeature.cpp 6649f6e9a9fSDimitry AndricSRCS_MIN+= MC/WasmObjectWriter.cpp 665986e05bcSDimitry AndricSRCS_MIN+= MC/WinCOFFObjectWriter.cpp 666986e05bcSDimitry AndricSRCS_MIN+= Object/Archive.cpp 667986e05bcSDimitry AndricSRCS_MIN+= Object/ArchiveWriter.cpp 668986e05bcSDimitry AndricSRCS_MIN+= Object/Binary.cpp 669b40b48b8SDimitry AndricSRCS_EXT+= Object/COFFImportFile.cpp 670b40b48b8SDimitry AndricSRCS_EXT+= Object/COFFModuleDefinition.cpp 671986e05bcSDimitry AndricSRCS_MIN+= Object/COFFObjectFile.cpp 672f1a29dd3SDimitry AndricSRCS_MIN+= Object/Decompressor.cpp 673986e05bcSDimitry AndricSRCS_MIN+= Object/ELF.cpp 674986e05bcSDimitry AndricSRCS_MIN+= Object/ELFObjectFile.cpp 675986e05bcSDimitry AndricSRCS_MIN+= Object/Error.cpp 676986e05bcSDimitry AndricSRCS_MIN+= Object/IRObjectFile.cpp 6775897d2f0SDimitry AndricSRCS_MIN+= Object/IRSymtab.cpp 678986e05bcSDimitry AndricSRCS_MIN+= Object/MachOObjectFile.cpp 679986e05bcSDimitry AndricSRCS_MIN+= Object/MachOUniversal.cpp 68009bfd043SDimitry AndricSRCS_MIN+= Object/ModuleSymbolTable.cpp 681986e05bcSDimitry AndricSRCS_EXT+= Object/Object.cpp 682986e05bcSDimitry AndricSRCS_MIN+= Object/ObjectFile.cpp 683986e05bcSDimitry AndricSRCS_MIN+= Object/RecordStreamer.cpp 68409bfd043SDimitry AndricSRCS_MIW+= Object/SymbolSize.cpp 685986e05bcSDimitry AndricSRCS_MIN+= Object/SymbolicFile.cpp 68609bfd043SDimitry AndricSRCS_MIN+= Object/WasmObjectFile.cpp 687bbd32193SDimitry AndricSRCS_MIN+= Object/WindowsResource.cpp 688986e05bcSDimitry AndricSRCS_MIN+= ObjectYAML/COFFYAML.cpp 689f9448bf3SDimitry AndricSRCS_EXT+= ObjectYAML/CodeViewYAMLDebugSections.cpp 690f9448bf3SDimitry AndricSRCS_EXT+= ObjectYAML/CodeViewYAMLSymbols.cpp 691f9448bf3SDimitry AndricSRCS_EXT+= ObjectYAML/CodeViewYAMLTypes.cpp 69209bfd043SDimitry AndricSRCS_MIN+= ObjectYAML/DWARFYAML.cpp 693986e05bcSDimitry AndricSRCS_MIN+= ObjectYAML/ELFYAML.cpp 694986e05bcSDimitry AndricSRCS_MIN+= ObjectYAML/MachOYAML.cpp 69524d58133SDimitry AndricSRCS_EXT+= ObjectYAML/YAML.cpp 696986e05bcSDimitry AndricSRCS_MIN+= Option/Arg.cpp 697986e05bcSDimitry AndricSRCS_MIN+= Option/ArgList.cpp 698986e05bcSDimitry AndricSRCS_MIN+= Option/OptTable.cpp 699986e05bcSDimitry AndricSRCS_MIN+= Option/Option.cpp 70009bfd043SDimitry AndricSRCS_MIN+= Passes/PassBuilder.cpp 70167b158f6SDimitry AndricSRCS_EXT+= Passes/PassPlugin.cpp 702986e05bcSDimitry AndricSRCS_MIN+= ProfileData/Coverage/CoverageMapping.cpp 703986e05bcSDimitry AndricSRCS_MIN+= ProfileData/Coverage/CoverageMappingReader.cpp 704986e05bcSDimitry AndricSRCS_MIN+= ProfileData/Coverage/CoverageMappingWriter.cpp 7051b49115aSEd MasteSRCS_MIN+= ProfileData/GCOV.cpp 706986e05bcSDimitry AndricSRCS_MIN+= ProfileData/InstrProf.cpp 707986e05bcSDimitry AndricSRCS_MIN+= ProfileData/InstrProfReader.cpp 708986e05bcSDimitry AndricSRCS_MIN+= ProfileData/InstrProfWriter.cpp 709986e05bcSDimitry AndricSRCS_MIN+= ProfileData/ProfileSummaryBuilder.cpp 710986e05bcSDimitry AndricSRCS_MIN+= ProfileData/SampleProf.cpp 711986e05bcSDimitry AndricSRCS_MIN+= ProfileData/SampleProfReader.cpp 712986e05bcSDimitry AndricSRCS_EXT+= ProfileData/SampleProfWriter.cpp 713986e05bcSDimitry AndricSRCS_MIN+= Support/APFloat.cpp 714986e05bcSDimitry AndricSRCS_MIN+= Support/APInt.cpp 715986e05bcSDimitry AndricSRCS_MIN+= Support/APSInt.cpp 7165897d2f0SDimitry AndricSRCS_MIN+= Support/ARMAttributeParser.cpp 717986e05bcSDimitry AndricSRCS_MIN+= Support/ARMBuildAttrs.cpp 718986e05bcSDimitry AndricSRCS_MIN+= Support/Allocator.cpp 719986e05bcSDimitry AndricSRCS_MIN+= Support/Atomic.cpp 7205897d2f0SDimitry AndricSRCS_MIN+= Support/BinaryStreamError.cpp 7215897d2f0SDimitry AndricSRCS_MIN+= Support/BinaryStreamReader.cpp 722d8866befSDimitry AndricSRCS_MIN+= Support/BinaryStreamRef.cpp 7235897d2f0SDimitry AndricSRCS_MIN+= Support/BinaryStreamWriter.cpp 724986e05bcSDimitry AndricSRCS_MIN+= Support/BlockFrequency.cpp 725986e05bcSDimitry AndricSRCS_MIN+= Support/BranchProbability.cpp 726986e05bcSDimitry AndricSRCS_EXT+= Support/COM.cpp 727986e05bcSDimitry AndricSRCS_MIN+= Support/CachePruning.cpp 72809bfd043SDimitry AndricSRCS_MIN+= Support/Chrono.cpp 72936cb3905SDimitry AndricSRCS_MIN+= Support/CodeGenCoverage.cpp 730986e05bcSDimitry AndricSRCS_MIN+= Support/CommandLine.cpp 731986e05bcSDimitry AndricSRCS_MIN+= Support/Compression.cpp 73209bfd043SDimitry AndricSRCS_MIN+= Support/ConvertUTF.cpp 733986e05bcSDimitry AndricSRCS_MIN+= Support/ConvertUTFWrapper.cpp 734986e05bcSDimitry AndricSRCS_MIN+= Support/CrashRecoveryContext.cpp 735986e05bcSDimitry AndricSRCS_MIN+= Support/DAGDeltaAlgorithm.cpp 7369f6e9a9fSDimitry AndricSRCS_MIN+= Support/DJB.cpp 737986e05bcSDimitry AndricSRCS_MIN+= Support/DataExtractor.cpp 738986e05bcSDimitry AndricSRCS_MIN+= Support/Debug.cpp 7395897d2f0SDimitry AndricSRCS_MIN+= Support/DebugCounter.cpp 740986e05bcSDimitry AndricSRCS_MIN+= Support/DeltaAlgorithm.cpp 741986e05bcSDimitry AndricSRCS_MIN+= Support/DynamicLibrary.cpp 742986e05bcSDimitry AndricSRCS_MIN+= Support/Errno.cpp 743986e05bcSDimitry AndricSRCS_MIN+= Support/Error.cpp 744986e05bcSDimitry AndricSRCS_MIN+= Support/ErrorHandling.cpp 74575bc38b9SEd MasteSRCS_EXL+= Support/FileOutputBuffer.cpp 746986e05bcSDimitry AndricSRCS_EXT+= Support/FileUtilities.cpp 747986e05bcSDimitry AndricSRCS_MIN+= Support/FoldingSet.cpp 74809bfd043SDimitry AndricSRCS_MIN+= Support/FormatVariadic.cpp 749986e05bcSDimitry AndricSRCS_MIN+= Support/FormattedStream.cpp 75009bfd043SDimitry AndricSRCS_MIN+= Support/GlobPattern.cpp 751986e05bcSDimitry AndricSRCS_MIN+= Support/GraphWriter.cpp 752986e05bcSDimitry AndricSRCS_MIN+= Support/Hashing.cpp 753986e05bcSDimitry AndricSRCS_MIN+= Support/Host.cpp 7549f6e9a9fSDimitry AndricSRCS_MIN+= Support/InitLLVM.cpp 755986e05bcSDimitry AndricSRCS_MIN+= Support/IntEqClasses.cpp 756986e05bcSDimitry AndricSRCS_MIN+= Support/IntervalMap.cpp 757986e05bcSDimitry AndricSRCS_MIN+= Support/JamCRC.cpp 75836cb3905SDimitry AndricSRCS_MIN+= Support/KnownBits.cpp 759986e05bcSDimitry AndricSRCS_MIN+= Support/LEB128.cpp 760986e05bcSDimitry AndricSRCS_MIN+= Support/LineIterator.cpp 761986e05bcSDimitry AndricSRCS_MIN+= Support/Locale.cpp 762986e05bcSDimitry AndricSRCS_MIN+= Support/LockFileManager.cpp 7635897d2f0SDimitry AndricSRCS_MIN+= Support/LowLevelType.cpp 764986e05bcSDimitry AndricSRCS_MIN+= Support/MD5.cpp 765986e05bcSDimitry AndricSRCS_MIN+= Support/ManagedStatic.cpp 766986e05bcSDimitry AndricSRCS_MIN+= Support/MathExtras.cpp 7677bfc2d0fSDimitry AndricSRCS_XDL+= Support/Memory.cpp 768986e05bcSDimitry AndricSRCS_MIN+= Support/MemoryBuffer.cpp 769986e05bcSDimitry AndricSRCS_MIN+= Support/Mutex.cpp 77009bfd043SDimitry AndricSRCS_MIN+= Support/NativeFormatting.cpp 771986e05bcSDimitry AndricSRCS_MIN+= Support/Options.cpp 7725517e702SDimitry AndricSRCS_LLD+= Support/Parallel.cpp 773986e05bcSDimitry AndricSRCS_MIN+= Support/Path.cpp 774986e05bcSDimitry AndricSRCS_MIN+= Support/PluginLoader.cpp 775986e05bcSDimitry AndricSRCS_MIN+= Support/PrettyStackTrace.cpp 776986e05bcSDimitry AndricSRCS_MIN+= Support/Process.cpp 777986e05bcSDimitry AndricSRCS_MIN+= Support/Program.cpp 778986e05bcSDimitry AndricSRCS_MIN+= Support/RWMutex.cpp 779986e05bcSDimitry AndricSRCS_MIN+= Support/RandomNumberGenerator.cpp 780986e05bcSDimitry AndricSRCS_MIN+= Support/Regex.cpp 781986e05bcSDimitry AndricSRCS_MIN+= Support/SHA1.cpp 782986e05bcSDimitry AndricSRCS_MIN+= Support/ScaledNumber.cpp 783986e05bcSDimitry AndricSRCS_MIN+= Support/ScopedPrinter.cpp 784986e05bcSDimitry AndricSRCS_MIN+= Support/Signals.cpp 785986e05bcSDimitry AndricSRCS_MIN+= Support/SmallPtrSet.cpp 786986e05bcSDimitry AndricSRCS_MIN+= Support/SmallVector.cpp 787986e05bcSDimitry AndricSRCS_MIN+= Support/SourceMgr.cpp 788986e05bcSDimitry AndricSRCS_MIN+= Support/SpecialCaseList.cpp 789986e05bcSDimitry AndricSRCS_MIN+= Support/Statistic.cpp 790986e05bcSDimitry AndricSRCS_MIN+= Support/StringExtras.cpp 791986e05bcSDimitry AndricSRCS_MIN+= Support/StringMap.cpp 792986e05bcSDimitry AndricSRCS_MIN+= Support/StringRef.cpp 793986e05bcSDimitry AndricSRCS_MIN+= Support/StringSaver.cpp 794986e05bcSDimitry AndricSRCS_EXT+= Support/SystemUtils.cpp 7951ae4f0f6SDimitry AndricSRCS_LLD+= Support/TarWriter.cpp 796986e05bcSDimitry AndricSRCS_MIN+= Support/TargetParser.cpp 797986e05bcSDimitry AndricSRCS_MIN+= Support/TargetRegistry.cpp 798986e05bcSDimitry AndricSRCS_MIN+= Support/ThreadLocal.cpp 79909bfd043SDimitry AndricSRCS_MIN+= Support/ThreadPool.cpp 800986e05bcSDimitry AndricSRCS_MIN+= Support/Threading.cpp 801986e05bcSDimitry AndricSRCS_MIN+= Support/Timer.cpp 802986e05bcSDimitry AndricSRCS_MIN+= Support/ToolOutputFile.cpp 80309bfd043SDimitry AndricSRCS_MIN+= Support/TrigramIndex.cpp 804986e05bcSDimitry AndricSRCS_MIN+= Support/Triple.cpp 805986e05bcSDimitry AndricSRCS_MIN+= Support/Twine.cpp 806986e05bcSDimitry AndricSRCS_MIN+= Support/Unicode.cpp 8079f6e9a9fSDimitry AndricSRCS_MIN+= Support/UnicodeCaseFold.cpp 808986e05bcSDimitry AndricSRCS_MIN+= Support/Valgrind.cpp 8099f6e9a9fSDimitry AndricSRCS_MIN+= Support/VersionTuple.cpp 81067b158f6SDimitry AndricSRCS_MIW+= Support/WithColor.cpp 811986e05bcSDimitry AndricSRCS_MIN+= Support/YAMLParser.cpp 812986e05bcSDimitry AndricSRCS_MIN+= Support/YAMLTraits.cpp 813986e05bcSDimitry AndricSRCS_MIN+= Support/circular_raw_ostream.cpp 814986e05bcSDimitry AndricSRCS_MIN+= Support/raw_os_ostream.cpp 815986e05bcSDimitry AndricSRCS_MIN+= Support/raw_ostream.cpp 816986e05bcSDimitry AndricSRCS_MIN+= Support/regcomp.c 817986e05bcSDimitry AndricSRCS_MIN+= Support/regerror.c 818986e05bcSDimitry AndricSRCS_MIN+= Support/regexec.c 819986e05bcSDimitry AndricSRCS_MIN+= Support/regfree.c 820986e05bcSDimitry AndricSRCS_MIN+= Support/regstrlcpy.c 8210fc5d238SDimitry AndricSRCS_LLD+= Support/xxhash.cpp 822986e05bcSDimitry AndricSRCS_MIN+= TableGen/Error.cpp 823986e05bcSDimitry AndricSRCS_MIN+= TableGen/Main.cpp 824986e05bcSDimitry AndricSRCS_MIN+= TableGen/Record.cpp 825986e05bcSDimitry AndricSRCS_MIN+= TableGen/SetTheory.cpp 826986e05bcSDimitry AndricSRCS_MIN+= TableGen/StringMatcher.cpp 827986e05bcSDimitry AndricSRCS_MIN+= TableGen/TGLexer.cpp 828986e05bcSDimitry AndricSRCS_MIN+= TableGen/TGParser.cpp 829986e05bcSDimitry AndricSRCS_MIN+= TableGen/TableGenBackend.cpp 830cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no" 831986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64A53Fix835769.cpp 832986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64A57FPLoadBalancing.cpp 833986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64AdvSIMDScalarPass.cpp 834986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64AsmPrinter.cpp 8353d54deb3SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CallLowering.cpp 836986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp 837986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CollectLOH.cpp 838edd7eaddSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64CondBrTuning.cpp 839986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ConditionOptimizer.cpp 840986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ConditionalCompares.cpp 841986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp 842986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ExpandPseudoInsts.cpp 843b40b48b8SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64FalkorHWPFFix.cpp 844986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64FastISel.cpp 845986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64FrameLowering.cpp 846986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ISelDAGToDAG.cpp 847986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64ISelLowering.cpp 848986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64InstrInfo.cpp 8493d54deb3SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64InstructionSelector.cpp 8503d54deb3SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64LegalizerInfo.cpp 851986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64LoadStoreOptimizer.cpp 852986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MCInstLower.cpp 8535897d2f0SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64MacroFusion.cpp 854986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64PBQPRegAlloc.cpp 855986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64PromoteConstant.cpp 856986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64RedundantCopyElimination.cpp 8573d54deb3SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64RegisterBankInfo.cpp 858986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64RegisterInfo.cpp 85936cb3905SDimitry AndricSRCS_MIN+= Target/AArch64/AArch64SIMDInstrOpt.cpp 860986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64SelectionDAGInfo.cpp 861986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64StorePairSuppress.cpp 862986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64Subtarget.cpp 863986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64TargetMachine.cpp 864986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64TargetObjectFile.cpp 865986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AArch64TargetTransformInfo.cpp 866986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/AsmParser/AArch64AsmParser.cpp 86730d4828eSDimitry AndricSRCS_XDW+= Target/AArch64/Disassembler/AArch64Disassembler.cpp 86830d4828eSDimitry AndricSRCS_XDW+= Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp 869986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/InstPrinter/AArch64InstPrinter.cpp 870986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp 871986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp 872986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp 873986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp 874986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp 875986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp 876986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp 877986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp 878986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp 879a580b014SDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp 880a580b014SDimitry AndricSRCS_MIN+= Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp 881986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/TargetInfo/AArch64TargetInfo.cpp 882986e05bcSDimitry AndricSRCS_MIN+= Target/AArch64/Utils/AArch64BaseInfo.cpp 883cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64 884cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no" 885986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/A15SDOptimizer.cpp 886986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMAsmPrinter.cpp 887986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMBaseInstrInfo.cpp 888986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMBaseRegisterInfo.cpp 8893d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMCallLowering.cpp 8909f6e9a9fSDimitry AndricSRCS_MIN+= Target/ARM/ARMCodeGenPrepare.cpp 89109bfd043SDimitry AndricSRCS_MIN+= Target/ARM/ARMComputeBlockSize.cpp 892986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMConstantIslandPass.cpp 893986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMConstantPoolValue.cpp 894986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMExpandPseudoInsts.cpp 895986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMFastISel.cpp 896986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMFrameLowering.cpp 897986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMHazardRecognizer.cpp 898986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMISelDAGToDAG.cpp 899986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMISelLowering.cpp 900986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMInstrInfo.cpp 9013d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMInstructionSelector.cpp 9023d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMLegalizerInfo.cpp 903986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMLoadStoreOptimizer.cpp 904986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMMCInstLower.cpp 905986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMMachineFunctionInfo.cpp 906edd7eaddSDimitry AndricSRCS_MIN+= Target/ARM/ARMMacroFusion.cpp 907986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMOptimizeBarriersPass.cpp 9089f6e9a9fSDimitry AndricSRCS_MIN+= Target/ARM/ARMParallelDSP.cpp 9093d54deb3SDimitry AndricSRCS_MIN+= Target/ARM/ARMRegisterBankInfo.cpp 910986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMRegisterInfo.cpp 911986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMSelectionDAGInfo.cpp 912986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMSubtarget.cpp 913986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMTargetMachine.cpp 914986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMTargetObjectFile.cpp 915986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ARMTargetTransformInfo.cpp 916986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/AsmParser/ARMAsmParser.cpp 917986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Disassembler/ARMDisassembler.cpp 918986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/InstPrinter/ARMInstPrinter.cpp 919986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMAsmBackend.cpp 920986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp 921986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMELFStreamer.cpp 922986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp 923986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp 924986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCExpr.cpp 925986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp 926986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp 927986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp 928986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp 929986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp 930986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp 931986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp 932986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/MLxExpansionPass.cpp 933986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/TargetInfo/ARMTargetInfo.cpp 934986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb1FrameLowering.cpp 935986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb1InstrInfo.cpp 936986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb2ITBlockPass.cpp 937986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb2InstrInfo.cpp 938986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/Thumb2SizeReduction.cpp 939986e05bcSDimitry AndricSRCS_MIN+= Target/ARM/ThumbRegisterInfo.cpp 94036cb3905SDimitry AndricSRCS_MIN+= Target/ARM/Utils/ARMBaseInfo.cpp 941cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM 942cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no" 943986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/AsmParser/MipsAsmParser.cpp 94430d4828eSDimitry AndricSRCS_XDW+= Target/Mips/Disassembler/MipsDisassembler.cpp 945986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/InstPrinter/MipsInstPrinter.cpp 946986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp 947986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsABIInfo.cpp 948986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsAsmBackend.cpp 949986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp 950986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsELFStreamer.cpp 951986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp 952986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp 953986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCExpr.cpp 954986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp 955986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp 956986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsOptionRecord.cpp 957986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp 958f37b6182SDimitry AndricSRCS_MIN+= Target/Mips/MicroMipsSizeReduction.cpp 959986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16FrameLowering.cpp 960986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16HardFloat.cpp 961986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16HardFloatInfo.cpp 962986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16ISelDAGToDAG.cpp 963986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16ISelLowering.cpp 964986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16InstrInfo.cpp 965986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/Mips16RegisterInfo.cpp 966986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsAnalyzeImmediate.cpp 967986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsAsmPrinter.cpp 9689f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsBranchExpansion.cpp 969986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsCCState.cpp 9709f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsCallLowering.cpp 971986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsConstantIslandPass.cpp 972986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsDelaySlotFiller.cpp 9739f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsExpandPseudo.cpp 974986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsFastISel.cpp 975986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsFrameLowering.cpp 976986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsISelDAGToDAG.cpp 977986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsISelLowering.cpp 978986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsInstrInfo.cpp 9799f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsInstructionSelector.cpp 9809f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsLegalizerInfo.cpp 981986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsMCInstLower.cpp 982986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsMachineFunction.cpp 983986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsModuleISelDAGToDAG.cpp 984986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsOptimizePICCall.cpp 985986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsOs16.cpp 9869f6e9a9fSDimitry AndricSRCS_MIN+= Target/Mips/MipsRegisterBankInfo.cpp 987986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsRegisterInfo.cpp 988986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEFrameLowering.cpp 989986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEISelDAGToDAG.cpp 990986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEISelLowering.cpp 991986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSEInstrInfo.cpp 992986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSERegisterInfo.cpp 993986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsSubtarget.cpp 994986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsTargetMachine.cpp 995986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/MipsTargetObjectFile.cpp 996986e05bcSDimitry AndricSRCS_MIN+= Target/Mips/TargetInfo/MipsTargetInfo.cpp 997cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS 998cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no" 999986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/AsmParser/PPCAsmParser.cpp 1000986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/Disassembler/PPCDisassembler.cpp 1001986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/InstPrinter/PPCInstPrinter.cpp 1002986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp 1003986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp 1004986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp 1005986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp 1006986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp 1007986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp 1008986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp 1009986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/MCTargetDesc/PPCPredicates.cpp 1010986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCAsmPrinter.cpp 1011986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCBoolRetToInt.cpp 101236cb3905SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCBranchCoalescing.cpp 1013986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCBranchSelector.cpp 1014986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCCCState.cpp 1015986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCCTRLoops.cpp 1016986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCEarlyReturn.cpp 10175897d2f0SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCExpandISEL.cpp 1018986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCFastISel.cpp 1019986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCFrameLowering.cpp 1020986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCHazardRecognizers.cpp 1021986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCISelDAGToDAG.cpp 1022986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCISelLowering.cpp 1023986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCInstrInfo.cpp 1024986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCLoopPreIncPrep.cpp 1025986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMCInstLower.cpp 1026986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMIPeephole.cpp 1027986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCMachineFunctionInfo.cpp 102836cb3905SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCPreEmitPeephole.cpp 1029986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCQPXLoadSplat.cpp 103036cb3905SDimitry AndricSRCS_MIN+= Target/PowerPC/PPCReduceCRLogicals.cpp 1031986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCRegisterInfo.cpp 1032986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCSubtarget.cpp 1033986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTLSDynamicCall.cpp 1034986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTOCRegDeps.cpp 1035986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTargetMachine.cpp 1036986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTargetObjectFile.cpp 1037986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCTargetTransformInfo.cpp 1038986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCVSXCopy.cpp 1039986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCVSXFMAMutate.cpp 1040986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/PPCVSXSwapRemoval.cpp 1041986e05bcSDimitry AndricSRCS_MIN+= Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp 1042cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC 1043cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_SPARC} != "no" 1044986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/AsmParser/SparcAsmParser.cpp 1045986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/DelaySlotFiller.cpp 104630d4828eSDimitry AndricSRCS_XDW+= Target/Sparc/Disassembler/SparcDisassembler.cpp 1047986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/InstPrinter/SparcInstPrinter.cpp 1048986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/LeonPasses.cpp 1049986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp 1050986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp 1051986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp 1052986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/MCTargetDesc/SparcMCCodeEmitter.cpp 1053986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/MCTargetDesc/SparcMCExpr.cpp 1054986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp 1055986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/MCTargetDesc/SparcTargetStreamer.cpp 1056986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcAsmPrinter.cpp 1057986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcFrameLowering.cpp 1058986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcISelDAGToDAG.cpp 1059986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcISelLowering.cpp 1060986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcInstrInfo.cpp 1061986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcMCInstLower.cpp 1062986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcMachineFunctionInfo.cpp 1063986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcRegisterInfo.cpp 1064986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcSubtarget.cpp 1065986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcTargetMachine.cpp 1066986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/SparcTargetObjectFile.cpp 1067986e05bcSDimitry AndricSRCS_MIN+= Target/Sparc/TargetInfo/SparcTargetInfo.cpp 1068cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_SPARC 1069986e05bcSDimitry AndricSRCS_MIN+= Target/Target.cpp 107009bfd043SDimitry AndricSRCS_MIN+= Target/TargetIntrinsicInfo.cpp 1071986e05bcSDimitry AndricSRCS_MIN+= Target/TargetLoweringObjectFile.cpp 1072986e05bcSDimitry AndricSRCS_MIN+= Target/TargetMachine.cpp 1073986e05bcSDimitry AndricSRCS_MIN+= Target/TargetMachineC.cpp 1074cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no" 1075986e05bcSDimitry AndricSRCS_MIN+= Target/X86/AsmParser/X86AsmInstrumentation.cpp 1076986e05bcSDimitry AndricSRCS_MIN+= Target/X86/AsmParser/X86AsmParser.cpp 107730d4828eSDimitry AndricSRCS_XDW+= Target/X86/Disassembler/X86Disassembler.cpp 107830d4828eSDimitry AndricSRCS_XDW+= Target/X86/Disassembler/X86DisassemblerDecoder.cpp 1079986e05bcSDimitry AndricSRCS_MIN+= Target/X86/InstPrinter/X86ATTInstPrinter.cpp 1080986e05bcSDimitry AndricSRCS_MIN+= Target/X86/InstPrinter/X86InstComments.cpp 10819f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/InstPrinter/X86InstPrinterCommon.cpp 1082986e05bcSDimitry AndricSRCS_MIN+= Target/X86/InstPrinter/X86IntelInstPrinter.cpp 1083986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86AsmBackend.cpp 1084986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp 1085986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MCAsmInfo.cpp 1086986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp 1087986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MCTargetDesc.cpp 1088986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86MachObjectWriter.cpp 1089986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp 1090986e05bcSDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp 109136cb3905SDimitry AndricSRCS_MIN+= Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp 1092986e05bcSDimitry AndricSRCS_MIN+= Target/X86/TargetInfo/X86TargetInfo.cpp 1093986e05bcSDimitry AndricSRCS_MIN+= Target/X86/Utils/X86ShuffleDecode.cpp 10949f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/ShadowCallStack.cpp 1095986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86AsmPrinter.cpp 10969f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86AvoidStoreForwardingBlocks.cpp 1097986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86CallFrameOptimization.cpp 10983d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86CallLowering.cpp 109909bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86CallingConv.cpp 1100b40b48b8SDimitry AndricSRCS_MIN+= Target/X86/X86CmovConversion.cpp 110136cb3905SDimitry AndricSRCS_MIN+= Target/X86/X86DomainReassignment.cpp 110209bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86EvexToVex.cpp 1103986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ExpandPseudo.cpp 1104986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FastISel.cpp 1105986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FixupBWInsts.cpp 1106986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FixupLEAs.cpp 1107986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FixupSetCC.cpp 11080556cfadSDimitry AndricSRCS_MIN+= Target/X86/X86FlagsCopyLowering.cpp 1109986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FloatingPoint.cpp 1110986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86FrameLowering.cpp 1111986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ISelDAGToDAG.cpp 1112986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ISelLowering.cpp 11139f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86IndirectBranchTracking.cpp 111409bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86InstrFMA3Info.cpp 11159f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86InstrFoldTables.cpp 1116986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86InstrInfo.cpp 11173d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86InstructionSelector.cpp 111809bfd043SDimitry AndricSRCS_MIN+= Target/X86/X86InterleavedAccess.cpp 11193d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86LegalizerInfo.cpp 1120986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86MCInstLower.cpp 1121986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86MachineFunctionInfo.cpp 11225897d2f0SDimitry AndricSRCS_MIN+= Target/X86/X86MacroFusion.cpp 1123986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86OptimizeLEAs.cpp 1124986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86PadShortFunction.cpp 11253d54deb3SDimitry AndricSRCS_MIN+= Target/X86/X86RegisterBankInfo.cpp 1126986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86RegisterInfo.cpp 112707577dfeSDimitry AndricSRCS_MIN+= Target/X86/X86RetpolineThunks.cpp 1128986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86SelectionDAGInfo.cpp 1129986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86ShuffleDecodeConstantPool.cpp 11309f6e9a9fSDimitry AndricSRCS_MIN+= Target/X86/X86SpeculativeLoadHardening.cpp 1131986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86Subtarget.cpp 1132986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86TargetMachine.cpp 1133986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86TargetObjectFile.cpp 1134986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86TargetTransformInfo.cpp 1135986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86VZeroUpper.cpp 1136986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86WinAllocaExpander.cpp 1137986e05bcSDimitry AndricSRCS_MIN+= Target/X86/X86WinEHState.cpp 1138cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86 1139b40b48b8SDimitry AndricSRCS_EXT+= ToolDrivers/llvm-dlltool/DlltoolDriver.cpp 11405517e702SDimitry AndricSRCS_EXL+= ToolDrivers/llvm-lib/LibDriver.cpp 11419f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp 11429f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/AggressiveInstCombine/TruncInstCombine.cpp 114309bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroCleanup.cpp 114409bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroEarly.cpp 114509bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroElide.cpp 114609bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroFrame.cpp 114709bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/CoroSplit.cpp 114809bfd043SDimitry AndricSRCS_MIN+= Transforms/Coroutines/Coroutines.cpp 114909bfd043SDimitry AndricSRCS_MIN+= Transforms/IPO/AlwaysInliner.cpp 1150986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ArgumentPromotion.cpp 1151986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/BarrierNoopPass.cpp 115267b158f6SDimitry AndricSRCS_EXT+= Transforms/IPO/BlockExtractor.cpp 115336cb3905SDimitry AndricSRCS_MIN+= Transforms/IPO/CalledValuePropagation.cpp 1154986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ConstantMerge.cpp 1155986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/CrossDSOCFI.cpp 1156986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/DeadArgumentElimination.cpp 1157986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ElimAvailExtern.cpp 1158986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ExtractGV.cpp 1159986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/ForceFunctionAttrs.cpp 1160986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/FunctionAttrs.cpp 1161986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/FunctionImport.cpp 1162986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/GlobalDCE.cpp 1163986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/GlobalOpt.cpp 116409bfd043SDimitry AndricSRCS_MIN+= Transforms/IPO/GlobalSplit.cpp 1165986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/IPConstantPropagation.cpp 1166986e05bcSDimitry AndricSRCS_EXT+= Transforms/IPO/IPO.cpp 1167986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/InferFunctionAttrs.cpp 1168986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/InlineSimple.cpp 1169986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/Inliner.cpp 1170986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/Internalize.cpp 1171986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/LoopExtractor.cpp 1172986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/LowerTypeTests.cpp 1173986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/MergeFunctions.cpp 1174986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/PartialInlining.cpp 1175986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/PassManagerBuilder.cpp 1176986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/PruneEH.cpp 11779f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/IPO/SCCP.cpp 1178986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/SampleProfile.cpp 1179986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/StripDeadPrototypes.cpp 1180986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/StripSymbols.cpp 11819f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/IPO/SyntheticCountsPropagation.cpp 118209bfd043SDimitry AndricSRCS_MIN+= Transforms/IPO/ThinLTOBitcodeWriter.cpp 1183986e05bcSDimitry AndricSRCS_MIN+= Transforms/IPO/WholeProgramDevirt.cpp 1184986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineAddSub.cpp 1185986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineAndOrXor.cpp 1186986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineCalls.cpp 1187986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineCasts.cpp 1188986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineCompares.cpp 1189986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp 1190986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineMulDivRem.cpp 1191986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombinePHI.cpp 1192986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineSelect.cpp 1193986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineShifts.cpp 1194986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineSimplifyDemanded.cpp 1195986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstCombineVectorOps.cpp 1196986e05bcSDimitry AndricSRCS_MIN+= Transforms/InstCombine/InstructionCombining.cpp 1197986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/AddressSanitizer.cpp 1198986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/BoundsChecking.cpp 11999f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/CGProfile.cpp 1200986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/DataFlowSanitizer.cpp 1201986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/EfficiencySanitizer.cpp 1202986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/GCOVProfiling.cpp 120336cb3905SDimitry AndricSRCS_MIN+= Transforms/Instrumentation/HWAddressSanitizer.cpp 1204986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/IndirectCallPromotion.cpp 1205986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/InstrProfiling.cpp 1206986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/Instrumentation.cpp 1207986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/MemorySanitizer.cpp 1208986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/PGOInstrumentation.cpp 120924d58133SDimitry AndricSRCS_MIN+= Transforms/Instrumentation/PGOMemOPSizeOpt.cpp 1210986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/SanitizerCoverage.cpp 1211986e05bcSDimitry AndricSRCS_MIN+= Transforms/Instrumentation/ThreadSanitizer.cpp 1212986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/DependencyAnalysis.cpp 1213986e05bcSDimitry AndricSRCS_EXT+= Transforms/ObjCARC/ObjCARC.cpp 1214986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCAPElim.cpp 1215986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCContract.cpp 1216986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCExpand.cpp 1217986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ObjCARCOpts.cpp 1218986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ProvenanceAnalysis.cpp 1219986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp 1220986e05bcSDimitry AndricSRCS_MIN+= Transforms/ObjCARC/PtrState.cpp 1221986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/ADCE.cpp 1222986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/AlignmentFromAssumptions.cpp 1223986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/BDCE.cpp 122436cb3905SDimitry AndricSRCS_MIN+= Transforms/Scalar/CallSiteSplitting.cpp 1225986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/ConstantHoisting.cpp 1226986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/ConstantProp.cpp 1227986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/CorrelatedValuePropagation.cpp 1228986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/DCE.cpp 1229986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/DeadStoreElimination.cpp 123036cb3905SDimitry AndricSRCS_MIN+= Transforms/Scalar/DivRemPairs.cpp 1231986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/EarlyCSE.cpp 1232986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/FlattenCFGPass.cpp 1233986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Float2Int.cpp 1234986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/GVN.cpp 1235986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/GVNHoist.cpp 1236302affcbSDimitry AndricSRCS_MIN+= Transforms/Scalar/GVNSink.cpp 1237986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/GuardWidening.cpp 1238f1a29dd3SDimitry AndricSRCS_MIN+= Transforms/Scalar/IVUsersPrinter.cpp 1239986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/IndVarSimplify.cpp 1240986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/InductiveRangeCheckElimination.cpp 1241050e2df1SDimitry AndricSRCS_EXT+= Transforms/Scalar/InferAddressSpaces.cpp 12429f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Scalar/InstSimplifyPass.cpp 1243986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/JumpThreading.cpp 1244986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LICM.cpp 1245f1a29dd3SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopAccessAnalysisPrinter.cpp 1246986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopDataPrefetch.cpp 1247986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopDeletion.cpp 1248986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopDistribute.cpp 1249986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopIdiomRecognize.cpp 125009bfd043SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopInstSimplify.cpp 1251986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopInterchange.cpp 1252986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopLoadElimination.cpp 1253f1a29dd3SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopPassManager.cpp 12545897d2f0SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopPredication.cpp 1255986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopRerollPass.cpp 1256986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopRotation.cpp 1257986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopSimplifyCFG.cpp 125809bfd043SDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopSink.cpp 1259986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopStrengthReduce.cpp 1260986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopUnrollPass.cpp 12619f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopUnrollAndJamPass.cpp 1262986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopUnswitch.cpp 1263986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LoopVersioningLICM.cpp 1264986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerAtomic.cpp 1265986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerExpectIntrinsic.cpp 1266986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/LowerGuardIntrinsic.cpp 1267986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/MemCpyOptimizer.cpp 126836cb3905SDimitry AndricSRCS_MIN+= Transforms/Scalar/MergeICmps.cpp 1269986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/MergedLoadStoreMotion.cpp 1270986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/NaryReassociate.cpp 127109bfd043SDimitry AndricSRCS_MIN+= Transforms/Scalar/NewGVN.cpp 1272986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/PartiallyInlineLibCalls.cpp 1273986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/PlaceSafepoints.cpp 1274986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Reassociate.cpp 1275986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Reg2Mem.cpp 1276986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/RewriteStatepointsForGC.cpp 1277986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SCCP.cpp 1278986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SROA.cpp 1279986e05bcSDimitry AndricSRCS_EXT+= Transforms/Scalar/Scalar.cpp 1280986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Scalarizer.cpp 1281986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SeparateConstOffsetFromGEP.cpp 1282f37b6182SDimitry AndricSRCS_MIN+= Transforms/Scalar/SimpleLoopUnswitch.cpp 1283986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SimplifyCFGPass.cpp 1284986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/Sink.cpp 128536cb3905SDimitry AndricSRCS_MIN+= Transforms/Scalar/SpeculateAroundPHIs.cpp 1286986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/SpeculativeExecution.cpp 1287986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/StraightLineStrengthReduce.cpp 1288986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/StructurizeCFG.cpp 1289986e05bcSDimitry AndricSRCS_MIN+= Transforms/Scalar/TailRecursionElimination.cpp 1290986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/ASanStackFrameLayout.cpp 1291986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/AddDiscriminators.cpp 1292986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BasicBlockUtils.cpp 1293986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BreakCriticalEdges.cpp 1294986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BuildLibCalls.cpp 1295986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/BypassSlowDivision.cpp 129636cb3905SDimitry AndricSRCS_MIN+= Transforms/Utils/CallPromotionUtils.cpp 1297986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CloneFunction.cpp 1298986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CloneModule.cpp 1299986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CodeExtractor.cpp 1300986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/CtorUtils.cpp 1301986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/DemoteRegToStack.cpp 130236cb3905SDimitry AndricSRCS_MIN+= Transforms/Utils/EntryExitInstrumenter.cpp 130309bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/EscapeEnumerator.cpp 1304986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/Evaluator.cpp 1305986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/FlattenCFG.cpp 130609bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/FunctionComparator.cpp 1307986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/FunctionImportUtils.cpp 1308986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/GlobalStatus.cpp 130909bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/ImportedFunctionsInliningStatistics.cpp 1310986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/InlineFunction.cpp 1311986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/InstructionNamer.cpp 1312986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/IntegerDivision.cpp 1313986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LCSSA.cpp 131409bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/LibCallsShrinkWrap.cpp 1315986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/Local.cpp 1316986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopSimplify.cpp 13179f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopRotationUtils.cpp 1318986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUnroll.cpp 13199f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUnrollAndJam.cpp 132009bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUnrollPeel.cpp 1321986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUnrollRuntime.cpp 1322986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopUtils.cpp 1323986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LoopVersioning.cpp 1324986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LowerInvoke.cpp 1325986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/LowerSwitch.cpp 1326986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/Mem2Reg.cpp 1327986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/MetaRenamer.cpp 1328986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/ModuleUtils.cpp 132909bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/NameAnonGlobals.cpp 1330a580b014SDimitry AndricSRCS_MIN+= Transforms/Utils/OrderedInstructions.cpp 13315897d2f0SDimitry AndricSRCS_MIN+= Transforms/Utils/PredicateInfo.cpp 1332986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/PromoteMemoryToRegister.cpp 1333986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SSAUpdater.cpp 1334986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SanitizerStats.cpp 1335986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SimplifyCFG.cpp 1336986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SimplifyIndVar.cpp 1337986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SimplifyLibCalls.cpp 1338986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SplitModule.cpp 133909bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/StripGCRelocates.cpp 134009bfd043SDimitry AndricSRCS_MIN+= Transforms/Utils/StripNonLineTableDebugInfo.cpp 1341986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/SymbolRewriter.cpp 1342986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/UnifyFunctionExitNodes.cpp 1343986e05bcSDimitry AndricSRCS_EXT+= Transforms/Utils/Utils.cpp 13445897d2f0SDimitry AndricSRCS_MIN+= Transforms/Utils/VNCoercion.cpp 1345986e05bcSDimitry AndricSRCS_MIN+= Transforms/Utils/ValueMapper.cpp 1346986e05bcSDimitry AndricSRCS_MIN+= Transforms/Vectorize/LoadStoreVectorizer.cpp 13479f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Vectorize/LoopVectorizationLegality.cpp 1348986e05bcSDimitry AndricSRCS_MIN+= Transforms/Vectorize/LoopVectorize.cpp 1349986e05bcSDimitry AndricSRCS_MIN+= Transforms/Vectorize/SLPVectorizer.cpp 135036cb3905SDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlan.cpp 13519f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlanHCFGBuilder.cpp 13529f6e9a9fSDimitry AndricSRCS_MIN+= Transforms/Vectorize/VPlanVerifier.cpp 1353986e05bcSDimitry AndricSRCS_EXT+= Transforms/Vectorize/Vectorize.cpp 1354050e2df1SDimitry AndricSRCS_EXT+= XRay/InstrumentationMap.cpp 135567b158f6SDimitry AndricSRCS_EXT+= XRay/Trace.cpp 1356986e05bcSDimitry Andric 1357986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_MIN} 1358caf90252SBryan Drewery.if !defined(TOOLS_PREFIX) || ${MK_LLD_BOOTSTRAP} != "no" 135930d4828eSDimitry AndricSRCS_ALL+= ${SRCS_MIW} 136030d4828eSDimitry Andric.endif 1361986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" 1362986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_EXT} 1363986e05bcSDimitry Andric.endif 1364986e05bcSDimitry Andric.if ${MK_CLANG_FULL} != "no" 1365986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_FUL} 1366986e05bcSDimitry Andric.endif 136778187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLD} != "no" || \ 136878187278SBryan Drewery (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no") 136975bc38b9SEd MasteSRCS_ALL+= ${SRCS_EXL} 137075bc38b9SEd Maste.endif 137178187278SBryan Drewery.if ${MK_LLD} != "no" || \ 137278187278SBryan Drewery (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no") 13730fc5d238SDimitry AndricSRCS_ALL+= ${SRCS_LLD} 13740fc5d238SDimitry Andric.endif 1375986e05bcSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" 1376986e05bcSDimitry AndricSRCS_ALL+= ${SRCS_XDB} 1377986e05bcSDimitry Andric.endif 137878187278SBryan Drewery.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || ${MK_LLD} != "no" || \ 137978187278SBryan Drewery (defined(TOOLS_PREFIX) && ${MK_LLD_BOOTSTRAP} != "no") 138075bc38b9SEd MasteSRCS_ALL+= ${SRCS_XDL} 138175bc38b9SEd Maste.endif 138230d4828eSDimitry Andric.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" || !defined(TOOLS_PREFIX) 138330d4828eSDimitry AndricSRCS_ALL+= ${SRCS_XDW} 138430d4828eSDimitry Andric.endif 1385986e05bcSDimitry AndricSRCS+= ${SRCS_ALL:O} 1386986e05bcSDimitry Andric 13879f6e9a9fSDimitry Andricllvm/IR/Attributes.inc: ${LLVM_SRCS}/include/llvm/IR/Attributes.td 1388986e05bcSDimitry Andric ${LLVM_TBLGEN} -gen-attrs \ 1389050e2df1SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1390986e05bcSDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Attributes.td 13919f6e9a9fSDimitry AndricTGHDRS+= llvm/IR/Attributes.inc 1392986e05bcSDimitry Andric 13939f6e9a9fSDimitry Andricllvm/IR/IntrinsicEnums.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 13949f6e9a9fSDimitry Andric ${LLVM_TBLGEN} -gen-intrinsic-enums \ 1395050e2df1SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1396986e05bcSDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 13979f6e9a9fSDimitry AndricTGHDRS+= llvm/IR/IntrinsicEnums.inc 13989f6e9a9fSDimitry Andric 13999f6e9a9fSDimitry Andricllvm/IR/IntrinsicImpl.inc: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 14009f6e9a9fSDimitry Andric ${LLVM_TBLGEN} -gen-intrinsic-impl \ 14019f6e9a9fSDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 14029f6e9a9fSDimitry Andric ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td 14039f6e9a9fSDimitry AndricTGHDRS+= llvm/IR/IntrinsicImpl.inc 1404986e05bcSDimitry Andric 1405986e05bcSDimitry AndricAttributesCompatFunc.inc: ${LLVM_SRCS}/lib/IR/AttributesCompatFunc.td 1406986e05bcSDimitry Andric ${LLVM_TBLGEN} -gen-attrs \ 1407050e2df1SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1408986e05bcSDimitry Andric ${LLVM_SRCS}/lib/IR/AttributesCompatFunc.td 1409986e05bcSDimitry AndricTGHDRS+= AttributesCompatFunc.inc 1410986e05bcSDimitry Andric 14119f6e9a9fSDimitry AndricInstCombineTables.inc: ${LLVM_SRCS}/lib/Transforms/InstCombine/InstCombineTables.td 14129f6e9a9fSDimitry Andric ${LLVM_TBLGEN} -gen-searchable-tables \ 14139f6e9a9fSDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 14149f6e9a9fSDimitry Andric ${LLVM_SRCS}/lib/Transforms/InstCombine/InstCombineTables.td 14159f6e9a9fSDimitry AndricTGHDRS+= InstCombineTables.inc 14169f6e9a9fSDimitry Andric 1417b40b48b8SDimitry Andricllvm-lib/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td 1418986e05bcSDimitry Andric ${LLVM_TBLGEN} -gen-opt-parser-defs \ 1419050e2df1SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 14205517e702SDimitry Andric ${LLVM_SRCS}/lib/ToolDrivers/llvm-lib/Options.td 1421b40b48b8SDimitry AndricTGHDRS+= llvm-lib/Options.inc 1422b40b48b8SDimitry AndricCFLAGS.LibDriver.cpp+= -I${.OBJDIR}/llvm-lib 1423b40b48b8SDimitry Andric 1424b40b48b8SDimitry Andricllvm-dlltool/Options.inc: ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td 1425b40b48b8SDimitry Andric ${LLVM_TBLGEN} -gen-opt-parser-defs \ 1426b40b48b8SDimitry Andric -I ${LLVM_SRCS}/include -d ${.TARGET}.d -o ${.TARGET} \ 1427b40b48b8SDimitry Andric ${LLVM_SRCS}/lib/ToolDrivers/llvm-dlltool/Options.td 1428b40b48b8SDimitry AndricTGHDRS+= llvm-dlltool/Options.inc 1429b40b48b8SDimitry AndricCFLAGS.DlltoolDriver.cpp+= -I${.OBJDIR}/llvm-dlltool 1430986e05bcSDimitry Andric 1431cd283100SBryan Drewerybeforebuild: 1432cd283100SBryan Drewery# 20170724 remove stale Options.inc file, of which there are two different 143337cd60a3SDimitry Andric# versions after upstream r308421, one for llvm-lib, one for llvm-dlltool 1434cd283100SBryan Drewery.for f in Options.inc 1435cd283100SBryan Drewery.if exists(${f}) || exists(${f}.d) 1436cd283100SBryan Drewery @echo Removing stale generated ${f} files 1437cd283100SBryan Drewery @rm -f ${f} ${f}.d 1438cd283100SBryan Drewery.endif 1439cd283100SBryan Drewery.endfor 1440cd283100SBryan Drewery 1441986e05bcSDimitry Andric# Note: some rules are superfluous, not every combination is valid. 1442986e05bcSDimitry Andric.for arch in \ 1443986e05bcSDimitry Andric AArch64/AArch64 ARM/ARM Mips/Mips PowerPC/PPC Sparc/Sparc X86/X86 1444986e05bcSDimitry Andric. for hdr in \ 1445986e05bcSDimitry Andric AsmMatcher/-gen-asm-matcher \ 1446986e05bcSDimitry Andric AsmWriter1/-gen-asm-writer,-asmwriternum=1 \ 1447986e05bcSDimitry Andric AsmWriter/-gen-asm-writer \ 1448986e05bcSDimitry Andric CallingConv/-gen-callingconv \ 1449986e05bcSDimitry Andric CodeEmitter/-gen-emitter \ 1450986e05bcSDimitry Andric DAGISel/-gen-dag-isel \ 1451986e05bcSDimitry Andric DisassemblerTables/-gen-disassembler \ 14525897d2f0SDimitry Andric EVEX2VEXTables/-gen-x86-EVEX2VEX-tables \ 1453986e05bcSDimitry Andric FastISel/-gen-fast-isel \ 14543d54deb3SDimitry Andric GlobalISel/-gen-global-isel \ 1455986e05bcSDimitry Andric InstrInfo/-gen-instr-info \ 1456986e05bcSDimitry Andric MCCodeEmitter/-gen-emitter \ 1457986e05bcSDimitry Andric MCPseudoLowering/-gen-pseudo-lowering \ 14585897d2f0SDimitry Andric RegisterBank/-gen-register-bank \ 1459986e05bcSDimitry Andric RegisterInfo/-gen-register-info \ 1460986e05bcSDimitry Andric SubtargetInfo/-gen-subtarget \ 146136cb3905SDimitry Andric SystemOperands/-gen-searchable-tables \ 146236cb3905SDimitry Andric SystemRegister/-gen-searchable-tables 1463986e05bcSDimitry Andric${arch:T}Gen${hdr:H}.inc: ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td 1464986e05bcSDimitry Andric ${LLVM_TBLGEN} ${hdr:T:C/,/ /g} \ 1465986e05bcSDimitry Andric -I ${LLVM_SRCS}/include -I ${LLVM_SRCS}/lib/Target/${arch:H} \ 1466050e2df1SDimitry Andric -d ${.TARGET}.d -o ${.TARGET} \ 1467986e05bcSDimitry Andric ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td 1468986e05bcSDimitry Andric. endfor 1469986e05bcSDimitry Andric.endfor 1470cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_AARCH64} != "no" 1471986e05bcSDimitry AndricTGHDRS+= AArch64GenAsmMatcher.inc 1472986e05bcSDimitry AndricTGHDRS+= AArch64GenAsmWriter.inc 1473986e05bcSDimitry AndricTGHDRS+= AArch64GenAsmWriter1.inc 1474986e05bcSDimitry AndricTGHDRS+= AArch64GenCallingConv.inc 1475986e05bcSDimitry AndricTGHDRS+= AArch64GenDAGISel.inc 1476986e05bcSDimitry AndricTGHDRS+= AArch64GenDisassemblerTables.inc 1477986e05bcSDimitry AndricTGHDRS+= AArch64GenFastISel.inc 14783d54deb3SDimitry AndricTGHDRS+= AArch64GenGlobalISel.inc 1479986e05bcSDimitry AndricTGHDRS+= AArch64GenInstrInfo.inc 1480986e05bcSDimitry AndricTGHDRS+= AArch64GenMCCodeEmitter.inc 1481986e05bcSDimitry AndricTGHDRS+= AArch64GenMCPseudoLowering.inc 14825897d2f0SDimitry AndricTGHDRS+= AArch64GenRegisterBank.inc 1483986e05bcSDimitry AndricTGHDRS+= AArch64GenRegisterInfo.inc 1484986e05bcSDimitry AndricTGHDRS+= AArch64GenSubtargetInfo.inc 1485986e05bcSDimitry AndricTGHDRS+= AArch64GenSystemOperands.inc 1486cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_AARCH64 1487cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_ARM} != "no" 1488986e05bcSDimitry AndricTGHDRS+= ARMGenAsmMatcher.inc 1489986e05bcSDimitry AndricTGHDRS+= ARMGenAsmWriter.inc 1490986e05bcSDimitry AndricTGHDRS+= ARMGenCallingConv.inc 1491986e05bcSDimitry AndricTGHDRS+= ARMGenDAGISel.inc 1492986e05bcSDimitry AndricTGHDRS+= ARMGenDisassemblerTables.inc 1493986e05bcSDimitry AndricTGHDRS+= ARMGenFastISel.inc 14943d54deb3SDimitry AndricTGHDRS+= ARMGenGlobalISel.inc 1495986e05bcSDimitry AndricTGHDRS+= ARMGenInstrInfo.inc 1496986e05bcSDimitry AndricTGHDRS+= ARMGenMCCodeEmitter.inc 1497986e05bcSDimitry AndricTGHDRS+= ARMGenMCPseudoLowering.inc 14985897d2f0SDimitry AndricTGHDRS+= ARMGenRegisterBank.inc 1499986e05bcSDimitry AndricTGHDRS+= ARMGenRegisterInfo.inc 1500986e05bcSDimitry AndricTGHDRS+= ARMGenSubtargetInfo.inc 150136cb3905SDimitry AndricTGHDRS+= ARMGenSystemRegister.inc 1502cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_ARM 1503cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_MIPS} != "no" 1504986e05bcSDimitry AndricTGHDRS+= MipsGenAsmMatcher.inc 1505986e05bcSDimitry AndricTGHDRS+= MipsGenAsmWriter.inc 1506986e05bcSDimitry AndricTGHDRS+= MipsGenCallingConv.inc 1507986e05bcSDimitry AndricTGHDRS+= MipsGenDAGISel.inc 1508986e05bcSDimitry AndricTGHDRS+= MipsGenDisassemblerTables.inc 1509986e05bcSDimitry AndricTGHDRS+= MipsGenFastISel.inc 15109f6e9a9fSDimitry AndricTGHDRS+= MipsGenGlobalISel.inc 1511986e05bcSDimitry AndricTGHDRS+= MipsGenInstrInfo.inc 1512986e05bcSDimitry AndricTGHDRS+= MipsGenMCCodeEmitter.inc 1513986e05bcSDimitry AndricTGHDRS+= MipsGenMCPseudoLowering.inc 15149f6e9a9fSDimitry AndricTGHDRS+= MipsGenRegisterBank.inc 1515986e05bcSDimitry AndricTGHDRS+= MipsGenRegisterInfo.inc 1516986e05bcSDimitry AndricTGHDRS+= MipsGenSubtargetInfo.inc 1517cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_MIPS 1518cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_POWERPC} != "no" 1519986e05bcSDimitry AndricTGHDRS+= PPCGenAsmMatcher.inc 1520986e05bcSDimitry AndricTGHDRS+= PPCGenAsmWriter.inc 1521986e05bcSDimitry AndricTGHDRS+= PPCGenCallingConv.inc 1522986e05bcSDimitry AndricTGHDRS+= PPCGenDAGISel.inc 1523986e05bcSDimitry AndricTGHDRS+= PPCGenDisassemblerTables.inc 1524986e05bcSDimitry AndricTGHDRS+= PPCGenFastISel.inc 1525986e05bcSDimitry AndricTGHDRS+= PPCGenInstrInfo.inc 1526986e05bcSDimitry AndricTGHDRS+= PPCGenMCCodeEmitter.inc 1527986e05bcSDimitry AndricTGHDRS+= PPCGenRegisterInfo.inc 1528986e05bcSDimitry AndricTGHDRS+= PPCGenSubtargetInfo.inc 1529cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_POWERPC 1530cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_SPARC} != "no" 1531986e05bcSDimitry AndricTGHDRS+= SparcGenAsmMatcher.inc 1532986e05bcSDimitry AndricTGHDRS+= SparcGenAsmWriter.inc 1533986e05bcSDimitry AndricTGHDRS+= SparcGenCallingConv.inc 1534986e05bcSDimitry AndricTGHDRS+= SparcGenDAGISel.inc 1535986e05bcSDimitry AndricTGHDRS+= SparcGenDisassemblerTables.inc 1536986e05bcSDimitry AndricTGHDRS+= SparcGenInstrInfo.inc 1537986e05bcSDimitry AndricTGHDRS+= SparcGenMCCodeEmitter.inc 1538986e05bcSDimitry AndricTGHDRS+= SparcGenRegisterInfo.inc 1539986e05bcSDimitry AndricTGHDRS+= SparcGenSubtargetInfo.inc 1540cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_SPARC 1541cbafd263SDimitry Andric.if ${MK_LLVM_TARGET_X86} != "no" 1542986e05bcSDimitry AndricTGHDRS+= X86GenAsmMatcher.inc 1543986e05bcSDimitry AndricTGHDRS+= X86GenAsmWriter.inc 1544986e05bcSDimitry AndricTGHDRS+= X86GenAsmWriter1.inc 1545986e05bcSDimitry AndricTGHDRS+= X86GenCallingConv.inc 1546986e05bcSDimitry AndricTGHDRS+= X86GenDAGISel.inc 1547986e05bcSDimitry AndricTGHDRS+= X86GenDisassemblerTables.inc 15485897d2f0SDimitry AndricTGHDRS+= X86GenEVEX2VEXTables.inc 1549986e05bcSDimitry AndricTGHDRS+= X86GenFastISel.inc 15503d54deb3SDimitry AndricTGHDRS+= X86GenGlobalISel.inc 1551986e05bcSDimitry AndricTGHDRS+= X86GenInstrInfo.inc 15525897d2f0SDimitry AndricTGHDRS+= X86GenRegisterBank.inc 1553986e05bcSDimitry AndricTGHDRS+= X86GenRegisterInfo.inc 1554986e05bcSDimitry AndricTGHDRS+= X86GenSubtargetInfo.inc 1555cbafd263SDimitry Andric.endif # MK_LLVM_TARGET_X86 1556986e05bcSDimitry Andric 1557ddf95e2aSBryan DreweryDEPENDFILES+= ${TGHDRS:C/$/.d/} 1558986e05bcSDimitry AndricDPSRCS+= ${TGHDRS} 1559986e05bcSDimitry AndricCLEANFILES+= ${TGHDRS} ${TGHDRS:C/$/.d/} 1560986e05bcSDimitry Andric 1561986e05bcSDimitry Andric.include "../llvm.build.mk" 1562986e05bcSDimitry Andric.include <bsd.lib.mk> 1563