[PATCH] D31223: AMDGPU: Insert wait at start of callee functions
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 21 17:32:43 PDT 2017
arsenm updated this revision to Diff 92574.
arsenm added a comment.
Missed test update
https://reviews.llvm.org/D31223
Files:
lib/Target/AMDGPU/SIInsertWaits.cpp
test/CodeGen/AMDGPU/hsa-func.ll
test/CodeGen/AMDGPU/insert-waits-callee.mir
Index: test/CodeGen/AMDGPU/insert-waits-callee.mir
===================================================================
--- /dev/null
+++ test/CodeGen/AMDGPU/insert-waits-callee.mir
@@ -0,0 +1,25 @@
+# RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=fiji -verify-machineinstrs -run-pass si-insert-waits -o - %s | FileCheck %s
+--- |
+ define float @entry_callee_wait(float %arg) #0 {
+ ret float %arg
+ }
+
+ attributes #0 = { nounwind }
+...
+---
+# CHECK-LABEL: name: entry_callee_wait{{$}}
+# CHECK: bb.0:
+# CHECK-NEXT: S_WAITCNT 0{{$}}
+# CHECK-NEXT: V_ADD_F32
+# CHECK-NEXT: S_SETPC_B64
+liveins:
+ - { reg: '%sgpr0_sgpr1' }
+ - { reg: '%vgpr0' }
+
+name: entry_callee_wait
+body: |
+ bb.0:
+ %vgpr0 = V_ADD_F32_e32 %vgpr0, %vgpr0, implicit %exec
+ S_SETPC_B64 killed %sgpr0_sgpr1
+
+...
Index: test/CodeGen/AMDGPU/hsa-func.ll
===================================================================
--- test/CodeGen/AMDGPU/hsa-func.ll
+++ test/CodeGen/AMDGPU/hsa-func.ll
@@ -26,7 +26,7 @@
; ELF: Symbol {
; ELF: Name: simple
-; ELF: Size: 288
+; ELF: Size: 292
; ELF: Type: Function (0x2)
; ELF: }
Index: lib/Target/AMDGPU/SIInsertWaits.cpp
===================================================================
--- lib/Target/AMDGPU/SIInsertWaits.cpp
+++ lib/Target/AMDGPU/SIInsertWaits.cpp
@@ -690,5 +690,19 @@
for (MachineInstr *I : RemoveMI)
I->eraseFromParent();
+ if (!MFI->isEntryFunction()) {
+ // Wait for any outstanding memory operations that the input registers may
+ // depend on. We can't track them and it's better to to the wait after the
+ // costly call sequence.
+
+ // TODO: Could insert earlier and schedule more liberally with operations
+ // that only use caller preserved registers.
+ MachineBasicBlock &EntryBB = MF.front();
+ BuildMI(EntryBB, EntryBB.getFirstNonPHI(), DebugLoc(), TII->get(AMDGPU::S_WAITCNT))
+ .addImm(0);
+
+ Changes = true;
+ }
+
return Changes;
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D31223.92574.patch
Type: text/x-patch
Size: 1966 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170322/9a8bac86/attachment.bin>
More information about the llvm-commits
mailing list