mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-03 08:51:43 +00:00
9a38b9833b
Currently, when lowering switch statement and a new basic block is built for jump table / bit test header, the edge to this new block is not assigned with a correct weight. This patch collects the edge weight from all its successors and assign this sum of weights to the edge (and also the other fall-through edge). Test cases are adjusted accordingly. Differential Revision: http://reviews.llvm.org/D12166#fae6eca7 llvm-svn: 246104
96 lines
2.1 KiB
LLVM
96 lines
2.1 KiB
LLVM
; RUN: llc -filetype=asm -mtriple=mipsel-none-nacl -relocation-model=static \
|
|
; RUN: -O3 < %s | FileCheck %s
|
|
|
|
|
|
; This test tests that NaCl functions are bundle-aligned.
|
|
|
|
define void @test0() {
|
|
ret void
|
|
|
|
; CHECK: .align 4
|
|
; CHECK-NOT: .align
|
|
; CHECK-LABEL: test0:
|
|
|
|
}
|
|
|
|
|
|
; This test tests that blocks that are jumped to through jump table are
|
|
; bundle-aligned.
|
|
|
|
define i32 @test1(i32 %i) {
|
|
entry:
|
|
switch i32 %i, label %default [
|
|
i32 0, label %bb1
|
|
i32 1, label %bb2
|
|
i32 2, label %bb3
|
|
i32 3, label %bb4
|
|
]
|
|
|
|
bb1:
|
|
ret i32 111
|
|
bb2:
|
|
ret i32 222
|
|
bb3:
|
|
ret i32 333
|
|
bb4:
|
|
ret i32 444
|
|
default:
|
|
ret i32 555
|
|
|
|
|
|
; CHECK-LABEL: test1:
|
|
|
|
; CHECK: .align 4
|
|
; CHECK-NEXT: ${{BB[0-9]+_[0-9]+}}:
|
|
; CHECK-NEXT: jr $ra
|
|
; CHECK-NEXT: addiu $2, $zero, 111
|
|
; CHECK-NEXT: ${{BB[0-9]+_[0-9]+}}:
|
|
; CHECK-NEXT: jr $ra
|
|
; CHECK-NEXT: addiu $2, $zero, 555
|
|
; CHECK-NEXT: .align 4
|
|
; CHECK-NEXT: ${{BB[0-9]+_[0-9]+}}:
|
|
; CHECK-NEXT: jr $ra
|
|
; CHECK-NEXT: addiu $2, $zero, 222
|
|
; CHECK-NEXT: .align 4
|
|
; CHECK-NEXT: ${{BB[0-9]+_[0-9]+}}:
|
|
; CHECK-NEXT: jr $ra
|
|
; CHECK-NEXT: addiu $2, $zero, 333
|
|
|
|
}
|
|
|
|
|
|
; This test tests that a block whose address is taken is bundle-aligned in NaCl.
|
|
|
|
@bb_array = constant [2 x i8*] [i8* blockaddress(@test2, %bb1),
|
|
i8* blockaddress(@test2, %bb2)], align 4
|
|
|
|
define i32 @test2(i32 %i) {
|
|
entry:
|
|
%elementptr = getelementptr inbounds [2 x i8*], [2 x i8*]* @bb_array, i32 0, i32 %i
|
|
%0 = load i8*, i8** %elementptr, align 4
|
|
indirectbr i8* %0, [label %bb1, label %bb2]
|
|
|
|
bb1:
|
|
ret i32 111
|
|
bb2:
|
|
ret i32 222
|
|
|
|
|
|
; CHECK-LABEL: test2:
|
|
|
|
; Note that there are two consecutive labels - one temporary and one for
|
|
; basic block.
|
|
|
|
; CHECK: .align 4
|
|
; CHECK-NEXT: ${{[a-zA-Z0-9]+}}:
|
|
; CHECK-NEXT: ${{BB[0-9]+_[0-9]+}}:
|
|
; CHECK-NEXT: jr $ra
|
|
; CHECK-NEXT: addiu $2, $zero, 111
|
|
; CHECK-NEXT: .align 4
|
|
; CHECK-NEXT: ${{[a-zA-Z0-9]+}}:
|
|
; CHECK-NEXT: ${{BB[0-9]+_[0-9]+}}:
|
|
; CHECK-NEXT: jr $ra
|
|
; CHECK-NEXT: addiu $2, $zero, 222
|
|
|
|
}
|