nir: mako all the intrinsics
I threatened to do this a long time ago.. I probably *should* have done it a long time ago when there where many fewer intrinsics. But the system of macro/#include magic for dealing with intrinsics is a bit annoying, and python has the nice property of optional fxn params, making it possible to define new intrinsics while ignoring parameters that are not applicable (and naming optional params). And not having to specify various array lengths explicitly is nice too. I think the end result makes it easier to add new intrinsics. v2: couple small fixes found with a test program to compare the old and new tables v3: misc comments, don't rely on capture=true for meson.build, get rid of system_values table to avoid return value of intrinsic() and *mostly* remove side-effects, add autotools build support v4: scons build Signed-off-by: Rob Clark <robdclark@gmail.com> Acked-by: Dylan Baker <dylan@pnwbakers.com> Acked-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
@@ -945,16 +945,7 @@ typedef struct {
|
||||
struct nir_function *callee;
|
||||
} nir_call_instr;
|
||||
|
||||
#define INTRINSIC(name, num_srcs, src_components, has_dest, dest_components, \
|
||||
num_variables, num_indices, idx0, idx1, idx2, flags) \
|
||||
nir_intrinsic_##name,
|
||||
|
||||
#define LAST_INTRINSIC(name) nir_last_intrinsic = nir_intrinsic_##name,
|
||||
|
||||
typedef enum {
|
||||
#include "nir_intrinsics.h"
|
||||
nir_num_intrinsics = nir_last_intrinsic + 1
|
||||
} nir_intrinsic_op;
|
||||
|
||||
#define NIR_INTRINSIC_MAX_CONST_INDEX 3
|
||||
|
||||
|
Reference in New Issue
Block a user