gpu: some function mismatches
authornotaz <notasas@gmail.com>
Mon, 10 Feb 2025 22:37:32 +0000 (00:37 +0200)
committernotaz <notasas@gmail.com>
Mon, 10 Feb 2025 22:37:32 +0000 (00:37 +0200)
pointed out by ubsan

Makefile
frontend/main.c
libpcsxcore/gpu.h
libpcsxcore/plugins.h
plugins/gpulib/gpu.c

index 1c2ad07..eb82297 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -22,6 +22,10 @@ CFLAGS += -fsanitize=address
 LDFLAGS += -fsanitize=address
 #LDFLAGS += -static-libasan
 endif
+ifeq ($(DEBUG_UBSAN), 1)
+CFLAGS += -fsanitize=undefined -fno-sanitize=shift-base
+LDFLAGS += -fsanitize=undefined
+endif
 ifneq ($(NO_FSECTIONS), 1)
 CFLAGS += -ffunction-sections -fdata-sections
 FSECTIONS_LDFLAGS ?= -Wl,--gc-sections
index bc799b2..56f8fd4 100644 (file)
@@ -805,7 +805,7 @@ void SysRunGui() {
         printf("SysRunGui\n");
 }
 
-static void CALLBACK dummy_lace()
+static void CALLBACK dummy_lace(void)
 {
 }
 
index c61986d..9513253 100644 (file)
 #ifndef __GPU_H__
 #define __GPU_H__
 
+#include <stdint.h>
+
+typedef struct GPUFreeze {
+       uint32_t ulFreezeVersion;
+       uint32_t ulStatus;
+       uint32_t ulControl[256];
+       unsigned char psxVRam[1024*512*2];
+} GPUFreeze_t;
+
 #define PSXGPU_LCF     (1u<<31)
 #define PSXGPU_nBUSY   (1u<<26)
 #define PSXGPU_ILACE   (1u<<22)
index b2efbce..4755c17 100644 (file)
@@ -36,6 +36,7 @@ typedef long (CALLBACK *NETopen)(unsigned long *);
 typedef long (CALLBACK *SIO1open)(unsigned long *);\r
 \r
 #include "spu.h"\r
+#include "gpu.h"\r
 #include "decode_xa.h"\r
 \r
 int LoadPlugins();\r
@@ -63,12 +64,6 @@ typedef void (CALLBACK* GPUupdateLace)(void);
 typedef void (CALLBACK* GPUmakeSnapshot)(void);\r
 typedef void (CALLBACK* GPUkeypressed)(int);\r
 typedef void (CALLBACK* GPUdisplayText)(char *);\r
-typedef struct {\r
-       uint32_t ulFreezeVersion;\r
-       uint32_t ulStatus;\r
-       uint32_t ulControl[256];\r
-       unsigned char psxVRam[1024*512*2];\r
-} GPUFreeze_t;\r
 typedef long (CALLBACK* GPUfreeze)(uint32_t, GPUFreeze_t *);\r
 typedef long (CALLBACK* GPUgetScreenPic)(unsigned char *);\r
 typedef long (CALLBACK* GPUshowScreenPic)(unsigned char *);\r
index 4307e4d..3318549 100644 (file)
@@ -901,15 +901,7 @@ uint32_t GPUreadStatus(void)
   return ret;
 }
 
-struct GPUFreeze
-{
-  uint32_t ulFreezeVersion;      // should be always 1 for now (set by main emu)
-  uint32_t ulStatus;             // current gpu status
-  uint32_t ulControl[256];       // latest control register values
-  unsigned char psxVRam[1024*1024*2]; // current VRam image (full 2 MB for ZN)
-};
-
-long GPUfreeze(uint32_t type, struct GPUFreeze *freeze)
+long GPUfreeze(uint32_t type, GPUFreeze_t *freeze)
 {
   int i;