summaryrefslogtreecommitdiff
path: root/includes/compiler/GenStabs.h
diff options
context:
space:
mode:
authorAsh Wolf <ninji@wuffs.org>2022-12-29 12:32:55 +0000
committerAsh Wolf <ninji@wuffs.org>2022-12-29 12:32:55 +0000
commitfcfbafff31869ed808bff0639532db1828660e92 (patch)
tree7425b346b031c4cb47a06250b3f6f950374d44ae /includes/compiler/GenStabs.h
parentbc1321735c15104ffad195e1509cab5f3a044260 (diff)
downloadMWCC-fcfbafff31869ed808bff0639532db1828660e92.tar.gz
MWCC-fcfbafff31869ed808bff0639532db1828660e92.zip
dump lots more code
Diffstat (limited to '')
-rw-r--r--includes/compiler/GenStabs.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/includes/compiler/GenStabs.h b/includes/compiler/GenStabs.h
index 16fd204..26beedf 100644
--- a/includes/compiler/GenStabs.h
+++ b/includes/compiler/GenStabs.h
@@ -3,4 +3,16 @@
#include "compiler/common.h"
+extern int unnamedstructs;
+
+extern int GenStab_Type(char *name, Type *type);
+extern void GenStab_Function(Object *func, UInt32 offset);
+extern void GenStab_FunctionEnd(Object *func, SInt32 relocID, UInt32 offset);
+extern void GenStab_Line(UInt32 line, UInt32 offset);
+extern void GenStab_Parameter(Object *object);
+extern void GenStab_Var(Object *object);
+extern void GenStab_IncludeFile(char *path);
+extern void GenStab_SourceFile(char *path);
+extern void GenStab_Setup(void);
+
#endif