forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@302820 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Showing
11 changed files
with
967 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
; RUN: llc -O0 -mhwmult=16bit < %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_hw | ||
%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_hw | ||
%0 = load volatile i64, i64* @g_i64, align 8 | ||
%1 = mul i64 %0, %0 | ||
|
||
ret i64 %1 | ||
} | ||
|
||
attributes #0 = { nounwind } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
; 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 } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
; RUN: llc -O0 -mhwmult=f5series < %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_f5hw | ||
%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_f5hw | ||
%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_f5hw | ||
%0 = load volatile i64, i64* @g_i64, align 8 | ||
%1 = mul i64 %0, %0 | ||
|
||
ret i64 %1 | ||
} | ||
|
||
attributes #0 = { nounwind } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.