home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gnu / gdb-4.14-src.lha / gdb-4.14 / gdb / language.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-02-02  |  13.5 KB  |  420 lines

  1. /* Source-language-related definitions for GDB.
  2.    Copyright 1991, 1992 Free Software Foundation, Inc.
  3.    Contributed by the Department of Computer Science at the State University
  4.    of New York at Buffalo.
  5.  
  6. This file is part of GDB.
  7.  
  8. This program is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2 of the License, or
  11. (at your option) any later version.
  12.  
  13. This program is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with this program; if not, write to the Free Software
  20. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22. #if !defined (LANGUAGE_H)
  23. #define LANGUAGE_H 1
  24.  
  25. #ifdef __STDC__        /* Forward decls for prototypes */
  26. struct value;
  27. struct objfile;
  28. /* enum exp_opcode;    ANSI's `wisdom' didn't include forward enum decls. */
  29. #endif
  30.  
  31. /* This used to be included to configure GDB for one or more specific
  32.    languages.  Now it is shortcutted to configure for all of them.  FIXME.  */
  33. /* #include "lang_def.h" */
  34. #define    _LANG_c
  35. #define    _LANG_m2
  36. #define    _LANG_chill
  37. #define _LANG_fortran
  38.  
  39. #define MAX_FORTRAN_DIMS  7   /* Maximum number of F77 array dims */ 
  40.  
  41. /* range_mode ==
  42.    range_mode_auto:   range_check set automatically to default of language.
  43.    range_mode_manual: range_check set manually by user.  */
  44.  
  45. extern enum range_mode {range_mode_auto, range_mode_manual} range_mode;
  46.  
  47. /* range_check ==
  48.    range_check_on:    Ranges are checked in GDB expressions, producing errors.
  49.    range_check_warn:  Ranges are checked, producing warnings.
  50.    range_check_off:   Ranges are not checked in GDB expressions.  */
  51.  
  52. extern enum range_check
  53.   {range_check_off, range_check_warn, range_check_on} range_check;
  54.  
  55. /* type_mode ==
  56.    type_mode_auto:   type_check set automatically to default of language
  57.    type_mode_manual: type_check set manually by user. */
  58.  
  59. extern enum type_mode {type_mode_auto, type_mode_manual} type_mode;
  60.  
  61. /* type_check ==
  62.    type_check_on:    Types are checked in GDB expressions, producing errors.
  63.    type_check_warn:  Types are checked, producing warnings.
  64.    type_check_off:   Types are not checked in GDB expressions.  */
  65.  
  66. extern enum type_check
  67.   {type_check_off, type_check_warn, type_check_on} type_check;
  68.  
  69. /* Information for doing language dependent formatting of printed values. */
  70.  
  71. struct language_format_info
  72. {
  73.   /* The format that can be passed directly to standard C printf functions
  74.      to generate a completely formatted value in the format appropriate for
  75.      the language. */
  76.  
  77.   char *la_format;
  78.  
  79.   /* The prefix to be used when directly printing a value, or constructing
  80.      a standard C printf format.  This generally is everything up to the
  81.      conversion specification (the part introduced by the '%' character
  82.      and terminated by the conversion specifier character). */
  83.  
  84.   char *la_format_prefix;
  85.  
  86.   /* The conversion specifier.  This is generally everything after the
  87.      field width and precision, typically only a single character such
  88.      as 'o' for octal format or 'x' for hexadecimal format. */
  89.  
  90.   char *la_format_specifier;
  91.  
  92.   /* The suffix to be used when directly printing a value, or constructing
  93.      a standard C printf format.  This generally is everything after the
  94.      conversion specification (the part introduced by the '%' character
  95.      and terminated by the conversion specifier character). */
  96.  
  97.   char *la_format_suffix;        /* Suffix for custom format string */
  98. };
  99.  
  100. /* Structure tying together assorted information about a language.  */
  101.  
  102. struct language_defn
  103. {
  104.   /* Name of the language */
  105.   
  106.   char *la_name;
  107.  
  108.   /* its symtab language-enum (defs.h) */
  109.  
  110.   enum language la_language;
  111.  
  112.   /* Its builtin types.  This is a vector ended by a NULL pointer.  These
  113.      types can be specified by name in parsing types in expressions,
  114.      regardless of whether the program being debugged actually defines
  115.      such a type.  */
  116.  
  117.   struct type ** const *la_builtin_type_vector;
  118.  
  119.   /* Default range checking */
  120.  
  121.   enum range_check la_range_check;
  122.  
  123.   /* Default type checking */
  124.  
  125.   enum type_check la_type_check;
  126.  
  127.   /* Parser function. */
  128.   
  129.   int (*la_parser) PARAMS((void));
  130.  
  131.   /* Parser error function */
  132.  
  133.   void (*la_error) PARAMS ((char *));
  134.  
  135.   void (*la_printchar) PARAMS ((int, GDB_FILE *));
  136.  
  137.   void (*la_printstr) PARAMS ((GDB_FILE *, char *, unsigned int, int));
  138.  
  139.   struct type *(*la_fund_type) PARAMS ((struct objfile *, int));
  140.  
  141.   /* Print a type using syntax appropriate for this language. */
  142.  
  143.   void (*la_print_type) PARAMS ((struct type *, char *, GDB_FILE *, int, int));
  144.  
  145.   /* Print a value using syntax appropriate for this language. */
  146.  
  147.   int (*la_val_print) PARAMS ((struct type *, char *,  CORE_ADDR, GDB_FILE *,
  148.                    int, int, int, enum val_prettyprint));
  149.  
  150.   /* Print a top-level value using syntax appropriate for this language. */
  151.  
  152.   int (*la_value_print) PARAMS ((struct value *, GDB_FILE *,
  153.                  int, enum val_prettyprint));
  154.  
  155.   /* Base 2 (binary) formats. */
  156.  
  157.   struct language_format_info la_binary_format;
  158.  
  159.   /* Base 8 (octal) formats. */
  160.  
  161.   struct language_format_info la_octal_format;
  162.  
  163.   /* Base 10 (decimal) formats */
  164.  
  165.   struct language_format_info la_decimal_format;
  166.  
  167.   /* Base 16 (hexadecimal) formats */
  168.  
  169.   struct language_format_info la_hex_format;
  170.  
  171.   /* Table for printing expressions */
  172.  
  173.   const struct op_print *la_op_print_tab;
  174.  
  175.   /* Zero if the language has first-class arrays.  True if there are no
  176.      array values, and array objects decay to pointers, as in C. */
  177.  
  178.   char c_style_arrays;
  179.  
  180.   /* Index to use for extracting the first element of a string. */
  181.   char string_lower_bound;
  182.  
  183.   /* Type of elements of strings. */
  184.   struct type **string_char_type;
  185.  
  186.   /* Add fields above this point, so the magic number is always last. */
  187.   /* Magic number for compat checking */
  188.  
  189.   long la_magic;
  190.  
  191. };
  192.  
  193. #define LANG_MAGIC    910823L
  194.  
  195. /* Pointer to the language_defn for our current language.  This pointer
  196.    always points to *some* valid struct; it can be used without checking
  197.    it for validity.
  198.  
  199.    The current language affects expression parsing and evaluation
  200.    (FIXME: it might be cleaner to make the evaluation-related stuff
  201.    separate exp_opcodes for each different set of semantics.  We
  202.    should at least think this through more clearly with respect to
  203.    what happens if the language is changed between parsing and
  204.    evaluation) and printing of things like types and arrays.  It does
  205.    *not* affect symbol-reading-- each source file in a symbol-file has
  206.    its own language and we should keep track of that regardless of the
  207.    language when symbols are read.  If we want some manual setting for
  208.    the language of symbol files (e.g. detecting when ".c" files are
  209.    C++), it should be a seprate setting from the current_language.  */
  210.  
  211. extern const struct language_defn *current_language;
  212.  
  213. /* Pointer to the language_defn expected by the user, e.g. the language
  214.    of main(), or the language we last mentioned in a message, or C.  */
  215.  
  216. extern const struct language_defn *expected_language;
  217.  
  218. /* language_mode == 
  219.    language_mode_auto:   current_language automatically set upon selection
  220.              of scope (e.g. stack frame)
  221.    language_mode_manual: current_language set only by user.  */
  222.  
  223. extern enum language_mode
  224.   {language_mode_auto, language_mode_manual} language_mode;
  225.  
  226. /* These macros define the behaviour of the expression 
  227.    evaluator.  */
  228.  
  229. /* Should we strictly type check expressions? */
  230. #define STRICT_TYPE (type_check != type_check_off)
  231.  
  232. /* Should we range check values against the domain of their type? */
  233. #define RANGE_CHECK (range_check != range_check_off)
  234.  
  235. /* "cast" really means conversion */
  236. /* FIXME -- should be a setting in language_defn */
  237. #define CAST_IS_CONVERSION (current_language->la_language == language_c  || \
  238.                 current_language->la_language == language_cplus)
  239.  
  240. extern void
  241. language_info PARAMS ((int));
  242.  
  243. extern void
  244. set_language PARAMS ((enum language));
  245.  
  246.  
  247. /* This page contains functions that return things that are
  248.    specific to languages.  Each of these functions is based on
  249.    the current setting of working_lang, which the user sets
  250.    with the "set language" command. */
  251.  
  252. #define create_fundamental_type(objfile,typeid) \
  253.   (current_language->la_fund_type(objfile, typeid))
  254.  
  255. #define LA_PRINT_TYPE(type,varstring,stream,show,level) \
  256.   (current_language->la_print_type(type,varstring,stream,show,level))
  257.  
  258. #define LA_VAL_PRINT(type,valaddr,addr,stream,fmt,deref,recurse,pretty) \
  259.   (current_language->la_val_print(type,valaddr,addr,stream,fmt,deref, \
  260.                   recurse,pretty))
  261. #define LA_VALUE_PRINT(val,stream,fmt,pretty) \
  262.   (current_language->la_value_print(val,stream,fmt,pretty))
  263.  
  264. /* Return a format string for printf that will print a number in one of
  265.    the local (language-specific) formats.  Result is static and is
  266.    overwritten by the next call.  Takes printf options like "08" or "l"
  267.    (to produce e.g. %08x or %lx).  */
  268.  
  269. #define local_binary_format() \
  270.   (current_language->la_binary_format.la_format)
  271. #define local_binary_format_prefix() \
  272.   (current_language->la_binary_format.la_format_prefix)
  273. #define local_binary_format_specifier() \
  274.   (current_language->la_binary_format.la_format_specifier)
  275. #define local_binary_format_suffix() \
  276.   (current_language->la_binary_format.la_format_suffix)
  277.  
  278. #define local_octal_format() \
  279.   (current_language->la_octal_format.la_format)
  280. #define local_octal_format_prefix() \
  281.   (current_language->la_octal_format.la_format_prefix)
  282. #define local_octal_format_specifier() \
  283.   (current_language->la_octal_format.la_format_specifier)
  284. #define local_octal_format_suffix() \
  285.   (current_language->la_octal_format.la_format_suffix)
  286.  
  287. #define local_decimal_format() \
  288.   (current_language->la_decimal_format.la_format)
  289. #define local_decimal_format_prefix() \
  290.   (current_language->la_decimal_format.la_format_prefix)
  291. #define local_decimal_format_specifier() \
  292.   (current_language->la_decimal_format.la_format_specifier)
  293. #define local_decimal_format_suffix() \
  294.   (current_language->la_decimal_format.la_format_suffix)
  295.  
  296. #define local_hex_format() \
  297.   (current_language->la_hex_format.la_format)
  298. #define local_hex_format_prefix() \
  299.   (current_language->la_hex_format.la_format_prefix)
  300. #define local_hex_format_specifier() \
  301.   (current_language->la_hex_format.la_format_specifier)
  302. #define local_hex_format_suffix() \
  303.   (current_language->la_hex_format.la_format_suffix)
  304.  
  305. #define LA_PRINT_CHAR(ch, stream) \
  306.   (current_language->la_printchar(ch, stream))
  307. #define LA_PRINT_STRING(stream, string, length, force_ellipses) \
  308.   (current_language->la_printstr(stream, string, length, force_ellipses))
  309.  
  310. /* Test a character to decide whether it can be printed in literal form
  311.    or needs to be printed in another representation.  For example,
  312.    in C the literal form of the character with octal value 141 is 'a'
  313.    and the "other representation" is '\141'.  The "other representation"
  314.    is program language dependent. */
  315.  
  316. #define PRINT_LITERAL_FORM(c) \
  317.   ((c)>=0x20 && ((c)<0x7F || (c)>=0xA0) && (!sevenbit_strings || (c)<0x80))
  318.  
  319. /* Return a format string for printf that will print a number in one of
  320.    the local (language-specific) formats.  Result is static and is
  321.    overwritten by the next call.  Takes printf options like "08" or "l"
  322.    (to produce e.g. %08x or %lx).  */
  323.  
  324. extern char *
  325. local_decimal_format_custom PARAMS ((char *));    /* language.c */
  326.  
  327. extern char *
  328. local_octal_format_custom PARAMS ((char *));    /* language.c */
  329.  
  330. extern char *
  331. local_hex_format_custom PARAMS ((char *));    /* language.c */
  332.  
  333. /* Return a string that contains a number formatted in one of the local
  334.    (language-specific) formats.  Result is static and is overwritten by
  335.    the next call.  Takes printf options like "08" or "l".  */
  336.  
  337. extern char *
  338. local_hex_string PARAMS ((unsigned long));        /* language.c */
  339.  
  340. extern char *
  341. local_hex_string_custom PARAMS ((unsigned long, char *)); /* language.c */
  342.  
  343. /* Type predicates */
  344.  
  345. extern int
  346. simple_type PARAMS ((struct type *));
  347.  
  348. extern int
  349. ordered_type PARAMS ((struct type *));
  350.  
  351. extern int
  352. same_type PARAMS ((struct type *, struct type *));
  353.  
  354. extern int
  355. integral_type PARAMS ((struct type *));
  356.  
  357. extern int
  358. numeric_type PARAMS ((struct type *));
  359.  
  360. extern int
  361. character_type PARAMS ((struct type *));
  362.  
  363. extern int
  364. boolean_type PARAMS ((struct type *));
  365.  
  366. extern int
  367. float_type PARAMS ((struct type *));
  368.  
  369. extern int
  370. pointer_type PARAMS ((struct type *));
  371.  
  372. extern int
  373. structured_type PARAMS ((struct type *));
  374.  
  375. /* Checks Binary and Unary operations for semantic type correctness */
  376. /* FIXME:  Does not appear to be used */
  377. #define unop_type_check(v,o) binop_type_check((v),NULL,(o))
  378.  
  379. extern void
  380. binop_type_check PARAMS ((struct value *, struct value *, int));
  381.  
  382. /* Error messages */
  383.  
  384. extern void
  385. op_error PARAMS ((char *fmt, enum exp_opcode, int));
  386.  
  387. #define type_op_error(f,o) \
  388.    op_error((f),(o),type_check==type_check_on ? 1 : 0)
  389. #define range_op_error(f,o) \
  390.    op_error((f),(o),range_check==range_check_on ? 1 : 0)
  391.  
  392. extern void
  393. type_error ();
  394.  
  395. void
  396. range_error ();
  397.  
  398. /* Data:  Does this value represent "truth" to the current language?  */
  399.  
  400. extern int
  401. value_true PARAMS ((struct value *));
  402.  
  403. /* Misc:  The string representing a particular enum language.  */
  404.  
  405. extern const struct language_defn *
  406. language_def PARAMS ((enum language));
  407.  
  408. extern char *
  409. language_str PARAMS ((enum language));
  410.  
  411. /* Add a language to the set known by GDB (at initialization time).  */
  412.  
  413. extern void
  414. add_language PARAMS ((const struct language_defn *));
  415.  
  416. extern enum language
  417. get_frame_language PARAMS ((void));        /* In stack.c */
  418.  
  419. #endif    /* defined (LANGUAGE_H) */
  420.