2013-01-23 14:41:41 +08:00
|
|
|
; RUN: llc -mtriple=i386-pc-linux-gnu < %s -o - | FileCheck --check-prefix=LINUX-I386 %s
|
|
|
|
; RUN: llc -mtriple=x86_64-pc-linux-gnu < %s -o - | FileCheck --check-prefix=LINUX-X64 %s
|
|
|
|
; RUN: llc -code-model=kernel -mtriple=x86_64-pc-linux-gnu < %s -o - | FileCheck --check-prefix=LINUX-KERNEL-X64 %s
|
|
|
|
; RUN: llc -mtriple=x86_64-apple-darwin < %s -o - | FileCheck --check-prefix=DARWIN-X64 %s
|
2013-06-08 00:35:57 +08:00
|
|
|
; RUN: llc -mtriple=amd64-pc-openbsd < %s -o - | FileCheck --check-prefix=OPENBSD-AMD64 %s
|
2008-11-18 15:34:50 +08:00
|
|
|
|
2013-01-23 14:41:41 +08:00
|
|
|
%struct.foo = type { [16 x i8] }
|
|
|
|
%struct.foo.0 = type { [4 x i8] }
|
2013-01-23 14:43:53 +08:00
|
|
|
%struct.pair = type { i32, i32 }
|
|
|
|
%struct.nest = type { %struct.pair, %struct.pair }
|
|
|
|
%struct.vec = type { <4 x i32> }
|
|
|
|
%class.A = type { [2 x i8] }
|
|
|
|
%struct.deep = type { %union.anon }
|
|
|
|
%union.anon = type { %struct.anon }
|
|
|
|
%struct.anon = type { %struct.anon.0 }
|
|
|
|
%struct.anon.0 = type { %union.anon.1 }
|
|
|
|
%union.anon.1 = type { [2 x i8] }
|
|
|
|
%struct.small = type { i8 }
|
2014-04-18 03:08:36 +08:00
|
|
|
%struct.small_char = type { i32, [5 x i8] }
|
2008-11-18 15:34:50 +08:00
|
|
|
|
2013-01-23 14:41:41 +08:00
|
|
|
@.str = private unnamed_addr constant [4 x i8] c"%s\0A\00", align 1
|
|
|
|
|
|
|
|
; test1a: array of [16 x i8]
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define void @test1a(i8* %a) {
|
2013-01-23 14:41:41 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test1a:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test1a:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test1a:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test1a:
|
2013-01-23 14:41:41 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a.addr = alloca i8*, align 8
|
|
|
|
%buf = alloca [16 x i8], align 16
|
|
|
|
store i8* %a, i8** %a.addr, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arraydecay = getelementptr inbounds [16 x i8], [16 x i8]* %buf, i32 0, i32 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8*, i8** %a.addr, align 8
|
2013-01-23 14:41:41 +08:00
|
|
|
%call = call i8* @strcpy(i8* %arraydecay, i8* %0)
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arraydecay1 = getelementptr inbounds [16 x i8], [16 x i8]* %buf, i32 0, i32 0
|
2015-03-14 02:20:45 +08:00
|
|
|
%call2 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %arraydecay1)
|
2013-01-23 14:41:41 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test1b: array of [16 x i8]
|
|
|
|
; ssp attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define void @test1b(i8* %a) #0 {
|
2013-01-23 14:41:41 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test1b:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test1b:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test1b:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test1b:
|
2013-01-23 14:41:41 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
2013-06-08 00:35:57 +08:00
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; OPENBSD-AMD64-LABEL: test1b:
|
2013-06-08 00:35:57 +08:00
|
|
|
; OPENBSD-AMD64: movq __guard_local(%rip)
|
|
|
|
; OPENBSD-AMD64: callq __stack_smash_handler
|
2013-01-23 14:41:41 +08:00
|
|
|
%a.addr = alloca i8*, align 8
|
|
|
|
%buf = alloca [16 x i8], align 16
|
|
|
|
store i8* %a, i8** %a.addr, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arraydecay = getelementptr inbounds [16 x i8], [16 x i8]* %buf, i32 0, i32 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8*, i8** %a.addr, align 8
|
2013-01-23 14:41:41 +08:00
|
|
|
%call = call i8* @strcpy(i8* %arraydecay, i8* %0)
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arraydecay1 = getelementptr inbounds [16 x i8], [16 x i8]* %buf, i32 0, i32 0
|
2015-03-14 02:20:45 +08:00
|
|
|
%call2 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %arraydecay1)
|
2013-01-23 14:41:41 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test1c: array of [16 x i8]
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define void @test1c(i8* %a) #1 {
|
2013-01-23 14:41:41 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test1c:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test1c:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test1c:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test1c:
|
2013-01-23 14:41:41 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a.addr = alloca i8*, align 8
|
|
|
|
%buf = alloca [16 x i8], align 16
|
|
|
|
store i8* %a, i8** %a.addr, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arraydecay = getelementptr inbounds [16 x i8], [16 x i8]* %buf, i32 0, i32 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8*, i8** %a.addr, align 8
|
2013-01-23 14:41:41 +08:00
|
|
|
%call = call i8* @strcpy(i8* %arraydecay, i8* %0)
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arraydecay1 = getelementptr inbounds [16 x i8], [16 x i8]* %buf, i32 0, i32 0
|
2015-03-14 02:20:45 +08:00
|
|
|
%call2 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %arraydecay1)
|
2013-01-23 14:41:41 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test1d: array of [16 x i8]
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define void @test1d(i8* %a) #2 {
|
2013-01-23 14:41:41 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test1d:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test1d:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test1d:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test1d:
|
2013-01-23 14:41:41 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a.addr = alloca i8*, align 8
|
|
|
|
%buf = alloca [16 x i8], align 16
|
|
|
|
store i8* %a, i8** %a.addr, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arraydecay = getelementptr inbounds [16 x i8], [16 x i8]* %buf, i32 0, i32 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8*, i8** %a.addr, align 8
|
2013-01-23 14:41:41 +08:00
|
|
|
%call = call i8* @strcpy(i8* %arraydecay, i8* %0)
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arraydecay1 = getelementptr inbounds [16 x i8], [16 x i8]* %buf, i32 0, i32 0
|
2015-03-14 02:20:45 +08:00
|
|
|
%call2 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %arraydecay1)
|
2013-01-23 14:41:41 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test2a: struct { [16 x i8] }
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define void @test2a(i8* %a) {
|
2013-01-23 14:41:41 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test2a:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test2a:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test2a:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test2a:
|
2013-01-23 14:41:41 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a.addr = alloca i8*, align 8
|
|
|
|
%b = alloca %struct.foo, align 1
|
|
|
|
store i8* %a, i8** %a.addr, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%buf = getelementptr inbounds %struct.foo, %struct.foo* %b, i32 0, i32 0
|
|
|
|
%arraydecay = getelementptr inbounds [16 x i8], [16 x i8]* %buf, i32 0, i32 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8*, i8** %a.addr, align 8
|
2013-01-23 14:41:41 +08:00
|
|
|
%call = call i8* @strcpy(i8* %arraydecay, i8* %0)
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%buf1 = getelementptr inbounds %struct.foo, %struct.foo* %b, i32 0, i32 0
|
|
|
|
%arraydecay2 = getelementptr inbounds [16 x i8], [16 x i8]* %buf1, i32 0, i32 0
|
2015-03-14 02:20:45 +08:00
|
|
|
%call3 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %arraydecay2)
|
2013-01-23 14:41:41 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test2b: struct { [16 x i8] }
|
|
|
|
; ssp attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define void @test2b(i8* %a) #0 {
|
2013-01-23 14:41:41 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test2b:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test2b:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test2b:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test2b:
|
2013-01-23 14:41:41 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a.addr = alloca i8*, align 8
|
|
|
|
%b = alloca %struct.foo, align 1
|
|
|
|
store i8* %a, i8** %a.addr, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%buf = getelementptr inbounds %struct.foo, %struct.foo* %b, i32 0, i32 0
|
|
|
|
%arraydecay = getelementptr inbounds [16 x i8], [16 x i8]* %buf, i32 0, i32 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8*, i8** %a.addr, align 8
|
2013-01-23 14:41:41 +08:00
|
|
|
%call = call i8* @strcpy(i8* %arraydecay, i8* %0)
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%buf1 = getelementptr inbounds %struct.foo, %struct.foo* %b, i32 0, i32 0
|
|
|
|
%arraydecay2 = getelementptr inbounds [16 x i8], [16 x i8]* %buf1, i32 0, i32 0
|
2015-03-14 02:20:45 +08:00
|
|
|
%call3 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %arraydecay2)
|
2013-01-23 14:41:41 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test2c: struct { [16 x i8] }
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define void @test2c(i8* %a) #1 {
|
2013-01-23 14:41:41 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test2c:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test2c:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test2c:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test2c:
|
2013-01-23 14:41:41 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a.addr = alloca i8*, align 8
|
|
|
|
%b = alloca %struct.foo, align 1
|
|
|
|
store i8* %a, i8** %a.addr, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%buf = getelementptr inbounds %struct.foo, %struct.foo* %b, i32 0, i32 0
|
|
|
|
%arraydecay = getelementptr inbounds [16 x i8], [16 x i8]* %buf, i32 0, i32 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8*, i8** %a.addr, align 8
|
2013-01-23 14:41:41 +08:00
|
|
|
%call = call i8* @strcpy(i8* %arraydecay, i8* %0)
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%buf1 = getelementptr inbounds %struct.foo, %struct.foo* %b, i32 0, i32 0
|
|
|
|
%arraydecay2 = getelementptr inbounds [16 x i8], [16 x i8]* %buf1, i32 0, i32 0
|
2015-03-14 02:20:45 +08:00
|
|
|
%call3 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %arraydecay2)
|
2013-01-23 14:41:41 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test2d: struct { [16 x i8] }
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define void @test2d(i8* %a) #2 {
|
2013-01-23 14:41:41 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test2d:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test2d:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test2d:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test2d:
|
2013-01-23 14:41:41 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a.addr = alloca i8*, align 8
|
|
|
|
%b = alloca %struct.foo, align 1
|
|
|
|
store i8* %a, i8** %a.addr, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%buf = getelementptr inbounds %struct.foo, %struct.foo* %b, i32 0, i32 0
|
|
|
|
%arraydecay = getelementptr inbounds [16 x i8], [16 x i8]* %buf, i32 0, i32 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8*, i8** %a.addr, align 8
|
2013-01-23 14:41:41 +08:00
|
|
|
%call = call i8* @strcpy(i8* %arraydecay, i8* %0)
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%buf1 = getelementptr inbounds %struct.foo, %struct.foo* %b, i32 0, i32 0
|
|
|
|
%arraydecay2 = getelementptr inbounds [16 x i8], [16 x i8]* %buf1, i32 0, i32 0
|
2015-03-14 02:20:45 +08:00
|
|
|
%call3 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %arraydecay2)
|
2013-01-23 14:41:41 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test3a: array of [4 x i8]
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define void @test3a(i8* %a) {
|
2013-01-23 14:41:41 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test3a:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test3a:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test3a:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test3a:
|
2013-01-23 14:41:41 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a.addr = alloca i8*, align 8
|
|
|
|
%buf = alloca [4 x i8], align 1
|
|
|
|
store i8* %a, i8** %a.addr, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arraydecay = getelementptr inbounds [4 x i8], [4 x i8]* %buf, i32 0, i32 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8*, i8** %a.addr, align 8
|
2013-01-23 14:41:41 +08:00
|
|
|
%call = call i8* @strcpy(i8* %arraydecay, i8* %0)
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arraydecay1 = getelementptr inbounds [4 x i8], [4 x i8]* %buf, i32 0, i32 0
|
2015-03-14 02:20:45 +08:00
|
|
|
%call2 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %arraydecay1)
|
2013-01-23 14:41:41 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test3b: array [4 x i8]
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define void @test3b(i8* %a) #0 {
|
2013-01-23 14:41:41 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test3b:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test3b:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test3b:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test3b:
|
2013-01-23 14:41:41 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a.addr = alloca i8*, align 8
|
|
|
|
%buf = alloca [4 x i8], align 1
|
|
|
|
store i8* %a, i8** %a.addr, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arraydecay = getelementptr inbounds [4 x i8], [4 x i8]* %buf, i32 0, i32 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8*, i8** %a.addr, align 8
|
2013-01-23 14:41:41 +08:00
|
|
|
%call = call i8* @strcpy(i8* %arraydecay, i8* %0)
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arraydecay1 = getelementptr inbounds [4 x i8], [4 x i8]* %buf, i32 0, i32 0
|
2015-03-14 02:20:45 +08:00
|
|
|
%call2 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %arraydecay1)
|
2013-01-23 14:41:41 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test3c: array of [4 x i8]
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define void @test3c(i8* %a) #1 {
|
2013-01-23 14:41:41 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test3c:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test3c:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test3c:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test3c:
|
2013-01-23 14:41:41 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a.addr = alloca i8*, align 8
|
|
|
|
%buf = alloca [4 x i8], align 1
|
|
|
|
store i8* %a, i8** %a.addr, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arraydecay = getelementptr inbounds [4 x i8], [4 x i8]* %buf, i32 0, i32 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8*, i8** %a.addr, align 8
|
2013-01-23 14:41:41 +08:00
|
|
|
%call = call i8* @strcpy(i8* %arraydecay, i8* %0)
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arraydecay1 = getelementptr inbounds [4 x i8], [4 x i8]* %buf, i32 0, i32 0
|
2015-03-14 02:20:45 +08:00
|
|
|
%call2 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %arraydecay1)
|
2013-01-23 14:41:41 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test3d: array of [4 x i8]
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define void @test3d(i8* %a) #2 {
|
2013-01-23 14:41:41 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test3d:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test3d:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test3d:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test3d:
|
2013-01-23 14:41:41 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a.addr = alloca i8*, align 8
|
|
|
|
%buf = alloca [4 x i8], align 1
|
|
|
|
store i8* %a, i8** %a.addr, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arraydecay = getelementptr inbounds [4 x i8], [4 x i8]* %buf, i32 0, i32 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8*, i8** %a.addr, align 8
|
2013-01-23 14:41:41 +08:00
|
|
|
%call = call i8* @strcpy(i8* %arraydecay, i8* %0)
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arraydecay1 = getelementptr inbounds [4 x i8], [4 x i8]* %buf, i32 0, i32 0
|
2015-03-14 02:20:45 +08:00
|
|
|
%call2 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %arraydecay1)
|
2013-01-23 14:41:41 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test4a: struct { [4 x i8] }
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define void @test4a(i8* %a) {
|
2013-01-23 14:41:41 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test4a:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test4a:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test4a:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test4a:
|
2013-01-23 14:41:41 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a.addr = alloca i8*, align 8
|
|
|
|
%b = alloca %struct.foo.0, align 1
|
|
|
|
store i8* %a, i8** %a.addr, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%buf = getelementptr inbounds %struct.foo.0, %struct.foo.0* %b, i32 0, i32 0
|
|
|
|
%arraydecay = getelementptr inbounds [4 x i8], [4 x i8]* %buf, i32 0, i32 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8*, i8** %a.addr, align 8
|
2013-01-23 14:41:41 +08:00
|
|
|
%call = call i8* @strcpy(i8* %arraydecay, i8* %0)
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%buf1 = getelementptr inbounds %struct.foo.0, %struct.foo.0* %b, i32 0, i32 0
|
|
|
|
%arraydecay2 = getelementptr inbounds [4 x i8], [4 x i8]* %buf1, i32 0, i32 0
|
2015-03-14 02:20:45 +08:00
|
|
|
%call3 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %arraydecay2)
|
2013-01-23 14:41:41 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test4b: struct { [4 x i8] }
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define void @test4b(i8* %a) #0 {
|
2013-01-23 14:41:41 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test4b:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test4b:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test4b:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test4b:
|
2013-01-23 14:41:41 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a.addr = alloca i8*, align 8
|
|
|
|
%b = alloca %struct.foo.0, align 1
|
|
|
|
store i8* %a, i8** %a.addr, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%buf = getelementptr inbounds %struct.foo.0, %struct.foo.0* %b, i32 0, i32 0
|
|
|
|
%arraydecay = getelementptr inbounds [4 x i8], [4 x i8]* %buf, i32 0, i32 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8*, i8** %a.addr, align 8
|
2013-01-23 14:41:41 +08:00
|
|
|
%call = call i8* @strcpy(i8* %arraydecay, i8* %0)
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%buf1 = getelementptr inbounds %struct.foo.0, %struct.foo.0* %b, i32 0, i32 0
|
|
|
|
%arraydecay2 = getelementptr inbounds [4 x i8], [4 x i8]* %buf1, i32 0, i32 0
|
2015-03-14 02:20:45 +08:00
|
|
|
%call3 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %arraydecay2)
|
2013-01-23 14:41:41 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test4c: struct { [4 x i8] }
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define void @test4c(i8* %a) #1 {
|
2013-01-23 14:41:41 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test4c:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test4c:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test4c:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test4c:
|
2013-01-23 14:41:41 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a.addr = alloca i8*, align 8
|
|
|
|
%b = alloca %struct.foo.0, align 1
|
|
|
|
store i8* %a, i8** %a.addr, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%buf = getelementptr inbounds %struct.foo.0, %struct.foo.0* %b, i32 0, i32 0
|
|
|
|
%arraydecay = getelementptr inbounds [4 x i8], [4 x i8]* %buf, i32 0, i32 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8*, i8** %a.addr, align 8
|
2013-01-23 14:41:41 +08:00
|
|
|
%call = call i8* @strcpy(i8* %arraydecay, i8* %0)
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%buf1 = getelementptr inbounds %struct.foo.0, %struct.foo.0* %b, i32 0, i32 0
|
|
|
|
%arraydecay2 = getelementptr inbounds [4 x i8], [4 x i8]* %buf1, i32 0, i32 0
|
2015-03-14 02:20:45 +08:00
|
|
|
%call3 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %arraydecay2)
|
2013-01-23 14:41:41 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test4d: struct { [4 x i8] }
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define void @test4d(i8* %a) #2 {
|
2008-11-18 15:34:50 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test4d:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
2008-11-18 15:34:50 +08:00
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test4d:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test4d:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test4d:
|
2013-01-23 14:41:41 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a.addr = alloca i8*, align 8
|
|
|
|
%b = alloca %struct.foo.0, align 1
|
|
|
|
store i8* %a, i8** %a.addr, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%buf = getelementptr inbounds %struct.foo.0, %struct.foo.0* %b, i32 0, i32 0
|
|
|
|
%arraydecay = getelementptr inbounds [4 x i8], [4 x i8]* %buf, i32 0, i32 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8*, i8** %a.addr, align 8
|
2013-01-23 14:41:41 +08:00
|
|
|
%call = call i8* @strcpy(i8* %arraydecay, i8* %0)
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%buf1 = getelementptr inbounds %struct.foo.0, %struct.foo.0* %b, i32 0, i32 0
|
|
|
|
%arraydecay2 = getelementptr inbounds [4 x i8], [4 x i8]* %buf1, i32 0, i32 0
|
2015-03-14 02:20:45 +08:00
|
|
|
%call3 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %arraydecay2)
|
2013-01-23 14:41:41 +08:00
|
|
|
ret void
|
2008-11-18 15:34:50 +08:00
|
|
|
}
|
|
|
|
|
2013-01-23 14:41:41 +08:00
|
|
|
; test5a: no arrays / no nested arrays
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define void @test5a(i8* %a) {
|
2013-01-23 14:41:41 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test5a:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test5a:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test5a:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test5a:
|
2013-01-23 14:41:41 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a.addr = alloca i8*, align 8
|
|
|
|
store i8* %a, i8** %a.addr, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8*, i8** %a.addr, align 8
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %0)
|
2013-01-23 14:41:41 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test5b: no arrays / no nested arrays
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define void @test5b(i8* %a) #0 {
|
2013-01-23 14:41:41 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test5b:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test5b:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test5b:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test5b:
|
2013-01-23 14:41:41 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a.addr = alloca i8*, align 8
|
|
|
|
store i8* %a, i8** %a.addr, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8*, i8** %a.addr, align 8
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %0)
|
2013-01-23 14:41:41 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test5c: no arrays / no nested arrays
|
|
|
|
; sspstrong attribute
|
2013-01-23 14:43:53 +08:00
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define void @test5c(i8* %a) #1 {
|
2013-01-23 14:41:41 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test5c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
2013-01-23 14:41:41 +08:00
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test5c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
2013-01-23 14:41:41 +08:00
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test5c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
2013-01-23 14:41:41 +08:00
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test5c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
2013-01-23 14:41:41 +08:00
|
|
|
%a.addr = alloca i8*, align 8
|
|
|
|
store i8* %a, i8** %a.addr, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8*, i8** %a.addr, align 8
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %0)
|
2013-01-23 14:41:41 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test5d: no arrays / no nested arrays
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define void @test5d(i8* %a) #2 {
|
2013-01-23 14:41:41 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test5d:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test5d:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test5d:
|
2013-01-23 14:41:41 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test5d:
|
2013-01-23 14:41:41 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a.addr = alloca i8*, align 8
|
|
|
|
store i8* %a, i8** %a.addr, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8*, i8** %a.addr, align 8
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %0)
|
2013-01-23 14:41:41 +08:00
|
|
|
ret void
|
|
|
|
}
|
2008-11-18 15:34:50 +08:00
|
|
|
|
2013-01-23 14:43:53 +08:00
|
|
|
; test6a: Address-of local taken (j = &a)
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define void @test6a() {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test6a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test6a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test6a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test6a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%retval = alloca i32, align 4
|
|
|
|
%a = alloca i32, align 4
|
|
|
|
%j = alloca i32*, align 8
|
|
|
|
store i32 0, i32* %retval
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32, i32* %a, align 4
|
2013-01-23 14:43:53 +08:00
|
|
|
%add = add nsw i32 %0, 1
|
|
|
|
store i32 %add, i32* %a, align 4
|
|
|
|
store i32* %a, i32** %j, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test6b: Address-of local taken (j = &a)
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define void @test6b() #0 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test6b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test6b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test6b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test6b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%retval = alloca i32, align 4
|
|
|
|
%a = alloca i32, align 4
|
|
|
|
%j = alloca i32*, align 8
|
|
|
|
store i32 0, i32* %retval
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32, i32* %a, align 4
|
2013-01-23 14:43:53 +08:00
|
|
|
%add = add nsw i32 %0, 1
|
|
|
|
store i32 %add, i32* %a, align 4
|
|
|
|
store i32* %a, i32** %j, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test6c: Address-of local taken (j = &a)
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define void @test6c() #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test6c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test6c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test6c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test6c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%retval = alloca i32, align 4
|
|
|
|
%a = alloca i32, align 4
|
|
|
|
%j = alloca i32*, align 8
|
|
|
|
store i32 0, i32* %retval
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32, i32* %a, align 4
|
2013-01-23 14:43:53 +08:00
|
|
|
%add = add nsw i32 %0, 1
|
|
|
|
store i32 %add, i32* %a, align 4
|
|
|
|
store i32* %a, i32** %j, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test6d: Address-of local taken (j = &a)
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define void @test6d() #2 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test6d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test6d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test6d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test6d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%retval = alloca i32, align 4
|
|
|
|
%a = alloca i32, align 4
|
|
|
|
%j = alloca i32*, align 8
|
|
|
|
store i32 0, i32* %retval
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32, i32* %a, align 4
|
2013-01-23 14:43:53 +08:00
|
|
|
%add = add nsw i32 %0, 1
|
|
|
|
store i32 %add, i32* %a, align 4
|
|
|
|
store i32* %a, i32** %j, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test7a: PtrToInt Cast
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define void @test7a() {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test7a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test7a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test7a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test7a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a = alloca i32, align 4
|
|
|
|
%0 = ptrtoint i32* %a to i64
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i64 %0)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test7b: PtrToInt Cast
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define void @test7b() #0 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test7b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test7b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test7b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test7b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a = alloca i32, align 4
|
|
|
|
%0 = ptrtoint i32* %a to i64
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i64 %0)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test7c: PtrToInt Cast
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define void @test7c() #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test7c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test7c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test7c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test7c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a = alloca i32, align 4
|
|
|
|
%0 = ptrtoint i32* %a to i64
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i64 %0)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test7d: PtrToInt Cast
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define void @test7d() #2 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test7d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test7d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test7d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test7d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a = alloca i32, align 4
|
|
|
|
%0 = ptrtoint i32* %a to i64
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i64 %0)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test8a: Passing addr-of to function call
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define void @test8a() {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test8a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test8a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test8a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test8a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%b = alloca i32, align 4
|
2014-04-11 06:47:27 +08:00
|
|
|
call void @funcall(i32* %b)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test8b: Passing addr-of to function call
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define void @test8b() #0 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test8b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test8b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test8b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test8b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%b = alloca i32, align 4
|
2014-04-11 06:47:27 +08:00
|
|
|
call void @funcall(i32* %b)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test8c: Passing addr-of to function call
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define void @test8c() #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test8c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test8c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test8c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test8c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%b = alloca i32, align 4
|
2014-04-11 06:47:27 +08:00
|
|
|
call void @funcall(i32* %b)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test8d: Passing addr-of to function call
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define void @test8d() #2 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test8d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test8d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test8d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test8d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%b = alloca i32, align 4
|
2014-04-11 06:47:27 +08:00
|
|
|
call void @funcall(i32* %b)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test9a: Addr-of in select instruction
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define void @test9a() {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test9a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test9a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test9a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test9a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%x = alloca double, align 8
|
2014-04-11 06:47:27 +08:00
|
|
|
%call = call double @testi_aux()
|
2013-01-23 14:43:53 +08:00
|
|
|
store double %call, double* %x, align 8
|
|
|
|
%cmp2 = fcmp ogt double %call, 0.000000e+00
|
|
|
|
%y.1 = select i1 %cmp2, double* %x, double* null
|
2015-03-14 02:20:45 +08:00
|
|
|
%call2 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), double* %y.1)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test9b: Addr-of in select instruction
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define void @test9b() #0 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test9b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test9b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test9b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test9b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%x = alloca double, align 8
|
2014-04-11 06:47:27 +08:00
|
|
|
%call = call double @testi_aux()
|
2013-01-23 14:43:53 +08:00
|
|
|
store double %call, double* %x, align 8
|
|
|
|
%cmp2 = fcmp ogt double %call, 0.000000e+00
|
|
|
|
%y.1 = select i1 %cmp2, double* %x, double* null
|
2015-03-14 02:20:45 +08:00
|
|
|
%call2 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), double* %y.1)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test9c: Addr-of in select instruction
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define void @test9c() #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test9c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test9c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test9c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test9c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%x = alloca double, align 8
|
2014-04-11 06:47:27 +08:00
|
|
|
%call = call double @testi_aux()
|
2013-01-23 14:43:53 +08:00
|
|
|
store double %call, double* %x, align 8
|
|
|
|
%cmp2 = fcmp ogt double %call, 0.000000e+00
|
|
|
|
%y.1 = select i1 %cmp2, double* %x, double* null
|
2015-03-14 02:20:45 +08:00
|
|
|
%call2 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), double* %y.1)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test9d: Addr-of in select instruction
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define void @test9d() #2 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test9d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test9d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test9d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test9d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%x = alloca double, align 8
|
2014-04-11 06:47:27 +08:00
|
|
|
%call = call double @testi_aux()
|
2013-01-23 14:43:53 +08:00
|
|
|
store double %call, double* %x, align 8
|
|
|
|
%cmp2 = fcmp ogt double %call, 0.000000e+00
|
|
|
|
%y.1 = select i1 %cmp2, double* %x, double* null
|
2015-03-14 02:20:45 +08:00
|
|
|
%call2 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), double* %y.1)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test10a: Addr-of in phi instruction
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define void @test10a() {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test10a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test10a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test10a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test10a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%x = alloca double, align 8
|
2014-04-11 06:47:27 +08:00
|
|
|
%call = call double @testi_aux()
|
2013-01-23 14:43:53 +08:00
|
|
|
store double %call, double* %x, align 8
|
|
|
|
%cmp = fcmp ogt double %call, 3.140000e+00
|
|
|
|
br i1 %cmp, label %if.then, label %if.else
|
|
|
|
|
|
|
|
if.then: ; preds = %entry
|
2014-04-11 06:47:27 +08:00
|
|
|
%call1 = call double @testi_aux()
|
2013-01-23 14:43:53 +08:00
|
|
|
store double %call1, double* %x, align 8
|
|
|
|
br label %if.end4
|
|
|
|
|
|
|
|
if.else: ; preds = %entry
|
|
|
|
%cmp2 = fcmp ogt double %call, 1.000000e+00
|
|
|
|
br i1 %cmp2, label %if.then3, label %if.end4
|
|
|
|
|
|
|
|
if.then3: ; preds = %if.else
|
|
|
|
br label %if.end4
|
|
|
|
|
|
|
|
if.end4: ; preds = %if.else, %if.then3, %if.then
|
|
|
|
%y.0 = phi double* [ null, %if.then ], [ %x, %if.then3 ], [ null, %if.else ]
|
2015-03-14 02:20:45 +08:00
|
|
|
%call5 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), double* %y.0)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test10b: Addr-of in phi instruction
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define void @test10b() #0 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test10b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test10b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test10b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test10b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%x = alloca double, align 8
|
2014-04-11 06:47:27 +08:00
|
|
|
%call = call double @testi_aux()
|
2013-01-23 14:43:53 +08:00
|
|
|
store double %call, double* %x, align 8
|
|
|
|
%cmp = fcmp ogt double %call, 3.140000e+00
|
|
|
|
br i1 %cmp, label %if.then, label %if.else
|
|
|
|
|
|
|
|
if.then: ; preds = %entry
|
2014-04-11 06:47:27 +08:00
|
|
|
%call1 = call double @testi_aux()
|
2013-01-23 14:43:53 +08:00
|
|
|
store double %call1, double* %x, align 8
|
|
|
|
br label %if.end4
|
|
|
|
|
|
|
|
if.else: ; preds = %entry
|
|
|
|
%cmp2 = fcmp ogt double %call, 1.000000e+00
|
|
|
|
br i1 %cmp2, label %if.then3, label %if.end4
|
|
|
|
|
|
|
|
if.then3: ; preds = %if.else
|
|
|
|
br label %if.end4
|
|
|
|
|
|
|
|
if.end4: ; preds = %if.else, %if.then3, %if.then
|
|
|
|
%y.0 = phi double* [ null, %if.then ], [ %x, %if.then3 ], [ null, %if.else ]
|
2015-03-14 02:20:45 +08:00
|
|
|
%call5 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), double* %y.0)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test10c: Addr-of in phi instruction
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define void @test10c() #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test10c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test10c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test10c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test10c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%x = alloca double, align 8
|
2014-04-11 06:47:27 +08:00
|
|
|
%call = call double @testi_aux()
|
2013-01-23 14:43:53 +08:00
|
|
|
store double %call, double* %x, align 8
|
|
|
|
%cmp = fcmp ogt double %call, 3.140000e+00
|
|
|
|
br i1 %cmp, label %if.then, label %if.else
|
|
|
|
|
|
|
|
if.then: ; preds = %entry
|
2014-04-11 06:47:27 +08:00
|
|
|
%call1 = call double @testi_aux()
|
2013-01-23 14:43:53 +08:00
|
|
|
store double %call1, double* %x, align 8
|
|
|
|
br label %if.end4
|
|
|
|
|
|
|
|
if.else: ; preds = %entry
|
|
|
|
%cmp2 = fcmp ogt double %call, 1.000000e+00
|
|
|
|
br i1 %cmp2, label %if.then3, label %if.end4
|
|
|
|
|
|
|
|
if.then3: ; preds = %if.else
|
|
|
|
br label %if.end4
|
|
|
|
|
|
|
|
if.end4: ; preds = %if.else, %if.then3, %if.then
|
|
|
|
%y.0 = phi double* [ null, %if.then ], [ %x, %if.then3 ], [ null, %if.else ]
|
2015-03-14 02:20:45 +08:00
|
|
|
%call5 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), double* %y.0)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test10d: Addr-of in phi instruction
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define void @test10d() #2 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test10d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test10d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test10d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test10d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%x = alloca double, align 8
|
2014-04-11 06:47:27 +08:00
|
|
|
%call = call double @testi_aux()
|
2013-01-23 14:43:53 +08:00
|
|
|
store double %call, double* %x, align 8
|
|
|
|
%cmp = fcmp ogt double %call, 3.140000e+00
|
|
|
|
br i1 %cmp, label %if.then, label %if.else
|
|
|
|
|
|
|
|
if.then: ; preds = %entry
|
2014-04-11 06:47:27 +08:00
|
|
|
%call1 = call double @testi_aux()
|
2013-01-23 14:43:53 +08:00
|
|
|
store double %call1, double* %x, align 8
|
|
|
|
br label %if.end4
|
|
|
|
|
|
|
|
if.else: ; preds = %entry
|
|
|
|
%cmp2 = fcmp ogt double %call, 1.000000e+00
|
|
|
|
br i1 %cmp2, label %if.then3, label %if.end4
|
|
|
|
|
|
|
|
if.then3: ; preds = %if.else
|
|
|
|
br label %if.end4
|
|
|
|
|
|
|
|
if.end4: ; preds = %if.else, %if.then3, %if.then
|
|
|
|
%y.0 = phi double* [ null, %if.then ], [ %x, %if.then3 ], [ null, %if.else ]
|
2015-03-14 02:20:45 +08:00
|
|
|
%call5 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), double* %y.0)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test11a: Addr-of struct element. (GEP followed by store).
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define void @test11a() {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test11a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test11a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test11a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test11a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%c = alloca %struct.pair, align 4
|
|
|
|
%b = alloca i32*, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%y = getelementptr inbounds %struct.pair, %struct.pair* %c, i32 0, i32 1
|
2013-01-23 14:43:53 +08:00
|
|
|
store i32* %y, i32** %b, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32*, i32** %b, align 8
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i32* %0)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test11b: Addr-of struct element. (GEP followed by store).
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define void @test11b() #0 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test11b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test11b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test11b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test11b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%c = alloca %struct.pair, align 4
|
|
|
|
%b = alloca i32*, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%y = getelementptr inbounds %struct.pair, %struct.pair* %c, i32 0, i32 1
|
2013-01-23 14:43:53 +08:00
|
|
|
store i32* %y, i32** %b, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32*, i32** %b, align 8
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i32* %0)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test11c: Addr-of struct element. (GEP followed by store).
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define void @test11c() #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test11c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test11c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test11c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test11c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%c = alloca %struct.pair, align 4
|
|
|
|
%b = alloca i32*, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%y = getelementptr inbounds %struct.pair, %struct.pair* %c, i32 0, i32 1
|
2013-01-23 14:43:53 +08:00
|
|
|
store i32* %y, i32** %b, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32*, i32** %b, align 8
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i32* %0)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test11d: Addr-of struct element. (GEP followed by store).
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define void @test11d() #2 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test11d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test11d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test11d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test11d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%c = alloca %struct.pair, align 4
|
|
|
|
%b = alloca i32*, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%y = getelementptr inbounds %struct.pair, %struct.pair* %c, i32 0, i32 1
|
2013-01-23 14:43:53 +08:00
|
|
|
store i32* %y, i32** %b, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32*, i32** %b, align 8
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i32* %0)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test12a: Addr-of struct element, GEP followed by ptrtoint.
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define void @test12a() {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test12a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test12a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test12a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test12a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%c = alloca %struct.pair, align 4
|
|
|
|
%b = alloca i32*, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%y = getelementptr inbounds %struct.pair, %struct.pair* %c, i32 0, i32 1
|
2013-01-23 14:43:53 +08:00
|
|
|
%0 = ptrtoint i32* %y to i64
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i64 %0)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test12b: Addr-of struct element, GEP followed by ptrtoint.
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define void @test12b() #0 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test12b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test12b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test12b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test12b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%c = alloca %struct.pair, align 4
|
|
|
|
%b = alloca i32*, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%y = getelementptr inbounds %struct.pair, %struct.pair* %c, i32 0, i32 1
|
2013-01-23 14:43:53 +08:00
|
|
|
%0 = ptrtoint i32* %y to i64
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i64 %0)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test12c: Addr-of struct element, GEP followed by ptrtoint.
|
|
|
|
; sspstrong attribute
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define void @test12c() #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test12c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test12c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test12c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test12c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%c = alloca %struct.pair, align 4
|
|
|
|
%b = alloca i32*, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%y = getelementptr inbounds %struct.pair, %struct.pair* %c, i32 0, i32 1
|
2013-01-23 14:43:53 +08:00
|
|
|
%0 = ptrtoint i32* %y to i64
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i64 %0)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test12d: Addr-of struct element, GEP followed by ptrtoint.
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define void @test12d() #2 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test12d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test12d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test12d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test12d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%c = alloca %struct.pair, align 4
|
|
|
|
%b = alloca i32*, align 8
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%y = getelementptr inbounds %struct.pair, %struct.pair* %c, i32 0, i32 1
|
2013-01-23 14:43:53 +08:00
|
|
|
%0 = ptrtoint i32* %y to i64
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i64 %0)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test13a: Addr-of struct element, GEP followed by callinst.
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define void @test13a() {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test13a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test13a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test13a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test13a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%c = alloca %struct.pair, align 4
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%y = getelementptr inbounds %struct.pair, %struct.pair* %c, i64 0, i32 1
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32* %y)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test13b: Addr-of struct element, GEP followed by callinst.
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define void @test13b() #0 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test13b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test13b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test13b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test13b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%c = alloca %struct.pair, align 4
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%y = getelementptr inbounds %struct.pair, %struct.pair* %c, i64 0, i32 1
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32* %y)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test13c: Addr-of struct element, GEP followed by callinst.
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define void @test13c() #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test13c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test13c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test13c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test13c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%c = alloca %struct.pair, align 4
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%y = getelementptr inbounds %struct.pair, %struct.pair* %c, i64 0, i32 1
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32* %y)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test13d: Addr-of struct element, GEP followed by callinst.
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define void @test13d() #2 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test13d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test13d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test13d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test13d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%c = alloca %struct.pair, align 4
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%y = getelementptr inbounds %struct.pair, %struct.pair* %c, i64 0, i32 1
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32* %y)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test14a: Addr-of a local, optimized into a GEP (e.g., &a - 12)
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define void @test14a() {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test14a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test14a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test14a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test14a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a = alloca i32, align 4
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%add.ptr5 = getelementptr inbounds i32, i32* %a, i64 -12
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32* %add.ptr5)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test14b: Addr-of a local, optimized into a GEP (e.g., &a - 12)
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define void @test14b() #0 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test14b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test14b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test14b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test14b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a = alloca i32, align 4
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%add.ptr5 = getelementptr inbounds i32, i32* %a, i64 -12
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32* %add.ptr5)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test14c: Addr-of a local, optimized into a GEP (e.g., &a - 12)
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define void @test14c() #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test14c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test14c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test14c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test14c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a = alloca i32, align 4
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%add.ptr5 = getelementptr inbounds i32, i32* %a, i64 -12
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32* %add.ptr5)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test14d: Addr-of a local, optimized into a GEP (e.g., &a - 12)
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define void @test14d() #2 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test14d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test14d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test14d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test14d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a = alloca i32, align 4
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%add.ptr5 = getelementptr inbounds i32, i32* %a, i64 -12
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32* %add.ptr5)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test15a: Addr-of a local cast to a ptr of a different type
|
|
|
|
; (e.g., int a; ... ; float *b = &a;)
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define void @test15a() {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test15a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test15a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test15a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test15a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a = alloca i32, align 4
|
|
|
|
%b = alloca float*, align 8
|
|
|
|
store i32 0, i32* %a, align 4
|
|
|
|
%0 = bitcast i32* %a to float*
|
|
|
|
store float* %0, float** %b, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%1 = load float*, float** %b, align 8
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), float* %1)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test15b: Addr-of a local cast to a ptr of a different type
|
|
|
|
; (e.g., int a; ... ; float *b = &a;)
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define void @test15b() #0 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test15b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test15b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test15b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test15b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a = alloca i32, align 4
|
|
|
|
%b = alloca float*, align 8
|
|
|
|
store i32 0, i32* %a, align 4
|
|
|
|
%0 = bitcast i32* %a to float*
|
|
|
|
store float* %0, float** %b, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%1 = load float*, float** %b, align 8
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), float* %1)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test15c: Addr-of a local cast to a ptr of a different type
|
|
|
|
; (e.g., int a; ... ; float *b = &a;)
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define void @test15c() #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test15c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test15c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test15c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test15c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a = alloca i32, align 4
|
|
|
|
%b = alloca float*, align 8
|
|
|
|
store i32 0, i32* %a, align 4
|
|
|
|
%0 = bitcast i32* %a to float*
|
|
|
|
store float* %0, float** %b, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%1 = load float*, float** %b, align 8
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), float* %1)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test15d: Addr-of a local cast to a ptr of a different type
|
|
|
|
; (e.g., int a; ... ; float *b = &a;)
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define void @test15d() #2 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test15d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test15d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test15d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test15d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a = alloca i32, align 4
|
|
|
|
%b = alloca float*, align 8
|
|
|
|
store i32 0, i32* %a, align 4
|
|
|
|
%0 = bitcast i32* %a to float*
|
|
|
|
store float* %0, float** %b, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%1 = load float*, float** %b, align 8
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), float* %1)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test16a: Addr-of a local cast to a ptr of a different type (optimized)
|
|
|
|
; (e.g., int a; ... ; float *b = &a;)
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define void @test16a() {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test16a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test16a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test16a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test16a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a = alloca i32, align 4
|
|
|
|
store i32 0, i32* %a, align 4
|
|
|
|
%0 = bitcast i32* %a to float*
|
2014-04-11 06:47:27 +08:00
|
|
|
call void @funfloat(float* %0)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test16b: Addr-of a local cast to a ptr of a different type (optimized)
|
|
|
|
; (e.g., int a; ... ; float *b = &a;)
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define void @test16b() #0 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test16b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test16b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test16b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test16b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a = alloca i32, align 4
|
|
|
|
store i32 0, i32* %a, align 4
|
|
|
|
%0 = bitcast i32* %a to float*
|
2014-04-11 06:47:27 +08:00
|
|
|
call void @funfloat(float* %0)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test16c: Addr-of a local cast to a ptr of a different type (optimized)
|
|
|
|
; (e.g., int a; ... ; float *b = &a;)
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define void @test16c() #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test16c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test16c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test16c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test16c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a = alloca i32, align 4
|
|
|
|
store i32 0, i32* %a, align 4
|
|
|
|
%0 = bitcast i32* %a to float*
|
2014-04-11 06:47:27 +08:00
|
|
|
call void @funfloat(float* %0)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test16d: Addr-of a local cast to a ptr of a different type (optimized)
|
|
|
|
; (e.g., int a; ... ; float *b = &a;)
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define void @test16d() #2 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test16d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test16d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test16d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test16d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a = alloca i32, align 4
|
|
|
|
store i32 0, i32* %a, align 4
|
|
|
|
%0 = bitcast i32* %a to float*
|
2014-04-11 06:47:27 +08:00
|
|
|
call void @funfloat(float* %0)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test17a: Addr-of a vector nested in a struct
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define void @test17a() {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test17a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test17a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test17a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test17a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%c = alloca %struct.vec, align 16
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%y = getelementptr inbounds %struct.vec, %struct.vec* %c, i64 0, i32 0
|
|
|
|
%add.ptr = getelementptr inbounds <4 x i32>, <4 x i32>* %y, i64 -12
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), <4 x i32>* %add.ptr)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test17b: Addr-of a vector nested in a struct
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define void @test17b() #0 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test17b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test17b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test17b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test17b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%c = alloca %struct.vec, align 16
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%y = getelementptr inbounds %struct.vec, %struct.vec* %c, i64 0, i32 0
|
|
|
|
%add.ptr = getelementptr inbounds <4 x i32>, <4 x i32>* %y, i64 -12
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), <4 x i32>* %add.ptr)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test17c: Addr-of a vector nested in a struct
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define void @test17c() #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test17c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test17c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test17c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test17c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%c = alloca %struct.vec, align 16
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%y = getelementptr inbounds %struct.vec, %struct.vec* %c, i64 0, i32 0
|
|
|
|
%add.ptr = getelementptr inbounds <4 x i32>, <4 x i32>* %y, i64 -12
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), <4 x i32>* %add.ptr)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test17d: Addr-of a vector nested in a struct
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define void @test17d() #2 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test17d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test17d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test17d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test17d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%c = alloca %struct.vec, align 16
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%y = getelementptr inbounds %struct.vec, %struct.vec* %c, i64 0, i32 0
|
|
|
|
%add.ptr = getelementptr inbounds <4 x i32>, <4 x i32>* %y, i64 -12
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), <4 x i32>* %add.ptr)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test18a: Addr-of a variable passed into an invoke instruction.
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define i32 @test18a() {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test18a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test18a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test18a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test18a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a = alloca i32, align 4
|
|
|
|
%exn.slot = alloca i8*
|
|
|
|
%ehselector.slot = alloca i32
|
|
|
|
store i32 0, i32* %a, align 4
|
|
|
|
invoke void @_Z3exceptPi(i32* %a)
|
|
|
|
to label %invoke.cont unwind label %lpad
|
|
|
|
|
|
|
|
invoke.cont:
|
|
|
|
ret i32 0
|
|
|
|
|
|
|
|
lpad:
|
|
|
|
%0 = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*)
|
|
|
|
catch i8* null
|
|
|
|
ret i32 0
|
|
|
|
}
|
|
|
|
|
|
|
|
; test18b: Addr-of a variable passed into an invoke instruction.
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define i32 @test18b() #0 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test18b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test18b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test18b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test18b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a = alloca i32, align 4
|
|
|
|
%exn.slot = alloca i8*
|
|
|
|
%ehselector.slot = alloca i32
|
|
|
|
store i32 0, i32* %a, align 4
|
|
|
|
invoke void @_Z3exceptPi(i32* %a)
|
|
|
|
to label %invoke.cont unwind label %lpad
|
|
|
|
|
|
|
|
invoke.cont:
|
|
|
|
ret i32 0
|
|
|
|
|
|
|
|
lpad:
|
|
|
|
%0 = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*)
|
|
|
|
catch i8* null
|
|
|
|
ret i32 0
|
|
|
|
}
|
|
|
|
|
|
|
|
; test18c: Addr-of a variable passed into an invoke instruction.
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define i32 @test18c() #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test18c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test18c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test18c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test18c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a = alloca i32, align 4
|
|
|
|
%exn.slot = alloca i8*
|
|
|
|
%ehselector.slot = alloca i32
|
|
|
|
store i32 0, i32* %a, align 4
|
|
|
|
invoke void @_Z3exceptPi(i32* %a)
|
|
|
|
to label %invoke.cont unwind label %lpad
|
|
|
|
|
|
|
|
invoke.cont:
|
|
|
|
ret i32 0
|
|
|
|
|
|
|
|
lpad:
|
|
|
|
%0 = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*)
|
|
|
|
catch i8* null
|
|
|
|
ret i32 0
|
|
|
|
}
|
|
|
|
|
|
|
|
; test18d: Addr-of a variable passed into an invoke instruction.
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define i32 @test18d() #2 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test18d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test18d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test18d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test18d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a = alloca i32, align 4
|
|
|
|
%exn.slot = alloca i8*
|
|
|
|
%ehselector.slot = alloca i32
|
|
|
|
store i32 0, i32* %a, align 4
|
|
|
|
invoke void @_Z3exceptPi(i32* %a)
|
|
|
|
to label %invoke.cont unwind label %lpad
|
|
|
|
|
|
|
|
invoke.cont:
|
|
|
|
ret i32 0
|
|
|
|
|
|
|
|
lpad:
|
|
|
|
%0 = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*)
|
|
|
|
catch i8* null
|
|
|
|
ret i32 0
|
|
|
|
}
|
|
|
|
; test19a: Addr-of a struct element passed into an invoke instruction.
|
|
|
|
; (GEP followed by an invoke)
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define i32 @test19a() {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test19a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test19a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test19a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test19a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%c = alloca %struct.pair, align 4
|
|
|
|
%exn.slot = alloca i8*
|
|
|
|
%ehselector.slot = alloca i32
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%a = getelementptr inbounds %struct.pair, %struct.pair* %c, i32 0, i32 0
|
2013-01-23 14:43:53 +08:00
|
|
|
store i32 0, i32* %a, align 4
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%a1 = getelementptr inbounds %struct.pair, %struct.pair* %c, i32 0, i32 0
|
2013-01-23 14:43:53 +08:00
|
|
|
invoke void @_Z3exceptPi(i32* %a1)
|
|
|
|
to label %invoke.cont unwind label %lpad
|
|
|
|
|
|
|
|
invoke.cont:
|
|
|
|
ret i32 0
|
|
|
|
|
|
|
|
lpad:
|
|
|
|
%0 = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*)
|
|
|
|
catch i8* null
|
|
|
|
ret i32 0
|
|
|
|
}
|
|
|
|
|
|
|
|
; test19b: Addr-of a struct element passed into an invoke instruction.
|
|
|
|
; (GEP followed by an invoke)
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define i32 @test19b() #0 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test19b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test19b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test19b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test19b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%c = alloca %struct.pair, align 4
|
|
|
|
%exn.slot = alloca i8*
|
|
|
|
%ehselector.slot = alloca i32
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%a = getelementptr inbounds %struct.pair, %struct.pair* %c, i32 0, i32 0
|
2013-01-23 14:43:53 +08:00
|
|
|
store i32 0, i32* %a, align 4
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%a1 = getelementptr inbounds %struct.pair, %struct.pair* %c, i32 0, i32 0
|
2013-01-23 14:43:53 +08:00
|
|
|
invoke void @_Z3exceptPi(i32* %a1)
|
|
|
|
to label %invoke.cont unwind label %lpad
|
|
|
|
|
|
|
|
invoke.cont:
|
|
|
|
ret i32 0
|
|
|
|
|
|
|
|
lpad:
|
|
|
|
%0 = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*)
|
|
|
|
catch i8* null
|
|
|
|
ret i32 0
|
|
|
|
}
|
|
|
|
|
|
|
|
; test19c: Addr-of a struct element passed into an invoke instruction.
|
|
|
|
; (GEP followed by an invoke)
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define i32 @test19c() #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test19c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test19c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test19c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test19c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%c = alloca %struct.pair, align 4
|
|
|
|
%exn.slot = alloca i8*
|
|
|
|
%ehselector.slot = alloca i32
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%a = getelementptr inbounds %struct.pair, %struct.pair* %c, i32 0, i32 0
|
2013-01-23 14:43:53 +08:00
|
|
|
store i32 0, i32* %a, align 4
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%a1 = getelementptr inbounds %struct.pair, %struct.pair* %c, i32 0, i32 0
|
2013-01-23 14:43:53 +08:00
|
|
|
invoke void @_Z3exceptPi(i32* %a1)
|
|
|
|
to label %invoke.cont unwind label %lpad
|
|
|
|
|
|
|
|
invoke.cont:
|
|
|
|
ret i32 0
|
|
|
|
|
|
|
|
lpad:
|
|
|
|
%0 = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*)
|
|
|
|
catch i8* null
|
|
|
|
ret i32 0
|
|
|
|
}
|
|
|
|
|
|
|
|
; test19d: Addr-of a struct element passed into an invoke instruction.
|
|
|
|
; (GEP followed by an invoke)
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define i32 @test19d() #2 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test19d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
2013-08-10 05:26:18 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
2013-01-23 14:43:53 +08:00
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test19d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
2013-08-10 05:26:18 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
2013-01-23 14:43:53 +08:00
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test19d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
2013-08-10 05:26:18 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq ___stack_chk_fail
|
2013-01-23 14:43:53 +08:00
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test19d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
2013-08-10 05:26:18 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
2013-01-23 14:43:53 +08:00
|
|
|
%c = alloca %struct.pair, align 4
|
|
|
|
%exn.slot = alloca i8*
|
|
|
|
%ehselector.slot = alloca i32
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%a = getelementptr inbounds %struct.pair, %struct.pair* %c, i32 0, i32 0
|
2013-01-23 14:43:53 +08:00
|
|
|
store i32 0, i32* %a, align 4
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%a1 = getelementptr inbounds %struct.pair, %struct.pair* %c, i32 0, i32 0
|
2013-01-23 14:43:53 +08:00
|
|
|
invoke void @_Z3exceptPi(i32* %a1)
|
|
|
|
to label %invoke.cont unwind label %lpad
|
|
|
|
|
|
|
|
invoke.cont:
|
|
|
|
ret i32 0
|
|
|
|
|
|
|
|
lpad:
|
|
|
|
%0 = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*)
|
|
|
|
catch i8* null
|
|
|
|
ret i32 0
|
|
|
|
}
|
|
|
|
|
|
|
|
; test20a: Addr-of a pointer
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define void @test20a() {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test20a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test20a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test20a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test20a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a = alloca i32*, align 8
|
|
|
|
%b = alloca i32**, align 8
|
|
|
|
%call = call i32* @getp()
|
|
|
|
store i32* %call, i32** %a, align 8
|
|
|
|
store i32** %a, i32*** %b, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32**, i32*** %b, align 8
|
2013-01-23 14:43:53 +08:00
|
|
|
call void @funcall2(i32** %0)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test20b: Addr-of a pointer
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define void @test20b() #0 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test20b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test20b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test20b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test20b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a = alloca i32*, align 8
|
|
|
|
%b = alloca i32**, align 8
|
|
|
|
%call = call i32* @getp()
|
|
|
|
store i32* %call, i32** %a, align 8
|
|
|
|
store i32** %a, i32*** %b, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32**, i32*** %b, align 8
|
2013-01-23 14:43:53 +08:00
|
|
|
call void @funcall2(i32** %0)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test20c: Addr-of a pointer
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define void @test20c() #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test20c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test20c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test20c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test20c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a = alloca i32*, align 8
|
|
|
|
%b = alloca i32**, align 8
|
|
|
|
%call = call i32* @getp()
|
|
|
|
store i32* %call, i32** %a, align 8
|
|
|
|
store i32** %a, i32*** %b, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32**, i32*** %b, align 8
|
2013-01-23 14:43:53 +08:00
|
|
|
call void @funcall2(i32** %0)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test20d: Addr-of a pointer
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define void @test20d() #2 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test20d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test20d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test20d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test20d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a = alloca i32*, align 8
|
|
|
|
%b = alloca i32**, align 8
|
|
|
|
%call = call i32* @getp()
|
|
|
|
store i32* %call, i32** %a, align 8
|
|
|
|
store i32** %a, i32*** %b, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32**, i32*** %b, align 8
|
2013-01-23 14:43:53 +08:00
|
|
|
call void @funcall2(i32** %0)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test21a: Addr-of a casted pointer
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define void @test21a() {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test21a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test21a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test21a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test21a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a = alloca i32*, align 8
|
|
|
|
%b = alloca float**, align 8
|
|
|
|
%call = call i32* @getp()
|
|
|
|
store i32* %call, i32** %a, align 8
|
|
|
|
%0 = bitcast i32** %a to float**
|
|
|
|
store float** %0, float*** %b, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%1 = load float**, float*** %b, align 8
|
2013-01-23 14:43:53 +08:00
|
|
|
call void @funfloat2(float** %1)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test21b: Addr-of a casted pointer
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define void @test21b() #0 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test21b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test21b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test21b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test21b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a = alloca i32*, align 8
|
|
|
|
%b = alloca float**, align 8
|
|
|
|
%call = call i32* @getp()
|
|
|
|
store i32* %call, i32** %a, align 8
|
|
|
|
%0 = bitcast i32** %a to float**
|
|
|
|
store float** %0, float*** %b, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%1 = load float**, float*** %b, align 8
|
2013-01-23 14:43:53 +08:00
|
|
|
call void @funfloat2(float** %1)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test21c: Addr-of a casted pointer
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define void @test21c() #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test21c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test21c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test21c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test21c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a = alloca i32*, align 8
|
|
|
|
%b = alloca float**, align 8
|
|
|
|
%call = call i32* @getp()
|
|
|
|
store i32* %call, i32** %a, align 8
|
|
|
|
%0 = bitcast i32** %a to float**
|
|
|
|
store float** %0, float*** %b, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%1 = load float**, float*** %b, align 8
|
2013-01-23 14:43:53 +08:00
|
|
|
call void @funfloat2(float** %1)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test21d: Addr-of a casted pointer
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define void @test21d() #2 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test21d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test21d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test21d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test21d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a = alloca i32*, align 8
|
|
|
|
%b = alloca float**, align 8
|
|
|
|
%call = call i32* @getp()
|
|
|
|
store i32* %call, i32** %a, align 8
|
|
|
|
%0 = bitcast i32** %a to float**
|
|
|
|
store float** %0, float*** %b, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%1 = load float**, float*** %b, align 8
|
2013-01-23 14:43:53 +08:00
|
|
|
call void @funfloat2(float** %1)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test22a: [2 x i8] in a class
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define signext i8 @test22a() {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test22a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test22a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test22a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test22a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a = alloca %class.A, align 1
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%array = getelementptr inbounds %class.A, %class.A* %a, i32 0, i32 0
|
|
|
|
%arrayidx = getelementptr inbounds [2 x i8], [2 x i8]* %array, i32 0, i64 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8, i8* %arrayidx, align 1
|
2013-01-23 14:43:53 +08:00
|
|
|
ret i8 %0
|
|
|
|
}
|
|
|
|
|
|
|
|
; test22b: [2 x i8] in a class
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define signext i8 @test22b() #0 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test22b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test22b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test22b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test22b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a = alloca %class.A, align 1
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%array = getelementptr inbounds %class.A, %class.A* %a, i32 0, i32 0
|
|
|
|
%arrayidx = getelementptr inbounds [2 x i8], [2 x i8]* %array, i32 0, i64 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8, i8* %arrayidx, align 1
|
2013-01-23 14:43:53 +08:00
|
|
|
ret i8 %0
|
|
|
|
}
|
|
|
|
|
|
|
|
; test22c: [2 x i8] in a class
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define signext i8 @test22c() #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test22c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test22c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test22c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test22c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a = alloca %class.A, align 1
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%array = getelementptr inbounds %class.A, %class.A* %a, i32 0, i32 0
|
|
|
|
%arrayidx = getelementptr inbounds [2 x i8], [2 x i8]* %array, i32 0, i64 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8, i8* %arrayidx, align 1
|
2013-01-23 14:43:53 +08:00
|
|
|
ret i8 %0
|
|
|
|
}
|
|
|
|
|
|
|
|
; test22d: [2 x i8] in a class
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define signext i8 @test22d() #2 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test22d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test22d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test22d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test22d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a = alloca %class.A, align 1
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%array = getelementptr inbounds %class.A, %class.A* %a, i32 0, i32 0
|
|
|
|
%arrayidx = getelementptr inbounds [2 x i8], [2 x i8]* %array, i32 0, i64 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8, i8* %arrayidx, align 1
|
2013-01-23 14:43:53 +08:00
|
|
|
ret i8 %0
|
|
|
|
}
|
|
|
|
|
|
|
|
; test23a: [2 x i8] nested in several layers of structs and unions
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define signext i8 @test23a() {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test23a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test23a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test23a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test23a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%x = alloca %struct.deep, align 1
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%b = getelementptr inbounds %struct.deep, %struct.deep* %x, i32 0, i32 0
|
2013-01-23 14:43:53 +08:00
|
|
|
%c = bitcast %union.anon* %b to %struct.anon*
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%d = getelementptr inbounds %struct.anon, %struct.anon* %c, i32 0, i32 0
|
|
|
|
%e = getelementptr inbounds %struct.anon.0, %struct.anon.0* %d, i32 0, i32 0
|
2013-01-23 14:43:53 +08:00
|
|
|
%array = bitcast %union.anon.1* %e to [2 x i8]*
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arrayidx = getelementptr inbounds [2 x i8], [2 x i8]* %array, i32 0, i64 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8, i8* %arrayidx, align 1
|
2013-01-23 14:43:53 +08:00
|
|
|
ret i8 %0
|
|
|
|
}
|
|
|
|
|
|
|
|
; test23b: [2 x i8] nested in several layers of structs and unions
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define signext i8 @test23b() #0 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test23b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test23b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test23b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test23b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%x = alloca %struct.deep, align 1
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%b = getelementptr inbounds %struct.deep, %struct.deep* %x, i32 0, i32 0
|
2013-01-23 14:43:53 +08:00
|
|
|
%c = bitcast %union.anon* %b to %struct.anon*
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%d = getelementptr inbounds %struct.anon, %struct.anon* %c, i32 0, i32 0
|
|
|
|
%e = getelementptr inbounds %struct.anon.0, %struct.anon.0* %d, i32 0, i32 0
|
2013-01-23 14:43:53 +08:00
|
|
|
%array = bitcast %union.anon.1* %e to [2 x i8]*
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arrayidx = getelementptr inbounds [2 x i8], [2 x i8]* %array, i32 0, i64 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8, i8* %arrayidx, align 1
|
2013-01-23 14:43:53 +08:00
|
|
|
ret i8 %0
|
|
|
|
}
|
|
|
|
|
|
|
|
; test23c: [2 x i8] nested in several layers of structs and unions
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define signext i8 @test23c() #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test23c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test23c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test23c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test23c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%x = alloca %struct.deep, align 1
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%b = getelementptr inbounds %struct.deep, %struct.deep* %x, i32 0, i32 0
|
2013-01-23 14:43:53 +08:00
|
|
|
%c = bitcast %union.anon* %b to %struct.anon*
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%d = getelementptr inbounds %struct.anon, %struct.anon* %c, i32 0, i32 0
|
|
|
|
%e = getelementptr inbounds %struct.anon.0, %struct.anon.0* %d, i32 0, i32 0
|
2013-01-23 14:43:53 +08:00
|
|
|
%array = bitcast %union.anon.1* %e to [2 x i8]*
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arrayidx = getelementptr inbounds [2 x i8], [2 x i8]* %array, i32 0, i64 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8, i8* %arrayidx, align 1
|
2013-01-23 14:43:53 +08:00
|
|
|
ret i8 %0
|
|
|
|
}
|
|
|
|
|
|
|
|
; test23d: [2 x i8] nested in several layers of structs and unions
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define signext i8 @test23d() #2 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test23d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test23d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test23d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test23d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%x = alloca %struct.deep, align 1
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%b = getelementptr inbounds %struct.deep, %struct.deep* %x, i32 0, i32 0
|
2013-01-23 14:43:53 +08:00
|
|
|
%c = bitcast %union.anon* %b to %struct.anon*
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%d = getelementptr inbounds %struct.anon, %struct.anon* %c, i32 0, i32 0
|
|
|
|
%e = getelementptr inbounds %struct.anon.0, %struct.anon.0* %d, i32 0, i32 0
|
2013-01-23 14:43:53 +08:00
|
|
|
%array = bitcast %union.anon.1* %e to [2 x i8]*
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arrayidx = getelementptr inbounds [2 x i8], [2 x i8]* %array, i32 0, i64 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i8, i8* %arrayidx, align 1
|
2013-01-23 14:43:53 +08:00
|
|
|
ret i8 %0
|
|
|
|
}
|
|
|
|
|
|
|
|
; test24a: Variable sized alloca
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define void @test24a(i32 %n) {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test24a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test24a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test24a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test24a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%n.addr = alloca i32, align 4
|
|
|
|
%a = alloca i32*, align 8
|
|
|
|
store i32 %n, i32* %n.addr, align 4
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32, i32* %n.addr, align 4
|
2013-01-23 14:43:53 +08:00
|
|
|
%conv = sext i32 %0 to i64
|
|
|
|
%1 = alloca i8, i64 %conv
|
|
|
|
%2 = bitcast i8* %1 to i32*
|
|
|
|
store i32* %2, i32** %a, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test24b: Variable sized alloca
|
|
|
|
; ssp attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define void @test24b(i32 %n) #0 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test24b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test24b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test24b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test24b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%n.addr = alloca i32, align 4
|
|
|
|
%a = alloca i32*, align 8
|
|
|
|
store i32 %n, i32* %n.addr, align 4
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32, i32* %n.addr, align 4
|
2013-01-23 14:43:53 +08:00
|
|
|
%conv = sext i32 %0 to i64
|
|
|
|
%1 = alloca i8, i64 %conv
|
|
|
|
%2 = bitcast i8* %1 to i32*
|
|
|
|
store i32* %2, i32** %a, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test24c: Variable sized alloca
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define void @test24c(i32 %n) #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test24c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test24c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test24c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test24c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%n.addr = alloca i32, align 4
|
|
|
|
%a = alloca i32*, align 8
|
|
|
|
store i32 %n, i32* %n.addr, align 4
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32, i32* %n.addr, align 4
|
2013-01-23 14:43:53 +08:00
|
|
|
%conv = sext i32 %0 to i64
|
|
|
|
%1 = alloca i8, i64 %conv
|
|
|
|
%2 = bitcast i8* %1 to i32*
|
|
|
|
store i32* %2, i32** %a, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test24d: Variable sized alloca
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define void @test24d(i32 %n) #2 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test24d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test24d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test24d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test24d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%n.addr = alloca i32, align 4
|
|
|
|
%a = alloca i32*, align 8
|
|
|
|
store i32 %n, i32* %n.addr, align 4
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32, i32* %n.addr, align 4
|
2013-01-23 14:43:53 +08:00
|
|
|
%conv = sext i32 %0 to i64
|
|
|
|
%1 = alloca i8, i64 %conv
|
|
|
|
%2 = bitcast i8* %1 to i32*
|
|
|
|
store i32* %2, i32** %a, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test25a: array of [4 x i32]
|
|
|
|
; no ssp attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
define i32 @test25a() {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test25a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test25a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test25a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test25a:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%a = alloca [4 x i32], align 16
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arrayidx = getelementptr inbounds [4 x i32], [4 x i32]* %a, i32 0, i64 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32, i32* %arrayidx, align 4
|
2013-01-23 14:43:53 +08:00
|
|
|
ret i32 %0
|
|
|
|
}
|
|
|
|
|
|
|
|
; test25b: array of [4 x i32]
|
|
|
|
; ssp attribute
|
|
|
|
; Requires no protector, except for Darwin which _does_ require a protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: ssp
|
|
|
|
define i32 @test25b() #0 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test25b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test25b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test25b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test25b:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a = alloca [4 x i32], align 16
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arrayidx = getelementptr inbounds [4 x i32], [4 x i32]* %a, i32 0, i64 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32, i32* %arrayidx, align 4
|
2013-01-23 14:43:53 +08:00
|
|
|
ret i32 %0
|
|
|
|
}
|
|
|
|
|
|
|
|
; test25c: array of [4 x i32]
|
|
|
|
; sspstrong attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define i32 @test25c() #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test25c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test25c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test25c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test25c:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a = alloca [4 x i32], align 16
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arrayidx = getelementptr inbounds [4 x i32], [4 x i32]* %a, i32 0, i64 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32, i32* %arrayidx, align 4
|
2013-01-23 14:43:53 +08:00
|
|
|
ret i32 %0
|
|
|
|
}
|
|
|
|
|
|
|
|
; test25d: array of [4 x i32]
|
|
|
|
; sspreq attribute
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspreq
|
|
|
|
define i32 @test25d() #2 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test25d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test25d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test25d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test25d:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%a = alloca [4 x i32], align 16
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arrayidx = getelementptr inbounds [4 x i32], [4 x i32]* %a, i32 0, i64 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32, i32* %arrayidx, align 4
|
2013-01-23 14:43:53 +08:00
|
|
|
ret i32 %0
|
|
|
|
}
|
|
|
|
|
|
|
|
; test26: Nested structure, no arrays, no address-of expressions.
|
|
|
|
; Verify that the resulting gep-of-gep does not incorrectly trigger
|
|
|
|
; a stack protector.
|
|
|
|
; ssptrong attribute
|
|
|
|
; Requires no protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define void @test26() #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test26:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test26:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test26:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test26:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%c = alloca %struct.nest, align 4
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%b = getelementptr inbounds %struct.nest, %struct.nest* %c, i32 0, i32 1
|
|
|
|
%_a = getelementptr inbounds %struct.pair, %struct.pair* %b, i32 0, i32 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32, i32* %_a, align 4
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i32 %0)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; test27: Address-of a structure taken in a function with a loop where
|
|
|
|
; the alloca is an incoming value to a PHI node and a use of that PHI
|
|
|
|
; node is also an incoming value.
|
|
|
|
; Verify that the address-of analysis does not get stuck in infinite
|
|
|
|
; recursion when chasing the alloca through the PHI nodes.
|
|
|
|
; Requires protector.
|
2014-04-11 06:47:27 +08:00
|
|
|
; Function Attrs: sspstrong
|
|
|
|
define i32 @test27(i32 %arg) #1 {
|
2013-01-23 14:43:53 +08:00
|
|
|
bb:
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-I386-LABEL: test27:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-X64-LABEL: test27:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; LINUX-KERNEL-X64-LABEL: test27:
|
2013-01-23 14:43:53 +08:00
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
2013-07-14 14:24:09 +08:00
|
|
|
; DARWIN-X64-LABEL: test27:
|
2013-01-23 14:43:53 +08:00
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%tmp = alloca %struct.small*, align 8
|
2014-04-11 06:47:27 +08:00
|
|
|
%tmp1 = call i32 (...)* @dummy(%struct.small** %tmp)
|
2015-02-28 05:17:42 +08:00
|
|
|
%tmp2 = load %struct.small*, %struct.small** %tmp, align 8
|
2013-01-23 14:43:53 +08:00
|
|
|
%tmp3 = ptrtoint %struct.small* %tmp2 to i64
|
|
|
|
%tmp4 = trunc i64 %tmp3 to i32
|
|
|
|
%tmp5 = icmp sgt i32 %tmp4, 0
|
|
|
|
br i1 %tmp5, label %bb6, label %bb21
|
|
|
|
|
|
|
|
bb6: ; preds = %bb17, %bb
|
|
|
|
%tmp7 = phi %struct.small* [ %tmp19, %bb17 ], [ %tmp2, %bb ]
|
|
|
|
%tmp8 = phi i64 [ %tmp20, %bb17 ], [ 1, %bb ]
|
|
|
|
%tmp9 = phi i32 [ %tmp14, %bb17 ], [ %tmp1, %bb ]
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%tmp10 = getelementptr inbounds %struct.small, %struct.small* %tmp7, i64 0, i32 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%tmp11 = load i8, i8* %tmp10, align 1
|
2013-01-23 14:43:53 +08:00
|
|
|
%tmp12 = icmp eq i8 %tmp11, 1
|
|
|
|
%tmp13 = add nsw i32 %tmp9, 8
|
|
|
|
%tmp14 = select i1 %tmp12, i32 %tmp13, i32 %tmp9
|
|
|
|
%tmp15 = trunc i64 %tmp8 to i32
|
|
|
|
%tmp16 = icmp eq i32 %tmp15, %tmp4
|
|
|
|
br i1 %tmp16, label %bb21, label %bb17
|
|
|
|
|
|
|
|
bb17: ; preds = %bb6
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%tmp18 = getelementptr inbounds %struct.small*, %struct.small** %tmp, i64 %tmp8
|
2015-02-28 05:17:42 +08:00
|
|
|
%tmp19 = load %struct.small*, %struct.small** %tmp18, align 8
|
2013-01-23 14:43:53 +08:00
|
|
|
%tmp20 = add i64 %tmp8, 1
|
|
|
|
br label %bb6
|
|
|
|
|
|
|
|
bb21: ; preds = %bb6, %bb
|
|
|
|
%tmp22 = phi i32 [ %tmp1, %bb ], [ %tmp14, %bb6 ]
|
2014-04-11 06:47:27 +08:00
|
|
|
%tmp23 = call i32 (...)* @dummy(i32 %tmp22)
|
2013-01-23 14:43:53 +08:00
|
|
|
ret i32 undef
|
|
|
|
}
|
|
|
|
|
2014-04-18 03:08:36 +08:00
|
|
|
; test28a: An array of [32 x i8] and a requested ssp-buffer-size of 33.
|
|
|
|
; Requires no protector.
|
|
|
|
; Function Attrs: ssp stack-protector-buffer-size=33
|
|
|
|
define i32 @test28a() #3 {
|
|
|
|
entry:
|
|
|
|
; LINUX-I386-LABEL: test28a:
|
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
|
|
|
; LINUX-X64-LABEL: test28a:
|
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
|
|
|
; LINUX-KERNEL-X64-LABEL: test28a:
|
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
|
|
|
; DARWIN-X64-LABEL: test28a:
|
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%test = alloca [32 x i8], align 16
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arraydecay = getelementptr inbounds [32 x i8], [32 x i8]* %test, i32 0, i32 0
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %arraydecay)
|
2014-04-18 03:08:36 +08:00
|
|
|
ret i32 %call
|
|
|
|
}
|
|
|
|
|
|
|
|
; test28b: An array of [33 x i8] and a requested ssp-buffer-size of 33.
|
|
|
|
; Requires protector.
|
|
|
|
; Function Attrs: ssp stack-protector-buffer-size=33
|
|
|
|
define i32 @test28b() #3 {
|
|
|
|
entry:
|
|
|
|
; LINUX-I386-LABEL: test28b:
|
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
|
|
|
; LINUX-X64-LABEL: test28b:
|
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
|
|
|
; LINUX-KERNEL-X64-LABEL: test28b:
|
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
|
|
|
; DARWIN-X64-LABEL: test28b:
|
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%test = alloca [33 x i8], align 16
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arraydecay = getelementptr inbounds [33 x i8], [33 x i8]* %test, i32 0, i32 0
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %arraydecay)
|
2014-04-18 03:08:36 +08:00
|
|
|
ret i32 %call
|
|
|
|
}
|
|
|
|
|
|
|
|
; test29a: An array of [4 x i8] and a requested ssp-buffer-size of 5.
|
|
|
|
; Requires no protector.
|
|
|
|
; Function Attrs: ssp stack-protector-buffer-size=5
|
|
|
|
define i32 @test29a() #4 {
|
|
|
|
entry:
|
|
|
|
; LINUX-I386-LABEL: test29a:
|
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
|
|
|
; LINUX-X64-LABEL: test29a:
|
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
|
|
|
; LINUX-KERNEL-X64-LABEL: test29a:
|
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
|
|
|
; DARWIN-X64-LABEL: test29a:
|
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%test = alloca [4 x i8], align 1
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arraydecay = getelementptr inbounds [4 x i8], [4 x i8]* %test, i32 0, i32 0
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %arraydecay)
|
2014-04-18 03:08:36 +08:00
|
|
|
ret i32 %call
|
|
|
|
}
|
|
|
|
|
|
|
|
; test29b: An array of [5 x i8] and a requested ssp-buffer-size of 5.
|
|
|
|
; Requires protector.
|
|
|
|
; Function Attrs: ssp stack-protector-buffer-size=5
|
|
|
|
define i32 @test29b() #4 {
|
|
|
|
entry:
|
|
|
|
; LINUX-I386-LABEL: test29b:
|
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
|
|
|
; LINUX-X64-LABEL: test29b:
|
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
|
|
|
; LINUX-KERNEL-X64-LABEL: test29b:
|
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
|
|
|
; DARWIN-X64-LABEL: test29b:
|
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%test = alloca [5 x i8], align 1
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%arraydecay = getelementptr inbounds [5 x i8], [5 x i8]* %test, i32 0, i32 0
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %arraydecay)
|
2014-04-18 03:08:36 +08:00
|
|
|
ret i32 %call
|
|
|
|
}
|
|
|
|
|
|
|
|
; test30a: An structure containing an i32 and an array of [5 x i8].
|
|
|
|
; Requested ssp-buffer-size of 6.
|
|
|
|
; Requires no protector.
|
|
|
|
; Function Attrs: ssp stack-protector-buffer-size=6
|
|
|
|
define i32 @test30a() #5 {
|
|
|
|
entry:
|
|
|
|
; LINUX-I386-LABEL: test30a:
|
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
|
|
|
; LINUX-X64-LABEL: test30a:
|
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
|
|
|
; LINUX-KERNEL-X64-LABEL: test30a:
|
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
|
|
|
; DARWIN-X64-LABEL: test30a:
|
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%test = alloca %struct.small_char, align 4
|
|
|
|
%test.coerce = alloca { i64, i8 }
|
|
|
|
%0 = bitcast { i64, i8 }* %test.coerce to i8*
|
|
|
|
%1 = bitcast %struct.small_char* %test to i8*
|
|
|
|
call void @llvm.memcpy.p0i8.p0i8.i64(i8* %0, i8* %1, i64 12, i32 0, i1 false)
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%2 = getelementptr { i64, i8 }, { i64, i8 }* %test.coerce, i32 0, i32 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%3 = load i64, i64* %2, align 1
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%4 = getelementptr { i64, i8 }, { i64, i8 }* %test.coerce, i32 0, i32 1
|
2015-02-28 05:17:42 +08:00
|
|
|
%5 = load i8, i8* %4, align 1
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i64 %3, i8 %5)
|
2014-04-18 03:08:36 +08:00
|
|
|
ret i32 %call
|
|
|
|
}
|
|
|
|
|
|
|
|
; test30b: An structure containing an i32 and an array of [5 x i8].
|
|
|
|
; Requested ssp-buffer-size of 5.
|
|
|
|
; Requires protector.
|
|
|
|
; Function Attrs: ssp stack-protector-buffer-size=5
|
|
|
|
define i32 @test30b() #4 {
|
|
|
|
entry:
|
|
|
|
; LINUX-I386-LABEL: test30b:
|
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
|
|
|
; LINUX-X64-LABEL: test30b:
|
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
|
|
|
; LINUX-KERNEL-X64-LABEL: test30b:
|
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
|
|
|
; DARWIN-X64-LABEL: test30b:
|
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%test = alloca %struct.small_char, align 4
|
|
|
|
%test.coerce = alloca { i64, i8 }
|
|
|
|
%0 = bitcast { i64, i8 }* %test.coerce to i8*
|
|
|
|
%1 = bitcast %struct.small_char* %test to i8*
|
|
|
|
call void @llvm.memcpy.p0i8.p0i8.i64(i8* %0, i8* %1, i64 12, i32 0, i1 false)
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%2 = getelementptr { i64, i8 }, { i64, i8 }* %test.coerce, i32 0, i32 0
|
2015-02-28 05:17:42 +08:00
|
|
|
%3 = load i64, i64* %2, align 1
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%4 = getelementptr { i64, i8 }, { i64, i8 }* %test.coerce, i32 0, i32 1
|
2015-02-28 05:17:42 +08:00
|
|
|
%5 = load i8, i8* %4, align 1
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i64 %3, i8 %5)
|
2014-04-18 03:08:36 +08:00
|
|
|
ret i32 %call
|
|
|
|
}
|
|
|
|
|
|
|
|
; test31a: An alloca of size 5.
|
|
|
|
; Requested ssp-buffer-size of 6.
|
|
|
|
; Requires no protector.
|
|
|
|
; Function Attrs: ssp stack-protector-buffer-size=6
|
|
|
|
define i32 @test31a() #5 {
|
|
|
|
entry:
|
|
|
|
; LINUX-I386-LABEL: test31a:
|
|
|
|
; LINUX-I386-NOT: calll __stack_chk_fail
|
|
|
|
; LINUX-I386: .cfi_endproc
|
|
|
|
|
|
|
|
; LINUX-X64-LABEL: test31a:
|
|
|
|
; LINUX-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-X64: .cfi_endproc
|
|
|
|
|
|
|
|
; LINUX-KERNEL-X64-LABEL: test31a:
|
|
|
|
; LINUX-KERNEL-X64-NOT: callq __stack_chk_fail
|
|
|
|
; LINUX-KERNEL-X64: .cfi_endproc
|
|
|
|
|
|
|
|
; DARWIN-X64-LABEL: test31a:
|
|
|
|
; DARWIN-X64-NOT: callq ___stack_chk_fail
|
|
|
|
; DARWIN-X64: .cfi_endproc
|
|
|
|
%test = alloca i8*, align 8
|
|
|
|
%0 = alloca i8, i64 4
|
|
|
|
store i8* %0, i8** %test, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%1 = load i8*, i8** %test, align 8
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %1)
|
2014-04-18 03:08:36 +08:00
|
|
|
ret i32 %call
|
|
|
|
}
|
|
|
|
|
|
|
|
; test31b: An alloca of size 5.
|
|
|
|
; Requested ssp-buffer-size of 5.
|
|
|
|
; Requires protector.
|
|
|
|
define i32 @test31b() #4 {
|
|
|
|
entry:
|
|
|
|
; LINUX-I386-LABEL: test31b:
|
|
|
|
; LINUX-I386: mov{{l|q}} %gs:
|
|
|
|
; LINUX-I386: calll __stack_chk_fail
|
|
|
|
|
|
|
|
; LINUX-X64-LABEL: test31b:
|
|
|
|
; LINUX-X64: mov{{l|q}} %fs:
|
|
|
|
; LINUX-X64: callq __stack_chk_fail
|
|
|
|
|
|
|
|
; LINUX-KERNEL-X64-LABEL: test31b:
|
|
|
|
; LINUX-KERNEL-X64: mov{{l|q}} %gs:
|
|
|
|
; LINUX-KERNEL-X64: callq __stack_chk_fail
|
|
|
|
|
|
|
|
; DARWIN-X64-LABEL: test31b:
|
|
|
|
; DARWIN-X64: mov{{l|q}} ___stack_chk_guard
|
|
|
|
; DARWIN-X64: callq ___stack_chk_fail
|
|
|
|
%test = alloca i8*, align 8
|
|
|
|
%0 = alloca i8, i64 5
|
|
|
|
store i8* %0, i8** %test, align 8
|
2015-02-28 05:17:42 +08:00
|
|
|
%1 = load i8*, i8** %test, align 8
|
2015-03-14 02:20:45 +08:00
|
|
|
%call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* %1)
|
2014-04-18 03:08:36 +08:00
|
|
|
ret i32 %call
|
|
|
|
}
|
|
|
|
|
2013-01-23 14:43:53 +08:00
|
|
|
declare double @testi_aux()
|
2013-01-23 14:41:41 +08:00
|
|
|
declare i8* @strcpy(i8*, i8*)
|
|
|
|
declare i32 @printf(i8*, ...)
|
2013-01-23 14:43:53 +08:00
|
|
|
declare void @funcall(i32*)
|
|
|
|
declare void @funcall2(i32**)
|
|
|
|
declare void @funfloat(float*)
|
|
|
|
declare void @funfloat2(float**)
|
|
|
|
declare void @_Z3exceptPi(i32*)
|
|
|
|
declare i32 @__gxx_personality_v0(...)
|
|
|
|
declare i32* @getp()
|
|
|
|
declare i32 @dummy(...)
|
2014-04-18 03:08:36 +08:00
|
|
|
declare void @llvm.memcpy.p0i8.p0i8.i64(i8* nocapture, i8* nocapture readonly, i64, i32, i1)
|
2014-04-11 06:47:27 +08:00
|
|
|
|
|
|
|
attributes #0 = { ssp }
|
|
|
|
attributes #1 = { sspstrong }
|
|
|
|
attributes #2 = { sspreq }
|
2014-04-18 03:08:36 +08:00
|
|
|
attributes #3 = { ssp "stack-protector-buffer-size"="33" }
|
|
|
|
attributes #4 = { ssp "stack-protector-buffer-size"="5" }
|
|
|
|
attributes #5 = { ssp "stack-protector-buffer-size"="6" }
|