1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00
llvm-mirror/test/Analysis/ScalarEvolution/2011-04-26-FoldAddRec.ll
Arthur Eubanks 09cfe7939a [SCEV] Fix ScalarEvolution tests under NPM
Many tests use opt's -analyze feature, which does not translate well to
NPM and has better alternatives. The alternative here is to explicitly
add a pass that calls ScalarEvolution::print().

The legacy pass manager RUNs aren't changing, but they are now pinned to
the legacy pass manager.  For each legacy pass manager RUN, I added a
corresponding NPM RUN using the 'print<scalar-evolution>' pass. For
compatibility with update_analyze_test_checks.py and existing test
CHECKs, 'print<scalar-evolution>' now prints what -analyze prints per
function.

This was generated by the following Python script and failures were
manually fixed up:

import sys
for i in sys.argv:
    with open(i, 'r') as f:
        s = f.read()
    with open(i, 'w') as f:
        for l in s.splitlines():
            if "RUN:" in l and ' -analyze ' in l and '\\' not in l:
                f.write(l.replace(' -analyze ', ' -analyze -enable-new-pm=0 '))
                f.write('\n')
                f.write(l.replace(' -analyze ', ' -disable-output ').replace(' -scalar-evolution ', ' "-passes=print<scalar-evolution>" ').replace(" | ", " 2>&1 | "))
                f.write('\n')
            else:
                f.write(l)

There are a couple failures still in ScalarEvolution under NPM, but
those are due to other unrelated naming conflicts.

Reviewed By: asbirlea

Differential Revision: https://reviews.llvm.org/D83798
2020-07-16 11:24:07 -07:00

36 lines
1.0 KiB
LLVM

; RUN: opt < %s -analyze -enable-new-pm=0 -iv-users
; RUN: opt < %s -disable-output -iv-users
; RUN: opt < %s -passes='print<iv-users>'
; PR9633: Tests that SCEV handles the mul.i2 recurrence being folded to
; constant zero.
define signext i8 @func_14(i8 signext %p_18) nounwind readnone ssp {
entry:
br label %for.inc
for.inc:
%p_17.addr.012 = phi i32 [ 0, %entry ], [ %add, %for.inc ]
%add = add nsw i32 %p_17.addr.012, 1
br i1 false, label %for.inc, label %for.cond
for.cond:
%tobool.i = icmp ult i32 %add, 8192
%shl.i = select i1 %tobool.i, i32 13, i32 0
%shl.left.i = shl i32 %add, %shl.i
%conv.i4 = trunc i32 %shl.left.i to i8
br i1 undef, label %for.inc9, label %if.then
for.inc9:
%p_18.addr.011 = phi i8 [ %add12, %for.inc9 ], [ %p_18, %for.cond ]
%add12 = add i8 %p_18.addr.011, 1
%mul.i2 = mul i8 %add12, %conv.i4
%mul.i2.lobit = lshr i8 %mul.i2, 7
%lor.ext.shr.i = select i1 undef, i8 %mul.i2.lobit, i8 %mul.i2
%tobool = icmp eq i8 %lor.ext.shr.i, 0
br i1 %tobool, label %for.inc9, label %if.then
if.then:
ret i8 0
}