mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-23 16:19:52 +00:00
[opaque pointer type] Add textual IR support for explicit type parameter to gep operator
Similar to gep (r230786) and load (r230794) changes.
Similar migration script can be used to update test cases, which
successfully migrated all of LLVM and Polly, but about 4 test cases
needed manually changes in Clang.
(this script will read the contents of stdin and massage it into stdout
- wrap it in the 'apply.sh' script shown in previous commits + xargs to
apply it over a large set of test cases)
import fileinput
import sys
import re
rep = re.compile(r"(getelementptr(?:\s+inbounds)?\s*\()((<\d*\s+x\s+)?([^@]*?)(|\s*addrspace\(\d+\))\s*\*(?(3)>)\s*)(?=$|%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|zeroinitializer|<|\[\[[a-zA-Z]|\{\{)", re.MULTILINE | re.DOTALL)
def conv(match):
line = match.group(1)
line += match.group(4)
line += ", "
line += match.group(2)
return line
line = sys.stdin.read()
off = 0
for match in re.finditer(rep, line):
sys.stdout.write(line[off:match.start()])
sys.stdout.write(conv(match))
off = match.end()
sys.stdout.write(line[off:])
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232184 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -8,7 +8,7 @@ target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f3
|
||||
define i32 @foo() nounwind {
|
||||
; CHECK-LABEL: @foo(
|
||||
; CHECK-NEXT: ret i32 60
|
||||
%1 = call i32 @llvm.objectsize.i32.p0i8(i8* getelementptr inbounds ([60 x i8]* @a, i32 0, i32 0), i1 false)
|
||||
%1 = call i32 @llvm.objectsize.i32.p0i8(i8* getelementptr inbounds ([60 x i8], [60 x i8]* @a, i32 0, i32 0), i1 false)
|
||||
ret i32 %1
|
||||
}
|
||||
|
||||
@@ -16,7 +16,7 @@ define i8* @bar() nounwind {
|
||||
; CHECK-LABEL: @bar(
|
||||
entry:
|
||||
%retval = alloca i8*
|
||||
%0 = call i32 @llvm.objectsize.i32.p0i8(i8* getelementptr inbounds ([60 x i8]* @a, i32 0, i32 0), i1 false)
|
||||
%0 = call i32 @llvm.objectsize.i32.p0i8(i8* getelementptr inbounds ([60 x i8], [60 x i8]* @a, i32 0, i32 0), i1 false)
|
||||
%cmp = icmp ne i32 %0, -1
|
||||
; CHECK: br i1 true
|
||||
br i1 %cmp, label %cond.true, label %cond.false
|
||||
@@ -33,7 +33,7 @@ cond.false:
|
||||
define i32 @f() nounwind {
|
||||
; CHECK-LABEL: @f(
|
||||
; CHECK-NEXT: ret i32 0
|
||||
%1 = call i32 @llvm.objectsize.i32.p0i8(i8* getelementptr ([60 x i8]* @a, i32 1, i32 0), i1 false)
|
||||
%1 = call i32 @llvm.objectsize.i32.p0i8(i8* getelementptr ([60 x i8], [60 x i8]* @a, i32 1, i32 0), i1 false)
|
||||
ret i32 %1
|
||||
}
|
||||
|
||||
@@ -42,7 +42,7 @@ define i32 @f() nounwind {
|
||||
define i1 @baz() nounwind {
|
||||
; CHECK-LABEL: @baz(
|
||||
; CHECK-NEXT: objectsize
|
||||
%1 = tail call i32 @llvm.objectsize.i32.p0i8(i8* getelementptr inbounds ([0 x i8]* @window, i32 0, i32 0), i1 false)
|
||||
%1 = tail call i32 @llvm.objectsize.i32.p0i8(i8* getelementptr inbounds ([0 x i8], [0 x i8]* @window, i32 0, i32 0), i1 false)
|
||||
%2 = icmp eq i32 %1, -1
|
||||
ret i1 %2
|
||||
}
|
||||
@@ -51,7 +51,7 @@ define void @test1(i8* %q, i32 %x) nounwind noinline {
|
||||
; CHECK-LABEL: @test1(
|
||||
; CHECK: objectsize.i32.p0i8
|
||||
entry:
|
||||
%0 = call i32 @llvm.objectsize.i32.p0i8(i8* getelementptr inbounds ([0 x i8]* @window, i32 0, i32 10), i1 false) ; <i64> [#uses=1]
|
||||
%0 = call i32 @llvm.objectsize.i32.p0i8(i8* getelementptr inbounds ([0 x i8], [0 x i8]* @window, i32 0, i32 10), i1 false) ; <i64> [#uses=1]
|
||||
%1 = icmp eq i32 %0, -1 ; <i1> [#uses=1]
|
||||
br i1 %1, label %"47", label %"46"
|
||||
|
||||
@@ -67,7 +67,7 @@ entry:
|
||||
define i32 @test2() nounwind {
|
||||
; CHECK-LABEL: @test2(
|
||||
; CHECK-NEXT: ret i32 34
|
||||
%1 = call i32 @llvm.objectsize.i32.p0i8(i8* getelementptr (i8* bitcast ([9 x i32]* @.str5 to i8*), i32 2), i1 false)
|
||||
%1 = call i32 @llvm.objectsize.i32.p0i8(i8* getelementptr (i8, i8* bitcast ([9 x i32]* @.str5 to i8*), i32 2), i1 false)
|
||||
ret i32 %1
|
||||
}
|
||||
|
||||
@@ -86,7 +86,7 @@ entry:
|
||||
br i1 undef, label %bb11, label %bb12
|
||||
|
||||
bb11:
|
||||
%0 = getelementptr inbounds float, float* getelementptr inbounds ([480 x float]* @array, i32 0, i32 128), i32 -127 ; <float*> [#uses=1]
|
||||
%0 = getelementptr inbounds float, float* getelementptr inbounds ([480 x float], [480 x float]* @array, i32 0, i32 128), i32 -127 ; <float*> [#uses=1]
|
||||
%1 = bitcast float* %0 to i8* ; <i8*> [#uses=1]
|
||||
%2 = call i32 @llvm.objectsize.i32.p0i8(i8* %1, i1 false) ; <i32> [#uses=1]
|
||||
%3 = call i8* @__memcpy_chk(i8* undef, i8* undef, i32 512, i32 %2) nounwind ; <i8*> [#uses=0]
|
||||
@@ -94,7 +94,7 @@ bb11:
|
||||
unreachable
|
||||
|
||||
bb12:
|
||||
%4 = getelementptr inbounds float, float* getelementptr inbounds ([480 x float]* @array, i32 0, i32 128), i32 -127 ; <float*> [#uses=1]
|
||||
%4 = getelementptr inbounds float, float* getelementptr inbounds ([480 x float], [480 x float]* @array, i32 0, i32 128), i32 -127 ; <float*> [#uses=1]
|
||||
%5 = bitcast float* %4 to i8* ; <i8*> [#uses=1]
|
||||
%6 = call i8* @__inline_memcpy_chk(i8* %5, i8* undef, i32 512) nounwind inlinehint ; <i8*> [#uses=0]
|
||||
; CHECK: @__inline_memcpy_chk
|
||||
@@ -176,7 +176,7 @@ declare noalias i8* @strndup(i8* nocapture, i32) nounwind
|
||||
|
||||
; CHECK-LABEL: @test9(
|
||||
define i32 @test9(i8** %esc) {
|
||||
%call = tail call i8* @strdup(i8* getelementptr inbounds ([8 x i8]* @.str, i64 0, i64 0)) nounwind
|
||||
%call = tail call i8* @strdup(i8* getelementptr inbounds ([8 x i8], [8 x i8]* @.str, i64 0, i64 0)) nounwind
|
||||
store i8* %call, i8** %esc, align 8
|
||||
%1 = tail call i32 @llvm.objectsize.i32.p0i8(i8* %call, i1 true)
|
||||
; CHECK: ret i32 8
|
||||
@@ -185,7 +185,7 @@ define i32 @test9(i8** %esc) {
|
||||
|
||||
; CHECK-LABEL: @test10(
|
||||
define i32 @test10(i8** %esc) {
|
||||
%call = tail call i8* @strndup(i8* getelementptr inbounds ([8 x i8]* @.str, i64 0, i64 0), i32 3) nounwind
|
||||
%call = tail call i8* @strndup(i8* getelementptr inbounds ([8 x i8], [8 x i8]* @.str, i64 0, i64 0), i32 3) nounwind
|
||||
store i8* %call, i8** %esc, align 8
|
||||
%1 = tail call i32 @llvm.objectsize.i32.p0i8(i8* %call, i1 true)
|
||||
; CHECK: ret i32 4
|
||||
@@ -194,7 +194,7 @@ define i32 @test10(i8** %esc) {
|
||||
|
||||
; CHECK-LABEL: @test11(
|
||||
define i32 @test11(i8** %esc) {
|
||||
%call = tail call i8* @strndup(i8* getelementptr inbounds ([8 x i8]* @.str, i64 0, i64 0), i32 7) nounwind
|
||||
%call = tail call i8* @strndup(i8* getelementptr inbounds ([8 x i8], [8 x i8]* @.str, i64 0, i64 0), i32 7) nounwind
|
||||
store i8* %call, i8** %esc, align 8
|
||||
%1 = tail call i32 @llvm.objectsize.i32.p0i8(i8* %call, i1 true)
|
||||
; CHECK: ret i32 8
|
||||
@@ -203,7 +203,7 @@ define i32 @test11(i8** %esc) {
|
||||
|
||||
; CHECK-LABEL: @test12(
|
||||
define i32 @test12(i8** %esc) {
|
||||
%call = tail call i8* @strndup(i8* getelementptr inbounds ([8 x i8]* @.str, i64 0, i64 0), i32 8) nounwind
|
||||
%call = tail call i8* @strndup(i8* getelementptr inbounds ([8 x i8], [8 x i8]* @.str, i64 0, i64 0), i32 8) nounwind
|
||||
store i8* %call, i8** %esc, align 8
|
||||
%1 = tail call i32 @llvm.objectsize.i32.p0i8(i8* %call, i1 true)
|
||||
; CHECK: ret i32 8
|
||||
@@ -212,7 +212,7 @@ define i32 @test12(i8** %esc) {
|
||||
|
||||
; CHECK-LABEL: @test13(
|
||||
define i32 @test13(i8** %esc) {
|
||||
%call = tail call i8* @strndup(i8* getelementptr inbounds ([8 x i8]* @.str, i64 0, i64 0), i32 57) nounwind
|
||||
%call = tail call i8* @strndup(i8* getelementptr inbounds ([8 x i8], [8 x i8]* @.str, i64 0, i64 0), i32 57) nounwind
|
||||
store i8* %call, i8** %esc, align 8
|
||||
%1 = tail call i32 @llvm.objectsize.i32.p0i8(i8* %call, i1 true)
|
||||
; CHECK: ret i32 8
|
||||
|
||||
Reference in New Issue
Block a user