forked from OSchip/llvm-project
[RISCV] Extend 32-bit test coverage of neg-abs tests for D91120
This commit is contained in:
parent
fceaff41d6
commit
9374e7b178
|
@ -1,17 +1,55 @@
|
|||
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
||||
; RUN: llc -verify-machineinstrs \
|
||||
; RUN: -mtriple=riscv64-unknown-unknown < %s | FileCheck %s
|
||||
; RUN: llc < %s -verify-machineinstrs -mtriple=riscv32-unknown-unknown | FileCheck %s --check-prefix=RV32
|
||||
; RUN: llc < %s -verify-machineinstrs -mtriple=riscv64-unknown-unknown | FileCheck %s --check-prefix=RV64
|
||||
|
||||
declare i32 @llvm.abs.i32(i32, i1 immarg)
|
||||
declare i64 @llvm.abs.i64(i64, i1 immarg)
|
||||
|
||||
define i64@neg_abs(i64 %x) {
|
||||
; CHECK-LABEL: neg_abs:
|
||||
; CHECK: # %bb.0:
|
||||
; CHECK-NEXT: srai a1, a0, 63
|
||||
; CHECK-NEXT: add a0, a0, a1
|
||||
; CHECK-NEXT: xor a0, a0, a1
|
||||
; CHECK-NEXT: neg a0, a0
|
||||
; CHECK-NEXT: ret
|
||||
define i32 @neg_abs32(i32 %x) {
|
||||
; RV32-LABEL: neg_abs32:
|
||||
; RV32: # %bb.0:
|
||||
; RV32-NEXT: srai a1, a0, 31
|
||||
; RV32-NEXT: add a0, a0, a1
|
||||
; RV32-NEXT: xor a0, a0, a1
|
||||
; RV32-NEXT: neg a0, a0
|
||||
; RV32-NEXT: ret
|
||||
;
|
||||
; RV64-LABEL: neg_abs32:
|
||||
; RV64: # %bb.0:
|
||||
; RV64-NEXT: sext.w a1, a0
|
||||
; RV64-NEXT: srai a1, a1, 63
|
||||
; RV64-NEXT: add a0, a0, a1
|
||||
; RV64-NEXT: xor a0, a0, a1
|
||||
; RV64-NEXT: negw a0, a0
|
||||
; RV64-NEXT: ret
|
||||
%abs = tail call i32 @llvm.abs.i32(i32 %x, i1 true)
|
||||
%neg = sub nsw i32 0, %abs
|
||||
ret i32 %neg
|
||||
}
|
||||
|
||||
define i64 @neg_abs64(i64 %x) {
|
||||
; RV32-LABEL: neg_abs64:
|
||||
; RV32: # %bb.0:
|
||||
; RV32-NEXT: bgez a1, .LBB1_2
|
||||
; RV32-NEXT: # %bb.1:
|
||||
; RV32-NEXT: snez a2, a0
|
||||
; RV32-NEXT: add a1, a1, a2
|
||||
; RV32-NEXT: neg a1, a1
|
||||
; RV32-NEXT: neg a0, a0
|
||||
; RV32-NEXT: .LBB1_2:
|
||||
; RV32-NEXT: snez a2, a0
|
||||
; RV32-NEXT: add a1, a1, a2
|
||||
; RV32-NEXT: neg a1, a1
|
||||
; RV32-NEXT: neg a0, a0
|
||||
; RV32-NEXT: ret
|
||||
;
|
||||
; RV64-LABEL: neg_abs64:
|
||||
; RV64: # %bb.0:
|
||||
; RV64-NEXT: srai a1, a0, 63
|
||||
; RV64-NEXT: add a0, a0, a1
|
||||
; RV64-NEXT: xor a0, a0, a1
|
||||
; RV64-NEXT: neg a0, a0
|
||||
; RV64-NEXT: ret
|
||||
%abs = tail call i64 @llvm.abs.i64(i64 %x, i1 true)
|
||||
%neg = sub nsw i64 0, %abs
|
||||
ret i64 %neg
|
||||
|
|
Loading…
Reference in New Issue