2022-11-20 05:07:22 +00:00
|
|
|
#ifndef COMPILER_GENSTABS_H
|
|
|
|
#define COMPILER_GENSTABS_H
|
|
|
|
|
|
|
|
#include "compiler/common.h"
|
|
|
|
|
2022-12-29 12:32:55 +00:00
|
|
|
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);
|
|
|
|
|
2022-11-20 05:07:22 +00:00
|
|
|
#endif
|