mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +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
47 lines
1.1 KiB
LLVM
47 lines
1.1 KiB
LLVM
; RUN: llc -march=hexagon -mcpu=hexagonv4 < %s | FileCheck %s
|
|
; Check that we generate load instructions with absolute addressing mode.
|
|
|
|
@a = external global i32
|
|
@b = external global i8
|
|
@c = external global i16
|
|
@d = external global i64
|
|
|
|
define zeroext i8 @absStoreByte() nounwind {
|
|
; CHECK: memb(##b){{ *}}={{ *}}r{{[0-9]+}}
|
|
entry:
|
|
%0 = load i8, i8* @b, align 1
|
|
%conv = zext i8 %0 to i32
|
|
%mul = mul nsw i32 100, %conv
|
|
%conv1 = trunc i32 %mul to i8
|
|
store i8 %conv1, i8* @b, align 1
|
|
ret i8 %conv1
|
|
}
|
|
|
|
define signext i16 @absStoreHalf() nounwind {
|
|
; CHECK: memh(##c){{ *}}={{ *}}r{{[0-9]+}}
|
|
entry:
|
|
%0 = load i16, i16* @c, align 2
|
|
%conv = sext i16 %0 to i32
|
|
%mul = mul nsw i32 100, %conv
|
|
%conv1 = trunc i32 %mul to i16
|
|
store i16 %conv1, i16* @c, align 2
|
|
ret i16 %conv1
|
|
}
|
|
|
|
define i32 @absStoreWord() nounwind {
|
|
; CHECK: memw(##a){{ *}}={{ *}}r{{[0-9]+}}
|
|
entry:
|
|
%0 = load i32, i32* @a, align 4
|
|
%mul = mul nsw i32 100, %0
|
|
store i32 %mul, i32* @a, align 4
|
|
ret i32 %mul
|
|
}
|
|
|
|
define void @absStoreDouble() nounwind {
|
|
; CHECK: memd(##d){{ *}}={{ *}}r{{[0-9]+}}:{{[0-9]+}}
|
|
entry:
|
|
store i64 100, i64* @d, align 8
|
|
ret void
|
|
}
|
|
|