1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/CodeGen/MSP430/jumptable.ll
Vadzim Dambrouski 80fb90f30d [MSP430] Generate EABI-compliant libcalls
Updates the MSP430 target to generate EABI-compatible libcall names.
As a byproduct, adjusts the hardware multiplier options available in
the MSP430 target, adds support for promotion of the ISD::MUL operation
for 8-bit integers, and correctly marks R11 as used by call instructions.

Patch by Andrew Wygle.

Differential Revision: https://reviews.llvm.org/D32676

llvm-svn: 302820
2017-05-11 19:56:14 +00:00

55 lines
1.4 KiB
LLVM

; RUN: llc < %s | FileCheck %s
target datalayout = "e-p:16:16:16-i8:8:8-i16:16:16-i32:16:32-n8:16"
target triple = "msp430---elf"
; Function Attrs: nounwind
define i16 @test(i16 %i) #0 {
entry:
; CHECK-LABEL: test:
%retval = alloca i16, align 2
%i.addr = alloca i16, align 2
store i16 %i, i16* %i.addr, align 2
%0 = load i16, i16* %i.addr, align 2
; CHECK: mov.w #2, r13
; CHECK: call #__mspabi_mpyi
; CHECK: br .LJTI0_0(r12)
switch i16 %0, label %sw.default [
i16 0, label %sw.bb
i16 1, label %sw.bb1
i16 2, label %sw.bb2
i16 3, label %sw.bb3
]
sw.bb: ; preds = %entry
store i16 0, i16* %retval
br label %return
sw.bb1: ; preds = %entry
store i16 1, i16* %retval
br label %return
sw.bb2: ; preds = %entry
store i16 2, i16* %retval
br label %return
sw.bb3: ; preds = %entry
store i16 3, i16* %retval
br label %return
sw.default: ; preds = %entry
store i16 2, i16* %retval
br label %return
return: ; preds = %sw.default, %sw.bb3, %sw.bb2, %sw.bb1, %sw.bb
%1 = load i16, i16* %retval
ret i16 %1
; CHECK: ret
}
; CHECK: .LJTI0_0:
; CHECK-NEXT: .short .LBB0_2
; CHECK-NEXT: .short .LBB0_4
; CHECK-NEXT: .short .LBB0_3
; CHECK-NEXT: .short .LBB0_5