2000-06-14 14:27:59 +02:00
|
|
|
|
/* Pascal language support routines for GDB, the GNU debugger.
|
2005-01-29 01:11:12 +01:00
|
|
|
|
|
2008-01-01 23:53:26 +01:00
|
|
|
|
Copyright (C) 2000, 2002, 2003, 2004, 2005, 2007, 2008
|
2007-01-09 18:59:20 +01:00
|
|
|
|
Free Software Foundation, Inc.
|
2000-06-14 14:27:59 +02:00
|
|
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-08-23 20:08:50 +02:00
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2000-06-14 14:27:59 +02:00
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-23 20:08:50 +02:00
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
2000-06-14 14:27:59 +02:00
|
|
|
|
|
2001-11-09 10:48:09 +01:00
|
|
|
|
/* This file is derived from c-lang.c */
|
2000-06-14 14:27:59 +02:00
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
2002-08-28 00:37:14 +02:00
|
|
|
|
#include "gdb_string.h"
|
2000-06-14 14:27:59 +02:00
|
|
|
|
#include "symtab.h"
|
|
|
|
|
#include "gdbtypes.h"
|
|
|
|
|
#include "expression.h"
|
|
|
|
|
#include "parser-defs.h"
|
|
|
|
|
#include "language.h"
|
|
|
|
|
#include "p-lang.h"
|
|
|
|
|
#include "valprint.h"
|
2003-05-20 03:55:18 +02:00
|
|
|
|
#include "value.h"
|
2001-11-09 10:48:09 +01:00
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
2000-06-14 14:27:59 +02:00
|
|
|
|
extern void _initialize_pascal_language (void);
|
2001-11-09 10:48:09 +01:00
|
|
|
|
|
|
|
|
|
|
2007-10-09 08:59:27 +02:00
|
|
|
|
/* All GPC versions until now (2007-09-27) also define a symbol called
|
|
|
|
|
'_p_initialize'. Check for the presence of this symbol first. */
|
|
|
|
|
static const char GPC_P_INITIALIZE[] = "_p_initialize";
|
|
|
|
|
|
|
|
|
|
/* The name of the symbol that GPC uses as the name of the main
|
|
|
|
|
procedure (since version 20050212). */
|
|
|
|
|
static const char GPC_MAIN_PROGRAM_NAME_1[] = "_p__M0_main_program";
|
|
|
|
|
|
|
|
|
|
/* Older versions of GPC (versions older than 20050212) were using
|
|
|
|
|
a different name for the main procedure. */
|
|
|
|
|
static const char GPC_MAIN_PROGRAM_NAME_2[] = "pascal_main_program";
|
|
|
|
|
|
|
|
|
|
/* Function returning the special symbol name used
|
|
|
|
|
by GPC for the main procedure in the main program
|
|
|
|
|
if it is found in minimal symbol list.
|
|
|
|
|
This function tries to find minimal symbols generated by GPC
|
|
|
|
|
so that it finds the even if the program was compiled
|
|
|
|
|
without debugging information.
|
|
|
|
|
According to information supplied by Waldeck Hebisch,
|
|
|
|
|
this should work for all versions posterior to June 2000. */
|
|
|
|
|
|
|
|
|
|
const char *
|
|
|
|
|
pascal_main_name (void)
|
|
|
|
|
{
|
|
|
|
|
struct minimal_symbol *msym;
|
|
|
|
|
|
|
|
|
|
msym = lookup_minimal_symbol (GPC_P_INITIALIZE, NULL, NULL);
|
|
|
|
|
|
|
|
|
|
/* If '_p_initialize' was not found, the main program is likely not
|
|
|
|
|
written in Pascal. */
|
|
|
|
|
if (msym == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
msym = lookup_minimal_symbol (GPC_MAIN_PROGRAM_NAME_1, NULL, NULL);
|
|
|
|
|
if (msym != NULL)
|
|
|
|
|
{
|
|
|
|
|
return GPC_MAIN_PROGRAM_NAME_1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
msym = lookup_minimal_symbol (GPC_MAIN_PROGRAM_NAME_2, NULL, NULL);
|
|
|
|
|
if (msym != NULL)
|
|
|
|
|
{
|
|
|
|
|
return GPC_MAIN_PROGRAM_NAME_2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* No known entry procedure found, the main program is probably
|
|
|
|
|
not compiled with GPC. */
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2001-11-09 10:48:09 +01:00
|
|
|
|
/* Determines if type TYPE is a pascal string type.
|
|
|
|
|
Returns 1 if the type is a known pascal type
|
|
|
|
|
This function is used by p-valprint.c code to allow better string display.
|
|
|
|
|
If it is a pascal string type, then it also sets info needed
|
|
|
|
|
to get the length and the data of the string
|
|
|
|
|
length_pos, length_size and string_pos are given in bytes.
|
|
|
|
|
char_size gives the element size in bytes.
|
|
|
|
|
FIXME: if the position or the size of these fields
|
|
|
|
|
are not multiple of TARGET_CHAR_BIT then the results are wrong
|
|
|
|
|
but this does not happen for Free Pascal nor for GPC. */
|
|
|
|
|
int
|
|
|
|
|
is_pascal_string_type (struct type *type,int *length_pos,
|
2002-05-02 13:18:07 +02:00
|
|
|
|
int *length_size, int *string_pos, int *char_size,
|
|
|
|
|
char **arrayname)
|
2001-11-09 10:48:09 +01:00
|
|
|
|
{
|
|
|
|
|
if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
|
|
|
|
|
{
|
|
|
|
|
/* Old Borland type pascal strings from Free Pascal Compiler. */
|
|
|
|
|
/* Two fields: length and st. */
|
|
|
|
|
if (TYPE_NFIELDS (type) == 2
|
|
|
|
|
&& strcmp (TYPE_FIELDS (type)[0].name, "length") == 0
|
|
|
|
|
&& strcmp (TYPE_FIELDS (type)[1].name, "st") == 0)
|
|
|
|
|
{
|
2002-05-02 13:18:07 +02:00
|
|
|
|
if (length_pos)
|
|
|
|
|
*length_pos = TYPE_FIELD_BITPOS (type, 0) / TARGET_CHAR_BIT;
|
|
|
|
|
if (length_size)
|
2002-05-13 Daniel Jacobowitz <drow@mvista.com>
* ax-gdb.c (gen_sign_extend, gen_fetch, gen_usual_unary)
(gen_cast, gen_scale, gen_add, gen_sub, gen_binop, gen_deref)
(gen_address_of, gen_struct_ref, gen_repeat): Use type
access macros.
* c-typeprint.c (cp_type_print_method_args): Likewise.
(c_type_print_args): Likewise.
* d10v-tdep.c (d10v_push_arguments): Likewise.
(d10v_extract_return_value): Likewise.
* expprint.c (print_subexp): Likewise.
* gdbtypes.c (lookup_primitive_typename): Likewise.
(lookup_template_type, add_mangled_type, print_arg_types): Likewise.
* gdbtypes.h (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB)
(TYPE_TARGET_STUB, TYPE_STATIC, TYPE_CONST, TYPE_VOLATILE)
(TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_CODE_SPACE, TYPE_VARARGS)
(TYPE_VECTOR): Likewise.
* hpread.c (hpread_read_struct_type)
(fix_static_member_physnames, fixup_class_method_type)
(hpread_type_lookup): Likewise.
* mdebugread.c (parse_symbol, parse_type): Likewise.
* p-lang.c (is_pascal_string_type): Likewise.
* valops.c (hand_function_call): Likewise.
* x86-64-tdep.c (classify_argument): Likewise.
* hpread.c (hpread_read_function_type)
(hpread_read_doc_function_type): Call replace_type.
* dstread.c (create_new_type): Delete.
(decode_dst_structure, process_dst_function): Call alloc_type.
Use type access macros.
2002-05-13 16:00:36 +02:00
|
|
|
|
*length_size = TYPE_LENGTH (TYPE_FIELD_TYPE (type, 0));
|
2002-05-02 13:18:07 +02:00
|
|
|
|
if (string_pos)
|
|
|
|
|
*string_pos = TYPE_FIELD_BITPOS (type, 1) / TARGET_CHAR_BIT;
|
|
|
|
|
if (char_size)
|
|
|
|
|
*char_size = 1;
|
|
|
|
|
if (arrayname)
|
|
|
|
|
*arrayname = TYPE_FIELDS (type)[1].name;
|
|
|
|
|
return 2;
|
2001-11-09 10:48:09 +01:00
|
|
|
|
};
|
|
|
|
|
/* GNU pascal strings. */
|
|
|
|
|
/* Three fields: Capacity, length and schema$ or _p_schema. */
|
|
|
|
|
if (TYPE_NFIELDS (type) == 3
|
|
|
|
|
&& strcmp (TYPE_FIELDS (type)[0].name, "Capacity") == 0
|
|
|
|
|
&& strcmp (TYPE_FIELDS (type)[1].name, "length") == 0)
|
|
|
|
|
{
|
2002-05-02 13:18:07 +02:00
|
|
|
|
if (length_pos)
|
|
|
|
|
*length_pos = TYPE_FIELD_BITPOS (type, 1) / TARGET_CHAR_BIT;
|
|
|
|
|
if (length_size)
|
2002-05-13 Daniel Jacobowitz <drow@mvista.com>
* ax-gdb.c (gen_sign_extend, gen_fetch, gen_usual_unary)
(gen_cast, gen_scale, gen_add, gen_sub, gen_binop, gen_deref)
(gen_address_of, gen_struct_ref, gen_repeat): Use type
access macros.
* c-typeprint.c (cp_type_print_method_args): Likewise.
(c_type_print_args): Likewise.
* d10v-tdep.c (d10v_push_arguments): Likewise.
(d10v_extract_return_value): Likewise.
* expprint.c (print_subexp): Likewise.
* gdbtypes.c (lookup_primitive_typename): Likewise.
(lookup_template_type, add_mangled_type, print_arg_types): Likewise.
* gdbtypes.h (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB)
(TYPE_TARGET_STUB, TYPE_STATIC, TYPE_CONST, TYPE_VOLATILE)
(TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_CODE_SPACE, TYPE_VARARGS)
(TYPE_VECTOR): Likewise.
* hpread.c (hpread_read_struct_type)
(fix_static_member_physnames, fixup_class_method_type)
(hpread_type_lookup): Likewise.
* mdebugread.c (parse_symbol, parse_type): Likewise.
* p-lang.c (is_pascal_string_type): Likewise.
* valops.c (hand_function_call): Likewise.
* x86-64-tdep.c (classify_argument): Likewise.
* hpread.c (hpread_read_function_type)
(hpread_read_doc_function_type): Call replace_type.
* dstread.c (create_new_type): Delete.
(decode_dst_structure, process_dst_function): Call alloc_type.
Use type access macros.
2002-05-13 16:00:36 +02:00
|
|
|
|
*length_size = TYPE_LENGTH (TYPE_FIELD_TYPE (type, 1));
|
2002-05-02 13:18:07 +02:00
|
|
|
|
if (string_pos)
|
|
|
|
|
*string_pos = TYPE_FIELD_BITPOS (type, 2) / TARGET_CHAR_BIT;
|
2001-11-09 10:48:09 +01:00
|
|
|
|
/* FIXME: how can I detect wide chars in GPC ?? */
|
2002-05-02 13:18:07 +02:00
|
|
|
|
if (char_size)
|
|
|
|
|
*char_size = 1;
|
|
|
|
|
if (arrayname)
|
|
|
|
|
*arrayname = TYPE_FIELDS (type)[2].name;
|
|
|
|
|
return 3;
|
2001-11-09 10:48:09 +01:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2000-06-14 14:27:59 +02:00
|
|
|
|
static void pascal_one_char (int, struct ui_file *, int *);
|
|
|
|
|
|
|
|
|
|
/* Print the character C on STREAM as part of the contents of a literal
|
|
|
|
|
string.
|
|
|
|
|
In_quotes is reset to 0 if a char is written with #4 notation */
|
|
|
|
|
|
|
|
|
|
static void
|
2003-09-09 10:05:43 +02:00
|
|
|
|
pascal_one_char (int c, struct ui_file *stream, int *in_quotes)
|
2000-06-14 14:27:59 +02:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
c &= 0xFF; /* Avoid sign bit follies */
|
|
|
|
|
|
|
|
|
|
if ((c == '\'') || (PRINT_LITERAL_FORM (c)))
|
|
|
|
|
{
|
|
|
|
|
if (!(*in_quotes))
|
|
|
|
|
fputs_filtered ("'", stream);
|
|
|
|
|
*in_quotes = 1;
|
|
|
|
|
if (c == '\'')
|
|
|
|
|
{
|
|
|
|
|
fputs_filtered ("''", stream);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
fprintf_filtered (stream, "%c", c);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (*in_quotes)
|
|
|
|
|
fputs_filtered ("'", stream);
|
|
|
|
|
*in_quotes = 0;
|
|
|
|
|
fprintf_filtered (stream, "#%d", (unsigned int) c);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void pascal_emit_char (int c, struct ui_file *stream, int quoter);
|
|
|
|
|
|
|
|
|
|
/* Print the character C on STREAM as part of the contents of a literal
|
|
|
|
|
string whose delimiter is QUOTER. Note that that format for printing
|
|
|
|
|
characters and strings is language specific. */
|
|
|
|
|
|
|
|
|
|
static void
|
2003-09-09 10:05:43 +02:00
|
|
|
|
pascal_emit_char (int c, struct ui_file *stream, int quoter)
|
2000-06-14 14:27:59 +02:00
|
|
|
|
{
|
|
|
|
|
int in_quotes = 0;
|
|
|
|
|
pascal_one_char (c, stream, &in_quotes);
|
|
|
|
|
if (in_quotes)
|
|
|
|
|
fputs_filtered ("'", stream);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
pascal_printchar (int c, struct ui_file *stream)
|
2000-06-14 14:27:59 +02:00
|
|
|
|
{
|
|
|
|
|
int in_quotes = 0;
|
|
|
|
|
pascal_one_char (c, stream, &in_quotes);
|
|
|
|
|
if (in_quotes)
|
|
|
|
|
fputs_filtered ("'", stream);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print the character string STRING, printing at most LENGTH characters.
|
|
|
|
|
Printing stops early if the number hits print_max; repeat counts
|
|
|
|
|
are printed as appropriate. Print ellipses at the end if we
|
|
|
|
|
had to stop before printing LENGTH characters, or if FORCE_ELLIPSES. */
|
|
|
|
|
|
|
|
|
|
void
|
2005-05-09 Andrew Cagney <cagney@gnu.org>
Use gdb_byte in preference to bfd_byte.
* gdbarch.sh: Update.
* gdbarch.h, gdbarch.c: Re-generate.
* ada-lang.c, ada-lang.h, ada-valprint.c, arch-utils.c: Update.
* c-lang.c, c-lang.h, c-valprint.c, cp-valprint.c: Update.
* f-lang.c, f-lang.h, f-valprint.c, gdbcore.h, jv-lang.h: Update.
* jv-valprint.c, language.c, language.h, m2-lang.c: Update.
* m2-lang.h, m2-valprint.c, objc-lang.c, p-lang.c: Update.
* p-lang.h, p-valprint.c, regcache.c, scm-lang.c: Update.
* scm-lang.h, scm-valprint.c, target.c, target.h: Update.
* tramp-frame.c, valarith.c, valops.c, valprint.c: Update.
* valprint.h, value.c, value.h: Update.
2005-05-09 23:20:35 +02:00
|
|
|
|
pascal_printstr (struct ui_file *stream, const gdb_byte *string,
|
2005-01-29 01:11:12 +01:00
|
|
|
|
unsigned int length, int width, int force_ellipses)
|
2000-06-14 14:27:59 +02:00
|
|
|
|
{
|
2003-09-09 10:05:43 +02:00
|
|
|
|
unsigned int i;
|
2000-06-14 14:27:59 +02:00
|
|
|
|
unsigned int things_printed = 0;
|
|
|
|
|
int in_quotes = 0;
|
|
|
|
|
int need_comma = 0;
|
|
|
|
|
|
|
|
|
|
/* If the string was not truncated due to `set print elements', and
|
|
|
|
|
the last byte of it is a null, we don't print that, in traditional C
|
|
|
|
|
style. */
|
|
|
|
|
if ((!force_ellipses) && length > 0 && string[length - 1] == '\0')
|
|
|
|
|
length--;
|
|
|
|
|
|
|
|
|
|
if (length == 0)
|
|
|
|
|
{
|
|
|
|
|
fputs_filtered ("''", stream);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < length && things_printed < print_max; ++i)
|
|
|
|
|
{
|
|
|
|
|
/* Position of the character we are examining
|
|
|
|
|
to see whether it is repeated. */
|
|
|
|
|
unsigned int rep1;
|
|
|
|
|
/* Number of repetitions we have detected so far. */
|
|
|
|
|
unsigned int reps;
|
|
|
|
|
|
|
|
|
|
QUIT;
|
|
|
|
|
|
|
|
|
|
if (need_comma)
|
|
|
|
|
{
|
|
|
|
|
fputs_filtered (", ", stream);
|
|
|
|
|
need_comma = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rep1 = i + 1;
|
|
|
|
|
reps = 1;
|
|
|
|
|
while (rep1 < length && string[rep1] == string[i])
|
|
|
|
|
{
|
|
|
|
|
++rep1;
|
|
|
|
|
++reps;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (reps > repeat_count_threshold)
|
|
|
|
|
{
|
|
|
|
|
if (in_quotes)
|
|
|
|
|
{
|
|
|
|
|
if (inspect_it)
|
|
|
|
|
fputs_filtered ("\\', ", stream);
|
|
|
|
|
else
|
|
|
|
|
fputs_filtered ("', ", stream);
|
|
|
|
|
in_quotes = 0;
|
|
|
|
|
}
|
|
|
|
|
pascal_printchar (string[i], stream);
|
|
|
|
|
fprintf_filtered (stream, " <repeats %u times>", reps);
|
|
|
|
|
i = rep1 - 1;
|
|
|
|
|
things_printed += repeat_count_threshold;
|
|
|
|
|
need_comma = 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int c = string[i];
|
|
|
|
|
if ((!in_quotes) && (PRINT_LITERAL_FORM (c)))
|
|
|
|
|
{
|
|
|
|
|
if (inspect_it)
|
|
|
|
|
fputs_filtered ("\\'", stream);
|
|
|
|
|
else
|
|
|
|
|
fputs_filtered ("'", stream);
|
|
|
|
|
in_quotes = 1;
|
|
|
|
|
}
|
|
|
|
|
pascal_one_char (c, stream, &in_quotes);
|
|
|
|
|
++things_printed;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Terminate the quotes if necessary. */
|
|
|
|
|
if (in_quotes)
|
|
|
|
|
{
|
|
|
|
|
if (inspect_it)
|
|
|
|
|
fputs_filtered ("\\'", stream);
|
|
|
|
|
else
|
|
|
|
|
fputs_filtered ("'", stream);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (force_ellipses || i < length)
|
|
|
|
|
fputs_filtered ("...", stream);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Table mapping opcodes into strings for printing operators
|
|
|
|
|
and precedences of the operators. */
|
|
|
|
|
|
|
|
|
|
const struct op_print pascal_op_print_tab[] =
|
|
|
|
|
{
|
|
|
|
|
{",", BINOP_COMMA, PREC_COMMA, 0},
|
|
|
|
|
{":=", BINOP_ASSIGN, PREC_ASSIGN, 1},
|
|
|
|
|
{"or", BINOP_BITWISE_IOR, PREC_BITWISE_IOR, 0},
|
|
|
|
|
{"xor", BINOP_BITWISE_XOR, PREC_BITWISE_XOR, 0},
|
|
|
|
|
{"and", BINOP_BITWISE_AND, PREC_BITWISE_AND, 0},
|
|
|
|
|
{"=", BINOP_EQUAL, PREC_EQUAL, 0},
|
|
|
|
|
{"<>", BINOP_NOTEQUAL, PREC_EQUAL, 0},
|
|
|
|
|
{"<=", BINOP_LEQ, PREC_ORDER, 0},
|
|
|
|
|
{">=", BINOP_GEQ, PREC_ORDER, 0},
|
|
|
|
|
{">", BINOP_GTR, PREC_ORDER, 0},
|
|
|
|
|
{"<", BINOP_LESS, PREC_ORDER, 0},
|
|
|
|
|
{"shr", BINOP_RSH, PREC_SHIFT, 0},
|
|
|
|
|
{"shl", BINOP_LSH, PREC_SHIFT, 0},
|
|
|
|
|
{"+", BINOP_ADD, PREC_ADD, 0},
|
|
|
|
|
{"-", BINOP_SUB, PREC_ADD, 0},
|
|
|
|
|
{"*", BINOP_MUL, PREC_MUL, 0},
|
|
|
|
|
{"/", BINOP_DIV, PREC_MUL, 0},
|
|
|
|
|
{"div", BINOP_INTDIV, PREC_MUL, 0},
|
|
|
|
|
{"mod", BINOP_REM, PREC_MUL, 0},
|
|
|
|
|
{"@", BINOP_REPEAT, PREC_REPEAT, 0},
|
|
|
|
|
{"-", UNOP_NEG, PREC_PREFIX, 0},
|
|
|
|
|
{"not", UNOP_LOGICAL_NOT, PREC_PREFIX, 0},
|
|
|
|
|
{"^", UNOP_IND, PREC_SUFFIX, 1},
|
|
|
|
|
{"@", UNOP_ADDR, PREC_PREFIX, 0},
|
|
|
|
|
{"sizeof", UNOP_SIZEOF, PREC_PREFIX, 0},
|
|
|
|
|
{NULL, 0, 0, 0}
|
|
|
|
|
};
|
|
|
|
|
|
2007-06-16 19:23:12 +02:00
|
|
|
|
enum pascal_primitive_types {
|
|
|
|
|
pascal_primitive_type_int,
|
|
|
|
|
pascal_primitive_type_long,
|
|
|
|
|
pascal_primitive_type_short,
|
|
|
|
|
pascal_primitive_type_char,
|
|
|
|
|
pascal_primitive_type_float,
|
|
|
|
|
pascal_primitive_type_double,
|
|
|
|
|
pascal_primitive_type_void,
|
|
|
|
|
pascal_primitive_type_long_long,
|
|
|
|
|
pascal_primitive_type_signed_char,
|
|
|
|
|
pascal_primitive_type_unsigned_char,
|
|
|
|
|
pascal_primitive_type_unsigned_short,
|
|
|
|
|
pascal_primitive_type_unsigned_int,
|
|
|
|
|
pascal_primitive_type_unsigned_long,
|
|
|
|
|
pascal_primitive_type_unsigned_long_long,
|
|
|
|
|
pascal_primitive_type_long_double,
|
|
|
|
|
pascal_primitive_type_complex,
|
|
|
|
|
pascal_primitive_type_double_complex,
|
|
|
|
|
nr_pascal_primitive_types
|
2000-06-14 14:27:59 +02:00
|
|
|
|
};
|
|
|
|
|
|
2007-06-16 19:23:12 +02:00
|
|
|
|
static void
|
|
|
|
|
pascal_language_arch_info (struct gdbarch *gdbarch,
|
|
|
|
|
struct language_arch_info *lai)
|
|
|
|
|
{
|
|
|
|
|
const struct builtin_type *builtin = builtin_type (gdbarch);
|
|
|
|
|
lai->string_char_type = builtin->builtin_char;
|
|
|
|
|
lai->primitive_type_vector
|
|
|
|
|
= GDBARCH_OBSTACK_CALLOC (gdbarch, nr_pascal_primitive_types + 1,
|
|
|
|
|
struct type *);
|
|
|
|
|
lai->primitive_type_vector [pascal_primitive_type_int]
|
|
|
|
|
= builtin->builtin_int;
|
|
|
|
|
lai->primitive_type_vector [pascal_primitive_type_long]
|
|
|
|
|
= builtin->builtin_long;
|
|
|
|
|
lai->primitive_type_vector [pascal_primitive_type_short]
|
|
|
|
|
= builtin->builtin_short;
|
|
|
|
|
lai->primitive_type_vector [pascal_primitive_type_char]
|
|
|
|
|
= builtin->builtin_char;
|
|
|
|
|
lai->primitive_type_vector [pascal_primitive_type_float]
|
|
|
|
|
= builtin->builtin_float;
|
|
|
|
|
lai->primitive_type_vector [pascal_primitive_type_double]
|
|
|
|
|
= builtin->builtin_double;
|
|
|
|
|
lai->primitive_type_vector [pascal_primitive_type_void]
|
|
|
|
|
= builtin->builtin_void;
|
|
|
|
|
lai->primitive_type_vector [pascal_primitive_type_long_long]
|
|
|
|
|
= builtin->builtin_long_long;
|
|
|
|
|
lai->primitive_type_vector [pascal_primitive_type_signed_char]
|
|
|
|
|
= builtin->builtin_signed_char;
|
|
|
|
|
lai->primitive_type_vector [pascal_primitive_type_unsigned_char]
|
|
|
|
|
= builtin->builtin_unsigned_char;
|
|
|
|
|
lai->primitive_type_vector [pascal_primitive_type_unsigned_short]
|
|
|
|
|
= builtin->builtin_unsigned_short;
|
|
|
|
|
lai->primitive_type_vector [pascal_primitive_type_unsigned_int]
|
|
|
|
|
= builtin->builtin_unsigned_int;
|
|
|
|
|
lai->primitive_type_vector [pascal_primitive_type_unsigned_long]
|
|
|
|
|
= builtin->builtin_unsigned_long;
|
|
|
|
|
lai->primitive_type_vector [pascal_primitive_type_unsigned_long_long]
|
|
|
|
|
= builtin->builtin_unsigned_long_long;
|
|
|
|
|
lai->primitive_type_vector [pascal_primitive_type_long_double]
|
|
|
|
|
= builtin->builtin_long_double;
|
|
|
|
|
lai->primitive_type_vector [pascal_primitive_type_complex]
|
|
|
|
|
= builtin->builtin_complex;
|
|
|
|
|
lai->primitive_type_vector [pascal_primitive_type_double_complex]
|
|
|
|
|
= builtin->builtin_double_complex;
|
2008-09-11 16:11:40 +02:00
|
|
|
|
|
|
|
|
|
lai->bool_type_symbol = "boolean";
|
|
|
|
|
lai->bool_type_default = builtin->builtin_bool;
|
2007-06-16 19:23:12 +02:00
|
|
|
|
}
|
|
|
|
|
|
2000-06-14 14:27:59 +02:00
|
|
|
|
const struct language_defn pascal_language_defn =
|
|
|
|
|
{
|
|
|
|
|
"pascal", /* Language name */
|
|
|
|
|
language_pascal,
|
|
|
|
|
range_check_on,
|
|
|
|
|
type_check_on,
|
2000-08-10 Jimmy Guo <guo@cup.hp.com>
* c-lang.c: Set case sensitivity on for c_language_defn,
cplus_language_defn, and asm_language_defn.
* ch-lang.c: Set case sensitivity on for chill_language_defn.
* f-lang.c: Set case sensivitity off for f_language_defn.
* jv-lang.c: Set case sensitivity on for java_language_defn.
* language.h: Add enum case_mode, case_sensitivity.
* language.c: Define case_mode, case_sensitivity. Set case
sensitivity on for unknown_language_defn, auto_language_defn,
and local_language_defn.
(show_case_command,set_case_command,set_case_str): New static func.
(set_type_range_case): New static func, replaces set_type_range ().
(set_language_command,set_type_command,set_range_command,set_language):
Call set_type_range_case ().
(language_info): Print case sensitivity setting.
(_initialize_language): Add set/show commands for 'case-sensitive'.
Set default case mode 'auto'. Set default language 'auto'.
* m2-lang.c: Set case sensitivity on for m2_language_defn.
* p-lang.c: Set case sensitivity on for pascal_language_defn.
* scm-lang.c: Set case sensitivity off for scm_language_defn.
* symtab.c (lookup_symbol): Downcase symbol name if case sensivitity
is off.
2000-08-11 03:02:35 +02:00
|
|
|
|
case_sensitive_on,
|
2004-08-29 12:12:24 +02:00
|
|
|
|
array_row_major,
|
2008-09-30 19:21:28 +02:00
|
|
|
|
macro_expansion_no,
|
* parser-defs.h (struct exp_descriptor): New definition, containing
language-specific info for printing, prefixifying, dumping, and
evaluating expressions.
(exp_descriptor_standard): Declare new variable.
(print_subexp): Make global and declare here (from expprint.c).
(dump_subexp): Ditto.
(dump_subexp_body_standard): Declare.
(operator_length_standard): Declare.
(op_name_standard): Declare.
(print_subexp): Declare.
(print_subexp_standard): Declare.
* language.h (struct language_defn): Add la_exp_desc field to hold
pointer to table for language-specific operators.
Remove evaluate_exp field, which is now in struct exp_descriptor.
* parse.c (operator_length): Move most code to new
operator_length_standard function. Use language-specific information.
(operator_length_standard): New function taking most code from
operator_length.
(exp_descriptor_standard): New constant.
* expression.h (enum exp_opcode): Add definitions of OP_EXTENDED0
and OP_EXTENDED_LAST.
* expprint.c (print_subexp): Use language-specific print_subexp.
Make global; remove static declaration.
Move most code to print_subexp_standard.
(print_subexp_standard): New function, containing code formerly in
print_subexp.
(op_name): Add expression to argument signature.
Use langauge-specific op_name.
Move most code to op_name_standard.
(op_name_standard): New function, containing code formerly in op_name.
(dump_subexp): Use new version of op_name function.
Use language-specific dump_subexp_body, and move most existing code to
dump_subexp_body_standard.
(dump_raw_expression): Use new op_name interface.
(dump_subexp_body): Move most code to dump_subexp_body_standard.
(dump_subexp_body_standard): New function, containing code formerly
in dump_subexp_body.
* language.c (unknown_language): Add default la_exp_desc field and
remove evaluate_exp field.
(auto_language): Ditto.
(local_language): Ditto.
* f-lang.c (f_language_defn): Ditto.
* c-lang.c (c_language_defn): Ditto.
(cplus_language_defn): Ditto.
(asm_language_defn): Ditto.
(minimal_language_defn): Ditto.
* p-lang.c (pascal_language_defn): Ditto.
* m2-lang.c (m2_language_defn): Ditto.
* objc-lang.c (objc_language_defn): Ditto.
* jv-lang.c (exp_descriptor_java): New variable, containing
Java-specific expression evaluator.
(java_language_defn): Add la_exp_desc field and remove evaluate_exp
field.
* scm-lang.c (exp_descriptor_scm): New variable, containing
Scheme-specific expression evaluator.
(scm_language_defn): Add la_exp_desc field and remove evaluate_exp
field.
* objc-lang.c (print_object_command): Take evaluate_exp from the
la_exp_desc field.
* Makefile.in (eval.o): Add dependency on parser-defs.h.
* eval.c: Include parser-defs.h for the full declaration of
la_exp_desc's type.
(evaluate_subexp): Get evaluate_exp out of la_exp_desc field.
2003-09-25 10:40:45 +02:00
|
|
|
|
&exp_descriptor_standard,
|
2000-06-14 14:27:59 +02:00
|
|
|
|
pascal_parse,
|
|
|
|
|
pascal_error,
|
2004-04-11 00:10:01 +02:00
|
|
|
|
null_post_parser,
|
2000-06-14 14:27:59 +02:00
|
|
|
|
pascal_printchar, /* Print a character constant */
|
|
|
|
|
pascal_printstr, /* Function to print string constant */
|
|
|
|
|
pascal_emit_char, /* Print a single char */
|
|
|
|
|
pascal_print_type, /* Print a type using appropriate syntax */
|
2008-09-27 23:29:30 +02:00
|
|
|
|
pascal_print_typedef, /* Print a typedef using appropriate syntax */
|
2000-06-14 14:27:59 +02:00
|
|
|
|
pascal_val_print, /* Print a value using appropriate syntax */
|
|
|
|
|
pascal_value_print, /* Print a top-level value */
|
2003-03-26 04:39:44 +01:00
|
|
|
|
NULL, /* Language specific skip_trampoline */
|
2008-04-06 10:56:37 +02:00
|
|
|
|
"this", /* name_of_this */
|
2003-05-20 03:55:18 +02:00
|
|
|
|
basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
|
2004-01-24 00:03:31 +01:00
|
|
|
|
basic_lookup_transparent_type,/* lookup_transparent_type */
|
2003-04-02 05:02:46 +02:00
|
|
|
|
NULL, /* Language specific symbol demangler */
|
2004-07-06 21:29:31 +02:00
|
|
|
|
NULL, /* Language specific class_name_from_physname */
|
2000-06-14 14:27:59 +02:00
|
|
|
|
pascal_op_print_tab, /* expression operators for printing */
|
|
|
|
|
1, /* c-style arrays */
|
|
|
|
|
0, /* String lower bound */
|
2003-10-07 00:38:03 +02:00
|
|
|
|
default_word_break_characters,
|
2008-02-05 23:17:41 +01:00
|
|
|
|
default_make_symbol_completion_list,
|
2007-06-16 19:23:12 +02:00
|
|
|
|
pascal_language_arch_info,
|
2005-10-03 23:21:20 +02:00
|
|
|
|
default_print_array_index,
|
2007-09-23 18:25:06 +02:00
|
|
|
|
default_pass_by_reference,
|
2000-06-14 14:27:59 +02:00
|
|
|
|
LANG_MAGIC
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
_initialize_pascal_language (void)
|
2000-06-14 14:27:59 +02:00
|
|
|
|
{
|
|
|
|
|
add_language (&pascal_language_defn);
|
|
|
|
|
}
|