2013-01-31 22:19:18 +01:00
; This file is used by 2011-08-04-DebugLoc.ll, so it doesn't actually do anything itself
;
; RUN: true
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
target triple = "x86_64-apple-macosx10.9.0"
2015-11-05 23:03:56 +01:00
define void @test ( i32 %argc , i8 * * %argv ) uwtable ssp !dbg !5 {
2013-01-31 22:19:18 +01:00
entry:
%argc.addr = alloca i32 , align 4
%argv.addr = alloca i8 * * , align 8
%i = alloca i32 , align 4
store i32 %argc , i32 * %argc.addr , align 4
2015-04-29 18:38:44 +02:00
call void @llvm.dbg.declare ( metadata i32 * %argc.addr , metadata !14 , metadata !DIExpression ( ) ) , !dbg !15
2013-01-31 22:19:18 +01:00
store i8 * * %argv , i8 * * * %argv.addr , align 8
2015-04-29 18:38:44 +02:00
call void @llvm.dbg.declare ( metadata i8 * * * %argv.addr , metadata !16 , metadata !DIExpression ( ) ) , !dbg !15
call void @llvm.dbg.declare ( metadata i32 * %i , metadata !17 , metadata !DIExpression ( ) ) , !dbg !20
2013-01-31 22:19:18 +01:00
store i32 0 , i32 * %i , align 4 , !dbg !20
br label %for.cond , !dbg !20
for.cond: ; preds = %for.inc, %entry
2015-02-27 22:17:42 +01:00
%0 = load i32 , i32 * %i , align 4 , !dbg !20
%1 = load i32 , i32 * %argc.addr , align 4 , !dbg !20
2013-01-31 22:19:18 +01:00
%cmp = icmp slt i32 %0 , %1 , !dbg !20
br i1 %cmp , label %for.body , label %for.end , !dbg !20
for.body: ; preds = %for.cond
2015-02-27 22:17:42 +01:00
%2 = load i32 , i32 * %i , align 4 , !dbg !21
2013-01-31 22:19:18 +01:00
%idxprom = sext i32 %2 to i64 , !dbg !21
2015-02-27 22:17:42 +01:00
%3 = load i8 * * , i8 * * * %argv.addr , align 8 , !dbg !21
[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-27 20:29:02 +01:00
%arrayidx = getelementptr inbounds i8 * , i8 * * %3 , i64 %idxprom , !dbg !21
2015-02-27 22:17:42 +01:00
%4 = load i8 * , i8 * * %arrayidx , align 8 , !dbg !21
2013-01-31 22:19:18 +01:00
%call = call i32 @puts ( i8 * %4 ) , !dbg !21
br label %for.inc , !dbg !23
for.inc: ; preds = %for.body
2015-02-27 22:17:42 +01:00
%5 = load i32 , i32 * %i , align 4 , !dbg !20
2013-01-31 22:19:18 +01:00
%inc = add nsw i32 %5 , 1 , !dbg !20
store i32 %inc , i32 * %i , align 4 , !dbg !20
br label %for.cond , !dbg !20
for.end: ; preds = %for.cond
ret void , !dbg !24
}
Move the complex address expression out of DIVariable and into an extra
argument of the llvm.dbg.declare/llvm.dbg.value intrinsics.
Previously, DIVariable was a variable-length field that has an optional
reference to a Metadata array consisting of a variable number of
complex address expressions. In the case of OpPiece expressions this is
wasting a lot of storage in IR, because when an aggregate type is, e.g.,
SROA'd into all of its n individual members, the IR will contain n copies
of the DIVariable, all alike, only differing in the complex address
reference at the end.
By making the complex address into an extra argument of the
dbg.value/dbg.declare intrinsics, all of the pieces can reference the
same variable and the complex address expressions can be uniqued across
the CU, too.
Down the road, this will allow us to move other flags, such as
"indirection" out of the DIVariable, too.
The new intrinsics look like this:
declare void @llvm.dbg.declare(metadata %storage, metadata %var, metadata %expr)
declare void @llvm.dbg.value(metadata %storage, i64 %offset, metadata %var, metadata %expr)
This patch adds a new LLVM-local tag to DIExpressions, so we can detect
and pretty-print DIExpression metadata nodes.
What this patch doesn't do:
This patch does not touch the "Indirect" field in DIVariable; but moving
that into the expression would be a natural next step.
http://reviews.llvm.org/D4919
rdar://problem/17994491
Thanks to dblaikie and dexonsmith for reviewing this patch!
Note: I accidentally committed a bogus older version of this patch previously.
llvm-svn: 218787
2014-10-01 20:55:02 +02:00
declare void @llvm.dbg.declare ( metadata , metadata , metadata ) nounwind readnone
2013-01-31 22:19:18 +01:00
declare i32 @puts ( i8 * )
!llvm.dbg.cu = ! { !0 }
2013-11-22 22:49:45 +01:00
!llvm.module.flags = ! { !27 }
2013-01-31 22:19:18 +01:00
2016-04-15 17:57:41 +02:00
!0 = distinct !DICompileUnit ( language: D W _ L A N G _ C _ p l u s _ p l u s , producer: "clang version 3.3 (trunk 173515)" , isOptimized: true , emissionKind: F u l l D e b u g , file: !25 , enums: !2 , retainedTypes: !2 , globals: !2 )
2015-03-27 21:46:33 +01:00
!2 = ! { }
[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 04:40:45 +02:00
!5 = distinct !DISubprogram ( name: "print_args" , linkageName: "test" , line: 4 , isLocal: false , isDefinition: true , virtualIndex: 6 , flags: D I F l a g P r o t o t y p e d , isOptimized: false , unit: !0 , scopeLine: 5 , file: !26 , scope: null , type: !7 , retainedNodes: !2 )
2015-04-29 18:38:44 +02:00
!6 = !DIFile ( filename: "test.cpp" , directory: "/private/tmp" )
!7 = !DISubroutineType ( types: !8 )
IR: Make metadata typeless in assembly
Now that `Metadata` is typeless, reflect that in the assembly. These
are the matching assembly changes for the metadata/value split in
r223802.
- Only use the `metadata` type when referencing metadata from a call
intrinsic -- i.e., only when it's used as a `Value`.
- Stop pretending that `ValueAsMetadata` is wrapped in an `MDNode`
when referencing it from call intrinsics.
So, assembly like this:
define @foo(i32 %v) {
call void @llvm.foo(metadata !{i32 %v}, metadata !0)
call void @llvm.foo(metadata !{i32 7}, metadata !0)
call void @llvm.foo(metadata !1, metadata !0)
call void @llvm.foo(metadata !3, metadata !0)
call void @llvm.foo(metadata !{metadata !3}, metadata !0)
ret void, !bar !2
}
!0 = metadata !{metadata !2}
!1 = metadata !{i32* @global}
!2 = metadata !{metadata !3}
!3 = metadata !{}
turns into this:
define @foo(i32 %v) {
call void @llvm.foo(metadata i32 %v, metadata !0)
call void @llvm.foo(metadata i32 7, metadata !0)
call void @llvm.foo(metadata i32* @global, metadata !0)
call void @llvm.foo(metadata !3, metadata !0)
call void @llvm.foo(metadata !{!3}, metadata !0)
ret void, !bar !2
}
!0 = !{!2}
!1 = !{i32* @global}
!2 = !{!3}
!3 = !{}
I wrote an upgrade script that handled almost all of the tests in llvm
and many of the tests in cfe (even handling many `CHECK` lines). I've
attached it (or will attach it in a moment if you're speedy) to PR21532
to help everyone update their out-of-tree testcases.
This is part of PR21532.
llvm-svn: 224257
2014-12-15 20:07:53 +01:00
!8 = ! { null , !9 , !10 }
2015-04-29 18:38:44 +02:00
!9 = !DIBasicType ( tag: D W _ T A G _ b a s e _ type , name: "int" , size: 32 , align: 32 , encoding: D W _ A T E _ s i g n e d )
!10 = !DIDerivedType ( tag: D W _ T A G _ p o i n t e r _ type , size: 64 , align: 64 , baseType: !11 )
!11 = !DIDerivedType ( tag: D W _ T A G _ p o i n t e r _ type , size: 64 , align: 64 , baseType: !12 )
!12 = !DIDerivedType ( tag: D W _ T A G _ c o n s t _ type , baseType: !13 )
!13 = !DIBasicType ( tag: D W _ T A G _ b a s e _ type , name: "char" , size: 8 , align: 8 , encoding: D W _ A T E _ s i g n e d _ c h a r )
2015-07-31 20:58:39 +02:00
!14 = !DILocalVariable ( name: "argc" , line: 4 , arg: 1 , scope: !5 , file: !6 , type: !9 )
2015-04-29 18:38:44 +02:00
!15 = !DILocation ( line: 4 , scope: !5 )
2015-07-31 20:58:39 +02:00
!16 = !DILocalVariable ( name: "argv" , line: 4 , arg: 2 , scope: !5 , file: !6 , type: !10 )
!17 = !DILocalVariable ( name: "i" , line: 6 , scope: !18 , file: !6 , type: !9 )
2015-04-29 18:38:44 +02:00
!18 = distinct !DILexicalBlock ( line: 6 , column: 0 , file: !26 , scope: !19 )
!19 = distinct !DILexicalBlock ( line: 5 , column: 0 , file: !26 , scope: !5 )
!20 = !DILocation ( line: 6 , scope: !18 )
!21 = !DILocation ( line: 8 , scope: !22 )
!22 = distinct !DILexicalBlock ( line: 7 , column: 0 , file: !26 , scope: !18 )
!23 = !DILocation ( line: 9 , scope: !22 )
!24 = !DILocation ( line: 10 , scope: !19 )
!25 = !DIFile ( filename: "main.cpp" , directory: "/private/tmp" )
!26 = !DIFile ( filename: "test.cpp" , directory: "/private/tmp" )
2015-03-03 18:24:31 +01:00
!27 = ! { i32 1 , !"Debug Info Version" , i32 3 }