forked from jeremyhu/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.
ARM: lower fpowi appropriately for Windows ARM
This handles the last case of the builtin function calls that we would generate code which differed from Microsoft's ABI. Rather than generating a call to `__pow{d,s}i2` we now promote the parameter to a float or double and invoke `powf` or `pow` instead. Addresses PR30825! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@286082 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Showing
2 changed files
with
114 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
; RUN: llc -mtriple thumbv7--windows-itanium -filetype asm -o - %s | FileCheck %s | ||
|
||
declare double @llvm.powi.f64(double, i32) | ||
declare float @llvm.powi.f32(float, i32) | ||
|
||
define arm_aapcs_vfpcc double @d(double %d, i32 %i) { | ||
entry: | ||
%0 = tail call double @llvm.powi.f64(double %d, i32 %i) | ||
ret double %0 | ||
} | ||
|
||
; CHECK-LABEL: d: | ||
; CHECK: vmov s[[REGISTER:[0-9]+]], r0 | ||
; CHECK-NEXT: vcvt.f64.s32 d1, s[[REGISTER]] | ||
; CHECK-NEXT: b pow | ||
; CHECK-NOT: __powisf2 | ||
|
||
define arm_aapcs_vfpcc float @f(float %f, i32 %i) { | ||
entry: | ||
%0 = tail call float @llvm.powi.f32(float %f, i32 %i) | ||
ret float %0 | ||
} | ||
|
||
; CHECK-LABEL: f: | ||
; CHECK: vmov s[[REGISTER:[0-9]+]], r0 | ||
; CHECK-NEXT: vcvt.f32.s32 s1, s[[REGISTER]] | ||
; CHECK-NEXT: b pow | ||
; CHECK-NOT: __powisf2 | ||
|
||
define arm_aapcs_vfpcc float @g(double %d, i32 %i) { | ||
entry: | ||
%0 = tail call double @llvm.powi.f64(double %d, i32 %i) | ||
%conv = fptrunc double %0 to float | ||
ret float %conv | ||
} | ||
|
||
; CHECK-LABEL: g: | ||
; CHECK: vmov s[[REGISTER:[0-9]+]], r0 | ||
; CHECK-NEXT: vcvt.f64.s32 d1, s[[REGISTER]] | ||
; CHECK-NEXT: bl pow | ||
; CHECK-NOT: bl __powidf2 | ||
; CHECK-NEXT: vcvt.f32.f64 s0, d0 | ||
|
||
define arm_aapcs_vfpcc double @h(float %f, i32 %i) { | ||
entry: | ||
%0 = tail call float @llvm.powi.f32(float %f, i32 %i) | ||
%conv = fpext float %0 to double | ||
ret double %conv | ||
} | ||
|
||
; CHECK-LABEL: h: | ||
; CHECK: vmov s[[REGISTER:[0-9]+]], r0 | ||
; CHECK-NEXT: vcvt.f32.s32 s1, s[[REGISTER]] | ||
; CHECK-NEXT: bl powf | ||
; CHECK-NOT: bl __powisf2 | ||
; CHECK-NEXT: vcvt.f64.f32 d0, s0 | ||
|