loongarch: Initial VertexJIT support and bug fix

This commit is contained in:
Lin Runze
2025-07-17 00:33:56 +08:00
parent 9ce8408d0c
commit 5b406f00fd
9 changed files with 905 additions and 1 deletions
+2
View File
@@ -1562,6 +1562,8 @@ std::string VertexDecoder::GetString(DebugShaderStringType stringType) const {
lines = DisassembleX86((const u8 *)jitted_, jittedSize_);
#elif PPSSPP_ARCH(RISCV64)
lines = DisassembleRV64((const u8 *)jitted_, jittedSize_);
#elif PPSSPP_ARCH(LOONGARCH64)
lines= DisassembleLA64((const u8 *)jitted_, jittedSize_);
#else
// No disassembler defined
#endif