ir: Add opcodes for unsigned reciprocal estimate

This commit is contained in:
Lioncash 2018-09-07 22:45:00 -04:00 committed by MerryMage
parent d46dea136f
commit af83360f89
8 changed files with 71 additions and 29 deletions

View file

@ -273,6 +273,7 @@ public:
Table VectorTable(std::vector<U128> values);
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 VectorUnsignedSaturatedNarrow(size_t esize, const U128& a);
U128 VectorZeroExtend(size_t original_esize, const U128& a);
U128 VectorZeroUpper(const U128& a);