X-Git-Url: http://drtracing.org/?a=blobdiff_plain;ds=sidebyside;f=gdb%2Fc-lang.h;h=94861f52d5e688cad404e467f95eda9bb83bc443;hb=f42bf748e417cf9120fc57d144b6eaaf3adda247;hp=5cbe34d2e6673d04e32798880c6b2ba14507e861;hpb=d3eab38a48ec521922e7d07595fd693df7ff3510;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/c-lang.h b/gdb/c-lang.h index 5cbe34d2e6..94861f52d5 100644 --- a/gdb/c-lang.h +++ b/gdb/c-lang.h @@ -1,7 +1,6 @@ /* C language support definitions for GDB, the GNU debugger. - Copyright (C) 1992, 1994-1998, 2000, 2002, 2005-2012 Free Software - Foundation, Inc. + Copyright (C) 1992-2016 Free Software Foundation, Inc. This file is part of GDB. @@ -24,16 +23,19 @@ struct ui_file; struct language_arch_info; +struct type_print_options; +struct parser_state; #include "value.h" #include "macroexp.h" #include "parser-defs.h" +#include "common/enum-flags.h" /* The various kinds of C string and character. Note that these values are chosen so that they may be or'd together in certain ways. */ -enum c_string_type +enum c_string_type_values { /* An ordinary string: "value". */ C_STRING = 0, @@ -55,17 +57,20 @@ enum c_string_type C_CHAR_32 = 7 }; +DEF_ENUM_FLAGS_TYPE (enum c_string_type_values, c_string_type); + /* Defined in c-exp.y. */ -extern int c_parse (void); +extern int c_parse (struct parser_state *); extern void c_error (char *); -extern int c_parse_escape (char **, struct obstack *); +extern int c_parse_escape (const char **, struct obstack *); /* Defined in c-typeprint.c */ extern void c_print_type (struct type *, const char *, - struct ui_file *, int, int); + struct ui_file *, int, int, + const struct type_print_options *); extern void c_print_typedef (struct type *, struct symbol *, @@ -110,7 +115,7 @@ extern const struct op_print c_op_print_tab[]; /* These are in c-typeprint.c: */ extern void c_type_print_base (struct type *, struct ui_file *, - int, int); + int, int, const struct type_print_options *); /* These are in cp-valprint.c */ @@ -139,5 +144,24 @@ extern int cp_is_vtbl_member (struct type *); extern int c_textual_element_type (struct type *, char); +/* Create a new instance of the C compiler and return it. The new + compiler is owned by the caller and must be freed using the destroy + method. This function never returns NULL, but rather throws an + exception on failure. This is suitable for use as the + la_get_compile_instance language method. */ + +extern struct compile_instance *c_get_compile_context (void); + +/* This takes the user-supplied text and returns a newly malloc'd bit + of code to compile. + + This is used as the la_compute_program language method; see that + for a description of the arguments. */ + +extern char *c_compute_program (struct compile_instance *inst, + const char *input, + struct gdbarch *gdbarch, + const struct block *expr_block, + CORE_ADDR expr_pc); #endif /* !defined (C_LANG_H) */