2024-05-21 22:35:12 +00:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
#include "shader_recompiler/backend/spirv/emit_spirv_instructions.h"
|
|
|
|
#include "shader_recompiler/backend/spirv/spirv_emit_context.h"
|
|
|
|
|
|
|
|
namespace Shader::Backend::SPIRV {
|
|
|
|
|
|
|
|
Id EmitUndefU1(EmitContext& ctx) {
|
|
|
|
return ctx.OpUndef(ctx.U1[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
Id EmitUndefU8(EmitContext&) {
|
2024-06-30 21:43:59 +00:00
|
|
|
UNREACHABLE_MSG("SPIR-V Instruction");
|
2024-05-21 22:35:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Id EmitUndefU16(EmitContext&) {
|
2024-06-30 21:43:59 +00:00
|
|
|
UNREACHABLE_MSG("SPIR-V Instruction");
|
2024-05-21 22:35:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Id EmitUndefU32(EmitContext& ctx) {
|
|
|
|
return ctx.OpUndef(ctx.U32[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
Id EmitUndefU64(EmitContext&) {
|
2024-06-30 21:43:59 +00:00
|
|
|
UNREACHABLE_MSG("SPIR-V Instruction");
|
2024-05-21 22:35:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Shader::Backend::SPIRV
|