-
Notifications
You must be signed in to change notification settings - Fork 573
/
Copy pathpy-type.c
1791 lines (1508 loc) · 44.8 KB
/
py-type.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
/* Python interface to types.
Copyright (C) 2008-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 "value.h"
#include "python-internal.h"
#include "charset.h"
#include "gdbtypes.h"
#include "cp-support.h"
#include "demangle.h"
#include "objfiles.h"
#include "language.h"
#include "typeprint.h"
#include "ada-lang.h"
struct type_object
{
PyObject_HEAD
struct type *type;
};
extern PyTypeObject type_object_type
CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("type_object");
/* A Field object. */
struct field_object
{
PyObject_HEAD
/* Dictionary holding our attributes. */
PyObject *dict;
};
extern PyTypeObject field_object_type
CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("field_object");
/* A type iterator object. */
struct typy_iterator_object {
PyObject_HEAD
/* The current field index. */
int field;
/* What to return. */
enum gdbpy_iter_kind kind;
/* Pointer back to the original source type object. */
type_object *source;
};
extern PyTypeObject type_iterator_object_type
CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("typy_iterator_object");
/* This is used to initialize various gdb.TYPE_ constants. */
struct pyty_code
{
/* The code. */
int code;
/* The name. */
const char *name;
};
/* Forward declarations. */
static PyObject *typy_make_iter (PyObject *self, enum gdbpy_iter_kind kind);
static struct pyty_code pyty_codes[] =
{
/* This is kept for backward compatibility. */
{ -1, "TYPE_CODE_BITSTRING" },
#define OP(X) { X, #X },
#include "type-codes.def"
#undef OP
};
static void
field_dealloc (PyObject *obj)
{
field_object *f = (field_object *) obj;
Py_XDECREF (f->dict);
Py_TYPE (obj)->tp_free (obj);
}
static PyObject *
field_new (void)
{
gdbpy_ref<field_object> result (PyObject_New (field_object,
&field_object_type));
if (result != NULL)
{
result->dict = PyDict_New ();
if (!result->dict)
return NULL;
}
return (PyObject *) result.release ();
}
/* Return true if OBJ is of type gdb.Field, false otherwise. */
int
gdbpy_is_field (PyObject *obj)
{
return PyObject_TypeCheck (obj, &field_object_type);
}
/* Return the code for this type. */
static PyObject *
typy_get_code (PyObject *self, void *closure)
{
struct type *type = ((type_object *) self)->type;
return gdb_py_object_from_longest (type->code ()).release ();
}
/* Helper function for typy_fields which converts a single field to a
gdb.Field object. Returns NULL on error. */
static gdbpy_ref<>
convert_field (struct type *type, int field)
{
gdbpy_ref<> result (field_new ());
if (result == NULL)
return NULL;
gdbpy_ref<> arg (type_to_type_object (type));
if (arg == NULL)
return NULL;
if (PyObject_SetAttrString (result.get (), "parent_type", arg.get ()) < 0)
return NULL;
if (!type->field (field).is_static ())
{
const char *attrstring;
if (type->code () == TYPE_CODE_ENUM)
{
arg = gdb_py_object_from_longest (type->field (field).loc_enumval ());
attrstring = "enumval";
}
else
{
if (type->field (field).loc_kind () == FIELD_LOC_KIND_DWARF_BLOCK)
arg = gdbpy_ref<>::new_reference (Py_None);
else
arg = gdb_py_object_from_longest (type->field (field).loc_bitpos ());
attrstring = "bitpos";
}
if (arg == NULL)
return NULL;
if (PyObject_SetAttrString (result.get (), attrstring, arg.get ()) < 0)
return NULL;
}
arg.reset (NULL);
if (type->field (field).name ())
{
const char *field_name = type->field (field).name ();
if (field_name[0] != '\0')
{
arg.reset (PyUnicode_FromString (type->field (field).name ()));
if (arg == NULL)
return NULL;
}
}
if (arg == NULL)
arg = gdbpy_ref<>::new_reference (Py_None);
if (PyObject_SetAttrString (result.get (), "name", arg.get ()) < 0)
return NULL;
arg.reset (PyBool_FromLong (type->field (field).is_artificial ()));
if (PyObject_SetAttrString (result.get (), "artificial", arg.get ()) < 0)
return NULL;
if (type->code () == TYPE_CODE_STRUCT)
arg.reset (PyBool_FromLong (field < TYPE_N_BASECLASSES (type)));
else
arg = gdbpy_ref<>::new_reference (Py_False);
if (PyObject_SetAttrString (result.get (), "is_base_class", arg.get ()) < 0)
return NULL;
arg = gdb_py_object_from_longest (type->field (field).bitsize ());
if (arg == NULL)
return NULL;
if (PyObject_SetAttrString (result.get (), "bitsize", arg.get ()) < 0)
return NULL;
/* A field can have a NULL type in some situations. */
if (type->field (field).type () == NULL)
arg = gdbpy_ref<>::new_reference (Py_None);
else
arg.reset (type_to_type_object (type->field (field).type ()));
if (arg == NULL)
return NULL;
if (PyObject_SetAttrString (result.get (), "type", arg.get ()) < 0)
return NULL;
return result;
}
/* Helper function to return the name of a field, as a gdb.Field object.
If the field doesn't have a name, None is returned. */
static gdbpy_ref<>
field_name (struct type *type, int field)
{
gdbpy_ref<> result;
if (type->field (field).name ())
result.reset (PyUnicode_FromString (type->field (field).name ()));
else
result = gdbpy_ref<>::new_reference (Py_None);
return result;
}
/* Helper function for Type standard mapping methods. Returns a
Python object for field i of the type. "kind" specifies what to
return: the name of the field, a gdb.Field object corresponding to
the field, or a tuple consisting of field name and gdb.Field
object. */
static gdbpy_ref<>
make_fielditem (struct type *type, int i, enum gdbpy_iter_kind kind)
{
switch (kind)
{
case iter_items:
{
gdbpy_ref<> key (field_name (type, i));
if (key == NULL)
return NULL;
gdbpy_ref<> value = convert_field (type, i);
if (value == NULL)
return NULL;
gdbpy_ref<> item (PyTuple_New (2));
if (item == NULL)
return NULL;
PyTuple_SET_ITEM (item.get (), 0, key.release ());
PyTuple_SET_ITEM (item.get (), 1, value.release ());
return item;
}
case iter_keys:
return field_name (type, i);
case iter_values:
return convert_field (type, i);
}
gdb_assert_not_reached ("invalid gdbpy_iter_kind");
}
/* Return a sequence of all field names, fields, or (name, field) pairs.
Each field is a gdb.Field object. */
static PyObject *
typy_fields_items (PyObject *self, enum gdbpy_iter_kind kind)
{
PyObject *py_type = self;
struct type *type = ((type_object *) py_type)->type;
struct type *checked_type = type;
try
{
checked_type = check_typedef (checked_type);
}
catch (const gdb_exception &except)
{
return gdbpy_handle_gdb_exception (nullptr, except);
}
gdbpy_ref<> type_holder;
if (checked_type != type)
{
type_holder.reset (type_to_type_object (checked_type));
if (type_holder == nullptr)
return nullptr;
py_type = type_holder.get ();
}
gdbpy_ref<> iter (typy_make_iter (py_type, kind));
if (iter == nullptr)
return nullptr;
return PySequence_List (iter.get ());
}
/* Return a sequence of all fields. Each field is a gdb.Field object. */
static PyObject *
typy_values (PyObject *self, PyObject *args)
{
return typy_fields_items (self, iter_values);
}
/* Return a sequence of all fields. Each field is a gdb.Field object.
This method is similar to typy_values, except where the supplied
gdb.Type is an array, in which case it returns a list of one entry
which is a gdb.Field object for a range (the array bounds). */
static PyObject *
typy_fields (PyObject *self, PyObject *args)
{
struct type *type = ((type_object *) self)->type;
if (type->code () != TYPE_CODE_ARRAY)
return typy_fields_items (self, iter_values);
/* Array type. Handle this as a special case because the common
machinery wants struct or union or enum types. Build a list of
one entry which is the range for the array. */
gdbpy_ref<> r = convert_field (type, 0);
if (r == NULL)
return NULL;
return Py_BuildValue ("[O]", r.get ());
}
/* Return a sequence of all field names. Each field is a gdb.Field object. */
static PyObject *
typy_field_names (PyObject *self, PyObject *args)
{
return typy_fields_items (self, iter_keys);
}
/* Return a sequence of all (name, fields) pairs. Each field is a
gdb.Field object. */
static PyObject *
typy_items (PyObject *self, PyObject *args)
{
return typy_fields_items (self, iter_items);
}
/* Return the type's name, or None. */
static PyObject *
typy_get_name (PyObject *self, void *closure)
{
struct type *type = ((type_object *) self)->type;
if (type->name () == NULL)
Py_RETURN_NONE;
/* Ada type names are encoded, but it is better for users to see the
decoded form. */
if (ADA_TYPE_P (type))
{
std::string name = ada_decode (type->name (), false);
if (!name.empty ())
return PyUnicode_FromString (name.c_str ());
}
return PyUnicode_FromString (type->name ());
}
/* Return the type's tag, or None. */
static PyObject *
typy_get_tag (PyObject *self, void *closure)
{
struct type *type = ((type_object *) self)->type;
const char *tagname = nullptr;
if (type->code () == TYPE_CODE_STRUCT
|| type->code () == TYPE_CODE_UNION
|| type->code () == TYPE_CODE_ENUM)
tagname = type->name ();
if (tagname == nullptr)
Py_RETURN_NONE;
return PyUnicode_FromString (tagname);
}
/* Return the type's objfile, or None. */
static PyObject *
typy_get_objfile (PyObject *self, void *closure)
{
struct type *type = ((type_object *) self)->type;
struct objfile *objfile = type->objfile_owner ();
if (objfile == nullptr)
Py_RETURN_NONE;
return objfile_to_objfile_object (objfile).release ();
}
/* Return true if this is a scalar type, otherwise, returns false. */
static PyObject *
typy_is_scalar (PyObject *self, void *closure)
{
struct type *type = ((type_object *) self)->type;
if (is_scalar_type (type))
Py_RETURN_TRUE;
else
Py_RETURN_FALSE;
}
/* Return true if this type is signed. Raises a ValueError if this type
is not a scalar type. */
static PyObject *
typy_is_signed (PyObject *self, void *closure)
{
struct type *type = ((type_object *) self)->type;
if (!is_scalar_type (type))
{
PyErr_SetString (PyExc_ValueError,
_("Type must be a scalar type"));
return nullptr;
}
if (type->is_unsigned ())
Py_RETURN_FALSE;
else
Py_RETURN_TRUE;
}
/* Return true if this type is array-like. */
static PyObject *
typy_is_array_like (PyObject *self, void *closure)
{
struct type *type = ((type_object *) self)->type;
bool result = false;
try
{
type = check_typedef (type);
result = type->is_array_like ();
}
catch (const gdb_exception &except)
{
return gdbpy_handle_gdb_exception (nullptr, except);
}
if (result)
Py_RETURN_TRUE;
else
Py_RETURN_FALSE;
}
/* Return true if this type is string-like. */
static PyObject *
typy_is_string_like (PyObject *self, void *closure)
{
struct type *type = ((type_object *) self)->type;
bool result = false;
try
{
type = check_typedef (type);
result = type->is_string_like ();
}
catch (const gdb_exception &except)
{
return gdbpy_handle_gdb_exception (nullptr, except);
}
if (result)
Py_RETURN_TRUE;
else
Py_RETURN_FALSE;
}
/* Return the type, stripped of typedefs. */
static PyObject *
typy_strip_typedefs (PyObject *self, PyObject *args)
{
struct type *type = ((type_object *) self)->type;
try
{
type = check_typedef (type);
}
catch (const gdb_exception &except)
{
return gdbpy_handle_gdb_exception (nullptr, except);
}
return type_to_type_object (type);
}
/* Strip typedefs and pointers/reference from a type. Then check that
it is a struct, union, or enum type. If not, raise TypeError. */
static struct type *
typy_get_composite (struct type *type)
{
for (;;)
{
try
{
type = check_typedef (type);
}
catch (const gdb_exception &except)
{
return gdbpy_handle_gdb_exception (nullptr, except);
}
if (!type->is_pointer_or_reference ())
break;
type = type->target_type ();
}
/* If this is not a struct, union, or enum type, raise TypeError
exception. */
if (type->code () != TYPE_CODE_STRUCT
&& type->code () != TYPE_CODE_UNION
&& type->code () != TYPE_CODE_ENUM
&& type->code () != TYPE_CODE_METHOD
&& type->code () != TYPE_CODE_FUNC)
{
PyErr_SetString (PyExc_TypeError,
"Type is not a structure, union, enum, or function type.");
return NULL;
}
return type;
}
/* Helper for typy_array and typy_vector. */
static PyObject *
typy_array_1 (PyObject *self, PyObject *args, int is_vector)
{
long n1, n2;
PyObject *n2_obj = NULL;
struct type *array = NULL;
struct type *type = ((type_object *) self)->type;
if (! PyArg_ParseTuple (args, "l|O", &n1, &n2_obj))
return NULL;
if (n2_obj)
{
if (!PyLong_Check (n2_obj))
{
PyErr_SetString (PyExc_RuntimeError,
_("Array bound must be an integer"));
return NULL;
}
if (! gdb_py_int_as_long (n2_obj, &n2))
return NULL;
}
else
{
n2 = n1;
n1 = 0;
}
if (n2 < n1 - 1) /* Note: An empty array has n2 == n1 - 1. */
{
PyErr_SetString (PyExc_ValueError,
_("Array length must not be negative"));
return NULL;
}
try
{
array = lookup_array_range_type (type, n1, n2);
if (is_vector)
make_vector_type (array);
}
catch (const gdb_exception &except)
{
return gdbpy_handle_gdb_exception (nullptr, except);
}
return type_to_type_object (array);
}
/* Return an array type. */
static PyObject *
typy_array (PyObject *self, PyObject *args)
{
return typy_array_1 (self, args, 0);
}
/* Return a vector type. */
static PyObject *
typy_vector (PyObject *self, PyObject *args)
{
return typy_array_1 (self, args, 1);
}
/* Return a Type object which represents a pointer to SELF. */
static PyObject *
typy_pointer (PyObject *self, PyObject *args)
{
struct type *type = ((type_object *) self)->type;
try
{
type = lookup_pointer_type (type);
}
catch (const gdb_exception &except)
{
return gdbpy_handle_gdb_exception (nullptr, except);
}
return type_to_type_object (type);
}
/* Return the range of a type represented by SELF. The return type is
a tuple. The first element of the tuple contains the low bound,
while the second element of the tuple contains the high bound. */
static PyObject *
typy_range (PyObject *self, PyObject *args)
{
struct type *type = ((type_object *) self)->type;
/* Initialize these to appease GCC warnings. */
LONGEST low = 0, high = 0;
if (type->code () != TYPE_CODE_ARRAY
&& type->code () != TYPE_CODE_STRING
&& type->code () != TYPE_CODE_RANGE)
{
PyErr_SetString (PyExc_RuntimeError,
_("This type does not have a range."));
return NULL;
}
switch (type->code ())
{
case TYPE_CODE_ARRAY:
case TYPE_CODE_STRING:
case TYPE_CODE_RANGE:
if (type->bounds ()->low.is_constant ())
low = type->bounds ()->low.const_val ();
else
low = 0;
if (type->bounds ()->high.is_constant ())
high = type->bounds ()->high.const_val ();
else
high = 0;
break;
}
gdbpy_ref<> low_bound = gdb_py_object_from_longest (low);
if (low_bound == NULL)
return NULL;
gdbpy_ref<> high_bound = gdb_py_object_from_longest (high);
if (high_bound == NULL)
return NULL;
gdbpy_ref<> result (PyTuple_New (2));
if (result == NULL)
return NULL;
if (PyTuple_SetItem (result.get (), 0, low_bound.release ()) != 0
|| PyTuple_SetItem (result.get (), 1, high_bound.release ()) != 0)
return NULL;
return result.release ();
}
/* Return a Type object which represents a reference to SELF. */
static PyObject *
typy_reference (PyObject *self, PyObject *args)
{
struct type *type = ((type_object *) self)->type;
try
{
type = lookup_lvalue_reference_type (type);
}
catch (const gdb_exception &except)
{
return gdbpy_handle_gdb_exception (nullptr, except);
}
return type_to_type_object (type);
}
/* Return a Type object which represents the target type of SELF. */
static PyObject *
typy_target (PyObject *self, PyObject *args)
{
struct type *type = ((type_object *) self)->type;
if (!type->target_type ())
{
PyErr_SetString (PyExc_RuntimeError,
_("Type does not have a target."));
return NULL;
}
return type_to_type_object (type->target_type ());
}
/* Return a const-qualified type variant. */
static PyObject *
typy_const (PyObject *self, PyObject *args)
{
struct type *type = ((type_object *) self)->type;
try
{
type = make_cv_type (1, 0, type, NULL);
}
catch (const gdb_exception &except)
{
return gdbpy_handle_gdb_exception (nullptr, except);
}
return type_to_type_object (type);
}
/* Return a volatile-qualified type variant. */
static PyObject *
typy_volatile (PyObject *self, PyObject *args)
{
struct type *type = ((type_object *) self)->type;
try
{
type = make_cv_type (0, 1, type, NULL);
}
catch (const gdb_exception &except)
{
return gdbpy_handle_gdb_exception (nullptr, except);
}
return type_to_type_object (type);
}
/* Return an unqualified type variant. */
static PyObject *
typy_unqualified (PyObject *self, PyObject *args)
{
struct type *type = ((type_object *) self)->type;
try
{
type = make_cv_type (0, 0, type, NULL);
}
catch (const gdb_exception &except)
{
return gdbpy_handle_gdb_exception (nullptr, except);
}
return type_to_type_object (type);
}
/* Return the size of the type represented by SELF, in bytes. */
static PyObject *
typy_get_sizeof (PyObject *self, void *closure)
{
struct type *type = ((type_object *) self)->type;
bool size_varies = false;
try
{
check_typedef (type);
size_varies = TYPE_HAS_DYNAMIC_LENGTH (type);
}
catch (const gdb_exception &except)
{
}
/* Ignore exceptions. */
if (size_varies)
Py_RETURN_NONE;
return gdb_py_object_from_longest (type->length ()).release ();
}
/* Return the alignment of the type represented by SELF, in bytes. */
static PyObject *
typy_get_alignof (PyObject *self, void *closure)
{
struct type *type = ((type_object *) self)->type;
ULONGEST align = 0;
try
{
align = type_align (type);
}
catch (const gdb_exception &except)
{
align = 0;
}
/* Ignore exceptions. */
return gdb_py_object_from_ulongest (align).release ();
}
/* Return whether or not the type is dynamic. */
static PyObject *
typy_get_dynamic (PyObject *self, void *closure)
{
struct type *type = ((type_object *) self)->type;
bool result = false;
try
{
result = is_dynamic_type (type);
}
catch (const gdb_exception &except)
{
/* Ignore exceptions. */
}
if (result)
Py_RETURN_TRUE;
Py_RETURN_FALSE;
}
static struct type *
typy_lookup_typename (const char *type_name, const struct block *block)
{
struct type *type = NULL;
try
{
if (startswith (type_name, "struct "))
type = lookup_struct (type_name + 7, NULL);
else if (startswith (type_name, "union "))
type = lookup_union (type_name + 6, NULL);
else if (startswith (type_name, "enum "))
type = lookup_enum (type_name + 5, NULL);
else
type = lookup_typename (current_language,
type_name, block, 0);
}
catch (const gdb_exception &except)
{
return gdbpy_handle_gdb_exception (nullptr, except);
}
return type;
}
static struct type *
typy_lookup_type (struct demangle_component *demangled,
const struct block *block)
{
struct type *type, *rtype = NULL;
enum demangle_component_type demangled_type;
/* Save the type: typy_lookup_type() may (indirectly) overwrite
memory pointed by demangled. */
demangled_type = demangled->type;
if (demangled_type == DEMANGLE_COMPONENT_POINTER
|| demangled_type == DEMANGLE_COMPONENT_REFERENCE
|| demangled_type == DEMANGLE_COMPONENT_RVALUE_REFERENCE
|| demangled_type == DEMANGLE_COMPONENT_CONST
|| demangled_type == DEMANGLE_COMPONENT_VOLATILE)
{
type = typy_lookup_type (demangled->u.s_binary.left, block);
if (! type)
return NULL;
try
{
/* If the demangled_type matches with one of the types
below, run the corresponding function and save the type
to return later. We cannot just return here as we are in
an exception handler. */
switch (demangled_type)
{
case DEMANGLE_COMPONENT_REFERENCE:
rtype = lookup_lvalue_reference_type (type);
break;
case DEMANGLE_COMPONENT_RVALUE_REFERENCE:
rtype = lookup_rvalue_reference_type (type);
break;
case DEMANGLE_COMPONENT_POINTER:
rtype = lookup_pointer_type (type);
break;
case DEMANGLE_COMPONENT_CONST:
rtype = make_cv_type (1, 0, type, NULL);
break;
case DEMANGLE_COMPONENT_VOLATILE:
rtype = make_cv_type (0, 1, type, NULL);
break;
}
}
catch (const gdb_exception &except)
{
return gdbpy_handle_gdb_exception (nullptr, except);
}
}
/* If we have a type from the switch statement above, just return
that. */
if (rtype)
return rtype;
/* We don't have a type, so lookup the type. */
gdb::unique_xmalloc_ptr<char> type_name = cp_comp_to_string (demangled, 10);
return typy_lookup_typename (type_name.get (), block);
}
/* This is a helper function for typy_template_argument that is used
when the type does not have template symbols attached. It works by
parsing the type name. This happens with compilers, like older
versions of GCC, that do not emit DW_TAG_template_*. */
static PyObject *
typy_legacy_template_argument (struct type *type, const struct block *block,
int argno)
{
int i;
struct demangle_component *demangled;
std::unique_ptr<demangle_parse_info> info;
std::string err;
struct type *argtype;
if (type->name () == NULL)
{
PyErr_SetString (PyExc_RuntimeError, _("Null type name."));
return NULL;
}
try
{
/* Note -- this is not thread-safe. */
info = cp_demangled_name_to_comp (type->name (), &err);
}
catch (const gdb_exception &except)
{
return gdbpy_handle_gdb_exception (nullptr, except);
}
if (! info)
{
PyErr_SetString (PyExc_RuntimeError, err.c_str ());
return NULL;
}
demangled = info->tree;
/* Strip off component names. */
while (demangled->type == DEMANGLE_COMPONENT_QUAL_NAME
|| demangled->type == DEMANGLE_COMPONENT_LOCAL_NAME)
demangled = demangled->u.s_binary.right;
if (demangled->type != DEMANGLE_COMPONENT_TEMPLATE)
{
PyErr_SetString (PyExc_RuntimeError, _("Type is not a template."));
return NULL;
}
/* Skip from the template to the arguments. */
demangled = demangled->u.s_binary.right;
for (i = 0; demangled && i < argno; ++i)
demangled = demangled->u.s_binary.right;
if (! demangled)
{
PyErr_Format (PyExc_RuntimeError, _("No argument %d in template."),
argno);
return NULL;
}
argtype = typy_lookup_type (demangled->u.s_binary.left, block);
if (! argtype)
return NULL;
return type_to_type_object (argtype);
}
static PyObject *
typy_template_argument (PyObject *self, PyObject *args)
{
int argno;
struct type *type = ((type_object *) self)->type;
const struct block *block = NULL;
PyObject *block_obj = NULL;
struct symbol *sym;