2014-06-01 11:38:13 +08:00
; REQUIRES: object-emission
; RUN: %llc_dwarf -O2 -filetype=obj < %s | llvm-dwarfdump -debug-dump=info - | FileCheck %s
; This is a test case that's as reduced as I can get it, though I haven't fully
; understood the mechanisms by which this bug occurs, so perhaps there's further
; simplification to be had (it's certainly a bit non-obvious what's going on). I
; hesitate to hand-craft or otherwise simplify the IR compared to what Clang
; generates as this is a particular tickling of optimizations and debug location
; propagation I want a realistic example of.
; Generated with clang-tot -cc1 -g -O2 -w -std=c++11 -fsanitize=address,use-after-return -fcxx-exceptions -fexceptions -x c++ incorrect-variable-debug-loc.cpp -emit-llvm
; struct A {
; int m_fn1();
; };
;
; struct B {
; void __attribute__((always_inline)) m_fn2() { i = 0; }
; int i;
; };
;
; struct C {
; void m_fn3();
; int j;
; B b;
; };
;
; int fn1() {
; C A;
; A.b.m_fn2();
; A.m_fn3();
; }
; void C::m_fn3() {
; A().m_fn1();
; b.m_fn2();
; }
; CHECK: DW_TAG_structure_type
; CHECK-NEXT: DW_AT_name {{.*}} "C"
2015-08-12 05:36:45 +08:00
; CHECK: [[M_FN3_DECL:.*]]: DW_TAG_subprogram
; CHECK-NOT: {{DW_TAG|NULL}}
2014-06-01 11:38:13 +08:00
; CHECK: DW_AT_name {{.*}} "m_fn3"
2015-08-12 05:36:45 +08:00
; CHECK: DW_AT_specification {{.*}} {[[M_FN3_DECL]]}
2014-06-01 11:38:13 +08:00
; CHECK-NOT: DW_TAG
; CHECK: DW_TAG_formal_parameter
; CHECK-NOT: DW_TAG
; CHECK: DW_AT_name {{.*}} "this"
%struct.C = type { i32 , %struct.B }
%struct.B = type { i32 }
%struct.A = type { i8 }
@llvm.global_ctors = appending global [ 1 x { i32 , void ( ) * } ] [ { i32 , void ( ) * } { i32 1 , void ( ) * @asan.module_ctor } ]
@__asan_option_detect_stack_use_after_return = external global i32
@__asan_gen_ = private unnamed_addr constant [ 11 x i8 ] c "1 32 8 1 A\00" , align 1
@__asan_gen_1 = private unnamed_addr constant [ 13 x i8 ] c "1 32 1 3 tmp\00" , align 1
; Function Attrs: noreturn sanitize_address
2015-11-06 06:03:56 +08:00
define i32 @_Z3fn1v ( ) #0 !dbg !22 {
2014-06-01 11:38:13 +08:00
entry:
%MyAlloca = alloca [ 64 x i8 ] , align 32 , !dbg !39
%0 = ptrtoint [ 64 x i8 ] * %MyAlloca to i64 , !dbg !39
2015-02-28 05:17:42 +08:00
%1 = load i32 , i32 * @__asan_option_detect_stack_use_after_return , !dbg !39
2014-06-01 11:38:13 +08:00
%2 = icmp ne i32 %1 , 0 , !dbg !39
br i1 %2 , label %3 , label %5
; <label>:3 ; preds = %entry
%4 = call i64 @__asan_stack_malloc_0 ( i64 64 , i64 %0 ) , !dbg !39
br label %5
; <label>:5 ; preds = %entry, %3
%6 = phi i64 [ %0 , %entry ] , [ %4 , %3 ] , !dbg !39
%7 = add i64 %6 , 32 , !dbg !39
%8 = inttoptr i64 %7 to %struct.C * , !dbg !39
%9 = inttoptr i64 %6 to i64 * , !dbg !39
store i64 1102416563 , i64 * %9 , !dbg !39
%10 = add i64 %6 , 8 , !dbg !39
%11 = inttoptr i64 %10 to i64 * , !dbg !39
store i64 ptrtoint ( [ 11 x i8 ] * @__asan_gen_ to i64 ) , i64 * %11 , !dbg !39
%12 = add i64 %6 , 16 , !dbg !39
%13 = inttoptr i64 %12 to i64 * , !dbg !39
store i64 ptrtoint ( i32 ( ) * @_Z3fn1v to i64 ) , i64 * %13 , !dbg !39
%14 = lshr i64 %6 , 3 , !dbg !39
%15 = add i64 %14 , 2147450880 , !dbg !39
%16 = add i64 %15 , 0 , !dbg !39
%17 = inttoptr i64 %16 to i64 * , !dbg !39
store i64 -868083117767659023 , i64 * %17 , !dbg !39
[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
%i.i = getelementptr inbounds %struct.C , %struct.C * %8 , i64 0 , i32 1 , i32 0 , !dbg !39
2014-06-01 11:38:13 +08:00
%18 = ptrtoint i32 * %i.i to i64 , !dbg !39
%19 = lshr i64 %18 , 3 , !dbg !39
%20 = add i64 %19 , 2147450880 , !dbg !39
%21 = inttoptr i64 %20 to i8 * , !dbg !39
2015-02-28 05:17:42 +08:00
%22 = load i8 , i8 * %21 , !dbg !39
2014-06-01 11:38:13 +08:00
%23 = icmp ne i8 %22 , 0 , !dbg !39
br i1 %23 , label %24 , label %30 , !dbg !39
; <label>:24 ; preds = %5
%25 = and i64 %18 , 7 , !dbg !39
%26 = add i64 %25 , 3 , !dbg !39
%27 = trunc i64 %26 to i8 , !dbg !39
%28 = icmp sge i8 %27 , %22 , !dbg !39
br i1 %28 , label %29 , label %30
; <label>:29 ; preds = %24
call void @__asan_report_store4 ( i64 %18 ) , !dbg !39
call void asm sideeffect "" , "" ( )
unreachable
; <label>:30 ; preds = %24, %5
store i32 0 , i32 * %i.i , align 4 , !dbg !39 , !tbaa !41
2016-01-15 08:46:17 +08:00
tail call void @llvm.dbg.value ( metadata %struct.C * %8 , i64 0 , metadata !27 , metadata !DIExpression ( D W _ O P _ d e r e f ) ) , !dbg !46
2014-06-01 11:38:13 +08:00
call void @_ZN1C5m_fn3Ev ( %struct.C * %8 ) , !dbg !47
unreachable , !dbg !47
}
; Function Attrs: sanitize_address
2015-11-06 06:03:56 +08:00
define void @_ZN1C5m_fn3Ev ( %struct.C * nocapture %this ) #1 align 2 !dbg !28 {
2014-06-01 11:38:13 +08:00
entry:
%MyAlloca = alloca [ 64 x i8 ] , align 32 , !dbg !48
%0 = ptrtoint [ 64 x i8 ] * %MyAlloca to i64 , !dbg !48
2015-02-28 05:17:42 +08:00
%1 = load i32 , i32 * @__asan_option_detect_stack_use_after_return , !dbg !48
2014-06-01 11:38:13 +08:00
%2 = icmp ne i32 %1 , 0 , !dbg !48
br i1 %2 , label %3 , label %5
; <label>:3 ; preds = %entry
%4 = call i64 @__asan_stack_malloc_0 ( i64 64 , i64 %0 ) , !dbg !48
br label %5
; <label>:5 ; preds = %entry, %3
%6 = phi i64 [ %0 , %entry ] , [ %4 , %3 ] , !dbg !48
%7 = add i64 %6 , 32 , !dbg !48
%8 = inttoptr i64 %7 to %struct.A * , !dbg !48
%9 = inttoptr i64 %6 to i64 * , !dbg !48
store i64 1102416563 , i64 * %9 , !dbg !48
%10 = add i64 %6 , 8 , !dbg !48
%11 = inttoptr i64 %10 to i64 * , !dbg !48
store i64 ptrtoint ( [ 13 x i8 ] * @__asan_gen_1 to i64 ) , i64 * %11 , !dbg !48
%12 = add i64 %6 , 16 , !dbg !48
%13 = inttoptr i64 %12 to i64 * , !dbg !48
store i64 ptrtoint ( void ( %struct.C * ) * @_ZN1C5m_fn3Ev to i64 ) , i64 * %13 , !dbg !48
%14 = lshr i64 %6 , 3 , !dbg !48
%15 = add i64 %14 , 2147450880 , !dbg !48
%16 = add i64 %15 , 0 , !dbg !48
%17 = inttoptr i64 %16 to i64 * , !dbg !48
store i64 -868083113472691727 , i64 * %17 , !dbg !48
2015-04-30 00:38:44 +08:00
tail call void @llvm.dbg.value ( metadata %struct.C * %this , i64 0 , metadata !30 , metadata !DIExpression ( ) ) , !dbg !48
2014-06-01 11:38:13 +08:00
%call = call i32 @_ZN1A5m_fn1Ev ( %struct.A * %8 ) , !dbg !49
[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
%i.i = getelementptr inbounds %struct.C , %struct.C * %this , i64 0 , i32 1 , i32 0 , !dbg !50
2014-06-01 11:38:13 +08:00
%18 = ptrtoint i32 * %i.i to i64 , !dbg !50
%19 = lshr i64 %18 , 3 , !dbg !50
%20 = add i64 %19 , 2147450880 , !dbg !50
%21 = inttoptr i64 %20 to i8 * , !dbg !50
2015-02-28 05:17:42 +08:00
%22 = load i8 , i8 * %21 , !dbg !50
2014-06-01 11:38:13 +08:00
%23 = icmp ne i8 %22 , 0 , !dbg !50
br i1 %23 , label %24 , label %30 , !dbg !50
; <label>:24 ; preds = %5
%25 = and i64 %18 , 7 , !dbg !50
%26 = add i64 %25 , 3 , !dbg !50
%27 = trunc i64 %26 to i8 , !dbg !50
%28 = icmp sge i8 %27 , %22 , !dbg !50
br i1 %28 , label %29 , label %30
; <label>:29 ; preds = %24
call void @__asan_report_store4 ( i64 %18 ) , !dbg !50
call void asm sideeffect "" , "" ( )
unreachable
; <label>:30 ; preds = %24, %5
store i32 0 , i32 * %i.i , align 4 , !dbg !50 , !tbaa !41
store i64 1172321806 , i64 * %9 , !dbg !52
%31 = icmp ne i64 %6 , %0 , !dbg !52
br i1 %31 , label %32 , label %39 , !dbg !52
; <label>:32 ; preds = %30
%33 = add i64 %15 , 0 , !dbg !52
%34 = inttoptr i64 %33 to i64 * , !dbg !52
store i64 -723401728380766731 , i64 * %34 , !dbg !52
%35 = add i64 %6 , 56 , !dbg !52
%36 = inttoptr i64 %35 to i64 * , !dbg !52
2015-02-28 05:17:42 +08:00
%37 = load i64 , i64 * %36 , !dbg !52
2014-06-01 11:38:13 +08:00
%38 = inttoptr i64 %37 to i8 * , !dbg !52
store i8 0 , i8 * %38 , !dbg !52
br label %42 , !dbg !52
; <label>:39 ; preds = %30
%40 = add i64 %15 , 0 , !dbg !52
%41 = inttoptr i64 %40 to i64 * , !dbg !52
store i64 0 , i64 * %41 , !dbg !52
br label %42 , !dbg !52
; <label>:42 ; preds = %39, %32
ret void , !dbg !52
}
declare i32 @_ZN1A5m_fn1Ev ( %struct.A * ) #2
; Function Attrs: nounwind readnone
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-02 02:55:02 +08:00
declare void @llvm.dbg.value ( metadata , i64 , metadata , metadata ) #3
2014-06-01 11:38:13 +08:00
define internal void @asan.module_ctor ( ) {
tail call void @__asan_init_v3 ( )
ret void
}
declare void @__asan_init_v3 ( )
declare void @__asan_report_load1 ( i64 )
declare void @__asan_load1 ( i64 )
declare void @__asan_report_load2 ( i64 )
declare void @__asan_load2 ( i64 )
declare void @__asan_report_load4 ( i64 )
declare void @__asan_load4 ( i64 )
declare void @__asan_report_load8 ( i64 )
declare void @__asan_load8 ( i64 )
declare void @__asan_report_load16 ( i64 )
declare void @__asan_load16 ( i64 )
declare void @__asan_report_store1 ( i64 )
declare void @__asan_store1 ( i64 )
declare void @__asan_report_store2 ( i64 )
declare void @__asan_store2 ( i64 )
declare void @__asan_report_store4 ( i64 )
declare void @__asan_store4 ( i64 )
declare void @__asan_report_store8 ( i64 )
declare void @__asan_store8 ( i64 )
declare void @__asan_report_store16 ( i64 )
declare void @__asan_store16 ( i64 )
declare void @__asan_report_load_n ( i64 , i64 )
declare void @__asan_report_store_n ( i64 , i64 )
declare void @__asan_loadN ( i64 , i64 )
declare void @__asan_storeN ( i64 , i64 )
declare i8 * @__asan_memmove ( i8 * , i8 * , i64 )
declare i8 * @__asan_memcpy ( i8 * , i8 * , i64 )
declare i8 * @__asan_memset ( i8 * , i32 , i64 )
declare void @__asan_handle_no_return ( )
declare void @__sanitizer_cov ( )
declare void @__sanitizer_ptr_cmp ( i64 , i64 )
declare void @__sanitizer_ptr_sub ( i64 , i64 )
declare i64 @__asan_stack_malloc_0 ( i64 , i64 )
declare void @__asan_stack_free_0 ( i64 , i64 , i64 )
declare i64 @__asan_stack_malloc_1 ( i64 , i64 )
declare void @__asan_stack_free_1 ( i64 , i64 , i64 )
declare i64 @__asan_stack_malloc_2 ( i64 , i64 )
declare void @__asan_stack_free_2 ( i64 , i64 , i64 )
declare i64 @__asan_stack_malloc_3 ( i64 , i64 )
declare void @__asan_stack_free_3 ( i64 , i64 , i64 )
declare i64 @__asan_stack_malloc_4 ( i64 , i64 )
declare void @__asan_stack_free_4 ( i64 , i64 , i64 )
declare i64 @__asan_stack_malloc_5 ( i64 , i64 )
declare void @__asan_stack_free_5 ( i64 , i64 , i64 )
declare i64 @__asan_stack_malloc_6 ( i64 , i64 )
declare void @__asan_stack_free_6 ( i64 , i64 , i64 )
declare i64 @__asan_stack_malloc_7 ( i64 , i64 )
declare void @__asan_stack_free_7 ( i64 , i64 , i64 )
declare i64 @__asan_stack_malloc_8 ( i64 , i64 )
declare void @__asan_stack_free_8 ( i64 , i64 , i64 )
declare i64 @__asan_stack_malloc_9 ( i64 , i64 )
declare void @__asan_stack_free_9 ( i64 , i64 , i64 )
declare i64 @__asan_stack_malloc_10 ( i64 , i64 )
declare void @__asan_stack_free_10 ( i64 , i64 , i64 )
declare void @__asan_poison_stack_memory ( i64 , i64 )
declare void @__asan_unpoison_stack_memory ( i64 , i64 )
declare void @__asan_before_dynamic_init ( i64 )
declare void @__asan_after_dynamic_init ( )
declare void @__asan_register_globals ( i64 , i64 )
declare void @__asan_unregister_globals ( i64 , i64 )
declare void @__sanitizer_cov_module_init ( i64 )
attributes #0 = { noreturn sanitize_address "less-precise-fpmad" = "false" "no-frame-pointer-elim" = "false" "no-infs-fp-math" = "false" "no-nans-fp-math" = "false" "no-realign-stack" "stack-protector-buffer-size" = "8" "unsafe-fp-math" = "false" "use-soft-float" = "false" }
attributes #1 = { sanitize_address "less-precise-fpmad" = "false" "no-frame-pointer-elim" = "false" "no-infs-fp-math" = "false" "no-nans-fp-math" = "false" "no-realign-stack" "stack-protector-buffer-size" = "8" "unsafe-fp-math" = "false" "use-soft-float" = "false" }
attributes #2 = { "less-precise-fpmad" = "false" "no-frame-pointer-elim" = "false" "no-infs-fp-math" = "false" "no-nans-fp-math" = "false" "no-realign-stack" "stack-protector-buffer-size" = "8" "unsafe-fp-math" = "false" "use-soft-float" = "false" }
attributes #3 = { nounwind readnone }
!llvm.dbg.cu = ! { !0 }
!llvm.module.flags = ! { !36 , !37 }
!llvm.ident = ! { !38 }
2016-04-15 23:57:41 +08:00
!0 = distinct !DICompileUnit ( language: D W _ L A N G _ C _ p l u s _ p l u s , producer: "clang version 3.5.0 " , isOptimized: true , emissionKind: F u l l D e b u g , file: !1 , enums: !2 , retainedTypes: !3 , globals: !2 , imports: !2 )
2015-04-30 00:38:44 +08:00
!1 = !DIFile ( filename: "<stdin>" , directory: "/tmp/dbginfo" )
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-16 03:07:53 +08:00
!2 = ! { }
!3 = ! { !4 , !14 }
2015-04-30 00:38:44 +08:00
!4 = !DICompositeType ( tag: D W _ T A G _ s t r u c t u r e _ type , name: "C" , line: 10 , size: 64 , align: 32 , file: !5 , elements: !6 , identifier: "_ZTS1C" )
!5 = !DIFile ( filename: "incorrect-variable-debug-loc.cpp" , directory: "/tmp/dbginfo" )
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-16 03:07:53 +08:00
!6 = ! { !7 , !9 , !10 }
2016-04-24 05:08:00 +08:00
!7 = !DIDerivedType ( tag: D W _ T A G _ m e m b e r , name: "j" , line: 12 , size: 32 , align: 32 , file: !5 , scope: !4 , baseType: !8 )
2015-04-30 00:38:44 +08:00
!8 = !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 )
2016-04-24 05:08:00 +08:00
!9 = !DIDerivedType ( tag: D W _ T A G _ m e m b e r , name: "b" , line: 13 , size: 32 , align: 32 , offset: 32 , file: !5 , scope: !4 , baseType: !14 )
!10 = !DISubprogram ( name: "m_fn3" , linkageName: "_ZN1C5m_fn3Ev" , line: 11 , isLocal: false , isDefinition: false , virtualIndex: 6 , flags: D I F l a g P r o t o t y p e d , isOptimized: true , scopeLine: 11 , file: !5 , scope: !4 , type: !11 )
2015-04-30 00:38:44 +08:00
!11 = !DISubroutineType ( types: !12 )
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-16 03:07:53 +08:00
!12 = ! { null , !13 }
2016-04-24 05:08:00 +08:00
!13 = !DIDerivedType ( tag: D W _ T A G _ p o i n t e r _ type , size: 64 , align: 64 , flags: D I F l a g A r t i f i c i a l | D I F l a g O b j e c t P o i n t e r , baseType: !4 )
2015-04-30 00:38:44 +08:00
!14 = !DICompositeType ( tag: D W _ T A G _ s t r u c t u r e _ type , name: "B" , line: 5 , size: 32 , align: 32 , file: !5 , elements: !15 , identifier: "_ZTS1B" )
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-16 03:07:53 +08:00
!15 = ! { !16 , !17 }
2016-04-24 05:08:00 +08:00
!16 = !DIDerivedType ( tag: D W _ T A G _ m e m b e r , name: "i" , line: 7 , size: 32 , align: 32 , file: !5 , scope: !14 , baseType: !8 )
!17 = !DISubprogram ( name: "m_fn2" , linkageName: "_ZN1B5m_fn2Ev" , line: 6 , isLocal: false , isDefinition: false , virtualIndex: 6 , flags: D I F l a g P r o t o t y p e d , isOptimized: true , scopeLine: 6 , file: !5 , scope: !14 , type: !18 )
2015-04-30 00:38:44 +08:00
!18 = !DISubroutineType ( types: !19 )
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-16 03:07:53 +08:00
!19 = ! { null , !20 }
2016-04-24 05:08:00 +08:00
!20 = !DIDerivedType ( tag: D W _ T A G _ p o i n t e r _ type , size: 64 , align: 64 , flags: D I F l a g A r t i f i c i a l | D I F l a g O b j e c t P o i n t e r , baseType: !14 )
2016-04-15 23:57:41 +08:00
!22 = distinct !DISubprogram ( name: "fn1" , linkageName: "_Z3fn1v" , line: 16 , isLocal: false , isDefinition: true , virtualIndex: 6 , flags: D I F l a g P r o t o t y p e d , isOptimized: true , unit: !0 , scopeLine: 16 , file: !5 , scope: !23 , type: !24 , variables: !26 )
2015-04-30 00:38:44 +08:00
!23 = !DIFile ( filename: "incorrect-variable-debug-loc.cpp" , directory: "/tmp/dbginfo" )
!24 = !DISubroutineType ( types: !25 )
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-16 03:07:53 +08:00
!25 = ! { !8 }
!26 = ! { !27 }
2016-04-24 05:08:00 +08:00
!27 = !DILocalVariable ( name: "A" , line: 17 , scope: !22 , file: !23 , type: !4 )
!28 = distinct !DISubprogram ( name: "m_fn3" , linkageName: "_ZN1C5m_fn3Ev" , line: 21 , isLocal: false , isDefinition: true , virtualIndex: 6 , flags: D I F l a g P r o t o t y p e d , isOptimized: true , unit: !0 , scopeLine: 21 , file: !5 , scope: !4 , type: !11 , declaration: !10 , variables: !29 )
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-16 03:07:53 +08:00
!29 = ! { !30 }
2015-08-01 02:58:39 +08:00
!30 = !DILocalVariable ( name: "this" , arg: 1 , flags: D I F l a g A r t i f i c i a l | D I F l a g O b j e c t P o i n t e r , scope: !28 , type: !31 )
2016-04-24 05:08:00 +08:00
!31 = !DIDerivedType ( tag: D W _ T A G _ p o i n t e r _ type , size: 64 , align: 64 , baseType: !4 )
!32 = distinct !DISubprogram ( name: "m_fn2" , linkageName: "_ZN1B5m_fn2Ev" , line: 6 , isLocal: false , isDefinition: true , virtualIndex: 6 , flags: D I F l a g P r o t o t y p e d , isOptimized: true , unit: !0 , scopeLine: 6 , file: !5 , scope: !14 , type: !18 , declaration: !17 , variables: !33 )
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-16 03:07:53 +08:00
!33 = ! { !34 }
2015-08-01 02:58:39 +08:00
!34 = !DILocalVariable ( name: "this" , arg: 1 , flags: D I F l a g A r t i f i c i a l | D I F l a g O b j e c t P o i n t e r , scope: !32 , type: !35 )
2016-04-24 05:08:00 +08:00
!35 = !DIDerivedType ( tag: D W _ T A G _ p o i n t e r _ type , size: 64 , align: 64 , baseType: !14 )
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-16 03:07:53 +08:00
!36 = ! { i32 2 , !"Dwarf Version" , i32 4 }
2015-03-04 01:24:31 +08:00
!37 = ! { i32 2 , !"Debug Info Version" , i32 3 }
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-16 03:07:53 +08:00
!38 = ! { !"clang version 3.5.0 " }
2015-04-30 00:38:44 +08:00
!39 = !DILocation ( line: 6 , scope: !32 , inlinedAt: !40 )
!40 = !DILocation ( line: 18 , scope: !22 )
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-16 03:07:53 +08:00
!41 = ! { !42 , !43 , i64 0 }
2016-04-24 05:08:00 +08:00
!42 = ! { !14 , !43 , i64 0 }
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-16 03:07:53 +08:00
!43 = ! { !"int" , !44 , i64 0 }
!44 = ! { !"omnipotent char" , !45 , i64 0 }
!45 = ! { !"Simple C/C++ TBAA" }
2015-04-30 00:38:44 +08:00
!46 = !DILocation ( line: 17 , scope: !22 )
!47 = !DILocation ( line: 19 , scope: !22 )
!48 = !DILocation ( line: 0 , scope: !28 )
!49 = !DILocation ( line: 22 , scope: !28 )
!50 = !DILocation ( line: 6 , scope: !32 , inlinedAt: !51 )
!51 = !DILocation ( line: 23 , scope: !28 )
!52 = !DILocation ( line: 24 , scope: !28 )