ir: Add opcodes for performing unsigned reciprocal square root estimates

This commit is contained in:
Lioncash 2018-09-07 23:41:05 -04:00 committed by MerryMage
parent bd3582e811
commit b6e74fd17d
7 changed files with 71 additions and 38 deletions

View file

@ -274,6 +274,7 @@ public:
U128 VectorTableLookup(const U128& defaults, const Table& table, const U128& indices);
U128 VectorUnsignedAbsoluteDifference(size_t esize, const U128& a, const U128& b);
U128 VectorUnsignedRecipEstimate(const U128& a);
U128 VectorUnsignedRecipSqrtEstimate(const U128& a);
U128 VectorUnsignedSaturatedNarrow(size_t esize, const U128& a);
U128 VectorZeroExtend(size_t original_esize, const U128& a);
U128 VectorZeroUpper(const U128& a);