brw_inst *inst, uint64_t v) \
{ \
assert(assertions); \
+ (void) brw; \
brw_inst_set_bits(inst, high, low, v); \
} \
static inline uint64_t \
brw_inst *inst) \
{ \
assert(assertions); \
+ (void) brw; \
return brw_inst_bits(inst, high, low); \
}
assert(assertions); \
assert(v <= (1 << 16) - 1); \
assert(v > -(1 << 16)); \
+ (void) brw; \
brw_inst_set_bits(inst, high, low, (uint16_t) v); \
} \
static inline int16_t \
brw_inst_##name(const struct brw_context *brw, brw_inst *inst) \
{ \
assert(assertions); \
+ (void) brw; \
return brw_inst_bits(inst, high, low); \
}
static inline int
brw_inst_imm_d(const struct brw_context *brw, brw_inst *insn)
{
+ (void) brw;
return brw_inst_bits(insn, 127, 96);
}
static inline unsigned
brw_inst_imm_ud(const struct brw_context *brw, brw_inst *insn)
{
+ (void) brw;
return brw_inst_bits(insn, 127, 96);
}
brw_inst_imm_f(const struct brw_context *brw, brw_inst *insn)
{
fi_type ft;
+ (void) brw;
ft.u = brw_inst_bits(insn, 127, 96);
return ft.f;
}
brw_inst_set_imm_d(const struct brw_context *brw,
brw_inst *insn, int value)
{
+ (void) brw;
return brw_inst_set_bits(insn, 127, 96, value);
}
brw_inst_set_imm_ud(const struct brw_context *brw,
brw_inst *insn, unsigned value)
{
+ (void) brw;
return brw_inst_set_bits(insn, 127, 96, value);
}
brw_inst *insn, float value)
{
fi_type ft;
+ (void) brw;
ft.f = value;
brw_inst_set_bits(insn, 127, 96, ft.u);
}