forked from OSchip/llvm-project
Remove Passes dependency on CodeGen
The dependency was introduced in
5134020ea6
. The only functional change
from this removal would be the new PM interface for the two codegen
passes. This is not necessary since we don't have codegen pipeline using
new PM yet. This removal is to break the potential circular dependency between
Passes and CodeGen once the codegen begins to gain new PM support.
This commit is contained in:
parent
c6d01ed046
commit
ebc88811b5
|
@ -18,4 +18,4 @@
|
|||
type = Library
|
||||
name = Passes
|
||||
parent = Libraries
|
||||
required_libraries = AggressiveInstCombine Analysis CodeGen Core Coroutines IPO InstCombine Scalar Support Target TransformUtils Vectorize Instrumentation
|
||||
required_libraries = AggressiveInstCombine Analysis Core Coroutines IPO InstCombine Scalar Support Target TransformUtils Vectorize Instrumentation
|
||||
|
|
|
@ -57,9 +57,6 @@
|
|||
#include "llvm/Analysis/TargetLibraryInfo.h"
|
||||
#include "llvm/Analysis/TargetTransformInfo.h"
|
||||
#include "llvm/Analysis/TypeBasedAliasAnalysis.h"
|
||||
#include "llvm/CodeGen/MachineModuleInfo.h"
|
||||
#include "llvm/CodeGen/PreISelIntrinsicLowering.h"
|
||||
#include "llvm/CodeGen/UnreachableBlockElim.h"
|
||||
#include "llvm/IR/Dominators.h"
|
||||
#include "llvm/IR/IRPrintingPasses.h"
|
||||
#include "llvm/IR/PassManager.h"
|
||||
|
|
|
@ -73,7 +73,6 @@ MODULE_PASS("partial-inliner", PartialInlinerPass())
|
|||
MODULE_PASS("pgo-icall-prom", PGOIndirectCallPromotion())
|
||||
MODULE_PASS("pgo-instr-gen", PGOInstrumentationGen())
|
||||
MODULE_PASS("pgo-instr-use", PGOInstrumentationUse())
|
||||
MODULE_PASS("pre-isel-intrinsic-lowering", PreISelIntrinsicLoweringPass())
|
||||
MODULE_PASS("print-profile-summary", ProfileSummaryPrinterPass(dbgs()))
|
||||
MODULE_PASS("print-callgraph", CallGraphPrinterPass(dbgs()))
|
||||
MODULE_PASS("print", PrintModulePass(dbgs()))
|
||||
|
@ -250,7 +249,6 @@ FUNCTION_PASS("speculative-execution", SpeculativeExecutionPass())
|
|||
FUNCTION_PASS("spec-phis", SpeculateAroundPHIsPass())
|
||||
FUNCTION_PASS("sroa", SROA())
|
||||
FUNCTION_PASS("tailcallelim", TailCallElimPass())
|
||||
FUNCTION_PASS("unreachableblockelim", UnreachableBlockElimPass())
|
||||
FUNCTION_PASS("unroll-and-jam", LoopUnrollAndJamPass())
|
||||
FUNCTION_PASS("vector-combine", VectorCombinePass())
|
||||
FUNCTION_PASS("verify", VerifierPass())
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
; RUN: opt -S < %s -unreachableblockelim | FileCheck %s
|
||||
; RUN: opt -S < %s -passes=unreachableblockelim | FileCheck %s
|
||||
|
||||
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
||||
target triple = "x86_64-unknown-linux-gnu"
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
; RUN: opt -pre-isel-intrinsic-lowering -S -o - %s | FileCheck %s
|
||||
; RUN: opt -passes='pre-isel-intrinsic-lowering' -S -o - %s | FileCheck %s
|
||||
|
||||
; CHECK: define i8* @foo32(i8* [[P:%.*]], i32 [[O:%.*]])
|
||||
define i8* @foo32(i8* %p, i32 %o) {
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
; RUN: opt -pre-isel-intrinsic-lowering -S -o - %s | FileCheck %s
|
||||
; RUN: opt -passes='pre-isel-intrinsic-lowering' -S -o - %s | FileCheck %s
|
||||
|
||||
; Make sure calls to the objc intrinsics are translated to calls in to the
|
||||
; runtime
|
||||
|
|
Loading…
Reference in New Issue