forked from bminor/binutils-gdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalprint.c
3262 lines (2784 loc) · 92.3 KB
/
valprint.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* Print values for GDB, the GNU debugger.
Copyright (C) 1986-2024 Free Software Foundation, Inc.
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
the Free Software Foundation; either version 3 of the License, or
(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
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include "event-top.h"
#include "extract-store-integer.h"
#include "symtab.h"
#include "gdbtypes.h"
#include "value.h"
#include "gdbcore.h"
#include "cli/cli-cmds.h"
#include "target.h"
#include "language.h"
#include "annotate.h"
#include "valprint.h"
#include "target-float.h"
#include "extension.h"
#include "ada-lang.h"
#include "gdbsupport/gdb_obstack.h"
#include "charset.h"
#include "typeprint.h"
#include <ctype.h>
#include <algorithm>
#include "gdbsupport/byte-vector.h"
#include "cli/cli-option.h"
#include "gdbarch.h"
#include "cli/cli-style.h"
#include "count-one-bits.h"
#include "c-lang.h"
#include "cp-abi.h"
#include "inferior.h"
#include "gdbsupport/selftest.h"
#include "selftest-arch.h"
/* Maximum number of wchars returned from wchar_iterate. */
#define MAX_WCHARS 4
/* A convenience macro to compute the size of a wchar_t buffer containing X
characters. */
#define WCHAR_BUFLEN(X) ((X) * sizeof (gdb_wchar_t))
/* Character buffer size saved while iterating over wchars. */
#define WCHAR_BUFLEN_MAX WCHAR_BUFLEN (MAX_WCHARS)
/* A structure to encapsulate state information from iterated
character conversions. */
struct converted_character
{
/* The number of characters converted. */
int num_chars;
/* The result of the conversion. See charset.h for more. */
enum wchar_iterate_result result;
/* The (saved) converted character(s). */
gdb_wchar_t chars[WCHAR_BUFLEN_MAX];
/* The first converted target byte. */
const gdb_byte *buf;
/* The number of bytes converted. */
size_t buflen;
/* How many times this character(s) is repeated. */
int repeat_count;
};
/* Command lists for set/show print raw. */
struct cmd_list_element *setprintrawlist;
struct cmd_list_element *showprintrawlist;
/* Prototypes for local functions */
static void set_input_radix_1 (int, unsigned);
static void set_output_radix_1 (int, unsigned);
static void val_print_type_code_flags (struct type *type,
struct value *original_value,
int embedded_offset,
struct ui_file *stream);
/* Start print_max at this value. */
#define PRINT_MAX_DEFAULT 200
/* Start print_max_chars at this value (meaning follow print_max). */
#define PRINT_MAX_CHARS_DEFAULT PRINT_MAX_CHARS_ELEMENTS
/* Start print_max_depth at this value. */
#define PRINT_MAX_DEPTH_DEFAULT 20
struct value_print_options user_print_options =
{
Val_prettyformat_default, /* prettyformat */
false, /* prettyformat_arrays */
false, /* prettyformat_structs */
false, /* vtblprint */
true, /* unionprint */
true, /* addressprint */
false, /* nibblesprint */
false, /* objectprint */
PRINT_MAX_DEFAULT, /* print_max */
PRINT_MAX_CHARS_DEFAULT, /* print_max_chars */
10, /* repeat_count_threshold */
0, /* output_format */
0, /* format */
true, /* memory_tag_violations */
false, /* stop_print_at_null */
false, /* print_array_indexes */
false, /* deref_ref */
true, /* static_field_print */
true, /* pascal_static_field_print */
false, /* raw */
false, /* summary */
true, /* symbol_print */
PRINT_MAX_DEPTH_DEFAULT, /* max_depth */
};
/* Initialize *OPTS to be a copy of the user print options. */
void
get_user_print_options (struct value_print_options *opts)
{
*opts = user_print_options;
}
/* Initialize *OPTS to be a copy of the user print options, but with
pretty-formatting disabled. */
void
get_no_prettyformat_print_options (struct value_print_options *opts)
{
*opts = user_print_options;
opts->prettyformat = Val_no_prettyformat;
}
/* Initialize *OPTS to be a copy of the user print options, but using
FORMAT as the formatting option. */
void
get_formatted_print_options (struct value_print_options *opts,
char format)
{
*opts = user_print_options;
opts->format = format;
}
/* Implement 'show print elements'. */
static void
show_print_max (struct ui_file *file, int from_tty,
struct cmd_list_element *c, const char *value)
{
gdb_printf
(file,
(user_print_options.print_max_chars != PRINT_MAX_CHARS_ELEMENTS
? _("Limit on array elements to print is %s.\n")
: _("Limit on string chars or array elements to print is %s.\n")),
value);
}
/* Implement 'show print characters'. */
static void
show_print_max_chars (struct ui_file *file, int from_tty,
struct cmd_list_element *c, const char *value)
{
gdb_printf (file,
_("Limit on string characters to print is %s.\n"),
value);
}
/* Default input and output radixes, and output format letter. */
unsigned input_radix = 10;
static void
show_input_radix (struct ui_file *file, int from_tty,
struct cmd_list_element *c, const char *value)
{
gdb_printf (file,
_("Default input radix for entering numbers is %s.\n"),
value);
}
unsigned output_radix = 10;
static void
show_output_radix (struct ui_file *file, int from_tty,
struct cmd_list_element *c, const char *value)
{
gdb_printf (file,
_("Default output radix for printing of values is %s.\n"),
value);
}
/* By default we print arrays without printing the index of each element in
the array. This behavior can be changed by setting PRINT_ARRAY_INDEXES. */
static void
show_print_array_indexes (struct ui_file *file, int from_tty,
struct cmd_list_element *c, const char *value)
{
gdb_printf (file, _("Printing of array indexes is %s.\n"), value);
}
/* Print repeat counts if there are more than this many repetitions of an
element in an array. Referenced by the low level language dependent
print routines. */
static void
show_repeat_count_threshold (struct ui_file *file, int from_tty,
struct cmd_list_element *c, const char *value)
{
gdb_printf (file, _("Threshold for repeated print elements is %s.\n"),
value);
}
/* If nonzero, prints memory tag violations for pointers. */
static void
show_memory_tag_violations (struct ui_file *file, int from_tty,
struct cmd_list_element *c, const char *value)
{
gdb_printf (file,
_("Printing of memory tag violations is %s.\n"),
value);
}
/* If nonzero, stops printing of char arrays at first null. */
static void
show_stop_print_at_null (struct ui_file *file, int from_tty,
struct cmd_list_element *c, const char *value)
{
gdb_printf (file,
_("Printing of char arrays to stop "
"at first null char is %s.\n"),
value);
}
/* Controls pretty printing of structures. */
static void
show_prettyformat_structs (struct ui_file *file, int from_tty,
struct cmd_list_element *c, const char *value)
{
gdb_printf (file, _("Pretty formatting of structures is %s.\n"), value);
}
/* Controls pretty printing of arrays. */
static void
show_prettyformat_arrays (struct ui_file *file, int from_tty,
struct cmd_list_element *c, const char *value)
{
gdb_printf (file, _("Pretty formatting of arrays is %s.\n"), value);
}
/* If nonzero, causes unions inside structures or other unions to be
printed. */
static void
show_unionprint (struct ui_file *file, int from_tty,
struct cmd_list_element *c, const char *value)
{
gdb_printf (file,
_("Printing of unions interior to structures is %s.\n"),
value);
}
/* Controls the format of printing binary values. */
static void
show_nibbles (struct ui_file *file, int from_tty,
struct cmd_list_element *c, const char *value)
{
gdb_printf (file,
_("Printing binary values in groups is %s.\n"),
value);
}
/* If nonzero, causes machine addresses to be printed in certain contexts. */
static void
show_addressprint (struct ui_file *file, int from_tty,
struct cmd_list_element *c, const char *value)
{
gdb_printf (file, _("Printing of addresses is %s.\n"), value);
}
static void
show_symbol_print (struct ui_file *file, int from_tty,
struct cmd_list_element *c, const char *value)
{
gdb_printf (file,
_("Printing of symbols when printing pointers is %s.\n"),
value);
}
/* A helper function for val_print. When printing in "summary" mode,
we want to print scalar arguments, but not aggregate arguments.
This function distinguishes between the two. */
int
val_print_scalar_type_p (struct type *type)
{
type = check_typedef (type);
while (TYPE_IS_REFERENCE (type))
{
type = type->target_type ();
type = check_typedef (type);
}
switch (type->code ())
{
case TYPE_CODE_ARRAY:
case TYPE_CODE_STRUCT:
case TYPE_CODE_UNION:
case TYPE_CODE_SET:
case TYPE_CODE_STRING:
return 0;
default:
return 1;
}
}
/* A helper function for val_print. When printing with limited depth we
want to print string and scalar arguments, but not aggregate arguments.
This function distinguishes between the two. */
static bool
val_print_scalar_or_string_type_p (struct type *type,
const struct language_defn *language)
{
return (val_print_scalar_type_p (type)
|| language->is_string_type_p (type));
}
/* See valprint.h. */
int
valprint_check_validity (struct ui_file *stream,
struct type *type,
LONGEST embedded_offset,
const struct value *val)
{
type = check_typedef (type);
if (type_not_associated (type))
{
val_print_not_associated (stream);
return 0;
}
if (type_not_allocated (type))
{
val_print_not_allocated (stream);
return 0;
}
if (type->code () != TYPE_CODE_UNION
&& type->code () != TYPE_CODE_STRUCT
&& type->code () != TYPE_CODE_ARRAY)
{
if (val->bits_any_optimized_out (TARGET_CHAR_BIT * embedded_offset,
TARGET_CHAR_BIT * type->length ()))
{
val_print_optimized_out (val, stream);
return 0;
}
if (val->bits_synthetic_pointer (TARGET_CHAR_BIT * embedded_offset,
TARGET_CHAR_BIT * type->length ()))
{
const int is_ref = type->code () == TYPE_CODE_REF;
int ref_is_addressable = 0;
if (is_ref)
{
const struct value *deref_val = coerce_ref_if_computed (val);
if (deref_val != NULL)
ref_is_addressable = deref_val->lval () == lval_memory;
}
if (!is_ref || !ref_is_addressable)
fputs_styled (_("<synthetic pointer>"), metadata_style.style (),
stream);
/* C++ references should be valid even if they're synthetic. */
return is_ref;
}
if (!val->bytes_available (embedded_offset, type->length ()))
{
val_print_unavailable (stream);
return 0;
}
}
return 1;
}
void
val_print_optimized_out (const struct value *val, struct ui_file *stream)
{
if (val != NULL && val->lval () == lval_register)
val_print_not_saved (stream);
else
fprintf_styled (stream, metadata_style.style (), _("<optimized out>"));
}
void
val_print_not_saved (struct ui_file *stream)
{
fprintf_styled (stream, metadata_style.style (), _("<not saved>"));
}
void
val_print_unavailable (struct ui_file *stream)
{
fprintf_styled (stream, metadata_style.style (), _("<unavailable>"));
}
void
val_print_invalid_address (struct ui_file *stream)
{
fprintf_styled (stream, metadata_style.style (), _("<invalid address>"));
}
/* Print a pointer based on the type of its target.
Arguments to this functions are roughly the same as those in
generic_val_print. A difference is that ADDRESS is the address to print,
with embedded_offset already added. ELTTYPE represents
the pointed type after check_typedef. */
static void
print_unpacked_pointer (struct type *type, struct type *elttype,
CORE_ADDR address, struct ui_file *stream,
const struct value_print_options *options)
{
struct gdbarch *gdbarch = type->arch ();
if (elttype->code () == TYPE_CODE_FUNC)
{
/* Try to print what function it points to. */
print_function_pointer_address (options, gdbarch, address, stream);
return;
}
if (options->symbol_print)
print_address_demangle (options, gdbarch, address, stream, demangle);
else if (options->addressprint)
gdb_puts (paddress (gdbarch, address), stream);
}
/* generic_val_print helper for TYPE_CODE_ARRAY. */
static void
generic_val_print_array (struct value *val,
struct ui_file *stream, int recurse,
const struct value_print_options *options,
const struct
generic_val_print_decorations *decorations)
{
struct type *type = check_typedef (val->type ());
struct type *unresolved_elttype = type->target_type ();
struct type *elttype = check_typedef (unresolved_elttype);
if (type->length () > 0 && unresolved_elttype->length () > 0)
{
LONGEST low_bound, high_bound;
if (!get_array_bounds (type, &low_bound, &high_bound))
error (_("Could not determine the array high bound"));
gdb_puts (decorations->array_start, stream);
value_print_array_elements (val, stream, recurse, options, 0);
gdb_puts (decorations->array_end, stream);
}
else
{
/* Array of unspecified length: treat like pointer to first elt. */
print_unpacked_pointer (type, elttype, val->address (),
stream, options);
}
}
/* generic_val_print helper for TYPE_CODE_STRING. */
static void
generic_val_print_string (struct value *val,
struct ui_file *stream, int recurse,
const struct value_print_options *options,
const struct generic_val_print_decorations
*decorations)
{
struct type *type = check_typedef (val->type ());
struct type *unresolved_elttype = type->target_type ();
struct type *elttype = check_typedef (unresolved_elttype);
if (type->length () > 0 && unresolved_elttype->length () > 0)
{
LONGEST low_bound, high_bound;
if (!get_array_bounds (type, &low_bound, &high_bound))
error (_("Could not determine the array high bound"));
const gdb_byte *valaddr = val->contents_for_printing ().data ();
int force_ellipses = 0;
enum bfd_endian byte_order = type_byte_order (type);
int eltlen, len;
eltlen = elttype->length ();
len = high_bound - low_bound + 1;
/* If requested, look for the first null char and only
print elements up to it. */
if (options->stop_print_at_null)
{
unsigned int print_max_chars = get_print_max_chars (options);
unsigned int temp_len;
for (temp_len = 0;
(temp_len < len
&& temp_len < print_max_chars
&& extract_unsigned_integer (valaddr + temp_len * eltlen,
eltlen, byte_order) != 0);
++temp_len)
;
/* Force printstr to print ellipses if
we've printed the maximum characters and
the next character is not \000. */
if (temp_len == print_max_chars && temp_len < len)
{
ULONGEST ival
= extract_unsigned_integer (valaddr + temp_len * eltlen,
eltlen, byte_order);
if (ival != 0)
force_ellipses = 1;
}
len = temp_len;
}
current_language->printstr (stream, unresolved_elttype, valaddr, len,
nullptr, force_ellipses, options);
}
else
{
/* Array of unspecified length: treat like pointer to first elt. */
print_unpacked_pointer (type, elttype, val->address (),
stream, options);
}
}
/* generic_value_print helper for TYPE_CODE_PTR. */
static void
generic_value_print_ptr (struct value *val, struct ui_file *stream,
const struct value_print_options *options)
{
if (options->format && options->format != 's')
value_print_scalar_formatted (val, options, 0, stream);
else
{
struct type *type = check_typedef (val->type ());
struct type *elttype = check_typedef (type->target_type ());
const gdb_byte *valaddr = val->contents_for_printing ().data ();
CORE_ADDR addr = unpack_pointer (type, valaddr);
print_unpacked_pointer (type, elttype, addr, stream, options);
}
}
/* Print '@' followed by the address contained in ADDRESS_BUFFER. */
static void
print_ref_address (struct type *type, const gdb_byte *address_buffer,
int embedded_offset, struct ui_file *stream)
{
struct gdbarch *gdbarch = type->arch ();
if (address_buffer != NULL)
{
CORE_ADDR address
= extract_typed_address (address_buffer + embedded_offset, type);
gdb_printf (stream, "@");
gdb_puts (paddress (gdbarch, address), stream);
}
/* Else: we have a non-addressable value, such as a DW_AT_const_value. */
}
/* If VAL is addressable, return the value contents buffer of a value that
represents a pointer to VAL. Otherwise return NULL. */
static const gdb_byte *
get_value_addr_contents (struct value *deref_val)
{
gdb_assert (deref_val != NULL);
if (deref_val->lval () == lval_memory)
return value_addr (deref_val)->contents_for_printing ().data ();
else
{
/* We have a non-addressable value, such as a DW_AT_const_value. */
return NULL;
}
}
/* generic_val_print helper for TYPE_CODE_{RVALUE_,}REF. */
static void
generic_val_print_ref (struct type *type,
int embedded_offset, struct ui_file *stream, int recurse,
struct value *original_value,
const struct value_print_options *options)
{
struct type *elttype = check_typedef (type->target_type ());
struct value *deref_val = NULL;
const bool value_is_synthetic
= original_value->bits_synthetic_pointer (TARGET_CHAR_BIT * embedded_offset,
TARGET_CHAR_BIT * type->length ());
const int must_coerce_ref = ((options->addressprint && value_is_synthetic)
|| options->deref_ref);
const int type_is_defined = elttype->code () != TYPE_CODE_UNDEF;
const gdb_byte *valaddr = original_value->contents_for_printing ().data ();
if (must_coerce_ref && type_is_defined)
{
deref_val = coerce_ref_if_computed (original_value);
if (deref_val != NULL)
{
/* More complicated computed references are not supported. */
gdb_assert (embedded_offset == 0);
}
else
deref_val = value_at (type->target_type (),
unpack_pointer (type, valaddr + embedded_offset));
}
/* Else, original_value isn't a synthetic reference or we don't have to print
the reference's contents.
Notice that for references to TYPE_CODE_STRUCT, 'set print object on' will
cause original_value to be a not_lval instead of an lval_computed,
which will make value_bits_synthetic_pointer return false.
This happens because if options->objectprint is true, c_value_print will
overwrite original_value's contents with the result of coercing
the reference through value_addr, and then set its type back to
TYPE_CODE_REF. In that case we don't have to coerce the reference again;
we can simply treat it as non-synthetic and move on. */
if (options->addressprint)
{
const gdb_byte *address = (value_is_synthetic && type_is_defined
? get_value_addr_contents (deref_val)
: valaddr);
print_ref_address (type, address, embedded_offset, stream);
if (options->deref_ref)
gdb_puts (": ", stream);
}
if (options->deref_ref)
{
if (type_is_defined)
common_val_print (deref_val, stream, recurse, options,
current_language);
else
gdb_puts ("???", stream);
}
}
/* Helper function for generic_val_print_enum.
This is also used to print enums in TYPE_CODE_FLAGS values. */
static void
generic_val_print_enum_1 (struct type *type, LONGEST val,
struct ui_file *stream)
{
unsigned int i;
unsigned int len;
len = type->num_fields ();
for (i = 0; i < len; i++)
{
QUIT;
if (val == type->field (i).loc_enumval ())
{
break;
}
}
if (i < len)
{
fputs_styled (type->field (i).name (), variable_name_style.style (),
stream);
}
else if (type->is_flag_enum ())
{
int first = 1;
/* We have a "flag" enum, so we try to decompose it into pieces as
appropriate. The enum may have multiple enumerators representing
the same bit, in which case we choose to only print the first one
we find. */
for (i = 0; i < len; ++i)
{
QUIT;
ULONGEST enumval = type->field (i).loc_enumval ();
int nbits = count_one_bits_ll (enumval);
gdb_assert (nbits == 0 || nbits == 1);
if ((val & enumval) != 0)
{
if (first)
{
gdb_puts ("(", stream);
first = 0;
}
else
gdb_puts (" | ", stream);
val &= ~type->field (i).loc_enumval ();
fputs_styled (type->field (i).name (),
variable_name_style.style (), stream);
}
}
if (val != 0)
{
/* There are leftover bits, print them. */
if (first)
gdb_puts ("(", stream);
else
gdb_puts (" | ", stream);
gdb_puts ("unknown: 0x", stream);
print_longest (stream, 'x', 0, val);
gdb_puts (")", stream);
}
else if (first)
{
/* Nothing has been printed and the value is 0, the enum value must
have been 0. */
gdb_puts ("0", stream);
}
else
{
/* Something has been printed, close the parenthesis. */
gdb_puts (")", stream);
}
}
else
print_longest (stream, 'd', 0, val);
}
/* generic_val_print helper for TYPE_CODE_ENUM. */
static void
generic_val_print_enum (struct type *type,
int embedded_offset, struct ui_file *stream,
struct value *original_value,
const struct value_print_options *options)
{
LONGEST val;
struct gdbarch *gdbarch = type->arch ();
int unit_size = gdbarch_addressable_memory_unit_size (gdbarch);
gdb_assert (!options->format);
const gdb_byte *valaddr = original_value->contents_for_printing ().data ();
val = unpack_long (type, valaddr + embedded_offset * unit_size);
generic_val_print_enum_1 (type, val, stream);
}
/* generic_val_print helper for TYPE_CODE_FUNC and TYPE_CODE_METHOD. */
static void
generic_val_print_func (struct type *type,
int embedded_offset, CORE_ADDR address,
struct ui_file *stream,
struct value *original_value,
const struct value_print_options *options)
{
struct gdbarch *gdbarch = type->arch ();
gdb_assert (!options->format);
/* FIXME, we should consider, at least for ANSI C language,
eliminating the distinction made between FUNCs and POINTERs to
FUNCs. */
gdb_printf (stream, "{");
type_print (type, "", stream, -1);
gdb_printf (stream, "} ");
/* Try to print what function it points to, and its address. */
print_address_demangle (options, gdbarch, address, stream, demangle);
}
/* generic_value_print helper for TYPE_CODE_BOOL. */
static void
generic_value_print_bool
(struct value *value, struct ui_file *stream,
const struct value_print_options *options,
const struct generic_val_print_decorations *decorations)
{
if (options->format || options->output_format)
{
struct value_print_options opts = *options;
opts.format = (options->format ? options->format
: options->output_format);
value_print_scalar_formatted (value, &opts, 0, stream);
}
else
{
const gdb_byte *valaddr = value->contents_for_printing ().data ();
struct type *type = check_typedef (value->type ());
LONGEST val = unpack_long (type, valaddr);
if (val == 0)
gdb_puts (decorations->false_name, stream);
else if (val == 1)
gdb_puts (decorations->true_name, stream);
else
print_longest (stream, 'd', 0, val);
}
}
/* generic_value_print helper for TYPE_CODE_INT. */
static void
generic_value_print_int (struct value *val, struct ui_file *stream,
const struct value_print_options *options)
{
struct value_print_options opts = *options;
opts.format = (options->format ? options->format
: options->output_format);
value_print_scalar_formatted (val, &opts, 0, stream);
}
/* generic_value_print helper for TYPE_CODE_CHAR. */
static void
generic_value_print_char (struct value *value, struct ui_file *stream,
const struct value_print_options *options)
{
if (options->format || options->output_format)
{
struct value_print_options opts = *options;
opts.format = (options->format ? options->format
: options->output_format);
value_print_scalar_formatted (value, &opts, 0, stream);
}
else
{
struct type *unresolved_type = value->type ();
struct type *type = check_typedef (unresolved_type);
const gdb_byte *valaddr = value->contents_for_printing ().data ();
LONGEST val = unpack_long (type, valaddr);
if (type->is_unsigned ())
gdb_printf (stream, "%u", (unsigned int) val);
else
gdb_printf (stream, "%d", (int) val);
gdb_puts (" ", stream);
current_language->printchar (val, unresolved_type, stream);
}
}
/* generic_val_print helper for TYPE_CODE_FLT and TYPE_CODE_DECFLOAT. */
static void
generic_val_print_float (struct type *type, struct ui_file *stream,
struct value *original_value,
const struct value_print_options *options)
{
gdb_assert (!options->format);
const gdb_byte *valaddr = original_value->contents_for_printing ().data ();
print_floating (valaddr, type, stream);
}
/* generic_val_print helper for TYPE_CODE_FIXED_POINT. */
static void
generic_val_print_fixed_point (struct value *val, struct ui_file *stream,
const struct value_print_options *options)
{
if (options->format)
value_print_scalar_formatted (val, options, 0, stream);
else
{
struct type *type = val->type ();
const gdb_byte *valaddr = val->contents_for_printing ().data ();
gdb_mpf f;
f.read_fixed_point (gdb::make_array_view (valaddr, type->length ()),
type_byte_order (type), type->is_unsigned (),
type->fixed_point_scaling_factor ());
const char *fmt = type->length () < 4 ? "%.11Fg" : "%.17Fg";
std::string str = f.str (fmt);
gdb_printf (stream, "%s", str.c_str ());
}
}
/* generic_value_print helper for TYPE_CODE_COMPLEX. */
static void
generic_value_print_complex (struct value *val, struct ui_file *stream,
const struct value_print_options *options,
const struct generic_val_print_decorations
*decorations)
{
gdb_printf (stream, "%s", decorations->complex_prefix);
struct value *real_part = value_real_part (val);
value_print_scalar_formatted (real_part, options, 0, stream);
gdb_printf (stream, "%s", decorations->complex_infix);
struct value *imag_part = value_imaginary_part (val);
value_print_scalar_formatted (imag_part, options, 0, stream);
gdb_printf (stream, "%s", decorations->complex_suffix);
}
/* generic_value_print helper for TYPE_CODE_MEMBERPTR. */
static void
generic_value_print_memberptr
(struct value *val, struct ui_file *stream,
int recurse,
const struct value_print_options *options,
const struct generic_val_print_decorations *decorations)
{
if (!options->format)
{
/* Member pointers are essentially specific to C++, and so if we
encounter one, we should print it according to C++ rules. */
struct type *type = check_typedef (val->type ());
const gdb_byte *valaddr = val->contents_for_printing ().data ();
cp_print_class_member (valaddr, type, stream, "&");
}
else
value_print_scalar_formatted (val, options, 0, stream);
}
/* See valprint.h. */
void
generic_value_print (struct value *val, struct ui_file *stream, int recurse,
const struct value_print_options *options,
const struct generic_val_print_decorations *decorations)
{
struct type *type = val->type ();
type = check_typedef (type);
if (is_fixed_point_type (type))
type = type->fixed_point_type_base_type ();
/* Widen a subrange to its target type, then use that type's
printer. */
while (type->code () == TYPE_CODE_RANGE)
{
type = check_typedef (type->target_type ());
val = value_cast (type, val);
}
switch (type->code ())
{
case TYPE_CODE_ARRAY:
generic_val_print_array (val, stream, recurse, options, decorations);