-
Notifications
You must be signed in to change notification settings - Fork 12k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AMDGPU] New ttracedata intrinsics (#70235)
Add llvm.amdgcn.s.ttracedata and llvm.amdgcn.s.ttracedata.imm which map directly to the corresponding instructions s_ttracedata and s_ttracedata_imm. These are inherently whole-wave operations so any non-uniform inputs are readfirstlaned.
- Loading branch information
Showing
4 changed files
with
77 additions
and
2 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
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,53 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 3 | ||
; RUN: llc -global-isel=0 -march=amdgcn -mcpu=gfx1100 -verify-machineinstrs < %s | FileCheck -check-prefixes=GFX11,GFX11-SDAG %s | ||
; RUN: llc -global-isel=1 -march=amdgcn -mcpu=gfx1100 -verify-machineinstrs < %s | FileCheck -check-prefixes=GFX11,GFX11-GISEL %s | ||
|
||
declare void @llvm.amdgcn.s.ttracedata(i32) | ||
declare void @llvm.amdgcn.s.ttracedata.imm(i16) | ||
|
||
define amdgpu_cs void @ttracedata_c() { | ||
; GFX11-LABEL: ttracedata_c: | ||
; GFX11: ; %bb.0: | ||
; GFX11-NEXT: s_mov_b32 m0, 0xf4240 | ||
; GFX11-NEXT: s_ttracedata | ||
; GFX11-NEXT: s_endpgm | ||
call void @llvm.amdgcn.s.ttracedata(i32 1000000) | ||
ret void | ||
} | ||
|
||
define amdgpu_cs void @ttracedata_s(i32 inreg %val) { | ||
; GFX11-LABEL: ttracedata_s: | ||
; GFX11: ; %bb.0: | ||
; GFX11-NEXT: s_mov_b32 m0, s0 | ||
; GFX11-NEXT: s_ttracedata | ||
; GFX11-NEXT: s_endpgm | ||
call void @llvm.amdgcn.s.ttracedata(i32 %val) | ||
ret void | ||
} | ||
|
||
define amdgpu_cs void @ttracedata_v(i32 %val) { | ||
; GFX11-SDAG-LABEL: ttracedata_v: | ||
; GFX11-SDAG: ; %bb.0: | ||
; GFX11-SDAG-NEXT: v_readfirstlane_b32 s0, v0 | ||
; GFX11-SDAG-NEXT: s_delay_alu instid0(VALU_DEP_1) | ||
; GFX11-SDAG-NEXT: s_mov_b32 m0, s0 | ||
; GFX11-SDAG-NEXT: s_ttracedata | ||
; GFX11-SDAG-NEXT: s_endpgm | ||
; | ||
; GFX11-GISEL-LABEL: ttracedata_v: | ||
; GFX11-GISEL: ; %bb.0: | ||
; GFX11-GISEL-NEXT: v_readfirstlane_b32 m0, v0 | ||
; GFX11-GISEL-NEXT: s_ttracedata | ||
; GFX11-GISEL-NEXT: s_endpgm | ||
call void @llvm.amdgcn.s.ttracedata(i32 %val) | ||
ret void | ||
} | ||
|
||
define amdgpu_cs void @ttracedata_imm() { | ||
; GFX11-LABEL: ttracedata_imm: | ||
; GFX11: ; %bb.0: | ||
; GFX11-NEXT: s_ttracedata_imm 0x3e8 | ||
; GFX11-NEXT: s_endpgm | ||
call void @llvm.amdgcn.s.ttracedata.imm(i16 1000) | ||
ret void | ||
} |