mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 12:19:53 +00:00
21f77df7b6
update.py: import fileinput import sys import re alias_match_prefix = r"(.*(?:=|:|^)\s*(?:external |)(?:(?:private|internal|linkonce|linkonce_odr|weak|weak_odr|common|appending|extern_weak|available_externally) )?(?:default |hidden |protected )?(?:dllimport |dllexport )?(?:unnamed_addr |)(?:thread_local(?:\([a-z]*\))? )?alias" plain = re.compile(alias_match_prefix + r" (.*?))(| addrspace\(\d+\) *)\*($| *(?:%|@|null|undef|blockaddress|addrspacecast|\[\[[a-zA-Z]|\{\{).*$)") cast = re.compile(alias_match_prefix + r") ((?:bitcast|inttoptr|addrspacecast)\s*\(.* to (.*?)(| addrspace\(\d+\) *)\*\)\s*(?:;.*)?$)") gep = re.compile(alias_match_prefix + r") ((?:getelementptr)\s*(?:inbounds)?\s*\((?P<type>.*), (?P=type)(?:\s*addrspace\(\d+\)\s*)?\* .*\)\s*(?:;.*)?$)") def conv(line): m = re.match(cast, line) if m: return m.group(1) + " " + m.group(3) + ", " + m.group(2) m = re.match(gep, line) if m: return m.group(1) + " " + m.group(3) + ", " + m.group(2) m = re.match(plain, line) if m: return m.group(1) + ", " + m.group(2) + m.group(3) + "*" + m.group(4) + "\n" return line for line in sys.stdin: sys.stdout.write(conv(line)) apply.sh: for name in "$@" do python3 `dirname "$0"`/update.py < "$name" > "$name.tmp" && mv "$name.tmp" "$name" rm -f "$name.tmp" done The actual commands: From llvm/src: find test/ -name *.ll | xargs ./apply.sh From llvm/src/tools/clang: find test/ -name *.mm -o -name *.m -o -name *.cpp -o -name *.c | xargs -I '{}' ../../apply.sh "{}" From llvm/src/tools/polly: find test/ -name *.ll | xargs ./apply.sh git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@247378 91177308-0d34-0410-b5e6-96231b3b80d8
32 lines
821 B
LLVM
32 lines
821 B
LLVM
; RUN: llc < %s -mtriple=powerpc64-unknown-linux-gnu -code-model=medium| FileCheck --check-prefix=CHECK --check-prefix=MEDIUM %s
|
|
; RUN: llc < %s -mtriple=powerpc64-unknown-linux-gnu -code-model=large | FileCheck --check-prefix=CHECK --check-prefix=LARGE %s
|
|
|
|
@foo = global i32 42
|
|
@fooa = alias i32, i32* @foo
|
|
|
|
@foo2 = global i64 42
|
|
@foo2a = alias i64, i64* @foo2
|
|
|
|
; CHECK-LABEL: bar:
|
|
define i32 @bar() {
|
|
; MEDIUM: addis 3, 2, fooa@toc@ha
|
|
; LARGE: addis 3, 2, .L[[L0:.*]]@toc@ha
|
|
%a = load i32, i32* @fooa
|
|
ret i32 %a
|
|
}
|
|
|
|
; CHECK-LABEL: bar2:
|
|
define i64 @bar2() {
|
|
; MEDIUM: addis 3, 2, foo2a@toc@ha
|
|
; MEDIUM: addi 3, 3, foo2a@toc@l
|
|
; LARGE: addis 3, 2, .L[[L1:.*]]@toc@ha
|
|
%a = load i64, i64* @foo2a
|
|
ret i64 %a
|
|
}
|
|
|
|
; LARGE: .L[[L0]]:
|
|
; LARGE-NEXT: .tc fooa[TC],fooa
|
|
|
|
; LARGE: .L[[L1]]:
|
|
; LARGE-NEXT: .tc foo2a[TC],foo2a
|