use stdarg when compiling with ANSI C compiler

This commit is contained in:
ceriel 1995-08-17 16:34:29 +00:00
parent 0dc2d5a625
commit 53eb117563
2 changed files with 332 additions and 25 deletions

View file

@ -6,7 +6,11 @@
/* E R R O R A N D D I A G N O S T I C R O U T I N E S */ /* E R R O R A N D D I A G N O S T I C R O U T I N E S */
#include "lint.h" #include "lint.h"
#if __STDC__
#include <stdarg.h>
#else
#include <varargs.h> #include <varargs.h>
#endif
#include <system.h> #include <system.h>
#ifndef LINT #ifndef LINT
#include <em.h> #include <em.h>
@ -56,6 +60,167 @@ extern char loptions[];
static _error(); static _error();
#if __STDC__
/*VARARGS*/
error(char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
{
_error(ERROR, dot.tk_file, dot.tk_line, fmt, ap);
}
va_end(ap);
}
/*VARARGS*/
expr_error(struct expr *expr, char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
{
if (!(expr->ex_flags & EX_ERROR)) {
/* to prevent proliferation */
_error(ERROR, expr->ex_file, expr->ex_line, fmt, ap);
expr->ex_flags |= EX_ERROR;
}
}
va_end(ap);
}
/*VARARGS*/
warning(char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
{
_error(WARNING, dot.tk_file, dot.tk_line, fmt, ap);
}
va_end(ap);
}
/*VARARGS*/
expr_warning(struct expr *expr, char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
{
if (!(expr->ex_flags & EX_ERROR)) {
/* to prevent proliferation */
_error(WARNING, expr->ex_file, expr->ex_line, fmt, ap);
}
}
va_end(ap);
}
#ifdef LINT
/*VARARGS*/
def_warning(struct def *def, char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
{
_error(WARNING, def->df_file, def->df_line, fmt, ap);
}
va_end(ap);
}
/*VARARGS*/
hwarning(char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
{
if (loptions['h'])
_error(WARNING, dot.tk_file, dot.tk_line, fmt, ap);
}
va_end(ap);
}
/*VARARGS*/
awarning(char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
{
if (loptions['a'])
_error(WARNING, dot.tk_file, dot.tk_line, fmt, ap);
}
va_end(ap);
}
#endif /* LINT */
/*VARARGS*/
lexerror(char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
{
_error(ERROR, FileName, LineNumber, fmt, ap);
}
va_end(ap);
}
#ifndef NOPP
/*VARARGS*/
lexwarning(char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
{
_error(WARNING, FileName, LineNumber, fmt, ap);
}
va_end(ap);
}
#endif /* NOPP */
/*VARARGS*/
crash(char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
{
_error(CRASH, FileName, LineNumber, fmt, ap);
}
va_end(ap);
C_close();
#ifdef DEBUG
sys_stop(S_ABORT);
#else /* DEBUG */
sys_stop(S_EXIT);
#endif /* DEBUG */
/* NOTREACHED */
}
/*VARARGS*/
fatal(char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
{
_error(FATAL, FileName, LineNumber, fmt, ap);
}
va_end(ap);
if (C_busy()) C_close();
sys_stop(S_EXIT);
/*NOTREACHED*/
}
#else
/*VARARGS*/ /*VARARGS*/
error(va_alist) /* fmt, args */ error(va_alist) /* fmt, args */
va_dcl va_dcl
@ -64,7 +229,8 @@ error(va_alist) /* fmt, args */
va_start(ap); va_start(ap);
{ {
_error(ERROR, dot.tk_file, dot.tk_line, ap); char *fmt = va_arg(ap, char *);
_error(ERROR, dot.tk_file, dot.tk_line, fmt, ap);
} }
va_end(ap); va_end(ap);
} }
@ -78,10 +244,11 @@ expr_error(va_alist) /* expr, fmt, args */
va_start(ap); va_start(ap);
{ {
register struct expr *expr = va_arg(ap, struct expr *); register struct expr *expr = va_arg(ap, struct expr *);
char *fmt = va_arg(ap, char *);
if (!(expr->ex_flags & EX_ERROR)) { if (!(expr->ex_flags & EX_ERROR)) {
/* to prevent proliferation */ /* to prevent proliferation */
_error(ERROR, expr->ex_file, expr->ex_line, ap); _error(ERROR, expr->ex_file, expr->ex_line, fmt, ap);
expr->ex_flags |= EX_ERROR; expr->ex_flags |= EX_ERROR;
} }
} }
@ -96,7 +263,8 @@ warning(va_alist) /* fmt, args */
va_start(ap); va_start(ap);
{ {
_error(WARNING, dot.tk_file, dot.tk_line, ap); char *fmt = va_arg(ap, char *);
_error(WARNING, dot.tk_file, dot.tk_line, fmt, ap);
} }
va_end(ap); va_end(ap);
} }
@ -110,10 +278,11 @@ expr_warning(va_alist) /* expr, fmt, args */
va_start(ap); va_start(ap);
{ {
struct expr *expr = va_arg(ap, struct expr *); struct expr *expr = va_arg(ap, struct expr *);
char *fmt = va_arg(ap, char *);
if (!(expr->ex_flags & EX_ERROR)) { if (!(expr->ex_flags & EX_ERROR)) {
/* to prevent proliferation */ /* to prevent proliferation */
_error(WARNING, expr->ex_file, expr->ex_line, ap); _error(WARNING, expr->ex_file, expr->ex_line, fmt, ap);
} }
} }
va_end(ap); va_end(ap);
@ -130,8 +299,9 @@ def_warning(va_alist) /* def, fmt, args */
va_start(ap); va_start(ap);
{ {
register struct def *def = va_arg(ap, struct def *); register struct def *def = va_arg(ap, struct def *);
char *fmt = va_arg(ap, char *);
_error(WARNING, def->df_file, def->df_line, ap); _error(WARNING, def->df_file, def->df_line, fmt, ap);
} }
va_end(ap); va_end(ap);
} }
@ -145,8 +315,9 @@ hwarning(va_alist) /* fmt, args */
va_start(ap); va_start(ap);
{ {
char *fmt = va_arg(ap, char *);
if (loptions['h']) if (loptions['h'])
_error(WARNING, dot.tk_file, dot.tk_line, ap); _error(WARNING, dot.tk_file, dot.tk_line, fmt, ap);
} }
va_end(ap); va_end(ap);
} }
@ -159,8 +330,9 @@ awarning(va_alist) /* fmt, args */
va_start(ap); va_start(ap);
{ {
char *fmt = va_arg(ap, char *);
if (loptions['a']) if (loptions['a'])
_error(WARNING, dot.tk_file, dot.tk_line, ap); _error(WARNING, dot.tk_file, dot.tk_line, fmt, ap);
} }
va_end(ap); va_end(ap);
} }
@ -175,7 +347,8 @@ lexerror(va_alist) /* fmt, args */
va_start(ap); va_start(ap);
{ {
_error(ERROR, FileName, LineNumber, ap); char *fmt = va_arg(ap, char *);
_error(ERROR, FileName, LineNumber, fmt, ap);
} }
va_end(ap); va_end(ap);
} }
@ -189,7 +362,8 @@ lexwarning(va_alist) /* fmt, args */
va_start(ap); va_start(ap);
{ {
_error(WARNING, FileName, LineNumber, ap); char *fmt = va_arg(ap, char *);
_error(WARNING, FileName, LineNumber, fmt, ap);
} }
va_end(ap); va_end(ap);
} }
@ -203,7 +377,8 @@ crash(va_alist) /* fmt, args */
va_start(ap); va_start(ap);
{ {
_error(CRASH, FileName, LineNumber, ap); char *fmt = va_arg(ap, char *);
_error(CRASH, FileName, LineNumber, fmt, ap);
} }
va_end(ap); va_end(ap);
@ -224,7 +399,8 @@ fatal(va_alist) /* fmt, args */
va_start(ap); va_start(ap);
{ {
_error(FATAL, FileName, LineNumber, ap); char *fmt = va_arg(ap, char *);
_error(FATAL, FileName, LineNumber, fmt, ap);
} }
va_end(ap); va_end(ap);
@ -232,16 +408,17 @@ fatal(va_alist) /* fmt, args */
sys_stop(S_EXIT); sys_stop(S_EXIT);
/*NOTREACHED*/ /*NOTREACHED*/
} }
#endif
static static
_error(class, fn, ln, ap) _error(class, fn, ln, fmt, ap)
int class; int class;
char *fn; char *fn;
unsigned int ln; unsigned int ln;
char *fmt;
va_list ap; va_list ap;
{ {
char *remark; char *remark;
char *fmt = va_arg(ap, char *);
/* check visibility of message */ /* check visibility of message */
switch (class) { switch (class) {

View file

@ -8,7 +8,11 @@
#include "debug.h" #include "debug.h"
#include "errout.h" #include "errout.h"
#if __STDC__
#include <stdarg.h>
#else
#include <varargs.h> #include <varargs.h>
#endif
#include <em_arith.h> #include <em_arith.h>
#include <em_label.h> #include <em_label.h>
#include <em_code.h> #include <em_code.h>
@ -46,6 +50,123 @@ extern char *symbol2str();
node, whereas other errors use the information in the token. node, whereas other errors use the information in the token.
*/ */
#if __STDC__
#ifdef DEBUG
/*VARARGS*/
debug(char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
{
_error(VDEBUG, NULLNODE, fmt, ap);
}
va_end(ap);
}
#endif /* DEBUG */
/*VARARGS*/
error(char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
{
_error(ERROR, NULLNODE, fmt, ap);
}
va_end(ap);
}
/*VARARGS*/
node_error(struct node *node, char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
{
_error(ERROR, node, fmt, ap);
}
va_end(ap);
}
/*VARARGS*/
warning(char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
{
_error(WARNING, NULLNODE, fmt, ap);
}
va_end(ap);
}
/*VARARGS*/
node_warning(struct node *node, char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
{
_error(WARNING, node, fmt, ap);
}
va_end(ap);
}
/*VARARGS*/
lexerror(char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
{
_error(LEXERROR, NULLNODE, fmt, ap);
}
va_end(ap);
}
/*VARARGS*/
lexwarning(char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
{
_error(LEXWARNING, NULLNODE, fmt, ap);
}
va_end(ap);
}
/*VARARGS*/
fatal(char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
{
_error(FATAL, NULLNODE, fmt, ap);
}
va_end(ap);
sys_stop(S_EXIT);
}
/*VARARGS*/
crash(char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
{
_error(CRASH, NULLNODE, fmt, ap);
}
va_end(ap);
#ifdef DEBUG
sys_stop(S_ABORT);
#else
sys_stop(S_EXIT);
#endif
}
#else
#ifdef DEBUG #ifdef DEBUG
/*VARARGS*/ /*VARARGS*/
debug(va_alist) debug(va_alist)
@ -55,7 +176,8 @@ debug(va_alist)
va_start(ap); va_start(ap);
{ {
_error(VDEBUG, NULLNODE, ap); char *fmt = va_arg(ap, char *);
_error(VDEBUG, NULLNODE, fmt, ap);
} }
va_end(ap); va_end(ap);
} }
@ -69,7 +191,8 @@ error(va_alist)
va_start(ap); va_start(ap);
{ {
_error(ERROR, NULLNODE, ap); char *fmt = va_arg(ap, char *);
_error(ERROR, NULLNODE, fmt, ap);
} }
va_end(ap); va_end(ap);
} }
@ -83,7 +206,8 @@ node_error(va_alist)
va_start(ap); va_start(ap);
{ {
struct node *node = va_arg(ap, struct node *); struct node *node = va_arg(ap, struct node *);
_error(ERROR, node, ap); char *fmt = va_arg(ap, char *);
_error(ERROR, node, fmt, ap);
} }
va_end(ap); va_end(ap);
} }
@ -96,7 +220,8 @@ warning(va_alist)
va_start(ap); va_start(ap);
{ {
_error(WARNING, NULLNODE, ap); char *fmt = va_arg(ap, char *);
_error(WARNING, NULLNODE, fmt, ap);
} }
va_end(ap); va_end(ap);
} }
@ -109,8 +234,9 @@ node_warning(va_alist)
va_start(ap); va_start(ap);
{ {
char *fmt = va_arg(ap, char *);
struct node *node = va_arg(ap, struct node *); struct node *node = va_arg(ap, struct node *);
_error(WARNING, node, ap); _error(WARNING, node, fmt, ap);
} }
va_end(ap); va_end(ap);
} }
@ -123,7 +249,8 @@ lexerror(va_alist)
va_start(ap); va_start(ap);
{ {
_error(LEXERROR, NULLNODE, ap); char *fmt = va_arg(ap, char *);
_error(LEXERROR, NULLNODE, fmt, ap);
} }
va_end(ap); va_end(ap);
} }
@ -136,7 +263,8 @@ lexwarning(va_alist)
va_start(ap); va_start(ap);
{ {
_error(LEXWARNING, NULLNODE, ap); char *fmt = va_arg(ap, char *);
_error(LEXWARNING, NULLNODE, fmt, ap);
} }
va_end(ap); va_end(ap);
} }
@ -149,7 +277,8 @@ fatal(va_alist)
va_start(ap); va_start(ap);
{ {
_error(FATAL, NULLNODE, ap); char *fmt = va_arg(ap, char *);
_error(FATAL, NULLNODE, fmt, ap);
} }
va_end(ap); va_end(ap);
sys_stop(S_EXIT); sys_stop(S_EXIT);
@ -163,7 +292,8 @@ crash(va_alist)
va_start(ap); va_start(ap);
{ {
_error(CRASH, NULLNODE, ap); char *fmt = va_arg(ap, char *);
_error(CRASH, NULLNODE, fmt, ap);
} }
va_end(ap); va_end(ap);
#ifdef DEBUG #ifdef DEBUG
@ -172,10 +302,12 @@ crash(va_alist)
sys_stop(S_EXIT); sys_stop(S_EXIT);
#endif #endif
} }
#endif
_error(class, node, ap) _error(class, node, fmt, ap)
int class; int class;
struct node *node; struct node *node;
char *fmt;
register va_list ap; register va_list ap;
{ {
/* _error attempts to limit the number of error messages /* _error attempts to limit the number of error messages
@ -186,7 +318,6 @@ _error(class, node, ap)
static char * last_fn = 0; static char * last_fn = 0;
static int e_seen = 0, w_seen = 0; static int e_seen = 0, w_seen = 0;
register char *remark = 0; register char *remark = 0;
char *fmt;
/* Since name and number are gathered from different places /* Since name and number are gathered from different places
depending on the class, we first collect the relevant depending on the class, we first collect the relevant
@ -240,7 +371,6 @@ _error(class, node, ap)
break; break;
} }
fmt = va_arg(ap, char *);
#ifdef DEBUG #ifdef DEBUG
if( class != VDEBUG ) { if( class != VDEBUG ) {
#endif #endif