-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
llvm-svn: 230149
- Loading branch information
Showing
3 changed files
with
233 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,181 @@ | ||
; RUN: llc -march=amdgcn -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -check-prefix=SI %s | ||
; XUN: llc -march=amdgcn -mcpu=tonga -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -check-prefix=VI %s | ||
|
||
declare i32 @llvm.r600.read.tidig.x() nounwind readnone | ||
declare float @llvm.fabs.f32(float) nounwind readnone | ||
|
||
; GCN-LABEL: {{^}}madmk_f32: | ||
; GCN-DAG: buffer_load_dword [[VA:v[0-9]+]], {{v\[[0-9]+:[0-9]+\]}}, {{s\[[0-9]+:[0-9]+\]}}, 0 addr64{{$}} | ||
; GCN-DAG: buffer_load_dword [[VB:v[0-9]+]], {{v\[[0-9]+:[0-9]+\]}}, {{s\[[0-9]+:[0-9]+\]}}, 0 addr64 offset:4 | ||
; GCN: v_madmk_f32 {{v[0-9]+}}, [[VA]], [[VB]], 0x41200000 | ||
define void @madmk_f32(float addrspace(1)* noalias %out, float addrspace(1)* noalias %in) nounwind { | ||
%tid = tail call i32 @llvm.r600.read.tidig.x() nounwind readnone | ||
%gep.0 = getelementptr float addrspace(1)* %in, i32 %tid | ||
%gep.1 = getelementptr float addrspace(1)* %gep.0, i32 1 | ||
%out.gep = getelementptr float addrspace(1)* %out, i32 %tid | ||
|
||
%a = load float addrspace(1)* %gep.0, align 4 | ||
%b = load float addrspace(1)* %gep.1, align 4 | ||
|
||
%mul = fmul float %a, 10.0 | ||
%madmk = fadd float %mul, %b | ||
store float %madmk, float addrspace(1)* %out.gep, align 4 | ||
ret void | ||
} | ||
|
||
; GCN-LABEL: {{^}}madmk_2_use_f32: | ||
; GCN-DAG: buffer_load_dword [[VA:v[0-9]+]], {{v\[[0-9]+:[0-9]+\]}}, {{s\[[0-9]+:[0-9]+\]}}, 0 addr64{{$}} | ||
; GCN-DAG: buffer_load_dword [[VB:v[0-9]+]], {{v\[[0-9]+:[0-9]+\]}}, {{s\[[0-9]+:[0-9]+\]}}, 0 addr64 offset:4 | ||
; GCN-DAG: buffer_load_dword [[VC:v[0-9]+]], {{v\[[0-9]+:[0-9]+\]}}, {{s\[[0-9]+:[0-9]+\]}}, 0 addr64 offset:8 | ||
; GCN-DAG: v_mov_b32_e32 [[VK:v[0-9]+]], 0x41200000 | ||
; GCN-DAG: v_mad_f32 {{v[0-9]+}}, [[VA]], [[VK]], [[VB]] | ||
; GCN-DAG: v_mad_f32 {{v[0-9]+}}, [[VA]], [[VK]], [[VC]] | ||
; GCN: s_endpgm | ||
define void @madmk_2_use_f32(float addrspace(1)* noalias %out, float addrspace(1)* noalias %in) nounwind { | ||
%tid = tail call i32 @llvm.r600.read.tidig.x() nounwind readnone | ||
|
||
%in.gep.0 = getelementptr float addrspace(1)* %in, i32 %tid | ||
%in.gep.1 = getelementptr float addrspace(1)* %in.gep.0, i32 1 | ||
%in.gep.2 = getelementptr float addrspace(1)* %in.gep.0, i32 2 | ||
|
||
%out.gep.0 = getelementptr float addrspace(1)* %out, i32 %tid | ||
%out.gep.1 = getelementptr float addrspace(1)* %in.gep.0, i32 1 | ||
|
||
%a = load float addrspace(1)* %in.gep.0, align 4 | ||
%b = load float addrspace(1)* %in.gep.1, align 4 | ||
%c = load float addrspace(1)* %in.gep.2, align 4 | ||
|
||
%mul0 = fmul float %a, 10.0 | ||
%mul1 = fmul float %a, 10.0 | ||
%madmk0 = fadd float %mul0, %b | ||
%madmk1 = fadd float %mul1, %c | ||
|
||
store float %madmk0, float addrspace(1)* %out.gep.0, align 4 | ||
store float %madmk1, float addrspace(1)* %out.gep.1, align 4 | ||
ret void | ||
} | ||
|
||
; We don't get any benefit if the constant is an inline immediate. | ||
; GCN-LABEL: {{^}}madmk_inline_imm_f32: | ||
; GCN-DAG: buffer_load_dword [[VA:v[0-9]+]], {{v\[[0-9]+:[0-9]+\]}}, {{s\[[0-9]+:[0-9]+\]}}, 0 addr64{{$}} | ||
; GCN-DAG: buffer_load_dword [[VB:v[0-9]+]], {{v\[[0-9]+:[0-9]+\]}}, {{s\[[0-9]+:[0-9]+\]}}, 0 addr64 offset:4 | ||
; GCN: v_mad_f32 {{v[0-9]+}}, 4.0, [[VA]], [[VB]] | ||
define void @madmk_inline_imm_f32(float addrspace(1)* noalias %out, float addrspace(1)* noalias %in) nounwind { | ||
%tid = tail call i32 @llvm.r600.read.tidig.x() nounwind readnone | ||
%gep.0 = getelementptr float addrspace(1)* %in, i32 %tid | ||
%gep.1 = getelementptr float addrspace(1)* %gep.0, i32 1 | ||
%out.gep = getelementptr float addrspace(1)* %out, i32 %tid | ||
|
||
%a = load float addrspace(1)* %gep.0, align 4 | ||
%b = load float addrspace(1)* %gep.1, align 4 | ||
|
||
%mul = fmul float %a, 4.0 | ||
%madmk = fadd float %mul, %b | ||
store float %madmk, float addrspace(1)* %out.gep, align 4 | ||
ret void | ||
} | ||
|
||
; GCN-LABEL: {{^}}s_s_madmk_f32: | ||
; GCN-NOT: v_madmk_f32 | ||
; GCN: v_mad_f32 | ||
; GCN: s_endpgm | ||
define void @s_s_madmk_f32(float addrspace(1)* noalias %out, float %a, float %b) nounwind { | ||
%tid = tail call i32 @llvm.r600.read.tidig.x() nounwind readnone | ||
%out.gep = getelementptr float addrspace(1)* %out, i32 %tid | ||
|
||
%mul = fmul float %a, 10.0 | ||
%madmk = fadd float %mul, %b | ||
store float %madmk, float addrspace(1)* %out.gep, align 4 | ||
ret void | ||
} | ||
|
||
; GCN-LABEL: {{^}}v_s_madmk_f32: | ||
; GCN-NOT: v_madmk_f32 | ||
; GCN: v_mad_f32 | ||
; GCN: s_endpgm | ||
define void @v_s_madmk_f32(float addrspace(1)* noalias %out, float addrspace(1)* noalias %in, float %b) nounwind { | ||
%tid = tail call i32 @llvm.r600.read.tidig.x() nounwind readnone | ||
%gep.0 = getelementptr float addrspace(1)* %in, i32 %tid | ||
%out.gep = getelementptr float addrspace(1)* %out, i32 %tid | ||
%a = load float addrspace(1)* %gep.0, align 4 | ||
|
||
%mul = fmul float %a, 10.0 | ||
%madmk = fadd float %mul, %b | ||
store float %madmk, float addrspace(1)* %out.gep, align 4 | ||
ret void | ||
} | ||
|
||
; GCN-LABEL: {{^}}scalar_vector_madmk_f32: | ||
; GCN-NOT: v_madmk_f32 | ||
; GCN: v_mad_f32 | ||
; GCN: s_endpgm | ||
define void @scalar_vector_madmk_f32(float addrspace(1)* noalias %out, float addrspace(1)* noalias %in, float %a) nounwind { | ||
%tid = tail call i32 @llvm.r600.read.tidig.x() nounwind readnone | ||
%gep.0 = getelementptr float addrspace(1)* %in, i32 %tid | ||
%out.gep = getelementptr float addrspace(1)* %out, i32 %tid | ||
%b = load float addrspace(1)* %gep.0, align 4 | ||
|
||
%mul = fmul float %a, 10.0 | ||
%madmk = fadd float %mul, %b | ||
store float %madmk, float addrspace(1)* %out.gep, align 4 | ||
ret void | ||
} | ||
|
||
; GCN-LABEL: {{^}}no_madmk_src0_modifier_f32: | ||
; GCN-DAG: buffer_load_dword [[VA:v[0-9]+]], {{v\[[0-9]+:[0-9]+\]}}, {{s\[[0-9]+:[0-9]+\]}}, 0 addr64{{$}} | ||
; GCN-DAG: buffer_load_dword [[VB:v[0-9]+]], {{v\[[0-9]+:[0-9]+\]}}, {{s\[[0-9]+:[0-9]+\]}}, 0 addr64 offset:4 | ||
; GCN: v_mad_f32 {{v[0-9]+}}, |{{v[0-9]+}}|, {{v[0-9]+}}, {{[sv][0-9]+}} | ||
define void @no_madmk_src0_modifier_f32(float addrspace(1)* noalias %out, float addrspace(1)* noalias %in) nounwind { | ||
%tid = tail call i32 @llvm.r600.read.tidig.x() nounwind readnone | ||
%gep.0 = getelementptr float addrspace(1)* %in, i32 %tid | ||
%gep.1 = getelementptr float addrspace(1)* %gep.0, i32 1 | ||
%out.gep = getelementptr float addrspace(1)* %out, i32 %tid | ||
|
||
%a = load float addrspace(1)* %gep.0, align 4 | ||
%b = load float addrspace(1)* %gep.1, align 4 | ||
|
||
%a.fabs = call float @llvm.fabs.f32(float %a) nounwind readnone | ||
|
||
%mul = fmul float %a.fabs, 10.0 | ||
%madmk = fadd float %mul, %b | ||
store float %madmk, float addrspace(1)* %out.gep, align 4 | ||
ret void | ||
} | ||
|
||
; GCN-LABEL: {{^}}no_madmk_src2_modifier_f32: | ||
; GCN-DAG: buffer_load_dword [[VA:v[0-9]+]], {{v\[[0-9]+:[0-9]+\]}}, {{s\[[0-9]+:[0-9]+\]}}, 0 addr64{{$}} | ||
; GCN-DAG: buffer_load_dword [[VB:v[0-9]+]], {{v\[[0-9]+:[0-9]+\]}}, {{s\[[0-9]+:[0-9]+\]}}, 0 addr64 offset:4 | ||
; GCN: v_mad_f32 {{v[0-9]+}}, {{v[0-9]+}}, {{v[0-9]+}}, |{{[sv][0-9]+}}| | ||
define void @no_madmk_src2_modifier_f32(float addrspace(1)* noalias %out, float addrspace(1)* noalias %in) nounwind { | ||
%tid = tail call i32 @llvm.r600.read.tidig.x() nounwind readnone | ||
%gep.0 = getelementptr float addrspace(1)* %in, i32 %tid | ||
%gep.1 = getelementptr float addrspace(1)* %gep.0, i32 1 | ||
%out.gep = getelementptr float addrspace(1)* %out, i32 %tid | ||
|
||
%a = load float addrspace(1)* %gep.0, align 4 | ||
%b = load float addrspace(1)* %gep.1, align 4 | ||
|
||
%b.fabs = call float @llvm.fabs.f32(float %b) nounwind readnone | ||
|
||
%mul = fmul float %a, 10.0 | ||
%madmk = fadd float %mul, %b.fabs | ||
store float %madmk, float addrspace(1)* %out.gep, align 4 | ||
ret void | ||
} | ||
|
||
; GCN-LABEL: {{^}}madmk_add_inline_imm_f32: | ||
; GCN: buffer_load_dword [[A:v[0-9]+]] | ||
; GCN: v_mov_b32_e32 [[VK:v[0-9]+]], 0x41200000 | ||
; GCN: v_mad_f32 {{v[0-9]+}}, [[VK]], [[A]], 2.0 | ||
define void @madmk_add_inline_imm_f32(float addrspace(1)* noalias %out, float addrspace(1)* noalias %in) nounwind { | ||
%tid = tail call i32 @llvm.r600.read.tidig.x() nounwind readnone | ||
%gep.0 = getelementptr float addrspace(1)* %in, i32 %tid | ||
%out.gep = getelementptr float addrspace(1)* %out, i32 %tid | ||
|
||
%a = load float addrspace(1)* %gep.0, align 4 | ||
|
||
%mul = fmul float %a, 10.0 | ||
%madmk = fadd float %mul, 2.0 | ||
store float %madmk, float addrspace(1)* %out.gep, align 4 | ||
ret void | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters