mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
32875af6e3
Summary: Currently fast-isel-abort will only abort for regular instructions, and just warn for function calls, terminators, function arguments. There is already fast-isel-abort-args but nothing for calls and terminators. This change turns the fast-isel-abort options into an integer option, so that multiple levels of strictness can be defined. This will help no being surprised when the "abort" option indeed does not abort, and enables the possibility to write test that verifies that no intrinsics are forgotten by fast-isel. Reviewers: resistor, echristo Subscribers: jfb, llvm-commits Differential Revision: http://reviews.llvm.org/D7941 From: Mehdi Amini <mehdi.amini@apple.com> llvm-svn: 230775
27 lines
1.1 KiB
LLVM
27 lines
1.1 KiB
LLVM
; RUN: llc < %s -mtriple=x86_64-apple-darwin -mattr=-avx,+sse2 | FileCheck %s --check-prefix=SSE2
|
|
; RUN: llc < %s -mtriple=x86_64-apple-darwin -mattr=-avx,+sse2 -fast-isel -fast-isel-abort=1 | FileCheck %s --check-prefix=SSE2
|
|
; RUN: llc < %s -mtriple=x86_64-apple-darwin -mattr=-avx2,+avx | FileCheck %s --check-prefix=AVX
|
|
; RUN: llc < %s -mtriple=x86_64-apple-darwin -mattr=-avx2,+avx -fast-isel -fast-isel-abort=1 | FileCheck %s --check-prefix=AVX
|
|
|
|
define float @test_sqrt_f32(float %a) {
|
|
; SSE2-LABEL: test_sqrt_f32
|
|
; SSE2: sqrtss %xmm0, %xmm0
|
|
; AVX-LABEL: test_sqrt_f32
|
|
; AVX: vsqrtss %xmm0, %xmm0
|
|
%res = call float @llvm.sqrt.f32(float %a)
|
|
ret float %res
|
|
}
|
|
declare float @llvm.sqrt.f32(float) nounwind readnone
|
|
|
|
define double @test_sqrt_f64(double %a) {
|
|
; SSE2-LABEL: test_sqrt_f64
|
|
; SSE2: sqrtsd %xmm0, %xmm0
|
|
; AVX-LABEL: test_sqrt_f64
|
|
; AVX: vsqrtsd %xmm0, %xmm0
|
|
%res = call double @llvm.sqrt.f64(double %a)
|
|
ret double %res
|
|
}
|
|
declare double @llvm.sqrt.f64(double) nounwind readnone
|
|
|
|
|