2018-08-27 17:45:51 +02:00
|
|
|
; RUN: llc < %s -asm-verbose=false -disable-wasm-fallthrough-return-opt -wasm-disable-explicit-locals -wasm-keep-registers -verify-machineinstrs | FileCheck %s
|
|
|
|
; RUN: llc < %s -asm-verbose=false -disable-wasm-fallthrough-return-opt -verify-machineinstrs | FileCheck %s --check-prefix=NOREGS
|
2015-11-25 17:55:01 +01:00
|
|
|
|
|
|
|
; Test the register stackifier pass.
|
|
|
|
|
2018-08-27 17:45:51 +02:00
|
|
|
; We have two sets of tests, one with registers and implicit locals, and
|
|
|
|
; a stack / explicit locals based version (NOREGS).
|
|
|
|
|
2016-01-07 04:19:23 +01:00
|
|
|
target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
|
2018-05-10 19:49:11 +02:00
|
|
|
target triple = "wasm32-unknown-unknown"
|
2015-11-25 17:55:01 +01:00
|
|
|
|
|
|
|
; No because of pointer aliasing.
|
|
|
|
|
|
|
|
; CHECK-LABEL: no0:
|
|
|
|
; CHECK: return $1{{$}}
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: no0:
|
|
|
|
; NOREGS: return{{$}}
|
2015-11-25 17:55:01 +01:00
|
|
|
define i32 @no0(i32* %p, i32* %q) {
|
|
|
|
%t = load i32, i32* %q
|
|
|
|
store i32 0, i32* %p
|
|
|
|
ret i32 %t
|
|
|
|
}
|
|
|
|
|
|
|
|
; No because of side effects.
|
|
|
|
|
|
|
|
; CHECK-LABEL: no1:
|
|
|
|
; CHECK: return $1{{$}}
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: no1:
|
|
|
|
; NOREGS: return{{$}}
|
2015-11-25 17:55:01 +01:00
|
|
|
define i32 @no1(i32* %p, i32* dereferenceable(4) %q) {
|
|
|
|
%t = load volatile i32, i32* %q, !invariant.load !0
|
|
|
|
store volatile i32 0, i32* %p
|
|
|
|
ret i32 %t
|
|
|
|
}
|
|
|
|
|
|
|
|
; Yes because of invariant load and no side effects.
|
|
|
|
|
|
|
|
; CHECK-LABEL: yes0:
|
2016-05-19 03:52:56 +02:00
|
|
|
; CHECK: return $pop{{[0-9]+}}{{$}}
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: yes0:
|
|
|
|
; NOREGS: return{{$}}
|
2015-11-25 17:55:01 +01:00
|
|
|
define i32 @yes0(i32* %p, i32* dereferenceable(4) %q) {
|
|
|
|
%t = load i32, i32* %q, !invariant.load !0
|
|
|
|
store i32 0, i32* %p
|
|
|
|
ret i32 %t
|
|
|
|
}
|
|
|
|
|
|
|
|
; Yes because of no intervening side effects.
|
|
|
|
|
|
|
|
; CHECK-LABEL: yes1:
|
|
|
|
; CHECK: return $pop0{{$}}
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: yes1:
|
|
|
|
; NOREGS: return{{$}}
|
2015-11-25 17:55:01 +01:00
|
|
|
define i32 @yes1(i32* %q) {
|
|
|
|
%t = load volatile i32, i32* %q
|
|
|
|
ret i32 %t
|
|
|
|
}
|
|
|
|
|
2016-05-17 06:05:31 +02:00
|
|
|
; Yes because undefined behavior can be sunk past a store.
|
|
|
|
|
|
|
|
; CHECK-LABEL: sink_trap:
|
2016-05-19 03:52:56 +02:00
|
|
|
; CHECK: return $pop{{[0-9]+}}{{$}}
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: sink_trap:
|
|
|
|
; NOREGS: return{{$}}
|
2016-05-17 06:05:31 +02:00
|
|
|
define i32 @sink_trap(i32 %x, i32 %y, i32* %p) {
|
|
|
|
%t = sdiv i32 %x, %y
|
|
|
|
store volatile i32 0, i32* %p
|
|
|
|
ret i32 %t
|
|
|
|
}
|
|
|
|
|
|
|
|
; Yes because the call is readnone.
|
|
|
|
|
|
|
|
; CHECK-LABEL: sink_readnone_call:
|
|
|
|
; CHECK: return $pop0{{$}}
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: sink_readnone_call:
|
|
|
|
; NOREGS: return{{$}}
|
2016-05-17 06:05:31 +02:00
|
|
|
declare i32 @readnone_callee() readnone nounwind
|
|
|
|
define i32 @sink_readnone_call(i32 %x, i32 %y, i32* %p) {
|
|
|
|
%t = call i32 @readnone_callee()
|
|
|
|
store volatile i32 0, i32* %p
|
|
|
|
ret i32 %t
|
|
|
|
}
|
|
|
|
|
|
|
|
; No because the call is readonly and there's an intervening store.
|
|
|
|
|
|
|
|
; CHECK-LABEL: no_sink_readonly_call:
|
|
|
|
; CHECK: return ${{[0-9]+}}{{$}}
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: no_sink_readonly_call:
|
|
|
|
; NOREGS: return{{$}}
|
2016-05-17 06:05:31 +02:00
|
|
|
declare i32 @readonly_callee() readonly nounwind
|
|
|
|
define i32 @no_sink_readonly_call(i32 %x, i32 %y, i32* %p) {
|
|
|
|
%t = call i32 @readonly_callee()
|
|
|
|
store i32 0, i32* %p
|
|
|
|
ret i32 %t
|
|
|
|
}
|
|
|
|
|
2015-12-05 01:51:40 +01:00
|
|
|
; Don't schedule stack uses into the stack. To reduce register pressure, the
|
|
|
|
; scheduler might be tempted to move the definition of $2 down. However, this
|
|
|
|
; would risk getting incorrect liveness if the instructions are later
|
|
|
|
; rearranged to make the stack contiguous.
|
|
|
|
|
|
|
|
; CHECK-LABEL: stack_uses:
|
2016-04-12 22:12:05 +02:00
|
|
|
; CHECK: .param i32, i32, i32, i32{{$}}
|
2015-12-05 01:51:40 +01:00
|
|
|
; CHECK-NEXT: .result i32{{$}}
|
2016-10-07 00:29:32 +02:00
|
|
|
; CHECK-NEXT: block {{$}}
|
2016-05-19 03:52:56 +02:00
|
|
|
; CHECK-NEXT: i32.const $push[[L13:[0-9]+]]=, 1{{$}}
|
|
|
|
; CHECK-NEXT: i32.lt_s $push[[L0:[0-9]+]]=, $0, $pop[[L13]]{{$}}
|
|
|
|
; CHECK-NEXT: i32.const $push[[L1:[0-9]+]]=, 2{{$}}
|
|
|
|
; CHECK-NEXT: i32.lt_s $push[[L2:[0-9]+]]=, $1, $pop[[L1]]{{$}}
|
|
|
|
; CHECK-NEXT: i32.xor $push[[L5:[0-9]+]]=, $pop[[L0]], $pop[[L2]]{{$}}
|
|
|
|
; CHECK-NEXT: i32.const $push[[L12:[0-9]+]]=, 1{{$}}
|
|
|
|
; CHECK-NEXT: i32.lt_s $push[[L3:[0-9]+]]=, $2, $pop[[L12]]{{$}}
|
|
|
|
; CHECK-NEXT: i32.const $push[[L11:[0-9]+]]=, 2{{$}}
|
|
|
|
; CHECK-NEXT: i32.lt_s $push[[L4:[0-9]+]]=, $3, $pop[[L11]]{{$}}
|
|
|
|
; CHECK-NEXT: i32.xor $push[[L6:[0-9]+]]=, $pop[[L3]], $pop[[L4]]{{$}}
|
|
|
|
; CHECK-NEXT: i32.xor $push[[L7:[0-9]+]]=, $pop[[L5]], $pop[[L6]]{{$}}
|
2016-01-19 17:59:23 +01:00
|
|
|
; CHECK-NEXT: i32.const $push10=, 1{{$}}
|
|
|
|
; CHECK-NEXT: i32.ne $push8=, $pop7, $pop10{{$}}
|
2016-02-08 22:50:13 +01:00
|
|
|
; CHECK-NEXT: br_if 0, $pop8{{$}}
|
2016-01-19 17:59:23 +01:00
|
|
|
; CHECK-NEXT: i32.const $push9=, 0{{$}}
|
|
|
|
; CHECK-NEXT: return $pop9{{$}}
|
2016-05-17 06:05:31 +02:00
|
|
|
; CHECK-NEXT: .LBB7_2:
|
[WebAssembly] Make CFG stackification independent of basic-block labels.
This patch changes the way labels are referenced. Instead of referencing the
basic-block label name (eg. .LBB0_0), instructions now just have an immediate
which indicates the depth in the control-flow stack to find a label to jump to.
This makes them much closer to what we expect to have in the binary encoding,
and avoids the problem of basic-block label names not being explicit in the
binary encoding.
Also, it terminates blocks and loops with end_block and end_loop instructions,
rather than basic-block label names, for similar reasons.
This will also fix problems where two constructs appear to have the same label,
because we no longer explicitly use labels, so consumers that need labels will
presumably create their own labels, and presumably they won't reuse labels
when they do.
This patch does make the code a little more awkward to read; as a partial
mitigation, this patch also introduces comments showing where the labels are,
and comments on each branch showing where it's branching to.
llvm-svn: 257505
2016-01-12 20:14:46 +01:00
|
|
|
; CHECK-NEXT: end_block{{$}}
|
2016-01-19 17:59:23 +01:00
|
|
|
; CHECK-NEXT: i32.const $push14=, 1{{$}}
|
|
|
|
; CHECK-NEXT: return $pop14{{$}}
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: stack_uses:
|
|
|
|
; NOREGS: .param i32, i32, i32, i32{{$}}
|
|
|
|
; NOREGS-NEXT: .result i32{{$}}
|
|
|
|
; NOREGS-NEXT: block {{$}}
|
|
|
|
; NOREGS-NEXT: get_local 0{{$}}
|
|
|
|
; NOREGS-NEXT: i32.const 1{{$}}
|
|
|
|
; NOREGS-NEXT: i32.lt_s
|
|
|
|
; NOREGS-NEXT: get_local 1{{$}}
|
|
|
|
; NOREGS-NEXT: i32.const 2{{$}}
|
|
|
|
; NOREGS-NEXT: i32.lt_s
|
|
|
|
; NOREGS-NEXT: i32.xor {{$}}
|
|
|
|
; NOREGS-NEXT: get_local 2{{$}}
|
|
|
|
; NOREGS-NEXT: i32.const 1{{$}}
|
|
|
|
; NOREGS-NEXT: i32.lt_s
|
|
|
|
; NOREGS-NEXT: get_local 3{{$}}
|
|
|
|
; NOREGS-NEXT: i32.const 2{{$}}
|
|
|
|
; NOREGS-NEXT: i32.lt_s
|
|
|
|
; NOREGS-NEXT: i32.xor {{$}}
|
|
|
|
; NOREGS-NEXT: i32.xor {{$}}
|
|
|
|
; NOREGS-NEXT: i32.const 1{{$}}
|
|
|
|
; NOREGS-NEXT: i32.ne {{$}}
|
|
|
|
; NOREGS-NEXT: br_if 0{{$}}
|
|
|
|
; NOREGS-NEXT: i32.const 0{{$}}
|
|
|
|
; NOREGS-NEXT: return{{$}}
|
|
|
|
; NOREGS-NEXT: .LBB7_2:
|
|
|
|
; NOREGS-NEXT: end_block{{$}}
|
|
|
|
; NOREGS-NEXT: i32.const 1{{$}}
|
|
|
|
; NOREGS-NEXT: return{{$}}
|
2015-12-05 04:03:35 +01:00
|
|
|
define i32 @stack_uses(i32 %x, i32 %y, i32 %z, i32 %w) {
|
2015-12-05 01:51:40 +01:00
|
|
|
entry:
|
2015-12-05 04:03:35 +01:00
|
|
|
%c = icmp sle i32 %x, 0
|
|
|
|
%d = icmp sle i32 %y, 1
|
|
|
|
%e = icmp sle i32 %z, 0
|
|
|
|
%f = icmp sle i32 %w, 1
|
|
|
|
%g = xor i1 %c, %d
|
|
|
|
%h = xor i1 %e, %f
|
|
|
|
%i = xor i1 %g, %h
|
|
|
|
br i1 %i, label %true, label %false
|
2015-12-05 01:51:40 +01:00
|
|
|
true:
|
|
|
|
ret i32 0
|
|
|
|
false:
|
|
|
|
ret i32 1
|
|
|
|
}
|
|
|
|
|
2015-12-25 01:31:02 +01:00
|
|
|
; Test an interesting case where the load has multiple uses and cannot
|
2016-01-28 02:22:44 +01:00
|
|
|
; be trivially stackified. However, it can be stackified with a tee_local.
|
2015-12-25 01:31:02 +01:00
|
|
|
|
|
|
|
; CHECK-LABEL: multiple_uses:
|
2016-04-12 22:12:05 +02:00
|
|
|
; CHECK: .param i32, i32, i32{{$}}
|
2016-10-07 00:29:32 +02:00
|
|
|
; CHECK-NEXT: block {{$}}
|
2016-02-16 16:17:21 +01:00
|
|
|
; CHECK-NEXT: i32.load $push[[NUM0:[0-9]+]]=, 0($2){{$}}
|
|
|
|
; CHECK-NEXT: tee_local $push[[NUM1:[0-9]+]]=, $3=, $pop[[NUM0]]{{$}}
|
|
|
|
; CHECK-NEXT: i32.ge_u $push[[NUM2:[0-9]+]]=, $pop[[NUM1]], $1{{$}}
|
|
|
|
; CHECK-NEXT: br_if 0, $pop[[NUM2]]{{$}}
|
|
|
|
; CHECK-NEXT: i32.lt_u $push[[NUM3:[0-9]+]]=, $3, $0{{$}}
|
|
|
|
; CHECK-NEXT: br_if 0, $pop[[NUM3]]{{$}}
|
2016-10-07 00:08:28 +02:00
|
|
|
; CHECK-NEXT: i32.store 0($2), $3{{$}}
|
2016-05-17 06:05:31 +02:00
|
|
|
; CHECK-NEXT: .LBB8_3:
|
[WebAssembly] Make CFG stackification independent of basic-block labels.
This patch changes the way labels are referenced. Instead of referencing the
basic-block label name (eg. .LBB0_0), instructions now just have an immediate
which indicates the depth in the control-flow stack to find a label to jump to.
This makes them much closer to what we expect to have in the binary encoding,
and avoids the problem of basic-block label names not being explicit in the
binary encoding.
Also, it terminates blocks and loops with end_block and end_loop instructions,
rather than basic-block label names, for similar reasons.
This will also fix problems where two constructs appear to have the same label,
because we no longer explicitly use labels, so consumers that need labels will
presumably create their own labels, and presumably they won't reuse labels
when they do.
This patch does make the code a little more awkward to read; as a partial
mitigation, this patch also introduces comments showing where the labels are,
and comments on each branch showing where it's branching to.
llvm-svn: 257505
2016-01-12 20:14:46 +01:00
|
|
|
; CHECK-NEXT: end_block{{$}}
|
2015-12-25 01:31:02 +01:00
|
|
|
; CHECK-NEXT: return{{$}}
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: multiple_uses:
|
|
|
|
; NOREGS: .param i32, i32, i32{{$}}
|
|
|
|
; NOREGS: .local i32{{$}}
|
|
|
|
; NOREGS-NEXT: block {{$}}
|
|
|
|
; NOREGS-NEXT: get_local 2{{$}}
|
|
|
|
; NOREGS-NEXT: i32.load 0{{$}}
|
|
|
|
; NOREGS-NEXT: tee_local 3{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 1{{$}}
|
|
|
|
; NOREGS-NEXT: i32.ge_u
|
|
|
|
; NOREGS-NEXT: br_if 0{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 3{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 0{{$}}
|
|
|
|
; NOREGS-NEXT: i32.lt_u
|
|
|
|
; NOREGS-NEXT: br_if 0{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 2{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 3{{$}}
|
|
|
|
; NOREGS-NEXT: i32.store 0{{$}}
|
|
|
|
; NOREGS-NEXT: .LBB8_3:
|
|
|
|
; NOREGS-NEXT: end_block{{$}}
|
|
|
|
; NOREGS-NEXT: return{{$}}
|
2015-12-25 01:31:02 +01:00
|
|
|
define void @multiple_uses(i32* %arg0, i32* %arg1, i32* %arg2) nounwind {
|
|
|
|
bb:
|
|
|
|
br label %loop
|
|
|
|
|
|
|
|
loop:
|
|
|
|
%tmp7 = load i32, i32* %arg2
|
|
|
|
%tmp8 = inttoptr i32 %tmp7 to i32*
|
|
|
|
%tmp9 = icmp uge i32* %tmp8, %arg1
|
|
|
|
%tmp10 = icmp ult i32* %tmp8, %arg0
|
|
|
|
%tmp11 = or i1 %tmp9, %tmp10
|
|
|
|
br i1 %tmp11, label %back, label %then
|
|
|
|
|
|
|
|
then:
|
|
|
|
store i32 %tmp7, i32* %arg2
|
|
|
|
br label %back
|
|
|
|
|
|
|
|
back:
|
|
|
|
br i1 undef, label %return, label %loop
|
|
|
|
|
|
|
|
return:
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2016-01-20 05:21:16 +01:00
|
|
|
; Don't stackify stores effects across other instructions with side effects.
|
|
|
|
|
|
|
|
; CHECK: side_effects:
|
|
|
|
; CHECK: store
|
|
|
|
; CHECK-NEXT: call
|
2016-08-18 19:51:27 +02:00
|
|
|
; CHECK: store
|
2016-01-20 05:21:16 +01:00
|
|
|
; CHECK-NEXT: call
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS: side_effects:
|
|
|
|
; NOREGS: store
|
|
|
|
; NOREGS-NEXT: call
|
|
|
|
; NOREGS: store
|
|
|
|
; NOREGS-NEXT: call
|
2016-01-20 05:21:16 +01:00
|
|
|
declare void @evoke_side_effects()
|
|
|
|
define hidden void @stackify_store_across_side_effects(double* nocapture %d) {
|
|
|
|
entry:
|
|
|
|
store double 2.0, double* %d
|
|
|
|
call void @evoke_side_effects()
|
|
|
|
store double 2.0, double* %d
|
|
|
|
call void @evoke_side_effects()
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2016-01-28 02:22:44 +01:00
|
|
|
; Div instructions have side effects and can't be reordered, but this entire
|
|
|
|
; function should still be able to be stackified because it's already in
|
|
|
|
; tree order.
|
|
|
|
|
|
|
|
; CHECK-LABEL: div_tree:
|
2016-04-12 22:12:05 +02:00
|
|
|
; CHECK: .param i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32{{$}}
|
2016-01-28 02:22:44 +01:00
|
|
|
; CHECK-NEXT: .result i32{{$}}
|
2016-05-19 03:52:56 +02:00
|
|
|
; CHECK-NEXT: i32.div_s $push[[L0:[0-9]+]]=, $0, $1{{$}}
|
|
|
|
; CHECK-NEXT: i32.div_s $push[[L1:[0-9]+]]=, $2, $3{{$}}
|
|
|
|
; CHECK-NEXT: i32.div_s $push[[L2:[0-9]+]]=, $pop[[L0]], $pop[[L1]]{{$}}
|
|
|
|
; CHECK-NEXT: i32.div_s $push[[L3:[0-9]+]]=, $4, $5{{$}}
|
|
|
|
; CHECK-NEXT: i32.div_s $push[[L4:[0-9]+]]=, $6, $7{{$}}
|
|
|
|
; CHECK-NEXT: i32.div_s $push[[L5:[0-9]+]]=, $pop[[L3]], $pop[[L4]]{{$}}
|
|
|
|
; CHECK-NEXT: i32.div_s $push[[L6:[0-9]+]]=, $pop[[L2]], $pop[[L5]]{{$}}
|
|
|
|
; CHECK-NEXT: i32.div_s $push[[L7:[0-9]+]]=, $8, $9{{$}}
|
|
|
|
; CHECK-NEXT: i32.div_s $push[[L8:[0-9]+]]=, $10, $11{{$}}
|
|
|
|
; CHECK-NEXT: i32.div_s $push[[L9:[0-9]+]]=, $pop[[L7]], $pop[[L8]]{{$}}
|
|
|
|
; CHECK-NEXT: i32.div_s $push[[L10:[0-9]+]]=, $12, $13{{$}}
|
|
|
|
; CHECK-NEXT: i32.div_s $push[[L11:[0-9]+]]=, $14, $15{{$}}
|
|
|
|
; CHECK-NEXT: i32.div_s $push[[L12:[0-9]+]]=, $pop[[L10]], $pop[[L11]]{{$}}
|
|
|
|
; CHECK-NEXT: i32.div_s $push[[L13:[0-9]+]]=, $pop[[L9]], $pop[[L12]]{{$}}
|
|
|
|
; CHECK-NEXT: i32.div_s $push[[L14:[0-9]+]]=, $pop[[L6]], $pop[[L13]]{{$}}
|
|
|
|
; CHECK-NEXT: return $pop[[L14]]{{$}}
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: div_tree:
|
|
|
|
; NOREGS: .param i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32{{$}}
|
|
|
|
; NOREGS-NEXT: .result i32{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 0{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 1{{$}}
|
|
|
|
; NOREGS-NEXT: i32.div_s{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 2{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 3{{$}}
|
|
|
|
; NOREGS-NEXT: i32.div_s{{$}}
|
|
|
|
; NOREGS-NEXT: i32.div_s{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 4{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 5{{$}}
|
|
|
|
; NOREGS-NEXT: i32.div_s{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 6{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 7{{$}}
|
|
|
|
; NOREGS-NEXT: i32.div_s{{$}}
|
|
|
|
; NOREGS-NEXT: i32.div_s{{$}}
|
|
|
|
; NOREGS-NEXT: i32.div_s{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 8{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 9{{$}}
|
|
|
|
; NOREGS-NEXT: i32.div_s{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 10{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 11{{$}}
|
|
|
|
; NOREGS-NEXT: i32.div_s{{$}}
|
|
|
|
; NOREGS-NEXT: i32.div_s{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 12{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 13{{$}}
|
|
|
|
; NOREGS-NEXT: i32.div_s{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 14{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 15{{$}}
|
|
|
|
; NOREGS-NEXT: i32.div_s{{$}}
|
|
|
|
; NOREGS-NEXT: i32.div_s{{$}}
|
|
|
|
; NOREGS-NEXT: i32.div_s{{$}}
|
|
|
|
; NOREGS-NEXT: i32.div_s{{$}}
|
|
|
|
; NOREGS-NEXT: return{{$}}
|
2016-01-28 02:22:44 +01:00
|
|
|
define i32 @div_tree(i32 %a, i32 %b, i32 %c, i32 %d, i32 %e, i32 %f, i32 %g, i32 %h, i32 %i, i32 %j, i32 %k, i32 %l, i32 %m, i32 %n, i32 %o, i32 %p) {
|
|
|
|
entry:
|
|
|
|
%div = sdiv i32 %a, %b
|
|
|
|
%div1 = sdiv i32 %c, %d
|
|
|
|
%div2 = sdiv i32 %div, %div1
|
|
|
|
%div3 = sdiv i32 %e, %f
|
|
|
|
%div4 = sdiv i32 %g, %h
|
|
|
|
%div5 = sdiv i32 %div3, %div4
|
|
|
|
%div6 = sdiv i32 %div2, %div5
|
|
|
|
%div7 = sdiv i32 %i, %j
|
|
|
|
%div8 = sdiv i32 %k, %l
|
|
|
|
%div9 = sdiv i32 %div7, %div8
|
|
|
|
%div10 = sdiv i32 %m, %n
|
|
|
|
%div11 = sdiv i32 %o, %p
|
|
|
|
%div12 = sdiv i32 %div10, %div11
|
|
|
|
%div13 = sdiv i32 %div9, %div12
|
|
|
|
%div14 = sdiv i32 %div6, %div13
|
|
|
|
ret i32 %div14
|
|
|
|
}
|
|
|
|
|
|
|
|
; A simple multiple-use case.
|
|
|
|
|
|
|
|
; CHECK-LABEL: simple_multiple_use:
|
2016-04-12 22:12:05 +02:00
|
|
|
; CHECK: .param i32, i32{{$}}
|
2016-02-16 16:17:21 +01:00
|
|
|
; CHECK-NEXT: i32.mul $push[[NUM0:[0-9]+]]=, $1, $0{{$}}
|
2016-05-10 06:24:02 +02:00
|
|
|
; CHECK-NEXT: tee_local $push[[NUM1:[0-9]+]]=, $[[NUM2:[0-9]+]]=, $pop[[NUM0]]{{$}}
|
2016-02-16 16:17:21 +01:00
|
|
|
; CHECK-NEXT: call use_a@FUNCTION, $pop[[NUM1]]{{$}}
|
2016-05-10 06:24:02 +02:00
|
|
|
; CHECK-NEXT: call use_b@FUNCTION, $[[NUM2]]{{$}}
|
2016-01-28 02:22:44 +01:00
|
|
|
; CHECK-NEXT: return{{$}}
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: simple_multiple_use:
|
|
|
|
; NOREGS: .param i32, i32{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 1{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 0{{$}}
|
|
|
|
; NOREGS-NEXT: i32.mul
|
|
|
|
; NOREGS-NEXT: tee_local 1{{$}}
|
|
|
|
; NOREGS-NEXT: call use_a@FUNCTION{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 1{{$}}
|
|
|
|
; NOREGS-NEXT: call use_b@FUNCTION{{$}}
|
|
|
|
; NOREGS-NEXT: return{{$}}
|
2016-01-28 02:22:44 +01:00
|
|
|
declare void @use_a(i32)
|
|
|
|
declare void @use_b(i32)
|
|
|
|
define void @simple_multiple_use(i32 %x, i32 %y) {
|
|
|
|
%mul = mul i32 %y, %x
|
|
|
|
call void @use_a(i32 %mul)
|
|
|
|
call void @use_b(i32 %mul)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Multiple uses of the same value in one instruction.
|
|
|
|
|
|
|
|
; CHECK-LABEL: multiple_uses_in_same_insn:
|
2016-04-12 22:12:05 +02:00
|
|
|
; CHECK: .param i32, i32{{$}}
|
2016-02-16 16:17:21 +01:00
|
|
|
; CHECK-NEXT: i32.mul $push[[NUM0:[0-9]+]]=, $1, $0{{$}}
|
2016-05-10 06:24:02 +02:00
|
|
|
; CHECK-NEXT: tee_local $push[[NUM1:[0-9]+]]=, $[[NUM2:[0-9]+]]=, $pop[[NUM0]]{{$}}
|
|
|
|
; CHECK-NEXT: call use_2@FUNCTION, $pop[[NUM1]], $[[NUM2]]{{$}}
|
2016-01-28 02:22:44 +01:00
|
|
|
; CHECK-NEXT: return{{$}}
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: multiple_uses_in_same_insn:
|
|
|
|
; NOREGS: .param i32, i32{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 1{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 0{{$}}
|
|
|
|
; NOREGS-NEXT: i32.mul
|
|
|
|
; NOREGS-NEXT: tee_local 1{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 1{{$}}
|
|
|
|
; NOREGS-NEXT: call use_2@FUNCTION{{$}}
|
|
|
|
; NOREGS-NEXT: return{{$}}
|
2016-01-28 02:22:44 +01:00
|
|
|
declare void @use_2(i32, i32)
|
|
|
|
define void @multiple_uses_in_same_insn(i32 %x, i32 %y) {
|
|
|
|
%mul = mul i32 %y, %x
|
|
|
|
call void @use_2(i32 %mul, i32 %mul)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Commute operands to achieve better stackifying.
|
|
|
|
|
|
|
|
; CHECK-LABEL: commute:
|
2016-04-12 22:12:05 +02:00
|
|
|
; CHECK-NOT: param
|
|
|
|
; CHECK: .result i32{{$}}
|
2016-01-28 02:22:44 +01:00
|
|
|
; CHECK-NEXT: i32.call $push0=, red@FUNCTION{{$}}
|
|
|
|
; CHECK-NEXT: i32.call $push1=, green@FUNCTION{{$}}
|
|
|
|
; CHECK-NEXT: i32.add $push2=, $pop0, $pop1{{$}}
|
|
|
|
; CHECK-NEXT: i32.call $push3=, blue@FUNCTION{{$}}
|
|
|
|
; CHECK-NEXT: i32.add $push4=, $pop2, $pop3{{$}}
|
|
|
|
; CHECK-NEXT: return $pop4{{$}}
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: commute:
|
|
|
|
; NOREGS-NOT: param
|
|
|
|
; NOREGS: .result i32{{$}}
|
|
|
|
; NOREGS-NEXT: i32.call red@FUNCTION{{$}}
|
|
|
|
; NOREGS-NEXT: i32.call green@FUNCTION{{$}}
|
|
|
|
; NOREGS-NEXT: i32.add {{$}}
|
|
|
|
; NOREGS-NEXT: i32.call blue@FUNCTION{{$}}
|
|
|
|
; NOREGS-NEXT: i32.add {{$}}
|
|
|
|
; NOREGS-NEXT: return{{$}}
|
2016-01-28 02:22:44 +01:00
|
|
|
declare i32 @red()
|
|
|
|
declare i32 @green()
|
|
|
|
declare i32 @blue()
|
|
|
|
define i32 @commute() {
|
|
|
|
%call = call i32 @red()
|
|
|
|
%call1 = call i32 @green()
|
|
|
|
%add = add i32 %call1, %call
|
|
|
|
%call2 = call i32 @blue()
|
|
|
|
%add3 = add i32 %add, %call2
|
|
|
|
ret i32 %add3
|
|
|
|
}
|
|
|
|
|
2016-01-28 04:59:09 +01:00
|
|
|
; Don't stackify a register when it would move a the def of the register past
|
|
|
|
; an implicit get_local for the register.
|
|
|
|
|
|
|
|
; CHECK-LABEL: no_stackify_past_use:
|
2016-05-18 00:24:18 +02:00
|
|
|
; CHECK: i32.call $1=, callee@FUNCTION, $0
|
|
|
|
; CHECK-NEXT: i32.const $push0=, 1
|
|
|
|
; CHECK-NEXT: i32.add $push1=, $0, $pop0
|
|
|
|
; CHECK-NEXT: i32.call $push2=, callee@FUNCTION, $pop1
|
|
|
|
; CHECK-NEXT: i32.sub $push3=, $pop2, $1
|
|
|
|
; CHECK-NEXT: i32.div_s $push4=, $pop3, $1
|
|
|
|
; CHECK-NEXT: return $pop4
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: no_stackify_past_use:
|
|
|
|
; NOREGS: get_local 0{{$}}
|
|
|
|
; NOREGS-NEXT: i32.call callee@FUNCTION
|
|
|
|
; NOREGS-NEXT: set_local 1{{$}}
|
|
|
|
; NOREGS-NEXT: get_local 0{{$}}
|
|
|
|
; NOREGS-NEXT: i32.const 1
|
|
|
|
; NOREGS-NEXT: i32.add
|
|
|
|
; NOREGS-NEXT: i32.call callee@FUNCTION
|
|
|
|
; NOREGS-NEXT: get_local 1{{$}}
|
|
|
|
; NOREGS-NEXT: i32.sub
|
|
|
|
; NOREGS-NEXT: get_local 1{{$}}
|
|
|
|
; NOREGS-NEXT: i32.div_s
|
|
|
|
; NOREGS-NEXT: return
|
2016-05-18 00:24:18 +02:00
|
|
|
declare i32 @callee(i32)
|
|
|
|
define i32 @no_stackify_past_use(i32 %arg) {
|
|
|
|
%tmp1 = call i32 @callee(i32 %arg)
|
|
|
|
%tmp2 = add i32 %arg, 1
|
|
|
|
%tmp3 = call i32 @callee(i32 %tmp2)
|
|
|
|
%tmp5 = sub i32 %tmp3, %tmp1
|
|
|
|
%tmp6 = sdiv i32 %tmp5, %tmp1
|
|
|
|
ret i32 %tmp6
|
|
|
|
}
|
|
|
|
|
|
|
|
; This is the same as no_stackify_past_use, except using a commutative operator,
|
|
|
|
; so we can reorder the operands and stackify.
|
|
|
|
|
|
|
|
; CHECK-LABEL: commute_to_fix_ordering:
|
|
|
|
; CHECK: i32.call $push[[L0:.+]]=, callee@FUNCTION, $0
|
|
|
|
; CHECK: tee_local $push[[L1:.+]]=, $1=, $pop[[L0]]
|
2016-01-28 04:59:09 +01:00
|
|
|
; CHECK: i32.const $push0=, 1
|
|
|
|
; CHECK: i32.add $push1=, $0, $pop0
|
|
|
|
; CHECK: i32.call $push2=, callee@FUNCTION, $pop1
|
|
|
|
; CHECK: i32.add $push3=, $1, $pop2
|
2016-05-18 00:24:18 +02:00
|
|
|
; CHECK: i32.mul $push4=, $pop[[L1]], $pop3
|
2016-01-28 04:59:09 +01:00
|
|
|
; CHECK: return $pop4
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: commute_to_fix_ordering:
|
|
|
|
; NOREGS: get_local 0{{$}}
|
|
|
|
; NOREGS: i32.call callee@FUNCTION
|
|
|
|
; NOREGS: tee_local 1
|
|
|
|
; NOREGS: get_local 1{{$}}
|
|
|
|
; NOREGS: get_local 0{{$}}
|
|
|
|
; NOREGS: i32.const 1
|
|
|
|
; NOREGS: i32.add
|
|
|
|
; NOREGS: i32.call callee@FUNCTION
|
|
|
|
; NOREGS: i32.add
|
|
|
|
; NOREGS: i32.mul
|
|
|
|
; NOREGS: return
|
2016-05-18 00:24:18 +02:00
|
|
|
define i32 @commute_to_fix_ordering(i32 %arg) {
|
2016-01-28 04:59:09 +01:00
|
|
|
%tmp1 = call i32 @callee(i32 %arg)
|
|
|
|
%tmp2 = add i32 %arg, 1
|
|
|
|
%tmp3 = call i32 @callee(i32 %tmp2)
|
|
|
|
%tmp5 = add i32 %tmp3, %tmp1
|
|
|
|
%tmp6 = mul i32 %tmp5, %tmp1
|
|
|
|
ret i32 %tmp6
|
|
|
|
}
|
|
|
|
|
2016-02-16 16:17:21 +01:00
|
|
|
; Stackify individual defs of virtual registers with multiple defs.
|
|
|
|
|
|
|
|
; CHECK-LABEL: multiple_defs:
|
|
|
|
; CHECK: f64.add $push[[NUM0:[0-9]+]]=, ${{[0-9]+}}, $pop{{[0-9]+}}{{$}}
|
|
|
|
; CHECK-NEXT: tee_local $push[[NUM1:[0-9]+]]=, $[[NUM2:[0-9]+]]=, $pop[[NUM0]]{{$}}
|
|
|
|
; CHECK-NEXT: f64.select $push{{[0-9]+}}=, $pop{{[0-9]+}}, $pop[[NUM1]], ${{[0-9]+}}{{$}}
|
|
|
|
; CHECK: $[[NUM2]]=,
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: multiple_defs:
|
|
|
|
; NOREGS: f64.add
|
|
|
|
; NOREGS: tee_local
|
|
|
|
; NOREGS: f64.select
|
2016-02-16 16:17:21 +01:00
|
|
|
define void @multiple_defs(i32 %arg, i32 %arg1, i1 %arg2, i1 %arg3, i1 %arg4) {
|
|
|
|
bb:
|
|
|
|
br label %bb5
|
|
|
|
|
|
|
|
bb5: ; preds = %bb21, %bb
|
|
|
|
%tmp = phi double [ 0.000000e+00, %bb ], [ %tmp22, %bb21 ]
|
|
|
|
%tmp6 = phi double [ 0.000000e+00, %bb ], [ %tmp23, %bb21 ]
|
|
|
|
%tmp7 = fcmp olt double %tmp6, 2.323450e+01
|
|
|
|
br i1 %tmp7, label %bb8, label %bb21
|
|
|
|
|
|
|
|
bb8: ; preds = %bb17, %bb5
|
|
|
|
%tmp9 = phi double [ %tmp19, %bb17 ], [ %tmp, %bb5 ]
|
|
|
|
%tmp10 = fadd double %tmp6, -1.000000e+00
|
|
|
|
%tmp11 = select i1 %arg2, double -1.135357e+04, double %tmp10
|
|
|
|
%tmp12 = fadd double %tmp11, %tmp9
|
|
|
|
br i1 %arg3, label %bb17, label %bb13
|
|
|
|
|
|
|
|
bb13: ; preds = %bb8
|
|
|
|
%tmp14 = or i32 %arg1, 2
|
|
|
|
%tmp15 = icmp eq i32 %tmp14, 14
|
|
|
|
%tmp16 = select i1 %tmp15, double -1.135357e+04, double 0xBFCE147AE147B000
|
|
|
|
br label %bb17
|
|
|
|
|
|
|
|
bb17: ; preds = %bb13, %bb8
|
|
|
|
%tmp18 = phi double [ %tmp16, %bb13 ], [ %tmp10, %bb8 ]
|
|
|
|
%tmp19 = fadd double %tmp18, %tmp12
|
|
|
|
%tmp20 = fcmp olt double %tmp6, 2.323450e+01
|
|
|
|
br i1 %tmp20, label %bb8, label %bb21
|
|
|
|
|
|
|
|
bb21: ; preds = %bb17, %bb5
|
|
|
|
%tmp22 = phi double [ %tmp, %bb5 ], [ %tmp9, %bb17 ]
|
|
|
|
%tmp23 = fadd double %tmp6, 1.000000e+00
|
2017-08-16 02:49:44 +02:00
|
|
|
br i1 %arg4, label %exit, label %bb5
|
|
|
|
exit:
|
|
|
|
ret void
|
2016-02-16 16:17:21 +01:00
|
|
|
}
|
|
|
|
|
2016-02-16 22:44:19 +01:00
|
|
|
; Don't move calls past loads
|
|
|
|
; CHECK-LABEL: no_stackify_call_past_load:
|
|
|
|
; CHECK: i32.call $0=, red
|
|
|
|
; CHECK: i32.const $push0=, 0
|
|
|
|
; CHECK: i32.load $1=, count($pop0)
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: no_stackify_call_past_load:
|
|
|
|
; NOREGS: i32.call red
|
|
|
|
; NOREGS: i32.const 0
|
|
|
|
; NOREGS: i32.load count
|
2016-02-16 22:44:19 +01:00
|
|
|
@count = hidden global i32 0, align 4
|
|
|
|
define i32 @no_stackify_call_past_load() {
|
|
|
|
%a = call i32 @red()
|
|
|
|
%b = load i32, i32* @count, align 4
|
|
|
|
call i32 @callee(i32 %a)
|
|
|
|
ret i32 %b
|
|
|
|
; use of a
|
|
|
|
}
|
|
|
|
|
|
|
|
; Don't move stores past loads if there may be aliasing
|
|
|
|
; CHECK-LABEL: no_stackify_store_past_load
|
2016-10-07 00:08:28 +02:00
|
|
|
; CHECK: i32.store 0($1), $0
|
2016-02-16 22:44:19 +01:00
|
|
|
; CHECK: i32.load {{.*}}, 0($2)
|
2016-08-18 19:51:27 +02:00
|
|
|
; CHECK: i32.call {{.*}}, callee@FUNCTION, $0{{$}}
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: no_stackify_store_past_load
|
|
|
|
; NOREGS: i32.store 0
|
|
|
|
; NOREGS: i32.load 0
|
|
|
|
; NOREGS: i32.call callee@FUNCTION{{$}}
|
2016-02-16 22:44:19 +01:00
|
|
|
define i32 @no_stackify_store_past_load(i32 %a, i32* %p1, i32* %p2) {
|
|
|
|
store i32 %a, i32* %p1
|
|
|
|
%b = load i32, i32* %p2, align 4
|
|
|
|
call i32 @callee(i32 %a)
|
|
|
|
ret i32 %b
|
|
|
|
}
|
|
|
|
|
|
|
|
; Can still stackify past invariant loads.
|
|
|
|
; CHECK-LABEL: store_past_invar_load
|
2016-10-07 00:08:28 +02:00
|
|
|
; CHECK: i32.store 0($1), $0
|
2016-08-18 19:51:27 +02:00
|
|
|
; CHECK: i32.call {{.*}}, callee@FUNCTION, $0
|
2016-02-16 22:44:19 +01:00
|
|
|
; CHECK: i32.load $push{{.*}}, 0($2)
|
|
|
|
; CHECK: return $pop
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: store_past_invar_load
|
|
|
|
; NOREGS: i32.store 0
|
|
|
|
; NOREGS: i32.call callee@FUNCTION
|
|
|
|
; NOREGS: i32.load 0
|
|
|
|
; NOREGS: return
|
2016-02-16 22:44:19 +01:00
|
|
|
define i32 @store_past_invar_load(i32 %a, i32* %p1, i32* dereferenceable(4) %p2) {
|
|
|
|
store i32 %a, i32* %p1
|
|
|
|
%b = load i32, i32* %p2, !invariant.load !0
|
|
|
|
call i32 @callee(i32 %a)
|
|
|
|
ret i32 %b
|
|
|
|
}
|
|
|
|
|
2016-02-22 18:45:20 +01:00
|
|
|
; CHECK-LABEL: ignore_dbg_value:
|
2016-04-12 22:12:05 +02:00
|
|
|
; CHECK-NEXT: .Lfunc_begin
|
2016-02-22 18:45:20 +01:00
|
|
|
; CHECK-NEXT: unreachable
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: ignore_dbg_value:
|
|
|
|
; NOREGS-NEXT: .Lfunc_begin
|
|
|
|
; NOREGS-NEXT: unreachable
|
2016-02-22 18:45:20 +01:00
|
|
|
declare void @llvm.dbg.value(metadata, i64, metadata, metadata)
|
|
|
|
define void @ignore_dbg_value() {
|
2016-04-12 22:12:05 +02:00
|
|
|
call void @llvm.dbg.value(metadata i32 0, i64 0, metadata !7, metadata !9), !dbg !10
|
2016-02-22 18:45:20 +01:00
|
|
|
unreachable
|
|
|
|
}
|
|
|
|
|
2016-05-05 22:41:15 +02:00
|
|
|
; Don't stackify an expression that might use the stack into a return, since we
|
|
|
|
; might insert a prologue before the return.
|
|
|
|
|
|
|
|
; CHECK-LABEL: no_stackify_past_epilogue:
|
|
|
|
; CHECK: return ${{[0-9]+}}{{$}}
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: no_stackify_past_epilogue:
|
|
|
|
; NOREGS: return{{$}}
|
2016-05-05 22:41:15 +02:00
|
|
|
declare i32 @use_memory(i32*)
|
|
|
|
define i32 @no_stackify_past_epilogue() {
|
|
|
|
%x = alloca i32
|
|
|
|
%call = call i32 @use_memory(i32* %x)
|
|
|
|
ret i32 %call
|
|
|
|
}
|
|
|
|
|
2016-05-17 22:19:47 +02:00
|
|
|
; Stackify a loop induction variable into a loop comparison.
|
|
|
|
|
2016-05-17 23:14:26 +02:00
|
|
|
; CHECK-LABEL: stackify_indvar:
|
2016-05-17 22:19:47 +02:00
|
|
|
; CHECK: i32.const $push[[L5:.+]]=, 1{{$}}
|
|
|
|
; CHECK-NEXT: i32.add $push[[L4:.+]]=, $[[R0:.+]], $pop[[L5]]{{$}}
|
|
|
|
; CHECK-NEXT: tee_local $push[[L3:.+]]=, $[[R0]]=, $pop[[L4]]{{$}}
|
|
|
|
; CHECK-NEXT: i32.ne $push[[L2:.+]]=, $0, $pop[[L3]]{{$}}
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: stackify_indvar:
|
|
|
|
; NOREGS: i32.const 1{{$}}
|
|
|
|
; NOREGS-NEXT: i32.add
|
|
|
|
; NOREGS-NEXT: tee_local 2{{$}}
|
|
|
|
; NOREGS-NEXT: i32.ne
|
2016-05-17 22:19:47 +02:00
|
|
|
define void @stackify_indvar(i32 %tmp, i32* %v) #0 {
|
|
|
|
bb:
|
|
|
|
br label %bb3
|
|
|
|
|
|
|
|
bb3: ; preds = %bb3, %bb2
|
|
|
|
%tmp4 = phi i32 [ %tmp7, %bb3 ], [ 0, %bb ]
|
|
|
|
%tmp5 = load volatile i32, i32* %v, align 4
|
|
|
|
%tmp6 = add nsw i32 %tmp5, %tmp4
|
|
|
|
store volatile i32 %tmp6, i32* %v, align 4
|
|
|
|
%tmp7 = add nuw nsw i32 %tmp4, 1
|
|
|
|
%tmp8 = icmp eq i32 %tmp7, %tmp
|
|
|
|
br i1 %tmp8, label %bb10, label %bb3
|
|
|
|
|
|
|
|
bb10: ; preds = %bb9, %bb
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2016-05-17 23:14:26 +02:00
|
|
|
; Don't stackify a call past a __stack_pointer store.
|
|
|
|
|
|
|
|
; CHECK-LABEL: stackpointer_dependency:
|
|
|
|
; CHECK: call {{.+}}, stackpointer_callee@FUNCTION,
|
2018-08-03 16:33:37 +02:00
|
|
|
; CHECK-NEXT: set_global __stack_pointer@GLOBAL,
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: stackpointer_dependency:
|
|
|
|
; NOREGS: call stackpointer_callee@FUNCTION
|
|
|
|
; NOREGS: set_global __stack_pointer
|
2016-05-17 23:14:26 +02:00
|
|
|
declare i32 @stackpointer_callee(i8* readnone, i8* readnone)
|
|
|
|
declare i8* @llvm.frameaddress(i32)
|
|
|
|
define i32 @stackpointer_dependency(i8* readnone) {
|
|
|
|
%2 = tail call i8* @llvm.frameaddress(i32 0)
|
|
|
|
%3 = tail call i32 @stackpointer_callee(i8* %0, i8* %2)
|
|
|
|
ret i32 %3
|
|
|
|
}
|
|
|
|
|
2016-10-21 18:38:07 +02:00
|
|
|
; Stackify a call_indirect with respect to its ordering
|
|
|
|
|
|
|
|
; CHECK-LABEL: call_indirect_stackify:
|
|
|
|
; CHECK: i32.load $push[[L4:.+]]=, 0($0)
|
|
|
|
; CHECK-NEXT: tee_local $push[[L3:.+]]=, $0=, $pop[[L4]]
|
|
|
|
; CHECK-NEXT: i32.load $push[[L0:.+]]=, 0($0)
|
|
|
|
; CHECK-NEXT: i32.load $push[[L1:.+]]=, 0($pop[[L0]])
|
|
|
|
; CHECK-NEXT: i32.call_indirect $push{{.+}}=, $pop[[L3]], $1, $pop[[L1]]
|
2018-08-27 17:45:51 +02:00
|
|
|
; NOREGS-LABEL: call_indirect_stackify:
|
|
|
|
; NOREGS: i32.load 0
|
|
|
|
; NOREGS-NEXT: tee_local 0
|
|
|
|
; NOREGS: i32.load 0
|
|
|
|
; NOREGS-NEXT: i32.load 0
|
|
|
|
; NOREGS-NEXT: i32.call_indirect
|
2016-10-21 18:38:07 +02:00
|
|
|
%class.call_indirect = type { i32 (...)** }
|
|
|
|
define i32 @call_indirect_stackify(%class.call_indirect** %objptr, i32 %arg) {
|
|
|
|
%obj = load %class.call_indirect*, %class.call_indirect** %objptr
|
|
|
|
%addr = bitcast %class.call_indirect* %obj to i32(%class.call_indirect*, i32)***
|
|
|
|
%vtable = load i32(%class.call_indirect*, i32)**, i32(%class.call_indirect*, i32)*** %addr
|
|
|
|
%vfn = getelementptr inbounds i32(%class.call_indirect*, i32)*, i32(%class.call_indirect*, i32)** %vtable, i32 0
|
|
|
|
%f = load i32(%class.call_indirect*, i32)*, i32(%class.call_indirect*, i32)** %vfn
|
|
|
|
%ret = call i32 %f(%class.call_indirect* %obj, i32 %arg)
|
|
|
|
ret i32 %ret
|
|
|
|
}
|
|
|
|
|
2016-04-12 22:12:05 +02:00
|
|
|
!llvm.module.flags = !{!0}
|
|
|
|
!llvm.dbg.cu = !{!1}
|
|
|
|
|
|
|
|
!0 = !{i32 2, !"Debug Info Version", i32 3}
|
2016-04-15 21:32:22 +02:00
|
|
|
!1 = distinct !DICompileUnit(language: DW_LANG_C99, file: !2, producer: "clang version 3.9.0 (trunk 266005) (llvm/trunk 266105)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !3)
|
2016-04-12 22:12:05 +02:00
|
|
|
!2 = !DIFile(filename: "test.c", directory: "/")
|
|
|
|
!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 04:40:45 +02:00
|
|
|
!5 = distinct !DISubprogram(name: "test", scope: !2, file: !2, line: 10, type: !6, isLocal: false, isDefinition: true, scopeLine: 11, flags: DIFlagPrototyped, isOptimized: true, unit: !1, retainedNodes: !3)
|
2016-04-12 22:12:05 +02:00
|
|
|
!6 = !DISubroutineType(types: !3)
|
|
|
|
!7 = !DILocalVariable(name: "nzcnt", scope: !5, file: !2, line: 15, type: !8)
|
|
|
|
!8 = !DIBasicType(name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
|
|
|
|
!9 = !DIExpression()
|
|
|
|
!10 = !DILocation(line: 15, column: 6, scope: !5)
|
2018-08-27 17:45:51 +02:00
|
|
|
|