From c846e0812b672d980f6d099beffd5337698b573c Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Wed, 25 May 2022 09:38:48 -0400 Subject: [PATCH] pan/bi: Add slot to bi_instr For better handling of message-passing instructions. Signed-off-by: Alyssa Rosenzweig Part-of: --- src/panfrost/bifrost/compiler.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/panfrost/bifrost/compiler.h b/src/panfrost/bifrost/compiler.h index 4527affd3f9..076c4bf535d 100644 --- a/src/panfrost/bifrost/compiler.h +++ b/src/panfrost/bifrost/compiler.h @@ -390,6 +390,9 @@ typedef struct { /* Flow control associated with a Valhall instruction */ uint8_t flow; + /* Slot associated with a message-passing instruction */ + uint8_t slot; + /* Can we spill the value written here? Used to prevent * useless double fills */ bool no_spill;