[PATCH] D19172: New optimization bisect implementation (now modeled on optnone handling)

Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 21 11:05:05 PDT 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL267022: Initial implementation of optimization bisect support. (authored by akaylor).

Changed prior to commit:
  http://reviews.llvm.org/D19172?vs=54280&id=54545#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D19172

Files:
  llvm/trunk/include/llvm/Analysis/CallGraphSCCPass.h
  llvm/trunk/include/llvm/Analysis/LazyCallGraph.h
  llvm/trunk/include/llvm/Analysis/LoopPass.h
  llvm/trunk/include/llvm/IR/LLVMContext.h
  llvm/trunk/include/llvm/IR/OptBisect.h
  llvm/trunk/include/llvm/Pass.h
  llvm/trunk/lib/Analysis/CallGraphSCCPass.cpp
  llvm/trunk/lib/Analysis/LoopPass.cpp
  llvm/trunk/lib/CodeGen/BranchFolding.cpp
  llvm/trunk/lib/CodeGen/CodeGenPrepare.cpp
  llvm/trunk/lib/CodeGen/DeadMachineInstructionElim.cpp
  llvm/trunk/lib/CodeGen/LowerEmuTLS.cpp
  llvm/trunk/lib/CodeGen/MachineBlockPlacement.cpp
  llvm/trunk/lib/CodeGen/MachineCSE.cpp
  llvm/trunk/lib/CodeGen/MachineCopyPropagation.cpp
  llvm/trunk/lib/CodeGen/MachineLICM.cpp
  llvm/trunk/lib/CodeGen/MachineScheduler.cpp
  llvm/trunk/lib/CodeGen/MachineSink.cpp
  llvm/trunk/lib/CodeGen/OptimizePHIs.cpp
  llvm/trunk/lib/CodeGen/PeepholeOptimizer.cpp
  llvm/trunk/lib/CodeGen/PostRASchedulerList.cpp
  llvm/trunk/lib/CodeGen/StackColoring.cpp
  llvm/trunk/lib/CodeGen/TailDuplication.cpp
  llvm/trunk/lib/IR/CMakeLists.txt
  llvm/trunk/lib/IR/LLVMContext.cpp
  llvm/trunk/lib/IR/LLVMContextImpl.cpp
  llvm/trunk/lib/IR/LLVMContextImpl.h
  llvm/trunk/lib/IR/OptBisect.cpp
  llvm/trunk/lib/IR/Pass.cpp
  llvm/trunk/lib/Transforms/IPO/ArgumentPromotion.cpp
  llvm/trunk/lib/Transforms/IPO/ConstantMerge.cpp
  llvm/trunk/lib/Transforms/IPO/CrossDSOCFI.cpp
  llvm/trunk/lib/Transforms/IPO/DeadArgumentElimination.cpp
  llvm/trunk/lib/Transforms/IPO/ElimAvailExtern.cpp
  llvm/trunk/lib/Transforms/IPO/ExtractGV.cpp
  llvm/trunk/lib/Transforms/IPO/FunctionAttrs.cpp
  llvm/trunk/lib/Transforms/IPO/FunctionImport.cpp
  llvm/trunk/lib/Transforms/IPO/GlobalDCE.cpp
  llvm/trunk/lib/Transforms/IPO/GlobalOpt.cpp
  llvm/trunk/lib/Transforms/IPO/IPConstantPropagation.cpp
  llvm/trunk/lib/Transforms/IPO/InferFunctionAttrs.cpp
  llvm/trunk/lib/Transforms/IPO/Inliner.cpp
  llvm/trunk/lib/Transforms/IPO/Internalize.cpp
  llvm/trunk/lib/Transforms/IPO/LoopExtractor.cpp
  llvm/trunk/lib/Transforms/IPO/LowerBitSets.cpp
  llvm/trunk/lib/Transforms/IPO/MergeFunctions.cpp
  llvm/trunk/lib/Transforms/IPO/PartialInlining.cpp
  llvm/trunk/lib/Transforms/IPO/PruneEH.cpp
  llvm/trunk/lib/Transforms/IPO/StripDeadPrototypes.cpp
  llvm/trunk/lib/Transforms/IPO/StripSymbols.cpp
  llvm/trunk/lib/Transforms/IPO/WholeProgramDevirt.cpp
  llvm/trunk/lib/Transforms/InstCombine/InstructionCombining.cpp
  llvm/trunk/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
  llvm/trunk/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp
  llvm/trunk/lib/Transforms/Scalar/ADCE.cpp
  llvm/trunk/lib/Transforms/Scalar/BDCE.cpp
  llvm/trunk/lib/Transforms/Scalar/ConstantHoisting.cpp
  llvm/trunk/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
  llvm/trunk/lib/Transforms/Scalar/DCE.cpp
  llvm/trunk/lib/Transforms/Scalar/DeadStoreElimination.cpp
  llvm/trunk/lib/Transforms/Scalar/EarlyCSE.cpp
  llvm/trunk/lib/Transforms/Scalar/Float2Int.cpp
  llvm/trunk/lib/Transforms/Scalar/GVN.cpp
  llvm/trunk/lib/Transforms/Scalar/IndVarSimplify.cpp
  llvm/trunk/lib/Transforms/Scalar/JumpThreading.cpp
  llvm/trunk/lib/Transforms/Scalar/LICM.cpp
  llvm/trunk/lib/Transforms/Scalar/LoadCombine.cpp
  llvm/trunk/lib/Transforms/Scalar/LoopDeletion.cpp
  llvm/trunk/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
  llvm/trunk/lib/Transforms/Scalar/LoopInstSimplify.cpp
  llvm/trunk/lib/Transforms/Scalar/LoopLoadElimination.cpp
  llvm/trunk/lib/Transforms/Scalar/LoopRerollPass.cpp
  llvm/trunk/lib/Transforms/Scalar/LoopRotation.cpp
  llvm/trunk/lib/Transforms/Scalar/LoopSimplifyCFG.cpp
  llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp
  llvm/trunk/lib/Transforms/Scalar/LoopUnrollPass.cpp
  llvm/trunk/lib/Transforms/Scalar/LoopUnswitch.cpp
  llvm/trunk/lib/Transforms/Scalar/LoopVersioningLICM.cpp
  llvm/trunk/lib/Transforms/Scalar/LowerAtomic.cpp
  llvm/trunk/lib/Transforms/Scalar/MemCpyOptimizer.cpp
  llvm/trunk/lib/Transforms/Scalar/MergedLoadStoreMotion.cpp
  llvm/trunk/lib/Transforms/Scalar/NaryReassociate.cpp
  llvm/trunk/lib/Transforms/Scalar/Reassociate.cpp
  llvm/trunk/lib/Transforms/Scalar/SCCP.cpp
  llvm/trunk/lib/Transforms/Scalar/SROA.cpp
  llvm/trunk/lib/Transforms/Scalar/ScalarReplAggregates.cpp
  llvm/trunk/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
  llvm/trunk/lib/Transforms/Scalar/SimplifyCFGPass.cpp
  llvm/trunk/lib/Transforms/Scalar/SpeculativeExecution.cpp
  llvm/trunk/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp
  llvm/trunk/lib/Transforms/Scalar/TailRecursionElimination.cpp
  llvm/trunk/lib/Transforms/Utils/Mem2Reg.cpp
  llvm/trunk/lib/Transforms/Vectorize/BBVectorize.cpp
  llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp
  llvm/trunk/lib/Transforms/Vectorize/SLPVectorizer.cpp
  llvm/trunk/test/Other/opt-bisect-helper.py
  llvm/trunk/test/Other/opt-bisect-legacy-pass-manager.ll
  llvm/trunk/test/Other/opt-bisect-new-pass-manager.ll

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D19172.54545.patch
Type: text/x-patch
Size: 85502 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160421/aa99707d/attachment.bin>


More information about the llvm-commits mailing list