mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
Rename 'loopsimplify' to 'loop-simplify'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125317 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7dd74ed8d8
commit
4a60b932a2
@ -37,7 +37,7 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "loopsimplify"
|
||||
#define DEBUG_TYPE "loop-simplify"
|
||||
#include "llvm/Transforms/Scalar.h"
|
||||
#include "llvm/Constants.h"
|
||||
#include "llvm/Instructions.h"
|
||||
@ -108,11 +108,11 @@ namespace {
|
||||
}
|
||||
|
||||
char LoopSimplify::ID = 0;
|
||||
INITIALIZE_PASS_BEGIN(LoopSimplify, "loopsimplify",
|
||||
INITIALIZE_PASS_BEGIN(LoopSimplify, "loop-simplify",
|
||||
"Canonicalize natural loops", true, false)
|
||||
INITIALIZE_PASS_DEPENDENCY(DominatorTree)
|
||||
INITIALIZE_PASS_DEPENDENCY(LoopInfo)
|
||||
INITIALIZE_PASS_END(LoopSimplify, "loopsimplify",
|
||||
INITIALIZE_PASS_END(LoopSimplify, "loop-simplify",
|
||||
"Canonicalize natural loops", true, false)
|
||||
|
||||
// Publically exposed interface to pass...
|
||||
|
@ -1,6 +1,6 @@
|
||||
; RUN: opt < %s -loopsimplify -lcssa -S | \
|
||||
; RUN: opt < %s -loop-simplify -lcssa -S | \
|
||||
; RUN: grep {%%SJE.0.0.lcssa = phi .struct.SetJmpMapEntry}
|
||||
; RUN: opt < %s -loopsimplify -lcssa -S | \
|
||||
; RUN: opt < %s -loop-simplify -lcssa -S | \
|
||||
; RUN: grep {%%SJE.0.0.lcssa1 = phi .struct.SetJmpMapEntry}
|
||||
|
||||
%struct.SetJmpMapEntry = type { i8*, i32, %struct.SetJmpMapEntry* }
|
||||
|
@ -1,6 +1,6 @@
|
||||
; Exit blocks need to be updated for all nested loops...
|
||||
|
||||
; RUN: opt < %s -loopsimplify
|
||||
; RUN: opt < %s -loop-simplify
|
||||
|
||||
define i32 @yyparse() {
|
||||
bb0:
|
||||
|
@ -1,7 +1,7 @@
|
||||
; This testcase exposed a problem with the loop identification pass (LoopInfo).
|
||||
; Basically, it was incorrectly calculating the loop nesting information.
|
||||
;
|
||||
; RUN: opt < %s -loopsimplify
|
||||
; RUN: opt < %s -loop-simplify
|
||||
|
||||
define i32 @yylex() {
|
||||
br label %loopentry.0
|
||||
|
@ -2,7 +2,7 @@
|
||||
; inserted for the "fail" loop, but the exit block of a loop is not updated
|
||||
; to be the preheader instead of the exit loop itself.
|
||||
|
||||
; RUN: opt < %s -loopsimplify
|
||||
; RUN: opt < %s -loop-simplify
|
||||
define i32 @re_match_2() {
|
||||
br label %loopentry.1
|
||||
loopentry.1: ; preds = %endif.82, %0
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: opt < %s -loopsimplify -verify -licm -disable-output
|
||||
; RUN: opt < %s -loop-simplify -verify -licm -disable-output
|
||||
|
||||
define void @.subst_48() {
|
||||
entry:
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: opt < %s -loopsimplify -licm -disable-output
|
||||
; RUN: opt < %s -loop-simplify -licm -disable-output
|
||||
define void @main() {
|
||||
entry:
|
||||
br i1 false, label %Out, label %loop
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: opt < %s -loopsimplify -licm -disable-output
|
||||
; RUN: opt < %s -loop-simplify -licm -disable-output
|
||||
|
||||
; This is PR306
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: opt < %s -loopsimplify -disable-output
|
||||
; RUN: opt < %s -loop-simplify -disable-output
|
||||
|
||||
define void @test() {
|
||||
loopentry.0:
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: opt < %s -scalarrepl -loopsimplify -licm -disable-output -verify-dom-info -verify-loop-info
|
||||
; RUN: opt < %s -scalarrepl -loop-simplify -licm -disable-output -verify-dom-info -verify-loop-info
|
||||
|
||||
define void @inflate() {
|
||||
entry:
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: opt < %s -loopsimplify -disable-output
|
||||
; RUN: opt < %s -loop-simplify -disable-output
|
||||
; PR1752
|
||||
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-s0:0:64-f80:32:32"
|
||||
target triple = "i686-pc-mingw32"
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: opt < %s -domfrontier -loopsimplify -domfrontier -verify-dom-info -analyze
|
||||
; RUN: opt < %s -domfrontier -loop-simplify -domfrontier -verify-dom-info -analyze
|
||||
|
||||
|
||||
define void @a() nounwind {
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: opt < %s -loopsimplify -S
|
||||
; RUN: opt < %s -loop-simplify -S
|
||||
; PR8702
|
||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
|
||||
target triple = "x86_64-unknown-freebsd9.0"
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: opt < %s -loopsimplify
|
||||
; RUN: opt < %s -loop-simplify
|
||||
|
||||
; This function should get a preheader inserted before BB3, that is jumped
|
||||
; to by BB1 & BB2
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: opt < %s -loopsimplify
|
||||
; RUN: opt < %s -loop-simplify
|
||||
|
||||
define void @foo(i1 %C) {
|
||||
br i1 %C, label %T, label %F
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: opt -loopsimplify -S < %s | FileCheck %s
|
||||
; RUN: opt -loop-simplify -S < %s | FileCheck %s
|
||||
|
||||
; LoopSimplify shouldn't split loop backedges that use indirectbr.
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: opt < %s -loopsimplify -lcssa -verify-loop-info -verify-dom-info -S \
|
||||
; RUN: opt < %s -loop-simplify -lcssa -verify-loop-info -verify-dom-info -S \
|
||||
; RUN: | grep -F {indirectbr i8* %x, \[label %L0, label %L1\]} \
|
||||
; RUN: | count 6
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: opt < %s -loopsimplify -loop-rotate -instcombine -indvars -S -verify-loop-info -verify-dom-info > %t
|
||||
; RUN: opt < %s -loop-simplify -loop-rotate -instcombine -indvars -S -verify-loop-info -verify-dom-info > %t
|
||||
; RUN: not grep sext %t
|
||||
; RUN: grep {phi i64} %t | count 1
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
; Loop Simplify should turn phi nodes like X = phi [X, Y] into just Y, eliminating them.
|
||||
; RUN: opt < %s -loopsimplify -S | grep phi | count 6
|
||||
; RUN: opt < %s -loop-simplify -S | grep phi | count 6
|
||||
|
||||
@A = weak global [3000000 x i32] zeroinitializer ; <[3000000 x i32]*> [#uses=1]
|
||||
@B = weak global [20000 x i32] zeroinitializer ; <[20000 x i32]*> [#uses=1]
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: opt -S -loopsimplify -disable-output -verify-loop-info -verify-dom-info < %s
|
||||
; RUN: opt -S -loop-simplify -disable-output -verify-loop-info -verify-dom-info < %s
|
||||
; PR5235
|
||||
|
||||
; When loopsimplify inserts a preheader for this loop, it should add the new
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: opt < %s -loop-unroll -loopsimplify -disable-output
|
||||
; RUN: opt < %s -loop-unroll -loop-simplify -disable-output
|
||||
|
||||
define void @print_board() {
|
||||
entry:
|
||||
|
Loading…
x
Reference in New Issue
Block a user