-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathstd_types.h
1798 lines (1559 loc) · 46 KB
/
std_types.h
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
/*******************************************************************\
Module: Pre-defined types
Author: Daniel Kroening, [email protected]
Maria Svorenova, [email protected]
\*******************************************************************/
/// \file
/// Pre-defined types
#ifndef CPROVER_UTIL_STD_TYPES_H
#define CPROVER_UTIL_STD_TYPES_H
#include "expr.h"
#include "expr_cast.h"
#include "invariant.h"
#include "mp_arith.h"
#include "validate.h"
#include <util/narrow.h>
#include <unordered_map>
class constant_exprt;
class namespacet;
/// The Boolean type
class bool_typet:public typet
{
public:
bool_typet():typet(ID_bool)
{
}
};
/// The empty type
class empty_typet:public typet
{
public:
empty_typet():typet(ID_empty)
{
}
};
/// Base type for structs and unions
///
/// For example C structs, C unions, C++ classes, Java classes.
class struct_union_typet:public typet
{
public:
explicit struct_union_typet(const irep_idt &_id):typet(_id)
{
}
class componentt:public exprt
{
public:
componentt() = default;
componentt(const irep_idt &_name, typet _type)
{
set_name(_name);
type().swap(_type);
}
const irep_idt &get_name() const
{
return get(ID_name);
}
void set_name(const irep_idt &name)
{
return set(ID_name, name);
}
const irep_idt &get_base_name() const
{
return get(ID_base_name);
}
void set_base_name(const irep_idt &base_name)
{
return set(ID_base_name, base_name);
}
const irep_idt &get_access() const
{
return get(ID_access);
}
void set_access(const irep_idt &access)
{
return set(ID_access, access);
}
const irep_idt &get_pretty_name() const
{
return get(ID_pretty_name);
}
void set_pretty_name(const irep_idt &name)
{
return set(ID_pretty_name, name);
}
bool get_anonymous() const
{
return get_bool(ID_anonymous);
}
void set_anonymous(bool anonymous)
{
return set(ID_anonymous, anonymous);
}
bool get_is_padding() const
{
return get_bool(ID_C_is_padding);
}
void set_is_padding(bool is_padding)
{
return set(ID_C_is_padding, is_padding);
}
};
typedef std::vector<componentt> componentst;
struct_union_typet(const irep_idt &_id, componentst _components) : typet(_id)
{
components() = std::move(_components);
}
const componentst &components() const
{
return (const componentst &)(find(ID_components).get_sub());
}
componentst &components()
{
return (componentst &)(add(ID_components).get_sub());
}
bool has_component(const irep_idt &component_name) const
{
return get_component(component_name).is_not_nil();
}
const componentt &get_component(
const irep_idt &component_name) const;
std::size_t component_number(const irep_idt &component_name) const;
const typet &component_type(const irep_idt &component_name) const;
irep_idt get_tag() const { return get(ID_tag); }
void set_tag(const irep_idt &tag) { set(ID_tag, tag); }
/// A struct may be a class, where members may have access restrictions.
bool is_class() const
{
return id() == ID_struct && get_bool(ID_C_class);
}
/// Return the access specification for members where access has not been
/// modified.
irep_idt default_access() const
{
return is_class() ? ID_private : ID_public;
}
/// A struct/union may be incomplete
bool is_incomplete() const
{
return get_bool(ID_incomplete);
}
/// A struct/union may be incomplete
void make_incomplete()
{
set(ID_incomplete, true);
}
};
/// Check whether a reference to a typet is a \ref struct_union_typet.
/// \param type: Source type.
/// \return True if \p type is a \ref struct_union_typet.
template <>
inline bool can_cast_type<struct_union_typet>(const typet &type)
{
return type.id() == ID_struct || type.id() == ID_union;
}
/// \brief Cast a typet to a \ref struct_union_typet
///
/// This is an unchecked conversion. \a type must be known to be \ref
/// struct_union_typet. Will fail with a precondition violation if type
/// doesn't match.
///
/// \param type: Source type
/// \return Object of type \ref struct_union_typet
inline const struct_union_typet &to_struct_union_type(const typet &type)
{
PRECONDITION(can_cast_type<struct_union_typet>(type));
return static_cast<const struct_union_typet &>(type);
}
/// \copydoc to_struct_union_type(const typet &)
inline struct_union_typet &to_struct_union_type(typet &type)
{
PRECONDITION(can_cast_type<struct_union_typet>(type));
return static_cast<struct_union_typet &>(type);
}
class struct_tag_typet;
/// Structure type, corresponds to C style structs
class struct_typet:public struct_union_typet
{
public:
struct_typet():struct_union_typet(ID_struct)
{
}
explicit struct_typet(componentst _components)
: struct_union_typet(ID_struct, std::move(_components))
{
}
bool is_prefix_of(const struct_typet &other) const;
/// A struct may be a class, where members may have access restrictions.
bool is_class() const
{
return get_bool(ID_C_class);
}
/// Base class or struct that a class or struct inherits from.
class baset : public exprt
{
public:
struct_tag_typet &type();
const struct_tag_typet &type() const;
explicit baset(struct_tag_typet base);
};
typedef std::vector<baset> basest;
/// Get the collection of base classes/structs.
const basest &bases() const
{
return (const basest &)find(ID_bases).get_sub();
}
/// Get the collection of base classes/structs.
basest &bases()
{
return (basest &)add(ID_bases).get_sub();
}
/// Add a base class/struct
/// \param base: Type of case/class struct to be added.
void add_base(const struct_tag_typet &base);
/// Return the base with the given name, if exists.
/// \param id: The name of the base we are looking for.
/// \return The base if exists.
optionalt<baset> get_base(const irep_idt &id) const;
/// Test whether `id` is a base class/struct.
/// \param id: symbol type name
/// \return True if, and only if, the symbol type `id` is a base class/struct.
bool has_base(const irep_idt &id) const
{
return get_base(id).has_value();
}
};
/// Check whether a reference to a typet is a \ref struct_typet.
/// \param type: Source type.
/// \return True if \p type is a \ref struct_typet.
template <>
inline bool can_cast_type<struct_typet>(const typet &type)
{
return type.id() == ID_struct;
}
/// \brief Cast a typet to a \ref struct_typet
///
/// This is an unchecked conversion. \a type must be known to be \ref
/// struct_typet. Will fail with a precondition violation if type
/// doesn't match.
///
/// \param type: Source type.
/// \return Object of type \ref struct_typet.
inline const struct_typet &to_struct_type(const typet &type)
{
PRECONDITION(can_cast_type<struct_typet>(type));
return static_cast<const struct_typet &>(type);
}
/// \copydoc to_struct_type(const typet &)
inline struct_typet &to_struct_type(typet &type)
{
PRECONDITION(can_cast_type<struct_typet>(type));
return static_cast<struct_typet &>(type);
}
/// Class type
///
/// For example, C++ and Java classes.
class class_typet:public struct_typet
{
public:
class_typet():struct_typet()
{
set(ID_C_class, true);
}
typedef componentt methodt;
typedef componentst methodst;
const methodst &methods() const
{
return (const methodst &)(find(ID_methods).get_sub());
}
componentst &methods()
{
return (methodst &)(add(ID_methods).get_sub());
}
bool is_abstract() const
{
return get_bool(ID_abstract);
}
};
/// Check whether a reference to a typet is a \ref class_typet.
/// \param type: Source type.
/// \return True if \p type is a \ref class_typet.
template <>
inline bool can_cast_type<class_typet>(const typet &type)
{
return can_cast_type<struct_typet>(type) && type.get_bool(ID_C_class);
}
/// \brief Cast a typet to a \ref class_typet
///
/// This is an unchecked conversion. \a type must be known to be \ref
/// class_typet. Will fail with a precondition violation if type
/// doesn't match.
///
/// \param type: Source type.
/// \return Object of type \ref class_typet.
inline const class_typet &to_class_type(const typet &type)
{
PRECONDITION(can_cast_type<class_typet>(type));
return static_cast<const class_typet &>(type);
}
/// \copydoc to_class_type(const typet &)
inline class_typet &to_class_type(typet &type)
{
PRECONDITION(can_cast_type<class_typet>(type));
return static_cast<class_typet &>(type);
}
/// The union type
///
/// For example, C union.
class union_typet:public struct_union_typet
{
public:
union_typet():struct_union_typet(ID_union)
{
}
explicit union_typet(componentst _components)
: struct_union_typet(ID_union, std::move(_components))
{
}
};
/// Check whether a reference to a typet is a \ref union_typet.
/// \param type: Source type.
/// \return True if \p type is a \ref union_typet.
template <>
inline bool can_cast_type<union_typet>(const typet &type)
{
return type.id() == ID_union;
}
/// \brief Cast a typet to a \ref union_typet
///
/// This is an unchecked conversion. \a type must be known to be \ref
/// union_typet. Will fail with a precondition violation if type
/// doesn't match.
///
/// \param type: Source type.
/// \return Object of type \ref union_typet
inline const union_typet &to_union_type(const typet &type)
{
PRECONDITION(can_cast_type<union_typet>(type));
return static_cast<const union_typet &>(type);
}
/// \copydoc to_union_type(const typet &)
inline union_typet &to_union_type(typet &type)
{
PRECONDITION(can_cast_type<union_typet>(type));
return static_cast<union_typet &>(type);
}
/// A tag-based type, i.e., \ref typet with an identifier
class tag_typet:public typet
{
public:
explicit tag_typet(
const irep_idt &_id,
const irep_idt &identifier):typet(_id)
{
set_identifier(identifier);
}
void set_identifier(const irep_idt &identifier)
{
set(ID_identifier, identifier);
}
const irep_idt &get_identifier() const
{
return get(ID_identifier);
}
};
/// Check whether a reference to a typet is a \ref tag_typet.
/// \param type: Source type.
/// \return True if \p type is a \ref tag_typet.
template <>
inline bool can_cast_type<tag_typet>(const typet &type)
{
return type.id() == ID_c_enum_tag || type.id() == ID_struct_tag ||
type.id() == ID_union_tag;
}
/// \brief Cast a typet to a \ref tag_typet
///
/// This is an unchecked conversion. \a type must be known to be \ref
/// tag_typet. Will fail with a precondition violation if type
/// doesn't match.
///
/// \param type: Source type.
/// \return Object of type \ref tag_typet.
inline const tag_typet &to_tag_type(const typet &type)
{
PRECONDITION(can_cast_type<tag_typet>(type));
return static_cast<const tag_typet &>(type);
}
/// \copydoc to_tag_type(const typet &)
inline tag_typet &to_tag_type(typet &type)
{
PRECONDITION(can_cast_type<tag_typet>(type));
return static_cast<tag_typet &>(type);
}
/// A struct tag type, i.e., \ref struct_typet with an identifier
class struct_tag_typet:public tag_typet
{
public:
explicit struct_tag_typet(const irep_idt &identifier):
tag_typet(ID_struct_tag, identifier)
{
}
};
/// Check whether a reference to a typet is a \ref struct_tag_typet.
/// \param type: Source type.
/// \return True if \p type is a \ref struct_tag_typet.
template <>
inline bool can_cast_type<struct_tag_typet>(const typet &type)
{
return type.id() == ID_struct_tag;
}
/// \brief Cast a typet to a \ref struct_tag_typet
///
/// This is an unchecked conversion. \a type must be known to be \ref
/// struct_tag_typet. Will fail with a precondition violation if type
/// doesn't match.
///
/// \param type: Source type.
/// \return Object of type \ref struct_tag_typet
inline const struct_tag_typet &to_struct_tag_type(const typet &type)
{
PRECONDITION(can_cast_type<struct_tag_typet>(type));
return static_cast<const struct_tag_typet &>(type);
}
/// \copydoc to_struct_tag_type(const typet &)
inline struct_tag_typet &to_struct_tag_type(typet &type)
{
PRECONDITION(can_cast_type<struct_tag_typet>(type));
return static_cast<struct_tag_typet &>(type);
}
/// A union tag type, i.e., \ref union_typet with an identifier
class union_tag_typet:public tag_typet
{
public:
explicit union_tag_typet(const irep_idt &identifier):
tag_typet(ID_union_tag, identifier)
{
}
};
/// Check whether a reference to a typet is a \ref union_tag_typet.
/// \param type: Source type.
/// \return True if \p type is a \ref union_tag_typet.
template <>
inline bool can_cast_type<union_tag_typet>(const typet &type)
{
return type.id() == ID_union_tag;
}
/// \brief Cast a typet to a \ref union_tag_typet
///
/// This is an unchecked conversion. \a type must be known to be \ref
/// union_tag_typet. Will fail with a precondition violation if type
/// doesn't match.
///
/// \param type: Source type.
/// \return Object of type \ref union_tag_typet.
inline const union_tag_typet &to_union_tag_type(const typet &type)
{
PRECONDITION(can_cast_type<union_tag_typet>(type));
return static_cast<const union_tag_typet &>(type);
}
/// \copydoc to_union_tag_type(const typet &)
inline union_tag_typet &to_union_tag_type(typet &type)
{
PRECONDITION(can_cast_type<union_tag_typet>(type));
return static_cast<union_tag_typet &>(type);
}
/// An enumeration type, i.e., a type with elements (not to be confused with C
/// enums)
class enumeration_typet:public typet
{
public:
enumeration_typet():typet(ID_enumeration)
{
}
const irept::subt &elements() const
{
return find(ID_elements).get_sub();
}
irept::subt &elements()
{
return add(ID_elements).get_sub();
}
};
/// Check whether a reference to a typet is a \ref enumeration_typet.
/// \param type: Source type.
/// \return True if \p type is a \ref enumeration_typet.
template <>
inline bool can_cast_type<enumeration_typet>(const typet &type)
{
return type.id() == ID_enumeration;
}
/// \brief Cast a typet to a \ref enumeration_typet
///
/// This is an unchecked conversion. \a type must be known to be \ref
/// enumeration_typet. Will fail with a precondition violation if type
/// doesn't match.
///
/// \param type: Source type.
/// \return Object of type \ref enumeration_typet.
inline const enumeration_typet &to_enumeration_type(const typet &type)
{
PRECONDITION(can_cast_type<enumeration_typet>(type));
return static_cast<const enumeration_typet &>(type);
}
/// \copydoc to_enumeration_type(const typet &)
inline enumeration_typet &to_enumeration_type(typet &type)
{
PRECONDITION(can_cast_type<enumeration_typet>(type));
return static_cast<enumeration_typet &>(type);
}
/// The type of C enums
class c_enum_typet:public type_with_subtypet
{
public:
explicit c_enum_typet(typet _subtype)
: type_with_subtypet(ID_c_enum, std::move(_subtype))
{
}
class c_enum_membert:public irept
{
public:
irep_idt get_value() const { return get(ID_value); }
void set_value(const irep_idt &value) { set(ID_value, value); }
irep_idt get_identifier() const { return get(ID_identifier); }
void set_identifier(const irep_idt &identifier)
{
set(ID_identifier, identifier);
}
irep_idt get_base_name() const { return get(ID_base_name); }
void set_base_name(const irep_idt &base_name)
{
set(ID_base_name, base_name);
}
};
typedef std::vector<c_enum_membert> memberst;
const memberst &members() const
{
return (const memberst &)(find(ID_body).get_sub());
}
/// enum types may be incomplete
bool is_incomplete() const
{
return get_bool(ID_incomplete);
}
/// enum types may be incomplete
void make_incomplete()
{
set(ID_incomplete, true);
}
};
/// Check whether a reference to a typet is a \ref c_enum_typet.
/// \param type: Source type.
/// \return True if \p type is a \ref c_enum_typet.
template <>
inline bool can_cast_type<c_enum_typet>(const typet &type)
{
return type.id() == ID_c_enum;
}
/// \brief Cast a typet to a \ref c_enum_typet
///
/// This is an unchecked conversion. \a type must be known to be \ref
/// c_enum_typet. Will fail with a precondition violation if type
/// doesn't match.
///
/// \param type: Source type.
/// \return Object of type \ref c_enum_typet.
inline const c_enum_typet &to_c_enum_type(const typet &type)
{
PRECONDITION(can_cast_type<c_enum_typet>(type));
return static_cast<const c_enum_typet &>(type);
}
/// \copydoc to_c_enum_type(const typet &)
inline c_enum_typet &to_c_enum_type(typet &type)
{
PRECONDITION(can_cast_type<c_enum_typet>(type));
return static_cast<c_enum_typet &>(type);
}
/// C enum tag type, i.e., \ref c_enum_typet with an identifier
class c_enum_tag_typet:public tag_typet
{
public:
explicit c_enum_tag_typet(const irep_idt &identifier):
tag_typet(ID_c_enum_tag, identifier)
{
}
};
/// Check whether a reference to a typet is a \ref c_enum_tag_typet.
/// \param type: Source type.
/// \return True if \p type is a \ref c_enum_tag_typet.
template <>
inline bool can_cast_type<c_enum_tag_typet>(const typet &type)
{
return type.id() == ID_c_enum_tag;
}
/// \brief Cast a typet to a \ref c_enum_tag_typet
///
/// This is an unchecked conversion. \a type must be known to be \ref
/// c_enum_tag_typet. Will fail with a precondition violation if type
/// doesn't match.
///
/// \param type: Source type.
/// \return Object of type \ref c_enum_tag_typet.
inline const c_enum_tag_typet &to_c_enum_tag_type(const typet &type)
{
PRECONDITION(can_cast_type<c_enum_tag_typet>(type));
return static_cast<const c_enum_tag_typet &>(type);
}
/// \copydoc to_c_enum_tag_type(const typet &)
inline c_enum_tag_typet &to_c_enum_tag_type(typet &type)
{
PRECONDITION(can_cast_type<c_enum_tag_typet>(type));
return static_cast<c_enum_tag_typet &>(type);
}
/// Base type of functions
class code_typet:public typet
{
public:
class parametert;
typedef std::vector<parametert> parameterst;
/// Constructs a new code type, i.e., function type.
/// \param _parameters: The vector of function parameters.
/// \param _return_type: The return type.
code_typet(parameterst _parameters, typet _return_type) : typet(ID_code)
{
parameters().swap(_parameters);
return_type().swap(_return_type);
}
// used to be argumentt -- now uses standard terminology
class parametert:public exprt
{
public:
DEPRECATED(SINCE(2018, 9, 21, "use parametert(type) instead"))
parametert():exprt(ID_parameter)
{
}
explicit parametert(const typet &type):exprt(ID_parameter, type)
{
}
const exprt &default_value() const
{
return find_expr(ID_C_default_value);
}
bool has_default_value() const
{
return default_value().is_not_nil();
}
exprt &default_value()
{
return add_expr(ID_C_default_value);
}
// The following for methods will go away;
// these should not be part of the signature of a function,
// but rather part of the body.
void set_identifier(const irep_idt &identifier)
{
set(ID_C_identifier, identifier);
}
void set_base_name(const irep_idt &name)
{
set(ID_C_base_name, name);
}
const irep_idt &get_identifier() const
{
return get(ID_C_identifier);
}
const irep_idt &get_base_name() const
{
return get(ID_C_base_name);
}
bool get_this() const
{
return get_bool(ID_C_this);
}
void set_this()
{
set(ID_C_this, true);
}
};
bool has_ellipsis() const
{
return find(ID_parameters).get_bool(ID_ellipsis);
}
bool has_this() const
{
return get_this() != nullptr;
}
const parametert *get_this() const
{
const parameterst &p=parameters();
if(!p.empty() && p.front().get_this())
return &p.front();
else
return nullptr;
}
bool is_KnR() const
{
return get_bool(ID_C_KnR);
}
void make_ellipsis()
{
add(ID_parameters).set(ID_ellipsis, true);
}
void remove_ellipsis()
{
add(ID_parameters).remove(ID_ellipsis);
}
const typet &return_type() const
{
return find_type(ID_return_type);
}
typet &return_type()
{
return add_type(ID_return_type);
}
const parameterst ¶meters() const
{
return (const parameterst &)find(ID_parameters).get_sub();
}
parameterst ¶meters()
{
return (parameterst &)add(ID_parameters).get_sub();
}
bool get_inlined() const
{
return get_bool(ID_C_inlined);
}
void set_inlined(bool value)
{
set(ID_C_inlined, value);
}
const irep_idt &get_access() const
{
return get(ID_access);
}
void set_access(const irep_idt &access)
{
return set(ID_access, access);
}
bool get_is_constructor() const
{
return get_bool(ID_constructor);
}
void set_is_constructor()
{
set(ID_constructor, true);
}
/// Produces the list of parameter identifiers.
std::vector<irep_idt> parameter_identifiers() const
{
std::vector<irep_idt> result;
const parameterst &p=parameters();
result.reserve(p.size());
for(parameterst::const_iterator it=p.begin();
it!=p.end(); it++)
result.push_back(it->get_identifier());
return result;
}
typedef std::unordered_map<irep_idt, std::size_t> parameter_indicest;
/// Get a map from parameter name to its index.
parameter_indicest parameter_indices() const
{
parameter_indicest parameter_indices;
const parameterst ¶ms = parameters();
parameter_indices.reserve(params.size());
std::size_t index = 0;
for(const auto &p : params)
{
const irep_idt &id = p.get_identifier();
if(!id.empty())
parameter_indices.insert({ id, index });
++index;
}
return parameter_indices;
}
};
/// Check whether a reference to a typet is a \ref code_typet.
/// \param type: Source type.
/// \return True if \p type is a \ref code_typet.
template <>
inline bool can_cast_type<code_typet>(const typet &type)
{
return type.id() == ID_code;
}
/// \brief Cast a typet to a \ref code_typet
///
/// This is an unchecked conversion. \a type must be known to be \ref
/// code_typet. Will fail with a precondition violation if type
/// doesn't match.
///
/// \param type: Source type.
/// \return Object of type \ref code_typet.
inline const code_typet &to_code_type(const typet &type)
{
PRECONDITION(can_cast_type<code_typet>(type));
code_typet::check(type);
return static_cast<const code_typet &>(type);
}
/// \copydoc to_code_type(const typet &)
inline code_typet &to_code_type(typet &type)
{
PRECONDITION(can_cast_type<code_typet>(type));
code_typet::check(type);
return static_cast<code_typet &>(type);
}
/// Arrays with given size
///
/// Used for ordinary source-language arrays.
class array_typet:public type_with_subtypet
{
public:
array_typet(typet _subtype, exprt _size)
: type_with_subtypet(ID_array, std::move(_subtype))
{
add(ID_size, std::move(_size));
}
const exprt &size() const
{
return static_cast<const exprt &>(find(ID_size));
}
exprt &size()
{
return static_cast<exprt &>(add(ID_size));
}
bool is_complete() const
{
return size().is_not_nil();
}
bool is_incomplete() const
{
return size().is_nil();
}
};
/// Check whether a reference to a typet is a \ref array_typet.
/// \param type: Source type.
/// \return True if \p type is a \ref array_typet.
template <>
inline bool can_cast_type<array_typet>(const typet &type)
{
return type.id() == ID_array;
}
/// \brief Cast a typet to an \ref array_typet
///
/// This is an unchecked conversion. \a type must be known to be \ref
/// array_typet. Will fail with a precondition violation if type
/// doesn't match.
///
/// \param type: Source type.
/// \return Object of type \ref array_typet.
inline const array_typet &to_array_type(const typet &type)
{
PRECONDITION(can_cast_type<array_typet>(type));
return static_cast<const array_typet &>(type);
}
/// \copydoc to_array_type(const typet &)
inline array_typet &to_array_type(typet &type)
{
PRECONDITION(can_cast_type<array_typet>(type));