mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-13 14:35:54 +00:00
[instsimplify] Move the instsimplify pass to use more obvious file names
and diretory. Also cleans up all the associated naming to be consistent and removes the public access to the pass ID which was unused in LLVM. Also runs clang-format over parts that changed, which generally cleans up a bunch of formatting. This is in preparation for doing some internal cleanups to the pass. Differential Revision: https://reviews.llvm.org/D47352 llvm-svn: 336028
This commit is contained in:
parent
16b6b0d2b3
commit
52e567e87f
@ -177,7 +177,7 @@ void initializeInferFunctionAttrsLegacyPassPass(PassRegistry&);
|
||||
void initializeInlineCostAnalysisPass(PassRegistry&);
|
||||
void initializeInstCountPass(PassRegistry&);
|
||||
void initializeInstNamerPass(PassRegistry&);
|
||||
void initializeInstSimplifierPass(PassRegistry&);
|
||||
void initializeInstSimplifyLegacyPassPass(PassRegistry &);
|
||||
void initializeInstrProfilingLegacyPassPass(PassRegistry&);
|
||||
void initializeInstructionCombiningPassPass(PassRegistry&);
|
||||
void initializeInstructionSelectPass(PassRegistry&);
|
||||
|
@ -49,6 +49,7 @@
|
||||
#include "llvm/Transforms/ObjCARC.h"
|
||||
#include "llvm/Transforms/Scalar.h"
|
||||
#include "llvm/Transforms/Scalar/GVN.h"
|
||||
#include "llvm/Transforms/Scalar/InstSimplifyPass.h"
|
||||
#include "llvm/Transforms/Utils.h"
|
||||
#include "llvm/Transforms/Utils/SymbolRewriter.h"
|
||||
#include "llvm/Transforms/Utils/UnifyFunctionExitNodes.h"
|
||||
@ -116,6 +117,7 @@ namespace {
|
||||
(void) llvm::createIPSCCPPass();
|
||||
(void) llvm::createInductiveRangeCheckEliminationPass();
|
||||
(void) llvm::createIndVarSimplifyPass();
|
||||
(void) llvm::createInstSimplifyLegacyPass();
|
||||
(void) llvm::createInstructionCombiningPass();
|
||||
(void) llvm::createInternalizePass();
|
||||
(void) llvm::createLCSSAPass();
|
||||
@ -200,7 +202,6 @@ namespace {
|
||||
(void) llvm::createLowerAtomicPass();
|
||||
(void) llvm::createCorrelatedValuePropagationPass();
|
||||
(void) llvm::createMemDepPrinter();
|
||||
(void) llvm::createInstructionSimplifierPass();
|
||||
(void) llvm::createLoopVectorizePass();
|
||||
(void) llvm::createSLPVectorizerPass();
|
||||
(void) llvm::createLoadStoreVectorizerPass();
|
||||
|
46
include/llvm/Transforms/Scalar/InstSimplifyPass.h
Normal file
46
include/llvm/Transforms/Scalar/InstSimplifyPass.h
Normal file
@ -0,0 +1,46 @@
|
||||
//===- InstSimplifyPass.h ---------------------------------------*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
/// \file
|
||||
///
|
||||
/// Defines passes for running instruction simplification across chunks of IR.
|
||||
///
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_TRANSFORMS_UTILS_INSTSIMPLIFYPASS_H
|
||||
#define LLVM_TRANSFORMS_UTILS_INSTSIMPLIFYPASS_H
|
||||
|
||||
#include "llvm/IR/PassManager.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
class FunctionPass;
|
||||
|
||||
/// Run instruction simplification across each instruction in the function.
|
||||
///
|
||||
/// Instruction simplification has useful constraints in some contexts:
|
||||
/// - It will never introduce *new* instructions.
|
||||
/// - There is no need to iterate to a fixed point.
|
||||
///
|
||||
/// Many passes use instruction simplification as a library facility, but it may
|
||||
/// also be useful (in tests and other contexts) to have access to this very
|
||||
/// restricted transform at a pass granularity. However, for a much more
|
||||
/// powerful and comprehensive peephole optimization engine, see the
|
||||
/// `instcombine` pass instead.
|
||||
class InstSimplifyPass : public PassInfoMixin<InstSimplifyPass> {
|
||||
public:
|
||||
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
|
||||
};
|
||||
|
||||
/// Create a legacy pass that does instruction simplification on each
|
||||
/// instruction in a function.
|
||||
FunctionPass *createInstSimplifyLegacyPass();
|
||||
|
||||
} // end namespace llvm
|
||||
|
||||
#endif // LLVM_TRANSFORMS_UTILS_INSTSIMPLIFYPASS_H
|
@ -110,13 +110,6 @@ FunctionPass *createPromoteMemoryToRegisterPass();
|
||||
Pass *createLoopSimplifyPass();
|
||||
extern char &LoopSimplifyID;
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// InstructionSimplifier - Remove redundant instructions.
|
||||
//
|
||||
FunctionPass *createInstructionSimplifierPass();
|
||||
extern char &InstructionSimplifierID;
|
||||
|
||||
/// This function returns a new pass that downgrades the debug info in the
|
||||
/// module to line tables only.
|
||||
ModulePass *createStripNonLineTableDebugInfoPass();
|
||||
|
@ -1,31 +0,0 @@
|
||||
//===- SimplifyInstructions.h - Remove redundant instructions ---*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This is a utility pass used for testing the InstructionSimplify analysis.
|
||||
// The analysis is applied to every instruction, and if it simplifies then the
|
||||
// instruction is replaced by the simplification. If you are looking for a pass
|
||||
// that performs serious instruction folding, use the instcombine pass instead.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_TRANSFORMS_UTILS_SIMPLIFYINSTRUCTIONS_H
|
||||
#define LLVM_TRANSFORMS_UTILS_SIMPLIFYINSTRUCTIONS_H
|
||||
|
||||
#include "llvm/IR/PassManager.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
/// This pass removes redundant instructions.
|
||||
class InstSimplifierPass : public PassInfoMixin<InstSimplifierPass> {
|
||||
public:
|
||||
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
|
||||
};
|
||||
} // end namespace llvm
|
||||
|
||||
#endif // LLVM_TRANSFORMS_UTILS_SIMPLIFYINSTRUCTIONS_H
|
@ -61,7 +61,6 @@
|
||||
#include "llvm/Support/Regex.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Transforms/AggressiveInstCombine/AggressiveInstCombine.h"
|
||||
#include "llvm/Transforms/Instrumentation/GCOVProfiler.h"
|
||||
#include "llvm/Transforms/IPO/AlwaysInliner.h"
|
||||
#include "llvm/Transforms/IPO/ArgumentPromotion.h"
|
||||
#include "llvm/Transforms/IPO/CalledValuePropagation.h"
|
||||
@ -86,8 +85,9 @@
|
||||
#include "llvm/Transforms/IPO/SyntheticCountsPropagation.h"
|
||||
#include "llvm/Transforms/IPO/WholeProgramDevirt.h"
|
||||
#include "llvm/Transforms/InstCombine/InstCombine.h"
|
||||
#include "llvm/Transforms/Instrumentation/InstrProfiling.h"
|
||||
#include "llvm/Transforms/Instrumentation/BoundsChecking.h"
|
||||
#include "llvm/Transforms/Instrumentation/GCOVProfiler.h"
|
||||
#include "llvm/Transforms/Instrumentation/InstrProfiling.h"
|
||||
#include "llvm/Transforms/Instrumentation/PGOInstrumentation.h"
|
||||
#include "llvm/Transforms/Scalar/ADCE.h"
|
||||
#include "llvm/Transforms/Scalar/AlignmentFromAssumptions.h"
|
||||
@ -105,6 +105,7 @@
|
||||
#include "llvm/Transforms/Scalar/IVUsersPrinter.h"
|
||||
#include "llvm/Transforms/Scalar/IndVarSimplify.h"
|
||||
#include "llvm/Transforms/Scalar/InductiveRangeCheckElimination.h"
|
||||
#include "llvm/Transforms/Scalar/InstSimplifyPass.h"
|
||||
#include "llvm/Transforms/Scalar/JumpThreading.h"
|
||||
#include "llvm/Transforms/Scalar/LICM.h"
|
||||
#include "llvm/Transforms/Scalar/LoopAccessAnalysisPrinter.h"
|
||||
@ -148,7 +149,6 @@
|
||||
#include "llvm/Transforms/Utils/LowerInvoke.h"
|
||||
#include "llvm/Transforms/Utils/Mem2Reg.h"
|
||||
#include "llvm/Transforms/Utils/NameAnonGlobals.h"
|
||||
#include "llvm/Transforms/Utils/SimplifyInstructions.h"
|
||||
#include "llvm/Transforms/Utils/SymbolRewriter.h"
|
||||
#include "llvm/Transforms/Vectorize/LoopVectorize.h"
|
||||
#include "llvm/Transforms/Vectorize/SLPVectorizer.h"
|
||||
@ -814,7 +814,7 @@ PassBuilder::buildModuleOptimizationPipeline(OptimizationLevel Level,
|
||||
OptimizePM.addPass(LoopSinkPass());
|
||||
|
||||
// And finally clean up LCSSA form before generating code.
|
||||
OptimizePM.addPass(InstSimplifierPass());
|
||||
OptimizePM.addPass(InstSimplifyPass());
|
||||
|
||||
// This hoists/decomposes div/rem ops. It should run after other sink/hoist
|
||||
// passes to avoid re-sinking, but before SimplifyCFG because it can allow
|
||||
|
@ -159,7 +159,7 @@ FUNCTION_PASS("ee-instrument", EntryExitInstrumenterPass(/*PostInlining=*/false)
|
||||
FUNCTION_PASS("post-inline-ee-instrument", EntryExitInstrumenterPass(/*PostInlining=*/true))
|
||||
FUNCTION_PASS("gvn-hoist", GVNHoistPass())
|
||||
FUNCTION_PASS("instcombine", InstCombinePass())
|
||||
FUNCTION_PASS("instsimplify", InstSimplifierPass())
|
||||
FUNCTION_PASS("instsimplify", InstSimplifyPass())
|
||||
FUNCTION_PASS("invalidate<all>", InvalidateAllAnalysesPass())
|
||||
FUNCTION_PASS("float2int", Float2IntPass())
|
||||
FUNCTION_PASS("no-op-function", NoOpFunctionPass())
|
||||
|
@ -38,6 +38,7 @@
|
||||
#include "llvm/Transforms/Instrumentation.h"
|
||||
#include "llvm/Transforms/Scalar.h"
|
||||
#include "llvm/Transforms/Scalar/GVN.h"
|
||||
#include "llvm/Transforms/Scalar/InstSimplifyPass.h"
|
||||
#include "llvm/Transforms/Scalar/SimpleLoopUnswitch.h"
|
||||
#include "llvm/Transforms/Utils.h"
|
||||
#include "llvm/Transforms/Vectorize.h"
|
||||
@ -703,7 +704,7 @@ void PassManagerBuilder::populateModulePassManager(
|
||||
// result too early.
|
||||
MPM.add(createLoopSinkPass());
|
||||
// Get rid of LCSSA nodes.
|
||||
MPM.add(createInstructionSimplifierPass());
|
||||
MPM.add(createInstSimplifyLegacyPass());
|
||||
|
||||
// This hoists/decomposes div/rem ops. It should run after other sink/hoist
|
||||
// passes to avoid re-sinking, but before SimplifyCFG because it can allow
|
||||
|
@ -20,6 +20,7 @@ add_llvm_library(LLVMScalarOpts
|
||||
InductiveRangeCheckElimination.cpp
|
||||
IndVarSimplify.cpp
|
||||
InferAddressSpaces.cpp
|
||||
InstSimplifyPass.cpp
|
||||
JumpThreading.cpp
|
||||
LICM.cpp
|
||||
LoopAccessAnalysisPrinter.cpp
|
||||
|
@ -1,4 +1,4 @@
|
||||
//===------ SimplifyInstructions.cpp - Remove redundant instructions ------===//
|
||||
//===- InstSimplifyPass.cpp -----------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
@ -6,15 +6,8 @@
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This is a utility pass used for testing the InstructionSimplify analysis.
|
||||
// The analysis is applied to every instruction, and if it simplifies then the
|
||||
// instruction is replaced by the simplification. If you are looking for a pass
|
||||
// that performs serious instruction folding, use the instcombine pass instead.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/Transforms/Utils/SimplifyInstructions.h"
|
||||
#include "llvm/Transforms/Scalar/InstSimplifyPass.h"
|
||||
#include "llvm/ADT/DepthFirstIterator.h"
|
||||
#include "llvm/ADT/SmallPtrSet.h"
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
@ -22,13 +15,13 @@
|
||||
#include "llvm/Analysis/InstructionSimplify.h"
|
||||
#include "llvm/Analysis/OptimizationRemarkEmitter.h"
|
||||
#include "llvm/Analysis/TargetLibraryInfo.h"
|
||||
#include "llvm/Transforms/Utils/Local.h"
|
||||
#include "llvm/IR/DataLayout.h"
|
||||
#include "llvm/IR/Dominators.h"
|
||||
#include "llvm/IR/Function.h"
|
||||
#include "llvm/IR/Type.h"
|
||||
#include "llvm/Pass.h"
|
||||
#include "llvm/Transforms/Utils.h"
|
||||
#include "llvm/Transforms/Utils/Local.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "instsimplify"
|
||||
@ -84,58 +77,57 @@ static bool runImpl(Function &F, const SimplifyQuery &SQ,
|
||||
}
|
||||
|
||||
namespace {
|
||||
struct InstSimplifier : public FunctionPass {
|
||||
static char ID; // Pass identification, replacement for typeid
|
||||
InstSimplifier() : FunctionPass(ID) {
|
||||
initializeInstSimplifierPass(*PassRegistry::getPassRegistry());
|
||||
}
|
||||
struct InstSimplifyLegacyPass : public FunctionPass {
|
||||
static char ID; // Pass identification, replacement for typeid
|
||||
InstSimplifyLegacyPass() : FunctionPass(ID) {
|
||||
initializeInstSimplifyLegacyPassPass(*PassRegistry::getPassRegistry());
|
||||
}
|
||||
|
||||
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
||||
AU.setPreservesCFG();
|
||||
AU.addRequired<DominatorTreeWrapperPass>();
|
||||
AU.addRequired<AssumptionCacheTracker>();
|
||||
AU.addRequired<TargetLibraryInfoWrapperPass>();
|
||||
AU.addRequired<OptimizationRemarkEmitterWrapperPass>();
|
||||
}
|
||||
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
||||
AU.setPreservesCFG();
|
||||
AU.addRequired<DominatorTreeWrapperPass>();
|
||||
AU.addRequired<AssumptionCacheTracker>();
|
||||
AU.addRequired<TargetLibraryInfoWrapperPass>();
|
||||
AU.addRequired<OptimizationRemarkEmitterWrapperPass>();
|
||||
}
|
||||
|
||||
/// runOnFunction - Remove instructions that simplify.
|
||||
bool runOnFunction(Function &F) override {
|
||||
if (skipFunction(F))
|
||||
return false;
|
||||
/// runOnFunction - Remove instructions that simplify.
|
||||
bool runOnFunction(Function &F) override {
|
||||
if (skipFunction(F))
|
||||
return false;
|
||||
|
||||
const DominatorTree *DT =
|
||||
&getAnalysis<DominatorTreeWrapperPass>().getDomTree();
|
||||
const TargetLibraryInfo *TLI =
|
||||
&getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
|
||||
AssumptionCache *AC =
|
||||
&getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
|
||||
OptimizationRemarkEmitter *ORE =
|
||||
&getAnalysis<OptimizationRemarkEmitterWrapperPass>().getORE();
|
||||
const DataLayout &DL = F.getParent()->getDataLayout();
|
||||
const SimplifyQuery SQ(DL, TLI, DT, AC);
|
||||
return runImpl(F, SQ, ORE);
|
||||
}
|
||||
};
|
||||
}
|
||||
const DominatorTree *DT =
|
||||
&getAnalysis<DominatorTreeWrapperPass>().getDomTree();
|
||||
const TargetLibraryInfo *TLI =
|
||||
&getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
|
||||
AssumptionCache *AC =
|
||||
&getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
|
||||
OptimizationRemarkEmitter *ORE =
|
||||
&getAnalysis<OptimizationRemarkEmitterWrapperPass>().getORE();
|
||||
const DataLayout &DL = F.getParent()->getDataLayout();
|
||||
const SimplifyQuery SQ(DL, TLI, DT, AC);
|
||||
return runImpl(F, SQ, ORE);
|
||||
}
|
||||
};
|
||||
} // namespace
|
||||
|
||||
char InstSimplifier::ID = 0;
|
||||
INITIALIZE_PASS_BEGIN(InstSimplifier, "instsimplify",
|
||||
char InstSimplifyLegacyPass::ID = 0;
|
||||
INITIALIZE_PASS_BEGIN(InstSimplifyLegacyPass, "instsimplify",
|
||||
"Remove redundant instructions", false, false)
|
||||
INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
|
||||
INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
|
||||
INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
|
||||
INITIALIZE_PASS_DEPENDENCY(OptimizationRemarkEmitterWrapperPass)
|
||||
INITIALIZE_PASS_END(InstSimplifier, "instsimplify",
|
||||
INITIALIZE_PASS_END(InstSimplifyLegacyPass, "instsimplify",
|
||||
"Remove redundant instructions", false, false)
|
||||
char &llvm::InstructionSimplifierID = InstSimplifier::ID;
|
||||
|
||||
// Public interface to the simplify instructions pass.
|
||||
FunctionPass *llvm::createInstructionSimplifierPass() {
|
||||
return new InstSimplifier();
|
||||
FunctionPass *llvm::createInstSimplifyLegacyPass() {
|
||||
return new InstSimplifyLegacyPass();
|
||||
}
|
||||
|
||||
PreservedAnalyses InstSimplifierPass::run(Function &F,
|
||||
FunctionAnalysisManager &AM) {
|
||||
PreservedAnalyses InstSimplifyPass::run(Function &F,
|
||||
FunctionAnalysisManager &AM) {
|
||||
auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
|
||||
auto &TLI = AM.getResult<TargetLibraryAnalysis>(F);
|
||||
auto &AC = AM.getResult<AssumptionAnalysis>(F);
|
@ -56,6 +56,7 @@ void llvm::initializeScalarOpts(PassRegistry &Registry) {
|
||||
initializeIRCELegacyPassPass(Registry);
|
||||
initializeIndVarSimplifyLegacyPassPass(Registry);
|
||||
initializeInferAddressSpacesPass(Registry);
|
||||
initializeInstSimplifyLegacyPassPass(Registry);
|
||||
initializeJumpThreadingPass(Registry);
|
||||
initializeLegacyLICMPassPass(Registry);
|
||||
initializeLegacyLoopSinkPassPass(Registry);
|
||||
|
@ -48,7 +48,6 @@ add_llvm_library(LLVMTransformUtils
|
||||
SanitizerStats.cpp
|
||||
SimplifyCFG.cpp
|
||||
SimplifyIndVar.cpp
|
||||
SimplifyInstructions.cpp
|
||||
SimplifyLibCalls.cpp
|
||||
SplitModule.cpp
|
||||
StripNonLineTableDebugInfo.cpp
|
||||
|
@ -36,7 +36,6 @@ void llvm::initializeTransformUtils(PassRegistry &Registry) {
|
||||
initializePromoteLegacyPassPass(Registry);
|
||||
initializeStripNonLineTableDebugInfoPass(Registry);
|
||||
initializeUnifyFunctionExitNodesPass(Registry);
|
||||
initializeInstSimplifierPass(Registry);
|
||||
initializeMetaRenamerPass(Registry);
|
||||
initializeStripGCRelocatesPass(Registry);
|
||||
initializePredicateInfoPrinterLegacyPassPass(Registry);
|
||||
|
@ -241,7 +241,7 @@
|
||||
; CHECK-O-NEXT: Finished llvm::Function pass manager run.
|
||||
; CHECK-O-NEXT: Running pass: AlignmentFromAssumptionsPass
|
||||
; CHECK-O-NEXT: Running pass: LoopSinkPass
|
||||
; CHECK-O-NEXT: Running pass: InstSimplifierPass
|
||||
; CHECK-O-NEXT: Running pass: InstSimplifyPass
|
||||
; CHECK-O-NEXT: Running pass: DivRemPairsPass
|
||||
; CHECK-O-NEXT: Running pass: SimplifyCFGPass
|
||||
; CHECK-O-NEXT: Running pass: SpeculateAroundPHIsPass
|
||||
|
@ -219,7 +219,7 @@
|
||||
; CHECK-POSTLINK-O-NEXT: Finished llvm::Function pass manager run
|
||||
; CHECK-POSTLINK-O-NEXT: Running pass: AlignmentFromAssumptionsPass
|
||||
; CHECK-POSTLINK-O-NEXT: Running pass: LoopSinkPass
|
||||
; CHECK-POSTLINK-O-NEXT: Running pass: InstSimplifierPass
|
||||
; CHECK-POSTLINK-O-NEXT: Running pass: InstSimplifyPass
|
||||
; CHECK-POSTLINK-O-NEXT: Running pass: DivRemPairsPass
|
||||
; CHECK-POSTLINK-O-NEXT: Running pass: SimplifyCFGPass
|
||||
; CHECK-POSTLINK-O-NEXT: Running pass: SpeculateAroundPHIsPass
|
||||
|
Loading…
Reference in New Issue
Block a user