mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-27 05:40:06 +00:00
spirv-fuzz: support floating-point in TransformationInvertComparisonOperator (#3551)
This commit is contained in:
parent
fb32c40741
commit
bcc78b3e99
@ -94,6 +94,18 @@ bool TransformationInvertComparisonOperator::IsInversionSupported(
|
|||||||
case SpvOpULessThanEqual:
|
case SpvOpULessThanEqual:
|
||||||
case SpvOpIEqual:
|
case SpvOpIEqual:
|
||||||
case SpvOpINotEqual:
|
case SpvOpINotEqual:
|
||||||
|
case SpvOpFOrdEqual:
|
||||||
|
case SpvOpFUnordEqual:
|
||||||
|
case SpvOpFOrdNotEqual:
|
||||||
|
case SpvOpFUnordNotEqual:
|
||||||
|
case SpvOpFOrdLessThan:
|
||||||
|
case SpvOpFUnordLessThan:
|
||||||
|
case SpvOpFOrdLessThanEqual:
|
||||||
|
case SpvOpFUnordLessThanEqual:
|
||||||
|
case SpvOpFOrdGreaterThan:
|
||||||
|
case SpvOpFUnordGreaterThan:
|
||||||
|
case SpvOpFOrdGreaterThanEqual:
|
||||||
|
case SpvOpFUnordGreaterThanEqual:
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
@ -124,6 +136,30 @@ SpvOp TransformationInvertComparisonOperator::InvertOpcode(SpvOp opcode) {
|
|||||||
return SpvOpINotEqual;
|
return SpvOpINotEqual;
|
||||||
case SpvOpINotEqual:
|
case SpvOpINotEqual:
|
||||||
return SpvOpIEqual;
|
return SpvOpIEqual;
|
||||||
|
case SpvOpFOrdEqual:
|
||||||
|
return SpvOpFUnordNotEqual;
|
||||||
|
case SpvOpFUnordEqual:
|
||||||
|
return SpvOpFOrdNotEqual;
|
||||||
|
case SpvOpFOrdNotEqual:
|
||||||
|
return SpvOpFUnordEqual;
|
||||||
|
case SpvOpFUnordNotEqual:
|
||||||
|
return SpvOpFOrdEqual;
|
||||||
|
case SpvOpFOrdLessThan:
|
||||||
|
return SpvOpFUnordGreaterThanEqual;
|
||||||
|
case SpvOpFUnordLessThan:
|
||||||
|
return SpvOpFOrdGreaterThanEqual;
|
||||||
|
case SpvOpFOrdLessThanEqual:
|
||||||
|
return SpvOpFUnordGreaterThan;
|
||||||
|
case SpvOpFUnordLessThanEqual:
|
||||||
|
return SpvOpFOrdGreaterThan;
|
||||||
|
case SpvOpFOrdGreaterThan:
|
||||||
|
return SpvOpFUnordLessThanEqual;
|
||||||
|
case SpvOpFUnordGreaterThan:
|
||||||
|
return SpvOpFOrdLessThanEqual;
|
||||||
|
case SpvOpFOrdGreaterThanEqual:
|
||||||
|
return SpvOpFUnordLessThan;
|
||||||
|
case SpvOpFUnordGreaterThanEqual:
|
||||||
|
return SpvOpFOrdLessThan;
|
||||||
default:
|
default:
|
||||||
// The program will fail in the debug mode because of the assertion
|
// The program will fail in the debug mode because of the assertion
|
||||||
// at the beginning of the function.
|
// at the beginning of the function.
|
||||||
|
Loading…
Reference in New Issue
Block a user