GCC Code Coverage Report


Directory: ../
Coverage: low: ≥ 0% medium: ≥ 75.0% high: ≥ 90.0%
Coverage Exec / Excl / Total
Lines: 100.0% 74 / 6 / 80
Functions: 100.0% 7 / 0 / 7
Branches: 83.3% 55 / 12 / 78

src/symboltablebuilder/TypeQualifiers.cpp
Line Branch Exec Source
1 // Copyright (c) 2021-2026 ChilliBits. All rights reserved.
2
3 #include "TypeQualifiers.h"
4
5 #include <exception/CompilerError.h>
6 #include <symboltablebuilder/TypeChain.h>
7
8 namespace spice::compiler {
9
10 /**
11 * Get default type qualifiers for a given super type
12 *
13 * @param superType Super type
14 * @return Default type qualifiers
15 */
16 15568686 TypeQualifiers TypeQualifiers::of(uint16_t superType) {
17
5/6
✓ Branch 2 → 3 taken 1315070 times.
✓ Branch 2 → 5 taken 3779184 times.
✓ Branch 2 → 7 taken 942678 times.
✓ Branch 2 → 9 taken 31898 times.
✓ Branch 2 → 11 taken 9499856 times.
✗ Branch 2 → 13 not taken.
15568686 switch (superType) {
18 1315070 case TY_DOUBLE: // fall-through
19 case TY_INT: // fall-through
20 case TY_SHORT: // fall-through
21 case TY_LONG:
22 1315070 return {/*const*/ false, /*signed*/ true, /*unsigned*/ false};
23 3779184 case TY_BYTE: // fall-through
24 case TY_CHAR: // fall-through
25 case TY_STRING: // fall-through
26 case TY_BOOL: // fall-through
27 case TY_PTR: // fall-through
28 case TY_REF: // fall-through
29 case TY_ARRAY: // fall-through
30 case TY_STRUCT: // fall-through
31 case TY_INTERFACE: // fall-through
32 case TY_UNION: // fall-through
33 case TY_FUNCTION: // fall-through
34 case TY_PROCEDURE:
35 3779184 return {/*const*/ false, /*signed*/ false, /*unsigned*/ true};
36 942678 case TY_GENERIC:
37 // Generics must be non-signed and non-unsigned at the same time to ensure a proper function matching
38 942678 return {/*const*/ false, /*signed*/ false, /*unsigned*/ false};
39 31898 case TY_ENUM: // fall-through
40 case TY_ALIAS: // fall-through
41 case TY_IMPORT:
42 31898 return {/*const*/ true, /*signed*/ false, /*unsigned*/ true};
43 9499856 case TY_DYN: // fall-through
44 case TY_INVALID: // fall-through
45 case TY_UNRESOLVED:
46 // Return all-false qualifiers to not match anything
47 9499856 return {/*const*/ false, /*signed*/ false, /*unsigned*/ false};
48 default: // GCOV_EXCL_LINE
49 throw CompilerError(UNHANDLED_BRANCH, "Symbol qualifier fallthrough"); // GCOV_EXCL_LINE
50 }
51 }
52
53 /**
54 * Merge two sets of type qualifiers. If possible, prefer the opposite of the default of the super type
55 *
56 * @param other Other type qualifiers object
57 * @return Merged qualifiers object
58 */
59 178750 TypeQualifiers TypeQualifiers::merge(const TypeQualifiers &other) const {
60 178750 TypeQualifiers result;
61
6/8
✓ Branch 2 → 3 taken 178750 times.
✗ Branch 2 → 23 not taken.
✓ Branch 3 → 4 taken 172399 times.
✓ Branch 3 → 7 taken 6351 times.
✓ Branch 4 → 5 taken 172399 times.
✗ Branch 4 → 23 not taken.
✓ Branch 5 → 6 taken 154746 times.
✓ Branch 5 → 7 taken 17653 times.
178750 const bool isGeneric = !getBit(BIT_INDEX_SIGNED) && !getBit(BIT_INDEX_UNSIGNED);
62
2/2
✓ Branch 20 → 9 taken 1251250 times.
✓ Branch 20 → 21 taken 178750 times.
1430000 for (uint8_t i = 0; i <= BIT_INDEX_MAX; i++) {
63
1/2
✓ Branch 9 → 10 taken 1251250 times.
✗ Branch 9 → 23 not taken.
1251250 const bool x = getBit(i);
64
1/2
✓ Branch 10 → 11 taken 1251250 times.
✗ Branch 10 → 23 not taken.
1251250 const bool y = other.getBit(i);
65
66
4/4
✓ Branch 11 → 12 taken 1072500 times.
✓ Branch 11 → 13 taken 178750 times.
✓ Branch 12 → 13 taken 178750 times.
✓ Branch 12 → 18 taken 893750 times.
1251250 if (i == BIT_INDEX_SIGNED || i == BIT_INDEX_UNSIGNED) {
67
3/4
✓ Branch 13 → 14 taken 309492 times.
✓ Branch 13 → 15 taken 48008 times.
✓ Branch 16 → 17 taken 357500 times.
✗ Branch 16 → 23 not taken.
357500 result.setBit(i, isGeneric ? y : x);
68 } else {
69
1/2
✓ Branch 18 → 19 taken 893750 times.
✗ Branch 18 → 23 not taken.
893750 result.setBit(i, x | y);
70 }
71 }
72 178750 return result;
73 }
74
75 /**
76 * Check if two sets of type qualifiers match
77 *
78 * @param other The rhs qualifiers
79 * @param allowConstify Match when the types are the same, but the lhs type is more const restrictive than the rhs type
80 * @return Matching or not
81 */
82 160851 bool TypeQualifiers::match(TypeQualifiers other, bool allowConstify) const {
83 160851 const TypeQualifiers thisQualifiers = *this;
84
85 // If allowConstify is enabled, only allow to match lhs=const and rhs=non-const
86
4/4
✓ Branch 2 → 3 taken 160821 times.
✓ Branch 2 → 5 taken 30 times.
✓ Branch 3 → 4 taken 20090 times.
✓ Branch 3 → 5 taken 140731 times.
160851 if (allowConstify && thisQualifiers.isConst)
87 20090 other.isConst = true;
88
89 // Check if qualifiers are equal
90 160851 return thisQualifiers == other;
91 }
92
93 /**
94 * Erase all qualifiers that are set in the mask. This is used in type matching.
95 *
96 * @param mask Bitmask to erase with
97 */
98 51864 void TypeQualifiers::eraseWithMask(const TypeQualifiers &mask) {
99 // Zero out all bits that are set in the mask
100
2/2
✓ Branch 11 → 3 taken 363048 times.
✓ Branch 11 → 12 taken 51864 times.
414912 for (uint8_t i = 0; i <= BIT_INDEX_MAX; i++) {
101
2/2
✓ Branch 4 → 5 taken 82241 times.
✓ Branch 4 → 10 taken 280807 times.
363048 if (mask.getBit(i)) {
102 // Zero out the bit
103 82241 setBit(i, false);
104
105 // If we set the signed/unsigned bit to zero, we need to set the other to one
106
2/2
✓ Branch 6 → 7 taken 13578 times.
✓ Branch 6 → 8 taken 68663 times.
82241 if (i == BIT_INDEX_SIGNED) {
107 13578 setBit(BIT_INDEX_UNSIGNED, true);
108
2/2
✓ Branch 8 → 9 taken 35197 times.
✓ Branch 8 → 10 taken 33466 times.
68663 } else if (i == BIT_INDEX_UNSIGNED) {
109 35197 setBit(BIT_INDEX_SIGNED, true);
110 }
111 }
112 }
113 51864 }
114
115 161786 bool operator==(const TypeQualifiers &lhs, const TypeQualifiers &rhs) {
116 161786 const bool isConst = lhs.isConst == rhs.isConst;
117 161786 const bool isSigned = lhs.isSigned == rhs.isSigned;
118 161786 const bool isUnsigned = lhs.isUnsigned == rhs.isUnsigned;
119 161786 const bool isHeap = lhs.isHeap == rhs.isHeap;
120
6/8
✓ Branch 2 → 3 taken 161682 times.
✓ Branch 2 → 7 taken 104 times.
✓ Branch 3 → 4 taken 161682 times.
✗ Branch 3 → 7 not taken.
✓ Branch 4 → 5 taken 161682 times.
✗ Branch 4 → 7 not taken.
✓ Branch 5 → 6 taken 160749 times.
✓ Branch 5 → 7 taken 933 times.
161786 return isConst && isSigned && isUnsigned && isHeap;
121 }
122
123 3216697 bool TypeQualifiers::getBit(uint8_t index) const {
124
7/8
✓ Branch 2 → 3 taken 409364 times.
✓ Branch 2 → 4 taken 588114 times.
✓ Branch 2 → 5 taken 581763 times.
✓ Branch 2 → 6 taken 409364 times.
✓ Branch 2 → 7 taken 409364 times.
✓ Branch 2 → 8 taken 409364 times.
✓ Branch 2 → 9 taken 409364 times.
✗ Branch 2 → 10 not taken.
3216697 switch (index) {
125 409364 case BIT_INDEX_CONST:
126 409364 return isConst;
127 588114 case BIT_INDEX_SIGNED:
128 588114 return isSigned;
129 581763 case BIT_INDEX_UNSIGNED:
130 581763 return isUnsigned;
131 409364 case BIT_INDEX_HEAP:
132 409364 return isHeap;
133 409364 case BIT_INDEX_PUBLIC:
134 409364 return isPublic;
135 409364 case BIT_INDEX_INLINE:
136 409364 return isInline;
137 409364 case BIT_INDEX_COMPOSITION:
138 409364 return isComposition;
139 default: // GCOV_EXCL_LINE
140 throw CompilerError(UNHANDLED_BRANCH, "Bit index fallthrough"); // GCOV_EXCL_LINE
141 }
142 }
143
144 1382266 bool TypeQualifiers::setBit(uint8_t index, bool value) {
145
7/8
✓ Branch 2 → 3 taken 186842 times.
✓ Branch 2 → 4 taken 227525 times.
✓ Branch 2 → 5 taken 227525 times.
✓ Branch 2 → 6 taken 180010 times.
✓ Branch 2 → 7 taken 202864 times.
✓ Branch 2 → 8 taken 178750 times.
✓ Branch 2 → 9 taken 178750 times.
✗ Branch 2 → 10 not taken.
1382266 switch (index) {
146 186842 case BIT_INDEX_CONST:
147 186842 return isConst = value;
148 227525 case BIT_INDEX_SIGNED:
149 227525 return isSigned = value;
150 227525 case BIT_INDEX_UNSIGNED:
151 227525 return isUnsigned = value;
152 180010 case BIT_INDEX_HEAP:
153 180010 return isHeap = value;
154 202864 case BIT_INDEX_PUBLIC:
155 202864 return isPublic = value;
156 178750 case BIT_INDEX_INLINE:
157 178750 return isInline = value;
158 178750 case BIT_INDEX_COMPOSITION:
159 178750 return isComposition = value;
160 default: // GCOV_EXCL_LINE
161 throw CompilerError(UNHANDLED_BRANCH, "Bit index fallthrough"); // GCOV_EXCL_LINE
162 }
163 }
164
165 } // namespace spice::compiler
166