[amdgpu] Implement V_FMA_F32, IMAGE_SAMPLE_LZ, V_CVT_OFF_F32_I4

Loops fix
Decompile spirv on error
Wait for rpcsx-os if memory not exists
This commit is contained in:
DH 2023-07-14 04:33:45 +03:00
parent d6c8353636
commit 665d74740a
10 changed files with 458 additions and 77 deletions

View file

@ -225,10 +225,9 @@ spirv::FunctionType Function::getFunctionType() {
return context->getFunctionType(getResultType(), params);
}
Fragment *Function::createFragment() {
Fragment *Function::createDetachedFragment() {
auto result = context->createFragment(0);
result->function = this;
fragments.push_back(result);
return result;
}