aboutsummaryrefslogblamecommitdiff
path: root/test/CodeGen/X86/fast-isel-divrem-x86-64.ll
blob: 9c04ea67d5198a907fc51a27378c021a8bb1f74b (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                                                             






                                                               
                           








                                                               
                           








                                                               
                           








                                                               
                           

             
; 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