2015-01-06 18:00:21 +00:00
|
|
|
; RUN: llc -march=amdgcn -mcpu=SI -verify-machineinstrs < %s | FileCheck -check-prefix=SI -check-prefix=FUNC %s
|
2015-01-27 17:27:15 +00:00
|
|
|
; RUN: llc -march=amdgcn -mcpu=tonga -verify-machineinstrs < %s | FileCheck -check-prefix=SI -check-prefix=FUNC %s
|
2014-06-19 04:24:43 +00:00
|
|
|
; RUN: llc -march=r600 -mcpu=cypress -verify-machineinstrs < %s | FileCheck -check-prefix=EG -check-prefix=FUNC %s
|
|
|
|
|
|
|
|
declare i32 @llvm.AMDGPU.abs(i32) nounwind readnone
|
|
|
|
|
|
|
|
; Legacy name
|
|
|
|
declare i32 @llvm.AMDIL.abs.i32(i32) nounwind readnone
|
|
|
|
|
2014-10-01 17:15:17 +00:00
|
|
|
; FUNC-LABEL: {{^}}s_abs_i32:
|
2014-11-05 14:50:53 +00:00
|
|
|
; SI: s_sub_i32
|
|
|
|
; SI: s_max_i32
|
|
|
|
; SI: s_endpgm
|
2014-06-19 04:24:43 +00:00
|
|
|
|
|
|
|
; EG: SUB_INT
|
|
|
|
; EG: MAX_INT
|
|
|
|
define void @s_abs_i32(i32 addrspace(1)* %out, i32 %src) nounwind {
|
|
|
|
%abs = call i32 @llvm.AMDGPU.abs(i32 %src) nounwind readnone
|
|
|
|
store i32 %abs, i32 addrspace(1)* %out, align 4
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-01 17:15:17 +00:00
|
|
|
; FUNC-LABEL: {{^}}v_abs_i32:
|
2014-11-05 14:50:53 +00:00
|
|
|
; SI: v_sub_i32_e32
|
|
|
|
; SI: v_max_i32_e32
|
|
|
|
; SI: s_endpgm
|
2014-06-19 04:24:43 +00:00
|
|
|
|
|
|
|
; EG: SUB_INT
|
|
|
|
; EG: MAX_INT
|
|
|
|
define void @v_abs_i32(i32 addrspace(1)* %out, i32 addrspace(1)* %src) nounwind {
|
|
|
|
%val = load i32 addrspace(1)* %src, align 4
|
|
|
|
%abs = call i32 @llvm.AMDGPU.abs(i32 %val) nounwind readnone
|
|
|
|
store i32 %abs, i32 addrspace(1)* %out, align 4
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-01 17:15:17 +00:00
|
|
|
; FUNC-LABEL: {{^}}abs_i32_legacy_amdil:
|
2014-11-05 14:50:53 +00:00
|
|
|
; SI: v_sub_i32_e32
|
|
|
|
; SI: v_max_i32_e32
|
|
|
|
; SI: s_endpgm
|
2014-06-19 04:24:43 +00:00
|
|
|
|
|
|
|
; EG: SUB_INT
|
|
|
|
; EG: MAX_INT
|
|
|
|
define void @abs_i32_legacy_amdil(i32 addrspace(1)* %out, i32 addrspace(1)* %src) nounwind {
|
|
|
|
%val = load i32 addrspace(1)* %src, align 4
|
|
|
|
%abs = call i32 @llvm.AMDIL.abs.i32(i32 %val) nounwind readnone
|
|
|
|
store i32 %abs, i32 addrspace(1)* %out, align 4
|
|
|
|
ret void
|
|
|
|
}
|