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
|
/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: http://www.qt-project.org/
**
**
** GNU Lesser General Public License Usage
**
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this file.
** Please review the following information to ensure the GNU Lesser General
** Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** Other Usage
**
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
**
**************************************************************************/
#ifndef PARSETREENODES_H
#define PARSETREENODES_H
#include "globalparsestate.h"
#include <QByteArray>
#include <QList>
#include <QSet>
namespace Debugger {
namespace Internal {
class ParseTreeNode
{
public:
virtual ~ParseTreeNode();
virtual QByteArray toByteArray() const = 0;
int childCount() const { return m_children.count(); }
void addChild(ParseTreeNode *childNode) { m_children << childNode; }
ParseTreeNode *childAt(int i, const QString &func, const QString &file, int line) const;
QByteArray pasteAllChildren() const;
template <typename T> static T *parseRule(GlobalParseState *parseState)
{
T * const node = new T;
node->m_parseState = parseState;
parseState->pushToStack(node);
parseState->stackTop()->parse();
return node;
}
protected:
GlobalParseState *parseState() const { return m_parseState; }
void clearChildList() { m_children.clear(); }
private:
virtual void parse() = 0;
QList<ParseTreeNode *> m_children; // Convention: Children are inserted in parse order.
GlobalParseState *m_parseState;
};
class ArrayTypeNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
private:
void parse();
};
class BareFunctionTypeNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
bool hasReturnType() const { return m_hasReturnType; }
QByteArray toByteArray() const;
private:
void parse();
bool m_hasReturnType;
};
class BuiltinTypeNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
enum Type {
VoidType, WCharType, BoolType,
PlainCharType, SignedCharType, UnsignedCharType, SignedShortType, UnsignedShortType,
SignedIntType, UnsignedIntType, SignedLongType, UnsignedLongType,
SignedLongLongType, UnsignedLongLongType, SignedInt128Type, UnsignedInt128Type,
FloatType, DoubleType, LongDoubleType, Float128Type, EllipsisType,
DecimalFloatingType64, DecimalFloatingType128, DecimalFloatingType32,
DecimalFloatingType16, Char32Type, Char16Type, AutoType, NullPtrType, VendorType
};
Type type() const { return m_type; }
private:
void parse();
Type m_type;
};
class CallOffsetRule
{
public:
static bool mangledRepresentationStartsWith(char c);
static void parse(GlobalParseState *parseState, ParseTreeNode *parentNode);
private:
CallOffsetRule();
};
class NvOffsetNode : public ParseTreeNode
{
public:
QByteArray toByteArray() const { return QByteArray(); } // TODO: How to encode this?
private:
void parse();
};
class VOffsetNode : public ParseTreeNode
{
public:
QByteArray toByteArray() const { return QByteArray(); } // TODO: How to encode this?
private:
void parse();
};
class ClassEnumTypeRule
{
public:
static bool mangledRepresentationStartsWith(char c);
static void parse(GlobalParseState *parseState, ParseTreeNode *parentNode);
private:
ClassEnumTypeRule();
};
class DiscriminatorRule
{
public:
static bool mangledRepresentationStartsWith(char c);
static void parse(GlobalParseState *parseState, ParseTreeNode *parentNode);
private:
DiscriminatorRule();
};
class CtorDtorNameNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
private:
void parse();
bool m_isDestructor;
QByteArray m_representation;
};
class CvQualifiersNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
bool hasQualifiers() const { return m_hasConst || m_hasVolatile; }
QByteArray toByteArray() const;
private:
void parse();
bool m_hasVolatile;
bool m_hasConst;
};
class EncodingNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
private:
void parse();
};
class ExpressionNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
private:
void parse();
enum Type {
ConversionType, SizeofType, AlignofType, OperatorType, ParameterPackSizeType,
NewType, ArrayNewType, DeleteType, ArrayDeleteType, PrefixIncrementType,
PrefixDecrementType, TypeIdTypeType, TypeIdExpressionType, DynamicCastType,
StaticCastType, ConstCastType, ReinterpretCastType, MemberAccessType,
PointerMemberAccessType, MemberDerefType, PackExpansionType, ThrowType,
RethrowType, OtherType
} m_type;
bool m_globalNamespace;
};
class OperatorNameNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
enum Type {
NewType, ArrayNewType, DeleteType, ArrayDeleteType, UnaryPlusType, UnaryMinusType,
UnaryAmpersandType, UnaryStarType, BitwiseNotType, BinaryPlusType, BinaryMinusType,
MultType, DivType, ModuloType, BitwiseAndType, BitwiseOrType, XorType, AssignType,
IncrementAndAssignType, DecrementAndAssignType, MultAndAssignType, DivAndAssignType,
ModuloAndAssignType, BitwiseAndAndAssignType, BitwiseOrAndAssignType, XorAndAssignType,
LeftShiftType, RightShiftType, LeftShiftAndAssignType, RightShiftAndAssignType, EqualsType,
NotEqualsType, LessType, GreaterType, LessEqualType, GreaterEqualType, LogicalNotType,
LogicalAndType, LogicalOrType, IncrementType, DecrementType, CommaType, ArrowStarType,
ArrowType, CallType, IndexType, TernaryType, SizeofTypeType, SizeofExprType,
AlignofTypeType, AlignofExprType, CastType, VendorType
};
Type type() const { return m_type; }
QByteArray toByteArray() const;
private:
void parse();
Type m_type;
};
class ExprPrimaryNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
private:
void parse();
QByteArray m_suffix;
bool m_isNullPtr;
};
class FunctionTypeNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
bool isExternC() const { return m_isExternC; }
QByteArray toByteArray() const;
private:
void parse();
bool m_isExternC;
};
class LocalNameNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
bool isTemplate() const;
bool isConstructorOrDestructorOrConversionOperator() const;
const CvQualifiersNode *cvQualifiers() const;
private:
void parse();
bool m_isStringLiteral;
bool m_isDefaultArg;
};
class MangledNameRule
{
public:
static bool mangledRepresentationStartsWith(char c);
static void parse(GlobalParseState *parseState, ParseTreeNode *parentNode);
private:
MangledNameRule();
};
class NumberNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
private:
void parse();
bool m_isNegative;
};
class SourceNameNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const { return m_name; }
private:
void parse();
QByteArray m_name;
};
class UnqualifiedNameNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
bool isConstructorOrDestructorOrConversionOperator() const;
QByteArray toByteArray() const;
private:
void parse();
};
class UnscopedNameNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
bool isConstructorOrDestructorOrConversionOperator() const;
QByteArray toByteArray() const;
private:
void parse();
bool m_inStdNamespace;
};
class NestedNameNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
bool isTemplate() const;
bool isConstructorOrDestructorOrConversionOperator() const;
const CvQualifiersNode *cvQualifiers() const;
QByteArray toByteArray() const;
private:
void parse();
};
class SubstitutionNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
private:
void parse();
enum Type {
ActualSubstitutionType, StdType, StdAllocType, StdBasicStringType, FullStdBasicStringType,
StdBasicIStreamType, StdBasicOStreamType, StdBasicIoStreamType
} m_type;
QByteArray m_substValue;
};
class PointerToMemberTypeNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
private:
void parse();
};
class TemplateParamNode : public ParseTreeNode
{
public:
~TemplateParamNode();
static bool mangledRepresentationStartsWith(char c);
int index() const { return m_index; }
QByteArray toByteArray() const;
private:
void parse();
int m_index;
};
class TemplateArgsNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
private:
void parse();
};
class SpecialNameNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
private:
void parse();
enum Type {
VirtualTableType, VttStructType, TypeInfoType, TypeInfoNameType, GuardVarType,
SingleCallOffsetType, DoubleCallOffsetType
} m_type;
};
template<int base> class NonNegativeNumberNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
quint64 number() const { return m_number; }
QByteArray toByteArray() const;
private:
void parse();
quint64 m_number;
};
class NameNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
bool isTemplate() const;
bool isConstructorOrDestructorOrConversionOperator() const;
const CvQualifiersNode *cvQualifiers() const;
QByteArray toByteArray() const;
private:
void parse();
};
class TemplateArgNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
private:
void parse();
bool m_isTemplateArgumentPack;
};
class Prefix2Node : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
bool isTemplate() const;
bool isConstructorOrDestructorOrConversionOperator() const;
QByteArray toByteArray() const;
private:
void parse();
};
class PrefixNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
bool isTemplate() const;
bool isConstructorOrDestructorOrConversionOperator() const;
QByteArray toByteArray() const;
private:
void parse();
};
class TypeNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
enum Type {
QualifiedType, PointerType, ReferenceType, RValueType, VendorType, PackExpansionType,
OtherType
};
Type type() const { return m_type; }
QByteArray toByteArray() const;
private:
void parse();
QByteArray toByteArrayQualPointerRef(const TypeNode *typeNode,
const QByteArray &qualPtrRef) const;
QByteArray qualPtrRefListToByteArray(const QList<const ParseTreeNode *> &nodeList) const;
Type m_type;
};
class FloatValueNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
private:
void parse();
double m_value;
};
class LambdaSigNode : public ParseTreeNode
{
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
private:
void parse();
};
class ClosureTypeNameNode : public ParseTreeNode
{
QByteArray toByteArray() const;
private:
void parse();
};
class UnnamedTypeNameNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
private:
void parse();
};
class DeclTypeNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
private:
void parse();
};
class UnresolvedTypeRule
{
public:
static bool mangledRepresentationStartsWith(char c);
static void parse(GlobalParseState *parseState, ParseTreeNode *parentNode);
private:
UnresolvedTypeRule();
};
class SimpleIdNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
private:
void parse();
};
class DestructorNameNode : public ParseTreeNode
{
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
private:
void parse();
};
class UnresolvedQualifierLevelRule
{
public:
static bool mangledRepresentationStartsWith(char c);
static void parse(GlobalParseState *parseState, ParseTreeNode *parentNode);
private:
UnresolvedQualifierLevelRule();
};
class BaseUnresolvedNameNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
private:
void parse();
bool m_isOperator;
};
class InitializerNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
private:
void parse();
};
class UnresolvedNameNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
private:
void parse();
bool m_globalNamespace;
};
class FunctionParamNode : public ParseTreeNode
{
public:
static bool mangledRepresentationStartsWith(char c);
QByteArray toByteArray() const;
private:
void parse();
};
} // namespace Internal
} // namespace Debugger
#endif // PARSETREENODES_H
|