mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 16:00:08 +01:00
pan/bi: Remove dated ASSERTED properties
This was used when we were only unit testing. Now that we have an actual scheduler, it's pure noise. Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12109>
This commit is contained in:
parent
526ae8979e
commit
0d08ce287b
1 changed files with 5 additions and 5 deletions
|
|
@ -479,7 +479,7 @@ bi_can_iaddc(bi_instr *ins)
|
||||||
ins->src[1].swizzle == BI_SWIZZLE_H01);
|
ins->src[1].swizzle == BI_SWIZZLE_H01);
|
||||||
}
|
}
|
||||||
|
|
||||||
ASSERTED static bool
|
static bool
|
||||||
bi_can_fma(bi_instr *ins)
|
bi_can_fma(bi_instr *ins)
|
||||||
{
|
{
|
||||||
/* Errata: *V2F32_TO_V2F16 with distinct sources raises
|
/* Errata: *V2F32_TO_V2F16 with distinct sources raises
|
||||||
|
|
@ -507,7 +507,7 @@ bi_impacted_fadd_widens(bi_instr *I)
|
||||||
(swz0 == BI_SWIZZLE_H11 && swz1 == BI_SWIZZLE_H00);
|
(swz0 == BI_SWIZZLE_H11 && swz1 == BI_SWIZZLE_H00);
|
||||||
}
|
}
|
||||||
|
|
||||||
ASSERTED static bool
|
static bool
|
||||||
bi_can_add(bi_instr *ins)
|
bi_can_add(bi_instr *ins)
|
||||||
{
|
{
|
||||||
/* +FADD.v2f16 lacks clamp modifier, use *FADD.v2f16 instead */
|
/* +FADD.v2f16 lacks clamp modifier, use *FADD.v2f16 instead */
|
||||||
|
|
@ -544,7 +544,7 @@ bi_must_not_last(bi_instr *ins)
|
||||||
* be raised for unknown reasons (possibly an errata).
|
* be raised for unknown reasons (possibly an errata).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
ASSERTED static bool
|
static bool
|
||||||
bi_must_message(bi_instr *ins)
|
bi_must_message(bi_instr *ins)
|
||||||
{
|
{
|
||||||
return (bi_opcode_props[ins->op].message != BIFROST_MESSAGE_NONE) ||
|
return (bi_opcode_props[ins->op].message != BIFROST_MESSAGE_NONE) ||
|
||||||
|
|
@ -572,7 +572,7 @@ bi_fma_atomic(enum bi_opcode op)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ASSERTED static bool
|
static bool
|
||||||
bi_reads_zero(bi_instr *ins)
|
bi_reads_zero(bi_instr *ins)
|
||||||
{
|
{
|
||||||
return !(bi_fma_atomic(ins->op) || ins->op == BI_OPCODE_IMULD);
|
return !(bi_fma_atomic(ins->op) || ins->op == BI_OPCODE_IMULD);
|
||||||
|
|
@ -593,7 +593,7 @@ bi_reads_temps(bi_instr *ins, unsigned src)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ASSERTED static bool
|
static bool
|
||||||
bi_reads_t(bi_instr *ins, unsigned src)
|
bi_reads_t(bi_instr *ins, unsigned src)
|
||||||
{
|
{
|
||||||
/* Branch offset cannot come from passthrough */
|
/* Branch offset cannot come from passthrough */
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue