mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
9c5542c040
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
49 lines
1.8 KiB
LLVM
49 lines
1.8 KiB
LLVM
; RUN: opt < %s -simplifycfg -S | FileCheck %s
|
|
;
|
|
; rdar:13349374
|
|
;
|
|
; SimplifyCFG should not eliminate blocks with volatile stores.
|
|
; Essentially, volatile needs to be backdoor that tells the optimizer
|
|
; it can no longer use language standard as an excuse. The compiler
|
|
; needs to expose the volatile access to the platform.
|
|
;
|
|
; CHECK-LABEL: @test(
|
|
; CHECK: entry:
|
|
; CHECK: @Trace
|
|
; CHECK: while.body:
|
|
; CHECK: store volatile
|
|
; CHECK: end:
|
|
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"
|
|
|
|
define void @test(i8** nocapture %PeiServices) #0 {
|
|
entry:
|
|
%call = tail call i32 (...)* @Trace() #2
|
|
%tobool = icmp eq i32 %call, 0
|
|
br i1 %tobool, label %while.body, label %if.then
|
|
|
|
if.then: ; preds = %entry
|
|
%call1 = tail call i32 (...)* @Trace() #2
|
|
br label %while.body
|
|
|
|
while.body: ; preds = %entry, %if.then, %while.body
|
|
%Addr.017 = phi i8* [ %incdec.ptr, %while.body ], [ null, %if.then ], [ null, %entry ]
|
|
%x.016 = phi i8 [ %inc, %while.body ], [ 0, %if.then ], [ 0, %entry ]
|
|
%inc = add i8 %x.016, 1
|
|
%incdec.ptr = getelementptr inbounds i8* %Addr.017, i64 1
|
|
store volatile i8 %x.016, i8* %Addr.017, align 1
|
|
%0 = ptrtoint i8* %incdec.ptr to i64
|
|
%1 = trunc i64 %0 to i32
|
|
%cmp = icmp ult i32 %1, 4096
|
|
br i1 %cmp, label %while.body, label %end
|
|
|
|
end:
|
|
ret void
|
|
}
|
|
declare i32 @Trace(...) #1
|
|
|
|
attributes #0 = { nounwind ssp uwtable "fp-contract-model"="standard" "no-frame-pointer-elim" "no-frame-pointer-elim-non-leaf" "relocation-model"="pic" "ssp-buffers-size"="8" }
|
|
attributes #1 = { "fp-contract-model"="standard" "no-frame-pointer-elim" "no-frame-pointer-elim-non-leaf" "relocation-model"="pic" "ssp-buffers-size"="8" }
|
|
attributes #2 = { nounwind }
|
|
|
|
!0 = !{i32 1039}
|