mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
7c9c6ed761
Essentially the same as the GEP change in r230786. A similar migration script can be used to update test cases, though a few more test case improvements/changes were required this time around: (r229269-r229278) import fileinput import sys import re pat = re.compile(r"((?:=|:|^)\s*load (?:atomic )?(?:volatile )?(.*?))(| addrspace\(\d+\) *)\*($| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$)") for line in sys.stdin: sys.stdout.write(re.sub(pat, r"\1, \2\3*\4", line)) Reviewers: rafael, dexonsmith, grosser Differential Revision: http://reviews.llvm.org/D7649 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230794 91177308-0d34-0410-b5e6-96231b3b80d8
58 lines
1.8 KiB
LLVM
58 lines
1.8 KiB
LLVM
; RUN: llc -march=hexagon -mcpu=hexagonv4 < %s | FileCheck %s
|
|
; Check that we constant extended instructions only when necessary.
|
|
|
|
define i32 @cext_test1(i32* %a) nounwind {
|
|
; CHECK: r{{[0-9]+}}{{ *}}={{ *}}memw(r{{[0-9]+}}{{ *}}+{{ *}}##8000)
|
|
; CHECK: r{{[0-9]+}}{{ *}}={{ *}}add(r{{[0-9]+}}{{ *}},{{ *}}##300000)
|
|
; CHECK-NOT: r{{[0-9]+}}{{ *}}={{ *}}memw(r{{[0-9]+}}{{ *}}+{{ *}}##4092)
|
|
; CHECK-NOT: r{{[0-9]+}}{{ *}}={{ *}}add(r{{[0-9]+}}{{ *}},{{ *}}##300)
|
|
entry:
|
|
%0 = load i32, i32* %a, align 4
|
|
%tobool = icmp ne i32 %0, 0
|
|
br i1 %tobool, label %if.then, label %if.end
|
|
|
|
if.then:
|
|
%arrayidx1 = getelementptr inbounds i32, i32* %a, i32 2000
|
|
%1 = load i32, i32* %arrayidx1, align 4
|
|
%add = add nsw i32 %1, 300000
|
|
br label %return
|
|
|
|
if.end:
|
|
%arrayidx2 = getelementptr inbounds i32, i32* %a, i32 1023
|
|
%2 = load i32, i32* %arrayidx2, align 4
|
|
%add3 = add nsw i32 %2, 300
|
|
br label %return
|
|
|
|
return:
|
|
%retval.0 = phi i32 [ %add, %if.then ], [ %add3, %if.end ]
|
|
ret i32 %retval.0
|
|
}
|
|
|
|
define i32 @cext_test2(i8* %a) nounwind {
|
|
; CHECK-NOT: r{{[0-9]+}}{{ *}}={{ *}}memub(r{{[0-9]+}}+{{ *}}##1023)
|
|
; CHECK: r{{[0-9]+}}{{ *}}={{ *}}add(r{{[0-9]+}}{{ *}},{{ *}}##300000)
|
|
; CHECK: r{{[0-9]+}}{{ *}}={{ *}}memub(r{{[0-9]+}}{{ *}}+{{ *}}##1024)
|
|
; CHECK-NOT: r{{[0-9]+}}{{ *}}={{ *}}add(r{{[0-9]+}}{{ *}},{{ *}}##6000)
|
|
entry:
|
|
%tobool = icmp ne i8* %a, null
|
|
br i1 %tobool, label %if.then, label %if.end
|
|
|
|
if.then:
|
|
%arrayidx = getelementptr inbounds i8, i8* %a, i32 1023
|
|
%0 = load i8, i8* %arrayidx, align 1
|
|
%conv = zext i8 %0 to i32
|
|
%add = add nsw i32 %conv, 300000
|
|
br label %return
|
|
|
|
if.end:
|
|
%arrayidx1 = getelementptr inbounds i8, i8* %a, i32 1024
|
|
%1 = load i8, i8* %arrayidx1, align 1
|
|
%conv2 = zext i8 %1 to i32
|
|
%add3 = add nsw i32 %conv2, 6000
|
|
br label %return
|
|
|
|
return:
|
|
%retval.0 = phi i32 [ %add, %if.then ], [ %add3, %if.end ]
|
|
ret i32 %retval.0
|
|
}
|