mirror of
https://github.com/yuzu-emu/sirit
synced 2024-11-22 17:53:54 +00:00
Implement main conversion instructions
This commit is contained in:
parent
8747340c44
commit
a6c435dcb7
2 changed files with 32 additions and 6 deletions
|
@ -321,6 +321,22 @@ class Module {
|
|||
|
||||
// Conversion
|
||||
|
||||
Id OpConvertFToU(Id result_type, Id operand);
|
||||
|
||||
Id OpConvertFToS(Id result_type, Id operand);
|
||||
|
||||
Id OpConvertSToF(Id result_type, Id operand);
|
||||
|
||||
Id OpConvertUToF(Id result_type, Id operand);
|
||||
|
||||
Id OpUConvert(Id result_type, Id operand);
|
||||
|
||||
Id OpSConvert(Id result_type, Id operand);
|
||||
|
||||
Id OpFConvert(Id result_type, Id operand);
|
||||
|
||||
Id OpQuantizeToF16(Id result_type, Id operand);
|
||||
|
||||
/// Bit pattern-preserving type conversion.
|
||||
Id OpBitcast(Id result_type, Id operand);
|
||||
|
||||
|
|
|
@ -11,10 +11,20 @@
|
|||
|
||||
namespace Sirit {
|
||||
|
||||
Id Module::OpBitcast(Id result_type, Id operand) {
|
||||
auto op{std::make_unique<Op>(spv::Op::OpBitcast, bound++, result_type)};
|
||||
op->Add(operand);
|
||||
return AddCode(std::move(op));
|
||||
#define DEFINE_UNARY(opcode) \
|
||||
Id Module::opcode(Id result_type, Id operand) { \
|
||||
auto op{std::make_unique<Op>(spv::Op::opcode, bound++, result_type)}; \
|
||||
op->Add(operand); \
|
||||
return AddCode(std::move(op)); \
|
||||
}
|
||||
DEFINE_UNARY(OpConvertFToU)
|
||||
DEFINE_UNARY(OpConvertFToS)
|
||||
DEFINE_UNARY(OpConvertSToF)
|
||||
DEFINE_UNARY(OpConvertUToF)
|
||||
DEFINE_UNARY(OpUConvert)
|
||||
DEFINE_UNARY(OpSConvert)
|
||||
DEFINE_UNARY(OpFConvert)
|
||||
DEFINE_UNARY(OpQuantizeToF16)
|
||||
DEFINE_UNARY(OpBitcast)
|
||||
|
||||
} // namespace Sirit
|
Loading…
Reference in a new issue