pan/bi: Add imm_f32 helper
Pattern comes up surprisingly often. Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8215>
This commit is contained in:
@@ -31,6 +31,7 @@
|
||||
#include "bi_opcodes.h"
|
||||
#include "compiler/nir/nir.h"
|
||||
#include "panfrost/util/pan_ir.h"
|
||||
#include "util/u_math.h"
|
||||
|
||||
/* Bifrost opcodes are tricky -- the same op may exist on both FMA and
|
||||
* ADD with two completely different opcodes, and opcodes can be varying
|
||||
@@ -449,6 +450,12 @@ bi_imm_u32(uint32_t imm)
|
||||
};
|
||||
}
|
||||
|
||||
static inline bi_index
|
||||
bi_imm_f32(float imm)
|
||||
{
|
||||
return bi_imm_u32(fui(imm));
|
||||
}
|
||||
|
||||
static inline bi_index
|
||||
bi_null()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user