-
-
Notifications
You must be signed in to change notification settings - Fork 267
/
Copy pathmtype.h
881 lines (766 loc) · 24.6 KB
/
mtype.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
/* Compiler implementation of the D programming language
* Copyright (C) 1999-2024 by The D Language Foundation, All Rights Reserved
* written by Walter Bright
* https://www.digitalmars.com
* Distributed under the Boost Software License, Version 1.0.
* https://www.boost.org/LICENSE_1_0.txt
* https://github.com/dlang/dmd/blob/master/src/dmd/mtype.h
*/
#pragma once
#include "root/dcompat.h" // for d_size_t
#include "arraytypes.h"
#include "ast_node.h"
#include "expression.h"
#include "globals.h"
#include "visitor.h"
struct Scope;
class AggregateDeclaration;
class Identifier;
class Expression;
class StructDeclaration;
class ClassDeclaration;
class EnumDeclaration;
class TypeInfoDeclaration;
class Dsymbol;
class TemplateInstance;
class TemplateDeclaration;
class TypeBasic;
class Parameter;
// Back end
#ifdef IN_GCC
typedef union tree_node type;
#elif IN_LLVM
using type = class IrType;
#else
typedef struct TYPE type;
#endif
namespace dmd
{
Type *typeSemantic(Type *t, const Loc &loc, Scope *sc);
Type *merge(Type *type);
}
enum class TY : uint8_t
{
Tarray, // slice array, aka T[]
Tsarray, // static array, aka T[dimension]
Taarray, // associative array, aka T[type]
Tpointer,
Treference,
Tfunction,
Tident,
Tclass,
Tstruct,
Tenum,
Tdelegate,
Tnone,
Tvoid,
Tint8,
Tuns8,
Tint16,
Tuns16,
Tint32,
Tuns32,
Tint64,
Tuns64,
Tfloat32,
Tfloat64,
Tfloat80,
Timaginary32,
Timaginary64,
Timaginary80,
Tcomplex32,
Tcomplex64,
Tcomplex80,
Tbool,
Tchar,
Twchar,
Tdchar,
Terror,
Tinstance,
Ttypeof,
Ttuple,
Tslice,
Treturn,
Tnull,
Tvector,
Tint128,
Tuns128,
Ttraits,
Tmixin,
Tnoreturn,
TMAX
};
#define SIZE_INVALID (~(uinteger_t)0) // error return from size() functions
/**
* type modifiers
* pick this order of numbers so switch statements work better
*/
enum MODFlags
{
MODnone = 0, // default (mutable)
MODconst = 1, // type is const
MODimmutable = 4, // type is immutable
MODshared = 2, // type is shared
MODwild = 8, // type is wild
MODwildconst = (MODwild | MODconst), // type is wild const
MODmutable = 0x10 // type is mutable (only used in wildcard matching)
};
typedef unsigned char MOD;
enum VarArgValues
{
VARARGnone = 0, /// fixed number of arguments
VARARGvariadic = 1, /// T t, ...) can be C-style (core.stdc.stdarg) or D-style (core.vararg)
VARARGtypesafe = 2, /// T t ...) typesafe https://dlang.org/spec/function.html#typesafe_variadic_functions
/// or https://dlang.org/spec/function.html#typesafe_variadic_functions
VARARGKRvariadic = 3 /// K+R C style variadics (no function prototype)
};
typedef unsigned char VarArg;
enum class Covariant
{
distinct = 0, /// types are distinct
yes = 1, /// types are covariant
no = 2, /// arguments match as far as overloading goes, but types are not covariant
fwdref = 3, /// cannot determine covariance because of forward references
};
class Type : public ASTNode
{
public:
TY ty;
MOD mod; // modifiers MODxxxx
char *deco;
void* mcache;
Type *pto; // merged pointer to this type
Type *rto; // reference to this type
Type *arrayof; // array of this type
TypeInfoDeclaration *vtinfo; // TypeInfo object for this Type
type *ctype; // for back end
static Type *tvoid;
static Type *tint8;
static Type *tuns8;
static Type *tint16;
static Type *tuns16;
static Type *tint32;
static Type *tuns32;
static Type *tint64;
static Type *tuns64;
static Type *tint128;
static Type *tuns128;
static Type *tfloat32;
static Type *tfloat64;
static Type *tfloat80;
static Type *timaginary32;
static Type *timaginary64;
static Type *timaginary80;
static Type *tcomplex32;
static Type *tcomplex64;
static Type *tcomplex80;
static Type *tbool;
static Type *tchar;
static Type *twchar;
static Type *tdchar;
// Some special types
static Type *tshiftcnt;
static Type *tvoidptr; // void*
static Type *tstring; // immutable(char)[]
static Type *twstring; // immutable(wchar)[]
static Type *tdstring; // immutable(dchar)[]
static Type *terror; // for error recovery
static Type *tnull; // for null type
static Type *tnoreturn; // for bottom type typeof(*null)
static Type *tsize_t; // matches size_t alias
static Type *tptrdiff_t; // matches ptrdiff_t alias
static Type *thash_t; // matches hash_t alias
static ClassDeclaration *dtypeinfo;
static ClassDeclaration *typeinfoclass;
static ClassDeclaration *typeinfointerface;
static ClassDeclaration *typeinfostruct;
static ClassDeclaration *typeinfopointer;
static ClassDeclaration *typeinfoarray;
static ClassDeclaration *typeinfostaticarray;
static ClassDeclaration *typeinfoassociativearray;
static ClassDeclaration *typeinfovector;
static ClassDeclaration *typeinfoenum;
static ClassDeclaration *typeinfofunction;
static ClassDeclaration *typeinfodelegate;
static ClassDeclaration *typeinfotypelist;
static ClassDeclaration *typeinfoconst;
static ClassDeclaration *typeinfoinvariant;
static ClassDeclaration *typeinfoshared;
static ClassDeclaration *typeinfowild;
static TemplateDeclaration *rtinfo;
#if IN_LLVM
static TemplateDeclaration *rtinfoImpl;
#endif
static Type *basic[(int)TY::TMAX];
virtual const char *kind();
Type *copy() const;
virtual Type *syntaxCopy();
bool equals(const RootObject * const o) const override;
// kludge for template.isType()
DYNCAST dyncast() const override final { return DYNCAST_TYPE; }
size_t getUniqueID() const;
const char *toChars() const override;
char *toPrettyChars(bool QualifyTypes = false);
static void _init();
virtual unsigned alignsize();
void modToBuffer(OutBuffer& buf) const;
char *modToChars() const;
virtual bool isintegral();
virtual bool isfloating(); // real, imaginary, or complex
virtual bool isreal();
virtual bool isimaginary();
virtual bool iscomplex();
virtual bool isscalar();
virtual bool isunsigned();
virtual bool isscope();
virtual bool isString();
virtual bool isAssignable();
virtual bool isBoolean();
bool isConst() const { return (mod & MODconst) != 0; }
bool isImmutable() const { return (mod & MODimmutable) != 0; }
bool isMutable() const { return (mod & (MODconst | MODimmutable | MODwild)) == 0; }
bool isShared() const { return (mod & MODshared) != 0; }
bool isSharedConst() const { return (mod & (MODshared | MODconst)) == (MODshared | MODconst); }
bool isWild() const { return (mod & MODwild) != 0; }
bool isWildConst() const { return (mod & MODwildconst) == MODwildconst; }
bool isSharedWild() const { return (mod & (MODshared | MODwild)) == (MODshared | MODwild); }
bool isNaked() const { return mod == 0; }
Type *nullAttributes() const;
bool hasDeprecatedAliasThis();
virtual Type *makeConst();
virtual Type *makeImmutable();
virtual Type *makeShared();
virtual Type *makeSharedConst();
virtual Type *makeWild();
virtual Type *makeWildConst();
virtual Type *makeSharedWild();
virtual Type *makeSharedWildConst();
virtual Type *makeMutable();
Type *toBasetype();
virtual MATCH constConv(Type *to);
virtual unsigned char deduceWild(Type *t, bool isRef);
virtual ClassDeclaration *isClassHandle();
virtual structalign_t alignment();
virtual Expression *defaultInitLiteral(const Loc &loc);
virtual bool isZeroInit(const Loc &loc = Loc()); // if initializer is 0
virtual int hasWild() const;
virtual bool hasVoidInitPointers();
virtual bool hasUnsafeBitpatterns();
virtual bool hasInvariant();
virtual Type *nextOf();
Type *baseElemOf();
virtual bool needsDestruction();
virtual bool needsCopyOrPostblit();
virtual bool needsNested();
TypeFunction *toTypeFunction();
// For eliminating dynamic_cast
virtual TypeBasic *isTypeBasic();
TypeFunction *isPtrToFunction();
TypeFunction *isFunction_Delegate_PtrToFunction();
TypeError *isTypeError();
TypeVector *isTypeVector();
TypeSArray *isTypeSArray();
TypeDArray *isTypeDArray();
TypeAArray *isTypeAArray();
TypePointer *isTypePointer();
TypeReference *isTypeReference();
TypeFunction *isTypeFunction();
TypeDelegate *isTypeDelegate();
TypeIdentifier *isTypeIdentifier();
TypeInstance *isTypeInstance();
TypeTypeof *isTypeTypeof();
TypeReturn *isTypeReturn();
TypeStruct *isTypeStruct();
TypeEnum *isTypeEnum();
TypeClass *isTypeClass();
TypeTuple *isTypeTuple();
TypeSlice *isTypeSlice();
TypeNull *isTypeNull();
TypeMixin *isTypeMixin();
TypeTraits *isTypeTraits();
TypeNoreturn *isTypeNoreturn();
TypeTag *isTypeTag();
void accept(Visitor *v) override { v->visit(this); }
};
class TypeError final : public Type
{
public:
const char *kind() override;
TypeError *syntaxCopy() override;
Expression *defaultInitLiteral(const Loc &loc) override;
void accept(Visitor *v) override { v->visit(this); }
};
class TypeNext : public Type
{
public:
Type *next;
int hasWild() const override final;
Type *nextOf() override final;
Type *makeConst() override final;
Type *makeImmutable() override final;
Type *makeShared() override final;
Type *makeSharedConst() override final;
Type *makeWild() override final;
Type *makeWildConst() override final;
Type *makeSharedWild() override final;
Type *makeSharedWildConst() override final;
Type *makeMutable() override final;
MATCH constConv(Type *to) override;
unsigned char deduceWild(Type *t, bool isRef) override final;
void transitive();
void accept(Visitor *v) override { v->visit(this); }
};
class TypeBasic final : public Type
{
public:
const char *dstring;
unsigned flags;
const char *kind() override;
TypeBasic *syntaxCopy() override;
unsigned alignsize() override;
bool isintegral() override;
bool isfloating() override;
bool isreal() override;
bool isimaginary() override;
bool iscomplex() override;
bool isscalar() override;
bool isunsigned() override;
bool isZeroInit(const Loc &loc) override;
// For eliminating dynamic_cast
TypeBasic *isTypeBasic() override;
void accept(Visitor *v) override { v->visit(this); }
};
class TypeVector final : public Type
{
public:
Type *basetype;
static TypeVector *create(Type *basetype);
const char *kind() override;
TypeVector *syntaxCopy() override;
unsigned alignsize() override;
bool isintegral() override;
bool isfloating() override;
bool isscalar() override;
bool isunsigned() override;
bool isBoolean() override;
Expression *defaultInitLiteral(const Loc &loc) override;
TypeBasic *elementType();
bool isZeroInit(const Loc &loc) override;
void accept(Visitor *v) override { v->visit(this); }
};
class TypeArray : public TypeNext
{
public:
void accept(Visitor *v) override { v->visit(this); }
};
// Static array, one with a fixed dimension
class TypeSArray final : public TypeArray
{
public:
Expression *dim;
const char *kind() override;
TypeSArray *syntaxCopy() override;
bool isIncomplete();
unsigned alignsize() override;
bool isString() override;
bool isZeroInit(const Loc &loc) override;
structalign_t alignment() override;
MATCH constConv(Type *to) override;
Expression *defaultInitLiteral(const Loc &loc) override;
bool hasUnsafeBitpatterns() override;
bool hasVoidInitPointers() override;
bool hasInvariant() override;
bool needsDestruction() override;
bool needsCopyOrPostblit() override;
bool needsNested() override;
void accept(Visitor *v) override { v->visit(this); }
};
// Dynamic array, no dimension
class TypeDArray final : public TypeArray
{
public:
const char *kind() override;
TypeDArray *syntaxCopy() override;
unsigned alignsize() override;
bool isString() override;
bool isZeroInit(const Loc &loc) override;
bool isBoolean() override;
void accept(Visitor *v) override { v->visit(this); }
};
class TypeAArray final : public TypeArray
{
public:
Type *index; // key type
Loc loc;
static TypeAArray *create(Type *t, Type *index);
const char *kind() override;
TypeAArray *syntaxCopy() override;
bool isZeroInit(const Loc &loc) override;
bool isBoolean() override;
MATCH constConv(Type *to) override;
void accept(Visitor *v) override { v->visit(this); }
};
class TypePointer final : public TypeNext
{
public:
static TypePointer *create(Type *t);
const char *kind() override;
TypePointer *syntaxCopy() override;
MATCH constConv(Type *to) override;
bool isscalar() override;
bool isZeroInit(const Loc &loc) override;
void accept(Visitor *v) override { v->visit(this); }
};
class TypeReference final : public TypeNext
{
public:
const char *kind() override;
TypeReference *syntaxCopy() override;
bool isZeroInit(const Loc &loc) override;
void accept(Visitor *v) override { v->visit(this); }
};
enum RET
{
RETregs = 1, // returned in registers
RETstack = 2 // returned on stack
};
enum class TRUST : unsigned char
{
default_ = 0,
system = 1, // @system (same as TRUSTdefault)
trusted = 2, // @trusted
safe = 3 // @safe
};
enum TRUSTformat
{
TRUSTformatDefault, // do not emit @system when trust == TRUSTdefault
TRUSTformatSystem // emit @system when trust == TRUSTdefault
};
enum class PURE : unsigned char
{
impure = 0, // not pure at all
fwdref = 1, // it's pure, but not known which level yet
weak = 2, // no mutable globals are read or written
const_ = 3, // parameters are values or const
};
class Parameter final : public ASTNode
{
public:
Loc loc;
StorageClass storageClass;
Type *type;
Identifier *ident;
Expression *defaultArg;
UserAttributeDeclaration *userAttribDecl; // user defined attributes
static Parameter *create(const Loc &loc, StorageClass storageClass, Type *type, Identifier *ident,
Expression *defaultArg, UserAttributeDeclaration *userAttribDecl);
Parameter *syntaxCopy();
Type *isLazyArray();
bool isLazy() const;
bool isReference() const;
// kludge for template.isType()
DYNCAST dyncast() const override { return DYNCAST_PARAMETER; }
void accept(Visitor *v) override { v->visit(this); }
static size_t dim(Parameters *parameters);
static Parameter *getNth(Parameters *parameters, d_size_t nth);
const char *toChars() const override;
bool isCovariant(bool returnByRef, const Parameter *p, bool previewIn) const;
};
struct ParameterList
{
Parameters* parameters;
StorageClass stc;
VarArg varargs;
d_bool hasIdentifierList; // true if C identifier-list style
size_t length();
Parameter *operator[](size_t i) { return Parameter::getNth(parameters, i); }
};
class TypeFunction final : public TypeNext
{
public:
// .next is the return type
ParameterList parameterList; // function parameters
uint16_t bitFields;
LINK linkage; // calling convention
TRUST trust; // level of trust
PURE purity; // PURExxxx
char inuse;
ArgumentList inferenceArguments; // function arguments
static TypeFunction *create(Parameters *parameters, Type *treturn, VarArg varargs, LINK linkage, StorageClass stc = 0);
const char *kind() override;
TypeFunction *syntaxCopy() override;
bool hasLazyParameters();
bool isDstyleVariadic() const;
MATCH constConv(Type *to) override;
bool isnothrow() const;
void isnothrow(bool v);
bool isnogc() const;
void isnogc(bool v);
bool isproperty() const;
void isproperty(bool v);
bool isref() const;
void isref(bool v);
bool isreturn() const;
void isreturn(bool v);
bool isreturnscope() const;
void isreturnscope(bool v);
bool isScopeQual() const;
void isScopeQual(bool v);
bool isreturninferred() const;
void isreturninferred(bool v);
bool isscopeinferred() const;
void isscopeinferred(bool v);
bool islive() const;
void islive(bool v);
bool incomplete() const;
void incomplete(bool v);
bool isInOutParam() const;
void isInOutParam(bool v);
bool isInOutQual() const;
void isInOutQual(bool v);
bool iswild() const;
void accept(Visitor *v) override { v->visit(this); }
};
class TypeDelegate final : public TypeNext
{
public:
// .next is a TypeFunction
static TypeDelegate *create(TypeFunction *t);
const char *kind() override;
TypeDelegate *syntaxCopy() override;
unsigned alignsize() override;
bool isZeroInit(const Loc &loc) override;
bool isBoolean() override;
void accept(Visitor *v) override { v->visit(this); }
};
class TypeTraits final : public Type
{
Loc loc;
/// The expression to resolve as type or symbol.
TraitsExp *exp;
/// Cached type/symbol after semantic analysis.
RootObject *obj;
const char *kind() override;
TypeTraits *syntaxCopy() override;
void accept(Visitor *v) override { v->visit(this); }
};
class TypeMixin final : public Type
{
Loc loc;
Expressions *exps;
RootObject *obj;
const char *kind() override;
TypeMixin *syntaxCopy() override;
void accept(Visitor *v) override { v->visit(this); }
};
class TypeQualified : public Type
{
public:
Loc loc;
// array of Identifier and TypeInstance,
// representing ident.ident!tiargs.ident. ... etc.
Objects idents;
void accept(Visitor *v) override { v->visit(this); }
};
class TypeIdentifier final : public TypeQualified
{
public:
Identifier *ident;
Dsymbol *originalSymbol; // The symbol representing this identifier, before alias resolution
static TypeIdentifier *create(const Loc &loc, Identifier *ident);
const char *kind() override;
TypeIdentifier *syntaxCopy() override;
void accept(Visitor *v) override { v->visit(this); }
};
/* Similar to TypeIdentifier, but with a TemplateInstance as the root
*/
class TypeInstance final : public TypeQualified
{
public:
TemplateInstance *tempinst;
const char *kind() override;
TypeInstance *syntaxCopy() override;
void accept(Visitor *v) override { v->visit(this); }
};
class TypeTypeof final : public TypeQualified
{
public:
Expression *exp;
int inuse;
const char *kind() override;
TypeTypeof *syntaxCopy() override;
void accept(Visitor *v) override { v->visit(this); }
};
class TypeReturn final : public TypeQualified
{
public:
const char *kind() override;
TypeReturn *syntaxCopy() override;
void accept(Visitor *v) override { v->visit(this); }
};
// Whether alias this dependency is recursive or not.
enum AliasThisRec
{
RECno = 0, // no alias this recursion
RECyes = 1, // alias this has recursive dependency
RECfwdref = 2, // not yet known
RECtypeMask = 3,// mask to read no/yes/fwdref
RECtracing = 0x4, // mark in progress of implicitConvTo/deduceWild
RECtracingDT = 0x8 // mark in progress of deduceType
};
class TypeStruct final : public Type
{
public:
StructDeclaration *sym;
AliasThisRec att;
d_bool inuse;
static TypeStruct *create(StructDeclaration *sym);
const char *kind() override;
unsigned alignsize() override;
TypeStruct *syntaxCopy() override;
structalign_t alignment() override;
Expression *defaultInitLiteral(const Loc &loc) override;
bool isZeroInit(const Loc &loc) override;
bool isAssignable() override;
bool isBoolean() override;
bool needsDestruction() override;
bool needsCopyOrPostblit() override;
bool needsNested() override;
bool hasVoidInitPointers() override;
bool hasUnsafeBitpatterns() override;
bool hasInvariant() override;
MATCH constConv(Type *to) override;
unsigned char deduceWild(Type *t, bool isRef) override;
void accept(Visitor *v) override { v->visit(this); }
};
class TypeEnum final : public Type
{
public:
EnumDeclaration *sym;
const char *kind() override;
TypeEnum *syntaxCopy() override;
unsigned alignsize() override;
Type *memType(const Loc &loc);
bool isintegral() override;
bool isfloating() override;
bool isreal() override;
bool isimaginary() override;
bool iscomplex() override;
bool isscalar() override;
bool isunsigned() override;
bool isBoolean() override;
bool isString() override;
bool isAssignable() override;
bool needsDestruction() override;
bool needsCopyOrPostblit() override;
bool needsNested() override;
MATCH constConv(Type *to) override;
bool isZeroInit(const Loc &loc) override;
bool hasVoidInitPointers() override;
bool hasUnsafeBitpatterns() override;
bool hasInvariant() override;
Type *nextOf() override;
void accept(Visitor *v) override { v->visit(this); }
};
class TypeClass final : public Type
{
public:
ClassDeclaration *sym;
AliasThisRec att;
CPPMANGLE cppmangle;
const char *kind() override;
TypeClass *syntaxCopy() override;
ClassDeclaration *isClassHandle() override;
MATCH constConv(Type *to) override;
unsigned char deduceWild(Type *t, bool isRef) override;
bool isZeroInit(const Loc &loc) override;
bool isscope() override;
bool isBoolean() override;
void accept(Visitor *v) override { v->visit(this); }
};
class TypeTuple final : public Type
{
public:
// 'logically immutable' cached global - don't modify (neither pointer nor pointee)!
static TypeTuple *empty;
Parameters *arguments; // types making up the tuple
static TypeTuple *create(Parameters *arguments);
static TypeTuple *create();
static TypeTuple *create(Type *t1);
static TypeTuple *create(Type *t1, Type *t2);
const char *kind() override;
TypeTuple *syntaxCopy() override;
bool equals(const RootObject * const o) const override;
void accept(Visitor *v) override { v->visit(this); }
};
class TypeSlice final : public TypeNext
{
public:
Expression *lwr;
Expression *upr;
const char *kind() override;
TypeSlice *syntaxCopy() override;
void accept(Visitor *v) override { v->visit(this); }
};
class TypeNull final : public Type
{
public:
const char *kind() override;
TypeNull *syntaxCopy() override;
bool isBoolean() override;
void accept(Visitor *v) override { v->visit(this); }
};
class TypeNoreturn final : public Type
{
public:
const char *kind() override;
TypeNoreturn *syntaxCopy() override;
MATCH constConv(Type* to) override;
bool isBoolean() override;
unsigned alignsize() override;
void accept(Visitor *v) override { v->visit(this); }
};
class TypeTag final : public Type
{
public:
TypeTag *syntaxCopy() override;
void accept(Visitor *v) override { v->visit(this); }
};
/**************************************************************/
namespace dmd
{
// If the type is a class or struct, returns the symbol for it, else null.
AggregateDeclaration *isAggregate(Type *t);
bool hasPointers(Type *t);
// return the symbol to which type t resolves
Dsymbol *toDsymbol(Type *t, Scope *sc);
bool equivalent(Type *src, Type *t);
Covariant covariant(Type *, Type *, StorageClass * = nullptr, bool = false);
bool isBaseOf(Type *tthis, Type *t, int *poffset);
Type *trySemantic(Type *type, const Loc &loc, Scope *sc);
Type *pointerTo(Type *type);
Type *referenceTo(Type *type);
Type *merge2(Type *type);
Type *sarrayOf(Type *type, dinteger_t dim);
Type *arrayOf(Type *type);
Type *constOf(Type *type);
Type *immutableOf(Type *type);
Type *mutableOf(Type *type);
Type *sharedOf(Type *type);
Type *sharedConstOf(Type *type);
Type *unSharedOf(Type *type);
Type *wildOf(Type *type);
Type *wildConstOf(Type *type);
Type *sharedWildOf(Type *type);
Type *sharedWildConstOf(Type *type);
Type *unqualify(Type *type, unsigned m);
Type *toHeadMutable(Type *type);
Type *aliasthisOf(Type *type);
Type *castMod(Type *type, MOD mod);
Type *addMod(Type *type, MOD mod);
Type *addStorageClass(Type *type, StorageClass stc);
Type *substWildTo(Type *type, unsigned mod);
uinteger_t size(Type *type);
uinteger_t size(Type *type, const Loc &loc);
MATCH implicitConvTo(Type* from, Type* to);
}