mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
d0d0424368
Differential Revision: http://reviews.llvm.org/D5938 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222521 91177308-0d34-0410-b5e6-96231b3b80d8
29 lines
680 B
LLVM
29 lines
680 B
LLVM
; RUN: llc -mtriple=x86_64-unknown-linux-gnu -mattr=+idivl-to-divb < %s | FileCheck -check-prefix=DIV32 %s
|
|
; RUN: llc -mtriple=x86_64-unknown-linux-gnu -mattr=+idivq-to-divw < %s | FileCheck -check-prefix=DIV64 %s
|
|
|
|
define i32 @div32(i32 %a, i32 %b) {
|
|
entry:
|
|
; DIV32-LABEL: div32:
|
|
; DIV32: orl %{{.*}}, [[REG:%[a-z]+]]
|
|
; DIV32: testl $-256, [[REG]]
|
|
; DIV32: divb
|
|
; DIV64-LABEL: div32:
|
|
; DIV64-NOT: divb
|
|
%div = sdiv i32 %a, %b
|
|
ret i32 %div
|
|
}
|
|
|
|
define i64 @div64(i64 %a, i64 %b) {
|
|
entry:
|
|
; DIV32-LABEL: div64:
|
|
; DIV32-NOT: divw
|
|
; DIV64-LABEL: div64:
|
|
; DIV64: orq %{{.*}}, [[REG:%[a-z]+]]
|
|
; DIV64: testq $-65536, [[REG]]
|
|
; DIV64: divw
|
|
%div = sdiv i64 %a, %b
|
|
ret i64 %div
|
|
}
|
|
|
|
|