1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 05:23:45 +02:00
llvm-mirror/test/CodeGen/MSP430/hwmult32.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

44 lines
795 B
LLVM

; RUN: llc -O0 -mhwmult=32bit < %s | FileCheck %s
target datalayout = "e-p:16:16:16-i8:8:8-i16:16:16-i32:16:32-n8:16-a0:16:16"
target triple = "msp430---elf"
@g_i32 = global i32 123, align 8
@g_i64 = global i64 456, align 8
@g_i16 = global i16 789, align 8
define i16 @mpyi() #0 {
entry:
; CHECK: mpyi:
; CHECK: call #__mspabi_mpyi_hw
%0 = load volatile i16, i16* @g_i16, align 8
%1 = mul i16 %0, %0
ret i16 %1
}
define i32 @mpyli() #0 {
entry:
; CHECK: mpyli:
; CHECK: call #__mspabi_mpyl_hw32
%0 = load volatile i32, i32* @g_i32, align 8
%1 = mul i32 %0, %0
ret i32 %1
}
define i64 @mpylli() #0 {
entry:
; CHECK: mpylli:
; CHECK: call #__mspabi_mpyll_hw32
%0 = load volatile i64, i64* @g_i64, align 8
%1 = mul i64 %0, %0
ret i64 %1
}
attributes #0 = { nounwind }