mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
1ef70ff39b
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224257 91177308-0d34-0410-b5e6-96231b3b80d8
77 lines
2.6 KiB
LLVM
77 lines
2.6 KiB
LLVM
; RUN: llc -march=hexagon -mcpu=hexagonv4 < %s | FileCheck %s
|
|
|
|
; Check if the branch probabilities are reflected in the instructions:
|
|
; The basic block placement pass should place the more probable successor
|
|
; block as the fall-through block. The unconditional jump in the predecessor
|
|
; should then get the right hint (not_taken or ":nt")
|
|
|
|
|
|
@j = external global i32
|
|
|
|
define i32 @foo(i32 %a) nounwind {
|
|
; CHECK: if{{ *}}(!p{{[0-3]}}.new) jump:nt
|
|
entry:
|
|
%tobool = icmp eq i32 %a, 0
|
|
br i1 %tobool, label %if.else, label %if.then, !prof !0
|
|
|
|
if.then: ; preds = %entry
|
|
%add = add nsw i32 %a, 10
|
|
%call = tail call i32 bitcast (i32 (...)* @foobar to i32 (i32)*)(i32 %add) nounwind
|
|
br label %return
|
|
|
|
if.else: ; preds = %entry
|
|
%call2 = tail call i32 bitcast (i32 (...)* @foobar to i32 (i32)*)(i32 4) nounwind
|
|
br label %return
|
|
|
|
return: ; preds = %if.else, %if.then
|
|
%retval.0 = phi i32 [ %call, %if.then ], [ %call2, %if.else ]
|
|
ret i32 %retval.0
|
|
}
|
|
|
|
declare i32 @foobar(...)
|
|
|
|
define i32 @bar(i32 %a) nounwind {
|
|
; CHECK: if{{ *}}(p{{[0-3]}}.new) jump:nt
|
|
entry:
|
|
%tobool = icmp eq i32 %a, 0
|
|
br i1 %tobool, label %if.else, label %if.then, !prof !1
|
|
|
|
if.then: ; preds = %entry
|
|
%add = add nsw i32 %a, 10
|
|
%call = tail call i32 bitcast (i32 (...)* @foobar to i32 (i32)*)(i32 %add) nounwind
|
|
br label %return
|
|
|
|
if.else: ; preds = %entry
|
|
%call2 = tail call i32 bitcast (i32 (...)* @foobar to i32 (i32)*)(i32 4) nounwind
|
|
br label %return
|
|
|
|
return: ; preds = %if.else, %if.then
|
|
%retval.0 = phi i32 [ %call, %if.then ], [ %call2, %if.else ]
|
|
ret i32 %retval.0
|
|
}
|
|
|
|
define i32 @foo_bar(i32 %a, i16 signext %b) nounwind {
|
|
; CHECK: if{{ *}}(!cmp.eq(r{{[0-9]*}}.new, #0)) jump:nt
|
|
entry:
|
|
%0 = load i32* @j, align 4
|
|
%tobool = icmp eq i32 %0, 0
|
|
br i1 %tobool, label %if.else, label %if.then, !prof !0
|
|
|
|
if.then: ; preds = %entry
|
|
%add = add nsw i32 %a, 10
|
|
%call = tail call i32 bitcast (i32 (...)* @foobar to i32 (i32)*)(i32 %add) nounwind
|
|
br label %return
|
|
|
|
if.else: ; preds = %entry
|
|
%add1 = add nsw i32 %a, 4
|
|
%call2 = tail call i32 bitcast (i32 (...)* @foobar to i32 (i32)*)(i32 %add1) nounwind
|
|
br label %return
|
|
|
|
return: ; preds = %if.else, %if.then
|
|
%retval.0 = phi i32 [ %call, %if.then ], [ %call2, %if.else ]
|
|
ret i32 %retval.0
|
|
}
|
|
|
|
!0 = !{!"branch_weights", i32 64, i32 4}
|
|
!1 = !{!"branch_weights", i32 4, i32 64}
|