MWCC/includes/compiler/GenStabs.h

19 lines
573 B
C

#ifndef COMPILER_GENSTABS_H
#define COMPILER_GENSTABS_H
#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