diff options
Diffstat (limited to 'src/ir')
-rw-r--r-- | src/ir/child-typer.h | 7 | ||||
-rw-r--r-- | src/ir/cost.h | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/src/ir/child-typer.h b/src/ir/child-typer.h index fe65b209b..638bb9c33 100644 --- a/src/ir/child-typer.h +++ b/src/ir/child-typer.h @@ -372,6 +372,13 @@ template<typename Subtype> struct ChildTyper : OverriddenVisitor<Subtype> { case NegVecI16x8: case NegVecI32x4: case NegVecI64x2: + case AbsVecF16x8: + case NegVecF16x8: + case SqrtVecF16x8: + case CeilVecF16x8: + case FloorVecF16x8: + case TruncVecF16x8: + case NearestVecF16x8: case AbsVecF32x4: case NegVecF32x4: case SqrtVecF32x4: diff --git a/src/ir/cost.h b/src/ir/cost.h index 0b2b6315b..f541a4506 100644 --- a/src/ir/cost.h +++ b/src/ir/cost.h @@ -206,6 +206,13 @@ struct CostAnalyzer : public OverriddenVisitor<CostAnalyzer, CostType> { case NegVecI64x2: case AllTrueVecI64x2: case BitmaskVecI64x2: + case AbsVecF16x8: + case NegVecF16x8: + case SqrtVecF16x8: + case CeilVecF16x8: + case FloorVecF16x8: + case TruncVecF16x8: + case NearestVecF16x8: case AbsVecF32x4: case NegVecF32x4: case SqrtVecF32x4: |