mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +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
42 lines
872 B
LLVM
42 lines
872 B
LLVM
; RUN: llc -mtriple=x86_64-none-linux -fast-isel -fast-isel-abort=1 -verify-machineinstrs < %s | FileCheck %s
|
|
|
|
define i64 @test_sdiv64(i64 %dividend, i64 %divisor) nounwind {
|
|
entry:
|
|
%result = sdiv i64 %dividend, %divisor
|
|
ret i64 %result
|
|
}
|
|
|
|
; CHECK-LABEL: test_sdiv64:
|
|
; CHECK: cqto
|
|
; CHECK: idivq
|
|
|
|
define i64 @test_srem64(i64 %dividend, i64 %divisor) nounwind {
|
|
entry:
|
|
%result = srem i64 %dividend, %divisor
|
|
ret i64 %result
|
|
}
|
|
|
|
; CHECK-LABEL: test_srem64:
|
|
; CHECK: cqto
|
|
; CHECK: idivq
|
|
|
|
define i64 @test_udiv64(i64 %dividend, i64 %divisor) nounwind {
|
|
entry:
|
|
%result = udiv i64 %dividend, %divisor
|
|
ret i64 %result
|
|
}
|
|
|
|
; CHECK-LABEL: test_udiv64:
|
|
; CHECK: xorl
|
|
; CHECK: divq
|
|
|
|
define i64 @test_urem64(i64 %dividend, i64 %divisor) nounwind {
|
|
entry:
|
|
%result = urem i64 %dividend, %divisor
|
|
ret i64 %result
|
|
}
|
|
|
|
; CHECK-LABEL: test_urem64:
|
|
; CHECK: xorl
|
|
; CHECK: divq
|