[JIT] VectorConvertX2X unsigned support

This commit is contained in:
DrChat
2018-03-02 16:34:57 -06:00
parent fd0d2185ef
commit 49866e970b
3 changed files with 19 additions and 8 deletions

View File

@@ -526,8 +526,8 @@ class Value {
void VectorCompareSGE(Value* other, TypeName type);
void VectorCompareUGT(Value* other, TypeName type);
void VectorCompareUGE(Value* other, TypeName type);
void VectorConvertI2F(Value* other);
void VectorConvertF2I(Value* other);
void VectorConvertI2F(Value* other, bool is_unsigned);
void VectorConvertF2I(Value* other, bool is_unsigned, bool saturate);
void VectorShl(Value* other, TypeName type);
void VectorShr(Value* other, TypeName type);
void VectorRol(Value* other, TypeName type);