103 lines · plain
1add_llvm_component_library(LLVMScalarOpts2 ADCE.cpp3 AlignmentFromAssumptions.cpp4 AnnotationRemarks.cpp5 BDCE.cpp6 CallSiteSplitting.cpp7 ConstantHoisting.cpp8 ConstraintElimination.cpp9 CorrelatedValuePropagation.cpp10 DCE.cpp11 DeadStoreElimination.cpp12 DFAJumpThreading.cpp13 DivRemPairs.cpp14 DropUnnecessaryAssumes.cpp15 EarlyCSE.cpp16 FlattenCFGPass.cpp17 Float2Int.cpp18 GuardWidening.cpp19 GVN.cpp20 GVNHoist.cpp21 GVNSink.cpp22 IVUsersPrinter.cpp23 InductiveRangeCheckElimination.cpp24 IndVarSimplify.cpp25 InferAddressSpaces.cpp26 InferAlignment.cpp27 InstSimplifyPass.cpp28 JumpThreading.cpp29 JumpTableToSwitch.cpp30 LICM.cpp31 LoopAccessAnalysisPrinter.cpp32 LoopBoundSplit.cpp33 LoopSink.cpp34 LoopDeletion.cpp35 LoopDataPrefetch.cpp36 LoopDistribute.cpp37 LoopFuse.cpp38 LoopIdiomRecognize.cpp39 LoopInstSimplify.cpp40 LoopInterchange.cpp41 LoopFlatten.cpp42 LoopLoadElimination.cpp43 LoopPassManager.cpp44 LoopPredication.cpp45 LoopRotation.cpp46 LoopSimplifyCFG.cpp47 LoopStrengthReduce.cpp48 LoopTermFold.cpp49 LoopUnrollPass.cpp50 LoopUnrollAndJamPass.cpp51 LoopVersioningLICM.cpp52 LowerAtomicPass.cpp53 LowerConstantIntrinsics.cpp54 LowerExpectIntrinsic.cpp55 LowerGuardIntrinsic.cpp56 LowerMatrixIntrinsics.cpp57 LowerWidenableCondition.cpp58 MakeGuardsExplicit.cpp59 MemCpyOptimizer.cpp60 MergeICmps.cpp61 MergedLoadStoreMotion.cpp62 NaryReassociate.cpp63 NewGVN.cpp64 PartiallyInlineLibCalls.cpp65 PlaceSafepoints.cpp66 Reassociate.cpp67 Reg2Mem.cpp68 RewriteStatepointsForGC.cpp69 SCCP.cpp70 SROA.cpp71 Scalar.cpp72 Scalarizer.cpp73 ScalarizeMaskedMemIntrin.cpp74 SeparateConstOffsetFromGEP.cpp75 SimpleLoopUnswitch.cpp76 SimplifyCFGPass.cpp77 Sink.cpp78 SpeculativeExecution.cpp79 StraightLineStrengthReduce.cpp80 StructurizeCFG.cpp81 TailRecursionElimination.cpp82 WarnMissedTransforms.cpp83 84 ADDITIONAL_HEADER_DIRS85 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Transforms86 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Transforms/Scalar87 88 DEPENDS89 intrinsics_gen90 91 COMPONENT_NAME92 Scalar93 94 LINK_COMPONENTS95 AggressiveInstCombine96 Analysis97 Core98 InstCombine99 ProfileData100 Support101 TransformUtils102 )103