mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-14 23:48:49 +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
41 lines
1.1 KiB
LLVM
41 lines
1.1 KiB
LLVM
; RUN: llc -mtriple=thumbv4t-eabi %s -o - | FileCheck ---check-prefix=CHECK -check-prefix=CHECK-V4T %s
|
|
; RUN: llc -mtriple=thumbv5t-eabi %s -o - | FileCheck ---check-prefix=CHECK -check-prefix=CHECK-V5T %s
|
|
|
|
@f = common global void (i32)* null, align 4
|
|
|
|
; CHECK-LABEL foo:
|
|
define void @foo(i32 %x) {
|
|
entry:
|
|
%0 = load void (i32)*, void (i32)** @f, align 4
|
|
tail call void %0(i32 %x)
|
|
ret void
|
|
|
|
; CHECK: ldr [[TMP:r[0-3]]], [[F:\.[A-Z0-9_]+]]
|
|
; CHECK: ldr [[CALLEE:r[0-3]]], {{\[}}[[TMP]]{{\]}}
|
|
|
|
; CHECK-V4T-NOT: blx
|
|
; CHECK-V4T: bl [[INDIRECT_PAD:\.Ltmp[0-9]+]]
|
|
; CHECK-V4T: [[F]]:
|
|
; CHECK-V4T: [[INDIRECT_PAD]]:
|
|
; CHECK-V4T-NEXT: bx [[CALLEE]]
|
|
; CHECK-V5T: blx [[CALLEE]]
|
|
}
|
|
|
|
; CHECK-LABEL bar:
|
|
define void @bar(void (i32)* nocapture %g, i32 %x, void (i32)* nocapture %h) {
|
|
entry:
|
|
tail call void %g(i32 %x)
|
|
tail call void %h(i32 %x)
|
|
ret void
|
|
|
|
; CHECK-V4T: bl [[INDIRECT_PAD1:\.Ltmp[0-9]+]]
|
|
; CHECK-V4T: bl [[INDIRECT_PAD2:\.Ltmp[0-9]+]]
|
|
; CHECK-V4T: [[INDIRECT_PAD1]]:
|
|
; CHECK-V4T-NEXT: bx
|
|
; CHECK-V4T: [[INDIRECT_PAD2]]:
|
|
; CHECK-V4T-NEXT: bx
|
|
; CHECK-V5T: blx
|
|
; CHECK-V5T: blx
|
|
}
|
|
|