SDCCerr.c and SDCCerr.h moved to support/Util
authorkvigor <kvigor@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Tue, 6 Feb 2001 18:19:00 +0000 (18:19 +0000)
committerkvigor <kvigor@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Tue, 6 Feb 2001 18:19:00 +0000 (18:19 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@594 4a8a32a2-be11-0410-ad9d-d568d2c75423

src/SDCCerr.c [deleted file]
src/SDCCerr.h [deleted file]

diff --git a/src/SDCCerr.c b/src/SDCCerr.c
deleted file mode 100644 (file)
index be6f255..0000000
+++ /dev/null
@@ -1,183 +0,0 @@
-/* SDCCerr.c - error handling routines */
-
-#include "common.h"
-
-#define USE_STDOUT_FOR_ERRORS          0
-
-#if USE_STDOUT_FOR_ERRORS
-#define ERRSINK                stdout
-#else
-#define ERRSINK                stderr
-#endif
-
-#define ERROR          0
-#define WARNING                1
-
-struct  {
-       int             errType ;
-       char    *errText ;
-} ErrTab [] =
-{
-{  ERROR  ,"error *** Duplicate symbol '%s', symbol IGNORED\n"               },
-{ ERROR  ,"error *** Syntax Error Declaration ingonerd\n"                            },
-{ ERROR  ,"error *** Constant Expected Found Variable\n"                          },
-{ ERROR  ,"error *** 'malloc' failed file '%s' for size %ld\n"               },
-{ ERROR  ,"error *** 'fopen' failed on file '%s'\n"                                  },
-{ ERROR  ,"error *** Internal Error Oclass invalid '%s'\n"                           },
-{ ERROR  ,"error *** Cannot allocate variable '%s'.\n"                       },
-{ ERROR  ,"error *** Old style C declaration. IGNORED '%s'\n"                },
-{ ERROR  ,"error *** Out of stack Space. '%s' not allocted\n"                },
-{ ERROR  ,"error *** FATAL Compiler Internal Error in file '%s' line number '%d' : %s \nContact Author with source code\n" },
-{ ERROR  ,"error *** 'lvalue' required for '%s' operation .\n"               },
-{ ERROR  ,"error *** Creation of temp file failed\n"                         },
-{ ERROR  ,"error *** Function expected here '%s'\n"                                  },
-{ ERROR  ,"error *** 'using', 'interrupt' or 'reentrant' must follow a function definiton .'%s'\n"},
-{ ERROR  ,"error *** Absolute address & initial value both cannot be specified for\n a 'sfr','sbit' storage class, initial value ignored '%s'\n"  },
-{ WARNING,"warning *** Variable in the storage class cannot be initialized.'%s'\n"},
-{ WARNING,"warning *** storage class not allowed for automatic variable '%s' in reentrant function\n"   },
-{ ERROR  ,"error *** absolute address not allowed for automatic var '%s' in reentrant function \n"           },
-{ WARNING,"warning *** Initializer different levels of indirections\n"       },
-{ ERROR  ,"error *** Function name '%s' redefined \n"                        },
-{ ERROR  ,"error *** Undefined identifier '%s'\n"                                 },
-{ WARNING,"warning *** stack exceeds 256 bytes for function '%s'\n"},
-{ ERROR  ,"error *** Array or pointer required for '%s' operation \n"        },
-{ ERROR  ,"error *** Array index not an integer\n"                                },
-{ ERROR  ,"error *** Array bound Exceeded, assuming zero\n"                          },
-{ ERROR  ,"error *** Structure/Union expected left of '.%s'\n"                    },
-{ ERROR  ,"error *** '%s' not a structure/union member\n"                         },
-{ ERROR  ,"error *** Pointer required\n"                                             },
-{ ERROR  ,"error *** 'unary %c': illegal operand\n"                                  },
-{ ERROR  ,"error *** convertion error: integral promotion failed\n"                  },
-{ ERROR  ,"error *** type must be INT for bit field definition\n"                    },
-{ ERROR  ,"error *** bit field size greater than 16 . assuming 16\n"              },
-{ WARNING,"warning *** high order truncation might occur\n"                          },
-{ ERROR  ,"error *** Attempt to assign value to a constant variable %s\n"         },
-{ ERROR  ,"error *** Lvalue specifies constant object\n"                          },
-{ ERROR  ,"error *** '&' illegal operand , %s\n"                                  },
-{ ERROR  ,"error *** illegal cast (cast cannot be aggregate)\n"                   },
-{ ERROR  ,"error *** '*' bad operand\n"                                           },
-{ ERROR  ,"error *** Argument count error, argument ignored\n"                    },
-{ ERROR  ,"error *** Function was expecting more arguments\n"                     },
-{ ERROR  ,"error *** Function name expected '%s'.ANSI style declaration REQUIRED\n"},
-{ ERROR  ,"error *** invalid operand '%s'\n"                                         },
-{ ERROR  ,"error *** pointer + pointer invalid\n"                                    },
-{ ERROR  ,"error *** invalid operand for shift operator\n"                           },
-{ ERROR  ,"error *** compare operand cannot be struct/union\n"               },
-{ ERROR  ,"error *** operand invalid for bitwise operation\n"                },
-{ ERROR  ,"error *** Invalid operand for '&&' or '||'\n"                             },
-{ WARNING,"warning *** indirections to different types %s %s \n"                     },
-{ ERROR  ,"error *** cannot assign values to aggregates\n"                           },
-{ ERROR  ,"error *** bit Arrays can be accessed by literal index only\n"             },
-{ ERROR  ,"error *** Array or Pointer to bit|sbit|sfr not allowed.'%s'\n"            },
-{ ERROR  ,"error *** typedef/enum '%s' duplicate.Previous definiton Ignored\n"    },
-{ ERROR  ,"error *** Actual Argument type different from declaration %d\n"           },
-{ ERROR  ,"error *** Function return value mismatch\n"                       },
-{ ERROR  ,"error *** Function cannot return aggregate. Func body ignored\n"          },
-{ ERROR  ,"error *** ANSI Style declaration needed\n"                        },
-{ ERROR  ,"error *** Label name redefined '%s'\n"                                    },
-{ ERROR  ,"error *** Label undefined '%s'\n"                                 },
-{ ERROR  ,"error *** void function returning value\n"                        },
-{ ERROR  ,"error *** function '%s' must return value\n"                              },
-{ WARNING,"warning *** function return value mismatch\n"                             },
-{ ERROR  ,"error *** 'case/default' found without 'switch'.statement ignored\n"   },
-{ ERROR  ,"error *** 'case' expression not constant. statement ignored\n"            },
-{ ERROR  ,"error *** 'break/continue' statement out of context\n"                    },
-{ ERROR  ,"error *** nonintegral used in switch expression\n"                },
-{ ERROR  ,"error *** function '%s' already has body\n"                       },
-{ ERROR  ,"error *** attempt to allocate variable of unknown size '%s'\n"            },
-{ ERROR  ,"error *** aggregate 'auto' variable '%s' cannot be initialized\n"      },
-{ ERROR  ,"error *** too many initializers\n"                                },
-{ ERROR  ,"error *** struct/union/array '%s' :initialization needs curly braces\n"},
-{ ERROR  ,"error *** non-address initialization expression\n"                },
-{ ERROR  ,"error *** interrupt no '%d' already has a service routine '%s'\n"         },
-{ ERROR  ,"error *** interrupt routine cannot have arguments, arguments ingored\n"},
-{ ERROR  ,"error *** critical compiler #include file missing.          \n"   },
-{ ERROR  ,"error *** function 'main' undefined\n"                                 },
-{ ERROR  ,"error *** 'extern' variable '%s' cannot be initialised      \n"           },
-{ ERROR  ,"error *** Pre-Processor %s\n"                                             },
-{ ERROR  ,"error *** _dup call failed\n"                                          },
-{ WARNING,"warning *** pointer being cast to incompatible type \n"                        },
-{ WARNING,"warning *** 'while' loop with 'zero' constant.loop eliminated\n"          },
-{ WARNING,"warning *** %s expression has NO side effects.expr eliminated\n"          },
-{ WARNING,"warning *** constant value '%s', out of range.\n"                 },
-{ WARNING,"warning *** comparison will either, ALWAYs succeed or ALWAYs fail\n"   },
-{ ERROR  ,"error *** Compiler Terminating , contact author with source\n"            },
-{ WARNING,"warning *** 'auto' variable '%s' may be used before initialization at %s(%d)\n"      },
-{ WARNING,"warning *** in function %s unreferenced %s : '%s'\n"                              },
-{ ERROR  ,"error *** unknown size for operand\n"                                     },
-{ WARNING,"warning *** '%s' 'long' not supported , declared as 'int' .\n"            },
-{ WARNING,"warning *** LITERAL value being cast to '_generic' pointer\n"             },
-{ ERROR  ,"error *** %s '%s' address out of range\n"                                 },
-{ ERROR  ,"error *** storage class CANNOT be specified for bit variable '%s'\n"    },
-{ WARNING,"warning *** extern definition for '%s' mismatches with declaration.\n"  },
-{ WARNING,"warning *** Functions called via pointers must be 'reentrant' to take arguments\n"  },
-{ WARNING,"warning *** type 'double' not supported assuming 'float'\n"               },
-{ WARNING,"warning *** if-statement condition always false.if-statement not generated\n"},
-{ WARNING,"warning *** no 'return' statement found for function '%s'\n"              },
-{ WARNING,"warning *** Pre-Processor %s\n"                                           },
-{ WARNING,"warning *** structure '%s' passed as function argument changed to pointer\n"},
-{ ERROR  ,"error *** conflict with previous definition of '%s' for attribute '%s'\n" },
-{ ERROR  ,"error *** variable '%s' declared in code space must have initialiser\n" },
-{ ERROR  ,"error *** operands not integral for assignment operation\n"            },
-{ ERROR  ,"error *** too many parameters \n"                                      },
-{ ERROR  ,"error *** to few parameters\n"                                         },
-{ ERROR  ,"error *** code not generated for '%s' due to previous errors\n"},
-{ WARNING,"warning *** type mismatch for parameter number %d\n"},
-{ ERROR  ,"error *** invalid float constant '%s'\n"},
-{ ERROR  ,"error *** invalid operand for '%s' operation\n"},
-{ ERROR  ,"error *** switch value not an integer\n"},
-{ ERROR  ,"error *** case label not an integer\n"},
-{ WARNING,"warning *** function '%s' too large for global optimization\n"},
-{ WARNING,"warning *** conditional flow changed by optimizer '%s(%d)':so said EVELYN the modified DOG\n"},
-{ WARNING,"warning *** invalid type specifier for pointer type specifier ignored\n"},
-{ WARNING,"warning *** function '%s' implicit declaration\n"},
-{ WARNING,"warning *** %s"},
-{ WARNING,"info *** %s extended by %d bytes for compiler temp(s) :in function  '%s': %s \n"},
-{ WARNING,"warning *** unknown or unsupported #pragma directive '%s'\n"},
-{ WARNING,"warning *** %s shifting more than size of object changed to zero\n"},
-{ WARNING,"warning *** unknown compiler option '%s' ignored\n"},
-{ WARNING,"warning *** option '%s' no longer supported  '%s' \n"},
-{ WARNING,"warning *** don't know what to do with file '%s'. file extension unsupported\n"},
-{ WARNING,"warning *** cannot compile more than one source file . file '%s' ignored\n"},
-{ WARNING,"info *** function '%s', # edges %d , # nodes %d , cyclomatic complexity %d\n"},
-{ ERROR  ,"error *** dividing by ZERO\n"},
-{ ERROR  ,"error *** function cannot return 'bit'\n"},
-{ ERROR  ,"error *** casting from to type 'void' is illegal\n"},
-{ WARNING,"warning *** constant is out of range %s\n" },
-{ WARNING,"warning *** unreachable code %s(%d)\n"},
-{ WARNING,"warning *** non-pointer type cast to _generic pointer\n"},
-{ WARNING,"warning *** possible code generation error at line %d,\n send source to sandeep.dutta@usa.net\n"},
-{ WARNING,"warning *** pointer types incompatible \n" },
-{ WARNING,"warning *** unknown memory model at %s : %d\n" },
-{ ERROR  ,"error   *** cannot generate code for target '%s'\n"},
-{ WARNING,"warning *** Indirect call to a banked function not implemented.\n"},
-{ WARNING,"warning *** Model '%s' not supported for %s, ignored.\n"},
-{ WARNING,"warning *** Both banked and nonbanked attributes used.  nonbanked wins.\n"},
-{ WARNING,"warning *** Both banked and static used.  static wins.\n"},
-{ WARNING,"warning *** converting integer type to generic pointer: assuming XDATA\n"}
-};
-
-void   vwerror (int errNum, va_list marker)
-{
-    if ( ErrTab[errNum].errType== ERROR )
-       fatalError++ ;
-    
-    if ( filename && lineno ) {
-       fprintf(ERRSINK, "%s(%d):",filename,lineno);
-    } else {
-        fprintf(ERRSINK, "at %d:",lineno);
-    }
-    vfprintf(ERRSINK, ErrTab[errNum].errText,marker);
-}
-
-/****************************************************************************/
-/* werror - writes an error to the listing file & to standarderr           */
-/****************************************************************************/
-void   werror (int errNum, ... )
-{
-    va_list    marker;
-    va_start(marker,errNum);
-    vwerror(errNum, marker);
-    va_end( marker );
-}
-
diff --git a/src/SDCCerr.h b/src/SDCCerr.h
deleted file mode 100644 (file)
index ececca5..0000000
+++ /dev/null
@@ -1,141 +0,0 @@
-#include <stdarg.h>
-/* ERROR MEssage Definition */
-#define  E_DUPLICATE       0         /* Duplicate variable   */
-#define  E_SYNTAX_ERROR    1         /* Syntax Error         */
-#define  E_CONST_EXPECTED  2         /* constant expected    */
-#define  E_OUT_OF_MEM      3         /* malloc failed        */
-#define  E_FILE_OPEN_ERR   4         /* File open failed     */
-#define  E_INVALID_OCLASS  5         /* output class invalid */
-#define  E_CANNOT_ALLOC    6         /* cannot allocate space*/
-#define  E_OLD_STYLE       7         /* old style C ! allowed*/
-#define  E_STACK_OUT       8         /* v r out of stack     */
-#define  E_INTERNAL_ERROR   9         /* unable to alloc tvar */
-#define  E_LVALUE_REQUIRED 10        /* lvalue required      */
-#define  E_TMPFILE_FAILED  11        /* tmpfile creation failed */
-#define  E_FUNCTION_EXPECTED  12     /* function expected    */
-#define  E_USING_ERROR     13        /* using in error       */
-#define  E_SFR_INIT        14        /* init error for sbit  */
-#define  E_INIT_IGNORED    15        /* initialiser ignored  */
-#define  E_AUTO_ASSUMED    16        /* sclass auto assumed  */
-#define  E_AUTO_ABSA       17        /* abs addr for auto var*/
-#define  E_INIT_WRONG      18        /* initializer type !=  */
-#define  E_FUNC_REDEF      19        /* func name redefined  */
-#define  E_ID_UNDEF        20        /* identifer undefined  */
-#define  W_STACK_OVERFLOW  21        /* stack overflow       */
-#define  E_NEED_ARRAY_PTR  22        /* array or pointer reqd*/
-#define  E_IDX_NOT_INT     23        /* index not an integer */
-#define  E_ARRAY_BOUND     24        /* array limit exceeded */
-#define  E_STRUCT_UNION    25        /* struct,union expected*/
-#define  E_NOT_MEMBER      26        /* !struct/union member */
-#define  E_PTR_REQD        27        /* pointer required     */
-#define  E_UNARY_OP        28        /* unary operator bad op*/
-#define  E_CONV_ERR        29        /* conversion error     */
-#define  E_INT_REQD        30        /* bit field must be int*/
-#define  E_BITFLD_SIZE     31        /* bit field size > 16  */
-#define  E_TRUNCATION      32        /* high order trucation */
-#define  E_CODE_WRITE      33        /* trying 2 write to code */
-#define  E_LVALUE_CONST    34        /* lvalue is a const   */   
-#define  E_ILLEGAL_ADDR    35        /* address of bit      */
-#define  E_CAST_ILLEGAL    36        /* cast illegal        */
-#define  E_MULT_INTEGRAL   37        /* mult opernd must b integral */
-#define  E_ARG_ERROR       38        /* argument count error*/
-#define  E_ARG_COUNT       39        /* func expecting more */
-#define  E_FUNC_EXPECTED   40        /* func name expected  */
-#define  E_PLUS_INVALID    41        /* plus invalid        */
-#define  E_PTR_PLUS_PTR    42        /* pointer + pointer   */
-#define  E_SHIFT_OP_INVALID 43       /* shft op op invalid  */
-#define  E_COMPARE_OP      44        /* compare operand     */
-#define  E_BITWISE_OP      45        /* bit op invalid op   */
-#define  E_ANDOR_OP        46        /* && || op invalid    */
-#define  E_TYPE_MISMATCH   47        /* type mismatch       */
-#define  E_AGGR_ASSIGN     48        /* aggr assign         */
-#define  E_ARRAY_DIRECT    49        /* array indexing in   */
-#define  E_BIT_ARRAY       50        /* bit array not allowed  */
-#define  E_DUPLICATE_TYPEDEF  51     /* typedef name duplicate */
-#define  E_ARG_TYPE        52        /* arg type mismatch   */
-#define  E_RET_VALUE       53        /* return value mismatch  */
-#define  E_FUNC_AGGR       54        /* function returing aggr */
-#define  E_FUNC_DEF        55        /* ANSI Style def neede   */
-#define  E_DUPLICATE_LABEL 56        /* duplicate label name   */
-#define  E_LABEL_UNDEF     57        /* undefined label used   */
-#define  E_FUNC_VOID       58        /* void func ret value    */
-#define  E_VOID_FUNC       59        /* func must return value */
-#define  E_RETURN_MISMATCH 60        /* return value mismatch  */
-#define  E_CASE_CONTEXT    61        /* case stmnt without switch */
-#define  E_CASE_CONSTANT   62        /* case expression ! const*/
-#define  E_BREAK_CONTEXT   63        /* break statement invalid*/
-#define  E_SWITCH_AGGR     64        /* non integral for switch*/
-#define  E_FUNC_BODY       65        /* func has body already  */
-#define  E_UNKNOWN_SIZE    66        /* variable has unknown size */
-#define  E_AUTO_AGGR_INIT  67        /* auto aggregates no init   */
-#define  E_INIT_COUNT      68        /* too many initializers  */
-#define  E_INIT_STRUCT     69        /* struct init wrong      */
-#define  E_INIT_NON_ADDR   70        /* non address xpr for init  */
-#define  E_INT_DEFINED     71        /* interrupt already over */
-#define  E_INT_ARGS        72        /* interrupt rtn cannot have args  */
-#define  E_INCLUDE_MISSING 73       /* compiler include missing        */
-#define  E_NO_MAIN        74        /* main function undefined */
-#define         E_EXTERN_INIT     75        /* extern variable initialised     */
-#define  E_PRE_PROC_FAILED 76       /* preprocessor failed             */
-#define  E_DUP_FAILED     77        /* file DUP failed             */
-#define  E_INCOMPAT_CAST   78       /* incompatible pointer casting */
-#define  E_LOOP_ELIMINATE  79       /* loop eliminated                       */          
-#define  W_NO_SIDE_EFFECTS  80      /* expression has no side effects */
-#define  E_CONST_TOO_LARGE  81      /* constant out of range             */
-#define         W_BAD_COMPARE      82       /* bad comparison                            */
-#define  E_TERMINATING      83       /* compiler terminating                     */
-#define  W_LOCAL_NOINIT            84       /* local reference before assignment */
-#define  W_NO_REFERENCE            85          /* no reference to local variable       */
-#define         E_OP_UNKNOWN_SIZE  86          /* unknown size for operand                     */
-#define  W_LONG_UNSUPPORTED 87         /* 'long' not supported yet                     */
-#define  W_LITERAL_GENERIC  88         /* literal being cast to generic pointer */
-#define  E_SFR_ADDR_RANGE   89         /* sfr address out of range                     */
-#define         E_BITVAR_STORAGE   90          /* storage given for 'bit' variable     */
-#define  W_EXTERN_MISMATCH  91         /* extern declaration mismatches    */
-#define  E_NONRENT_ARGS            92          /* fptr non reentrant has args          */
-#define  W_DOUBLE_UNSUPPORTED 93       /* 'double' not supported yet                   */
-#define  W_IF_NEVER_TRUE    94         /* if always false                                      */
-#define  W_FUNC_NO_RETURN   95         /* no return statement found            */
-#define  W_PRE_PROC_WARNING 96         /* preprocessor generated warning   */
-#define  W_STRUCT_AS_ARG    97         /* structure passed as argument         */
-#define  E_PREV_DEF_CONFLICT 98         /* previous definition conflicts with current */
-#define  E_CODE_NO_INIT     99          /* vars in code space must have initializer */
-#define  E_OPS_INTEGRAL    100          /* operans must be integral for certian assignments */
-#define  E_TOO_MANY_PARMS  101          /* too many parameters */
-#define  E_TOO_FEW_PARMS    102          /* to few parameters   */
-#define  E_FUNC_NO_CODE    103          /* fatalError          */
-#define  E_TYPE_MISMATCH_PARM 104       /* type mismatch for parameter */
-#define  E_INVALID_FLOAT_CONST 105      /* invalid floating point literal string */
-#define  E_INVALID_OP      106          /* invalid operand for some operation */
-#define  E_SWITCH_NON_INTEGER 107       /* switch value not integer */
-#define  E_CASE_NON_INTEGER 108         /* case value not integer */
-#define  E_FUNC_TOO_LARGE   109         /* function too large     */
-#define  W_CONTROL_FLOW     110         /* control flow changed due to optimization */
-#define  W_PTR_TYPE_INVALID 111         /* invalid type specifier for pointer       */
-#define  W_IMPLICIT_FUNC    112         /* function declared implicitly             */
-#define  E_CONTINUE         113         /* more than one line                       */
-#define  W_TOOMANY_SPILS    114         /* too many spils occured                   */
-#define  W_UNKNOWN_PRAGMA   115         /* #pragma directive unsupported            */
-#define  W_SHIFT_CHANGED    116         /* shift changed to zero                    */
-#define  W_UNKNOWN_OPTION   117         /* don't know the option                    */
-#define  W_UNSUPP_OPTION    118         /* processor reset has been redifned        */
-#define  W_UNKNOWN_FEXT     119         /* unknown file extension                   */
-#define  W_TOO_MANY_SRC     120         /* can only compile one .c file at a time   */
-#define  I_CYCLOMATIC       121         /* information message                      */
-#define  E_DIVIDE_BY_ZERO   122         /* / 0 */
-#define  E_FUNC_BIT         123         /* function cannot return bit */
-#define  E_CAST_ZERO        124         /* casting to from size zero  */
-#define  W_CONST_RANGE      125         /* constant too large         */
-#define  W_CODE_UNREACH     126         /* unreachable code           */
-#define  W_NONPTR2_GENPTR   127         /* non pointer cast to generic pointer */
-#define  W_POSSBUG          128         /* possible code generation error */
-#define  W_PTR_ASSIGN       129         /* incampatible pointer assignment */
-#define  W_UNKNOWN_MODEL    130                /* Unknown memory model */
-#define  E_UNKNOWN_TARGET   131         /* target not defined   */
-#define         W_INDIR_BANKED     132         /* Indirect call to a banked fun */
-#define         W_UNSUPPORTED_MODEL 133        /* Unsupported model, ignored */
-#define         W_BANKED_WITH_NONBANKED 134    /* banked and nonbanked attributes mixed */
-#define         W_BANKED_WITH_STATIC 135       /* banked and static mixed */
-#define  W_INT_TO_GEN_PTR_CAST 136     /* Converting integer type to generic pointer. */
-
-void werror(int, ...);