2014-02-16 13:28:15 +00:00
|
|
|
; RUN: llc < %s -mtriple=thumbv7-apple-darwin10 -march=thumb -mcpu=cortex-m3 | FileCheck %s -check-prefix=CHECK -check-prefix=CORTEXM3
|
|
|
|
; RUN: llc < %s -mtriple=thumbv7-apple-darwin10 -march=thumb -mcpu=cortex-m4 | FileCheck %s -check-prefix=CHECK -check-prefix=CORTEXM4
|
2014-10-01 09:02:17 +00:00
|
|
|
; RUN: llc < %s -mtriple=thumbv7-apple-darwin10 -march=thumb -mcpu=cortex-m7 | FileCheck %s -check-prefix=CHECK -check-prefix=CORTEXM7
|
2014-02-16 13:28:15 +00:00
|
|
|
; RUN: llc < %s -mtriple=thumbv7-apple-darwin10 -march=thumb -mcpu=cortex-a8 | FileCheck %s -check-prefix=CHECK -check-prefix=CORTEXA8
|
2010-08-11 15:44:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
define float @foo(float %a, float %b) {
|
|
|
|
entry:
|
2014-02-16 13:28:15 +00:00
|
|
|
; CHECK-LABEL: foo:
|
2014-08-06 11:13:14 +00:00
|
|
|
; CORTEXM3: bl ___mulsf3
|
2013-01-19 00:03:32 +00:00
|
|
|
; CORTEXM4: vmul.f32 s
|
2014-10-01 09:02:17 +00:00
|
|
|
; CORTEXM7: vmul.f32 s
|
2012-09-29 21:43:49 +00:00
|
|
|
; CORTEXA8: vmul.f32 d
|
2010-08-11 15:44:15 +00:00
|
|
|
%0 = fmul float %a, %b
|
|
|
|
ret float %0
|
|
|
|
}
|
|
|
|
|
|
|
|
define double @bar(double %a, double %b) {
|
|
|
|
entry:
|
2014-02-16 13:28:15 +00:00
|
|
|
; CHECK-LABEL: bar:
|
2010-08-11 15:44:15 +00:00
|
|
|
%0 = fmul double %a, %b
|
2014-08-06 11:13:14 +00:00
|
|
|
; CORTEXM3: bl ___muldf3
|
2014-08-21 12:50:31 +00:00
|
|
|
; CORTEXM4: {{bl|b.w}} ___muldf3
|
2014-10-01 09:02:17 +00:00
|
|
|
; CORTEXM7: vmul.f64 d
|
2012-09-29 21:43:49 +00:00
|
|
|
; CORTEXA8: vmul.f64 d
|
2010-08-11 15:44:15 +00:00
|
|
|
ret double %0
|
|
|
|
}
|