mirror of git://gcc.gnu.org/git/gcc.git
internal.h (xnew, [...]): Remove.
* internal.h (xnew, xcnew, xnewvec, xcnewvec, xobnew): Remove. * directives.c: Use XNEW-family macros from libiberty. * lex.c: Likewise. * macro.c: Likewise. * cpplib.h (cpp_deps_style): Export enum with name. From-SVN: r85121
This commit is contained in:
parent
5673cd61ce
commit
72bb2c39ce
|
@ -1,3 +1,11 @@
|
||||||
|
2004-07-24 Bernardo Innocenti <bernie@develer.com>
|
||||||
|
|
||||||
|
* internal.h (xnew, xcnew, xnewvec, xcnewvec, xobnew): Remove.
|
||||||
|
* directives.c: Use XNEW-family macros from libiberty.
|
||||||
|
* lex.c: Likewise.
|
||||||
|
* macro.c: Likewise.
|
||||||
|
* cpplib.h (cpp_deps_style): Export enum with name.
|
||||||
|
|
||||||
2004-07-23 Matthias Klose <doko@debian.org>
|
2004-07-23 Matthias Klose <doko@debian.org>
|
||||||
|
|
||||||
init.c (init_library): Use PACKAGE for the text domain.
|
init.c (init_library): Use PACKAGE for the text domain.
|
||||||
|
|
|
@ -1077,7 +1077,7 @@ char **
|
||||||
_cpp_save_pragma_names (cpp_reader *pfile)
|
_cpp_save_pragma_names (cpp_reader *pfile)
|
||||||
{
|
{
|
||||||
int ct = count_registered_pragmas (pfile->pragmas);
|
int ct = count_registered_pragmas (pfile->pragmas);
|
||||||
char **result = xnewvec (char *, ct);
|
char **result = XNEWVEC (char *, ct);
|
||||||
(void) save_registered_pragmas (pfile->pragmas, result);
|
(void) save_registered_pragmas (pfile->pragmas, result);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
@ -1318,11 +1318,11 @@ destringize_and_run (cpp_reader *pfile, const cpp_string *in)
|
||||||
cpp_token *saved_cur_token = pfile->cur_token;
|
cpp_token *saved_cur_token = pfile->cur_token;
|
||||||
tokenrun *saved_cur_run = pfile->cur_run;
|
tokenrun *saved_cur_run = pfile->cur_run;
|
||||||
|
|
||||||
pfile->context = xnew (cpp_context);
|
pfile->context = XNEW (cpp_context);
|
||||||
pfile->context->macro = 0;
|
pfile->context->macro = 0;
|
||||||
pfile->context->prev = 0;
|
pfile->context->prev = 0;
|
||||||
run_directive (pfile, T_PRAGMA, result, dest - result);
|
run_directive (pfile, T_PRAGMA, result, dest - result);
|
||||||
free (pfile->context);
|
XDELETE (pfile->context);
|
||||||
pfile->context = saved_context;
|
pfile->context = saved_context;
|
||||||
pfile->cur_token = saved_cur_token;
|
pfile->cur_token = saved_cur_token;
|
||||||
pfile->cur_run = saved_cur_run;
|
pfile->cur_run = saved_cur_run;
|
||||||
|
@ -1532,7 +1532,7 @@ push_conditional (cpp_reader *pfile, int skip, int type,
|
||||||
struct if_stack *ifs;
|
struct if_stack *ifs;
|
||||||
cpp_buffer *buffer = pfile->buffer;
|
cpp_buffer *buffer = pfile->buffer;
|
||||||
|
|
||||||
ifs = xobnew (&pfile->buffer_ob, struct if_stack);
|
ifs = XOBNEW (&pfile->buffer_ob, struct if_stack);
|
||||||
ifs->line = pfile->directive_line;
|
ifs->line = pfile->directive_line;
|
||||||
ifs->next = buffer->if_stack;
|
ifs->next = buffer->if_stack;
|
||||||
ifs->skip_elses = pfile->state.skipping || !skip;
|
ifs->skip_elses = pfile->state.skipping || !skip;
|
||||||
|
@ -1922,7 +1922,7 @@ cpp_buffer *
|
||||||
cpp_push_buffer (cpp_reader *pfile, const uchar *buffer, size_t len,
|
cpp_push_buffer (cpp_reader *pfile, const uchar *buffer, size_t len,
|
||||||
int from_stage3)
|
int from_stage3)
|
||||||
{
|
{
|
||||||
cpp_buffer *new = xobnew (&pfile->buffer_ob, cpp_buffer);
|
cpp_buffer *new = XOBNEW (&pfile->buffer_ob, cpp_buffer);
|
||||||
|
|
||||||
/* Clears, amongst other things, if_stack and mi_cmacro. */
|
/* Clears, amongst other things, if_stack and mi_cmacro. */
|
||||||
memset (new, 0, sizeof (cpp_buffer));
|
memset (new, 0, sizeof (cpp_buffer));
|
||||||
|
|
|
@ -231,6 +231,9 @@ extern enum cpp_token_fld_kind cpp_token_val_index (cpp_token *tok);
|
||||||
typedef unsigned CPPCHAR_SIGNED_T cppchar_t;
|
typedef unsigned CPPCHAR_SIGNED_T cppchar_t;
|
||||||
typedef CPPCHAR_SIGNED_T cppchar_signed_t;
|
typedef CPPCHAR_SIGNED_T cppchar_signed_t;
|
||||||
|
|
||||||
|
/* Style of header dependencies to generate. */
|
||||||
|
enum cpp_deps_style { DEPS_NONE = 0, DEPS_USER, DEPS_SYSTEM };
|
||||||
|
|
||||||
/* This structure is nested inside struct cpp_reader, and
|
/* This structure is nested inside struct cpp_reader, and
|
||||||
carries all the options visible to the command line. */
|
carries all the options visible to the command line. */
|
||||||
struct cpp_options
|
struct cpp_options
|
||||||
|
@ -378,7 +381,7 @@ struct cpp_options
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
/* Style of header dependencies to generate. */
|
/* Style of header dependencies to generate. */
|
||||||
enum {DEPS_NONE = 0, DEPS_USER, DEPS_SYSTEM } style;
|
enum cpp_deps_style style;
|
||||||
|
|
||||||
/* Assume missing files are generated files. */
|
/* Assume missing files are generated files. */
|
||||||
bool missing_files;
|
bool missing_files;
|
||||||
|
|
|
@ -560,11 +560,6 @@ extern const char *_cpp_default_encoding (void);
|
||||||
|
|
||||||
/* Utility routines and macros. */
|
/* Utility routines and macros. */
|
||||||
#define DSC(str) (const uchar *)str, sizeof str - 1
|
#define DSC(str) (const uchar *)str, sizeof str - 1
|
||||||
#define xnew(T) (T *) xmalloc (sizeof(T))
|
|
||||||
#define xcnew(T) (T *) xcalloc (1, sizeof(T))
|
|
||||||
#define xnewvec(T, N) (T *) xmalloc (sizeof(T) * (N))
|
|
||||||
#define xcnewvec(T, N) (T *) xcalloc (N, sizeof(T))
|
|
||||||
#define xobnew(O, T) (T *) obstack_alloc (O, sizeof(T))
|
|
||||||
|
|
||||||
/* These are inline functions instead of macros so we can get type
|
/* These are inline functions instead of macros so we can get type
|
||||||
checking. */
|
checking. */
|
||||||
|
|
|
@ -662,7 +662,7 @@ save_comment (cpp_reader *pfile, cpp_token *token, const unsigned char *from,
|
||||||
void
|
void
|
||||||
_cpp_init_tokenrun (tokenrun *run, unsigned int count)
|
_cpp_init_tokenrun (tokenrun *run, unsigned int count)
|
||||||
{
|
{
|
||||||
run->base = xnewvec (cpp_token, count);
|
run->base = XNEWVEC (cpp_token, count);
|
||||||
run->limit = run->base + count;
|
run->limit = run->base + count;
|
||||||
run->next = NULL;
|
run->next = NULL;
|
||||||
}
|
}
|
||||||
|
@ -673,7 +673,7 @@ next_tokenrun (tokenrun *run)
|
||||||
{
|
{
|
||||||
if (run->next == NULL)
|
if (run->next == NULL)
|
||||||
{
|
{
|
||||||
run->next = xnew (tokenrun);
|
run->next = XNEW (tokenrun);
|
||||||
run->next->prev = run;
|
run->next->prev = run;
|
||||||
_cpp_init_tokenrun (run->next, 250);
|
_cpp_init_tokenrun (run->next, 250);
|
||||||
}
|
}
|
||||||
|
|
|
@ -919,7 +919,7 @@ next_context (cpp_reader *pfile)
|
||||||
|
|
||||||
if (result == 0)
|
if (result == 0)
|
||||||
{
|
{
|
||||||
result = xnew (cpp_context);
|
result = XNEW (cpp_context);
|
||||||
result->prev = pfile->context;
|
result->prev = pfile->context;
|
||||||
result->next = 0;
|
result->next = 0;
|
||||||
pfile->context->next = result;
|
pfile->context->next = result;
|
||||||
|
|
Loading…
Reference in New Issue