2011-09-07 17:21:38 +08:00
; RUN: opt -instcombine -S < %s | FileCheck %s
declare void @llvm.init.trampoline ( i8 * , i8 * , i8 * )
declare i8 * @llvm.adjust.trampoline ( i8 * )
declare i32 @f ( i8 * nest , i32 )
; Most common case
2017-12-21 01:16:59 +08:00
define i32 @test0 ( i32 %n ) !dbg !4 {
2011-09-07 17:21:38 +08:00
%alloca = alloca [ 10 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
%gep = getelementptr [ 10 x i8 ] , [ 10 x i8 ] * %alloca , i32 0 , i32 0
2011-09-07 17:21:38 +08:00
call void @llvm.init.trampoline ( i8 * %gep , i8 * bitcast ( i32 ( i8 * , i32 ) * @f to i8 * ) ,
i8 * null )
%tramp = call i8 * @llvm.adjust.trampoline ( i8 * %gep )
%function = bitcast i8 * %tramp to i32 ( i32 ) *
2017-12-21 01:16:59 +08:00
%ret = call i32 %function ( i32 %n ) , !dbg !10
2011-09-07 17:21:38 +08:00
ret i32 %ret
2017-12-21 01:16:59 +08:00
; CHECK: define i32 @test0(i32 %n) !dbg !4 {
; CHECK: %ret = call i32 @f(i8* nest null, i32 %n), !dbg !10
2011-09-07 17:21:38 +08:00
}
define i32 @test1 ( i32 %n , i8 * %trampmem ) {
call void @llvm.init.trampoline ( i8 * %trampmem ,
i8 * bitcast ( i32 ( i8 * , i32 ) * @f to i8 * ) ,
i8 * null )
%tramp = call i8 * @llvm.adjust.trampoline ( i8 * %trampmem )
%function = bitcast i8 * %tramp to i32 ( i32 ) *
%ret = call i32 %function ( i32 %n )
ret i32 %ret
; CHECK: define i32 @test1(i32 %n, i8* %trampmem) {
; CHECK: %ret = call i32 @f(i8* nest null, i32 %n)
}
define i32 @test2 ( i32 %n , i8 * %trampmem ) {
%tramp = call i8 * @llvm.adjust.trampoline ( i8 * %trampmem )
%functiona = bitcast i8 * %tramp to i32 ( i32 ) *
%ret = call i32 %functiona ( i32 %n )
ret i32 %ret
; CHECK: define i32 @test2(i32 %n, i8* %trampmem) {
; CHECK: %ret = call i32 %functiona(i32 %n)
}
define i32 @test3 ( i32 %n , i8 * %trampmem ) {
call void @llvm.init.trampoline ( i8 * %trampmem ,
i8 * bitcast ( i32 ( i8 * , i32 ) * @f to i8 * ) ,
i8 * null )
; CHECK: define i32 @test3(i32 %n, i8* %trampmem) {
; CHECK: %ret0 = call i32 @f(i8* nest null, i32 %n)
%tramp0 = call i8 * @llvm.adjust.trampoline ( i8 * %trampmem )
%function0 = bitcast i8 * %tramp0 to i32 ( i32 ) *
%ret0 = call i32 %function0 ( i32 %n )
;; Not optimized since previous call could be writing.
%tramp1 = call i8 * @llvm.adjust.trampoline ( i8 * %trampmem )
%function1 = bitcast i8 * %tramp1 to i32 ( i32 ) *
%ret1 = call i32 %function1 ( i32 %n )
; CHECK: %ret1 = call i32 %function1(i32 %n)
ret i32 %ret1
}
define i32 @test4 ( i32 %n ) {
%alloca = alloca [ 10 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
%gep = getelementptr [ 10 x i8 ] , [ 10 x i8 ] * %alloca , i32 0 , i32 0
2011-09-07 17:21:38 +08:00
call void @llvm.init.trampoline ( i8 * %gep , i8 * bitcast ( i32 ( i8 * , i32 ) * @f to i8 * ) ,
i8 * null )
%tramp0 = call i8 * @llvm.adjust.trampoline ( i8 * %gep )
%function0 = bitcast i8 * %tramp0 to i32 ( i32 ) *
%ret0 = call i32 %function0 ( i32 %n )
%tramp1 = call i8 * @llvm.adjust.trampoline ( i8 * %gep )
%function1 = bitcast i8 * %tramp0 to i32 ( i32 ) *
%ret1 = call i32 %function1 ( i32 %n )
%tramp2 = call i8 * @llvm.adjust.trampoline ( i8 * %gep )
%function2 = bitcast i8 * %tramp2 to i32 ( i32 ) *
%ret2 = call i32 %function2 ( i32 %n )
ret i32 %ret2
; CHECK: define i32 @test4(i32 %n) {
; CHECK: %ret0 = call i32 @f(i8* nest null, i32 %n)
; CHECK: %ret1 = call i32 @f(i8* nest null, i32 %n)
; CHECK: %ret2 = call i32 @f(i8* nest null, i32 %n)
}
2017-12-21 01:16:59 +08:00
!llvm.dbg.cu = ! { !0 }
!llvm.module.flags = ! { !3 }
!0 = distinct !DICompileUnit ( language: D W _ L A N G _ C 99 , file: !1 , producer: "clang version 3.0 (trunk 127710)" , isOptimized: true , runtimeVersion: 0 , emissionKind: F u l l D e b u g , enums: !2 , retainedTypes: !2 )
!1 = !DIFile ( filename: "string.h" , directory: "Game" )
!2 = ! { }
!3 = ! { i32 1 , !"Debug Info Version" , i32 3 }
[DebugInfo] Add DILabel metadata and intrinsic llvm.dbg.label.
In order to set breakpoints on labels and list source code around
labels, we need collect debug information for labels, i.e., label
name, the function label belong, line number in the file, and the
address label located. In order to keep these information in LLVM
IR and to allow backend to generate debug information correctly.
We create a new kind of metadata for labels, DILabel. The format
of DILabel is
!DILabel(scope: !1, name: "foo", file: !2, line: 3)
We hope to keep debug information as much as possible even the
code is optimized. So, we create a new kind of intrinsic for label
metadata to avoid the metadata is eliminated with basic block.
The intrinsic will keep existing if we keep it from optimized out.
The format of the intrinsic is
llvm.dbg.label(metadata !1)
It has only one argument, that is the DILabel metadata. The
intrinsic will follow the label immediately. Backend could get the
label metadata through the intrinsic's parameter.
We also create DIBuilder API for labels to be used by Frontend.
Frontend could use createLabel() to allocate DILabel objects, and use
insertLabel() to insert llvm.dbg.label intrinsic in LLVM IR.
Differential Revision: https://reviews.llvm.org/D45024
Patch by Hsiangkai Wang.
llvm-svn: 331841
2018-05-09 10:40:45 +08:00
!4 = distinct !DISubprogram ( name: "passthru" , scope: !1 , file: !1 , line: 79 , type: !5 , isLocal: true , isDefinition: true , scopeLine: 79 , virtualIndex: 6 , flags: D I F l a g P r o t o t y p e d , isOptimized: true , unit: !0 , retainedNodes: !8 )
2017-12-21 01:16:59 +08:00
!5 = !DISubroutineType ( types: !6 )
!6 = ! { !7 }
!7 = !DIDerivedType ( tag: D W _ T A G _ p o i n t e r _ type , scope: !0 , baseType: null , size: 64 , align: 64 )
!8 = ! { !9 }
!9 = !DILocalVariable ( name: "a" , arg: 1 , scope: !4 , file: !1 , line: 78 , type: !7 )
!10 = !DILocation ( line: 78 , column: 28 , scope: !4 )