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 15417357 TypeQualifiers TypeQualifiers::of(uint16_t superType) {
17
5/6
✓ Branch 2 → 3 taken 1305056 times.
✓ Branch 2 → 5 taken 3749075 times.
✓ Branch 2 → 7 taken 936052 times.
✓ Branch 2 → 9 taken 31692 times.
✓ Branch 2 → 11 taken 9395482 times.
✗ Branch 2 → 13 not taken.
15417357 switch (superType) {
18 1305056 case TY_DOUBLE: // fall-through
19 case TY_INT: // fall-through
20 case TY_SHORT: // fall-through
21 case TY_LONG:
22 1305056 return {/*const*/ false, /*signed*/ true, /*unsigned*/ false};
23 3749075 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 3749075 return {/*const*/ false, /*signed*/ false, /*unsigned*/ true};
36 936052 case TY_GENERIC:
37 // Generics must be non-signed and non-unsigned at the same time to ensure a proper function matching
38 936052 return {/*const*/ false, /*signed*/ false, /*unsigned*/ false};
39 31692 case TY_ENUM: // fall-through
40 case TY_ALIAS: // fall-through
41 case TY_IMPORT:
42 31692 return {/*const*/ true, /*signed*/ false, /*unsigned*/ true};
43 9395482 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 9395482 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 177440 TypeQualifiers TypeQualifiers::merge(const TypeQualifiers &other) const {
60 177440 TypeQualifiers result;
61
6/8
✓ Branch 2 → 3 taken 177440 times.
✗ Branch 2 → 23 not taken.
✓ Branch 3 → 4 taken 171089 times.
✓ Branch 3 → 7 taken 6351 times.
✓ Branch 4 → 5 taken 171089 times.
✗ Branch 4 → 23 not taken.
✓ Branch 5 → 6 taken 153624 times.
✓ Branch 5 → 7 taken 17465 times.
177440 const bool isGeneric = !getBit(BIT_INDEX_SIGNED) && !getBit(BIT_INDEX_UNSIGNED);
62
2/2
✓ Branch 20 → 9 taken 1242080 times.
✓ Branch 20 → 21 taken 177440 times.
1419520 for (uint8_t i = 0; i <= BIT_INDEX_MAX; i++) {
63
1/2
✓ Branch 9 → 10 taken 1242080 times.
✗ Branch 9 → 23 not taken.
1242080 const bool x = getBit(i);
64
1/2
✓ Branch 10 → 11 taken 1242080 times.
✗ Branch 10 → 23 not taken.
1242080 const bool y = other.getBit(i);
65
66
4/4
✓ Branch 11 → 12 taken 1064640 times.
✓ Branch 11 → 13 taken 177440 times.
✓ Branch 12 → 13 taken 177440 times.
✓ Branch 12 → 18 taken 887200 times.
1242080 if (i == BIT_INDEX_SIGNED || i == BIT_INDEX_UNSIGNED) {
67
3/4
✓ Branch 13 → 14 taken 307248 times.
✓ Branch 13 → 15 taken 47632 times.
✓ Branch 16 → 17 taken 354880 times.
✗ Branch 16 → 23 not taken.
354880 result.setBit(i, isGeneric ? y : x);
68 } else {
69
1/2
✓ Branch 18 → 19 taken 887200 times.
✗ Branch 18 → 23 not taken.
887200 result.setBit(i, x | y);
70 }
71 }
72 177440 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 159833 bool TypeQualifiers::match(TypeQualifiers other, bool allowConstify) const {
83 159833 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 159803 times.
✓ Branch 2 → 5 taken 30 times.
✓ Branch 3 → 4 taken 20000 times.
✓ Branch 3 → 5 taken 139803 times.
159833 if (allowConstify && thisQualifiers.isConst)
87 20000 other.isConst = true;
88
89 // Check if qualifiers are equal
90 159833 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 51460 void TypeQualifiers::eraseWithMask(const TypeQualifiers &mask) {
99 // Zero out all bits that are set in the mask
100
2/2
✓ Branch 11 → 3 taken 360220 times.
✓ Branch 11 → 12 taken 51460 times.
411680 for (uint8_t i = 0; i <= BIT_INDEX_MAX; i++) {
101
2/2
✓ Branch 4 → 5 taken 81493 times.
✓ Branch 4 → 10 taken 278727 times.
360220 if (mask.getBit(i)) {
102 // Zero out the bit
103 81493 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 13538 times.
✓ Branch 6 → 8 taken 67955 times.
81493 if (i == BIT_INDEX_SIGNED) {
107 13538 setBit(BIT_INDEX_UNSIGNED, true);
108
2/2
✓ Branch 8 → 9 taken 34865 times.
✓ Branch 8 → 10 taken 33090 times.
67955 } else if (i == BIT_INDEX_UNSIGNED) {
109 34865 setBit(BIT_INDEX_SIGNED, true);
110 }
111 }
112 }
113 51460 }
114
115 160768 bool operator==(const TypeQualifiers &lhs, const TypeQualifiers &rhs) {
116 160768 const bool isConst = lhs.isConst == rhs.isConst;
117 160768 const bool isSigned = lhs.isSigned == rhs.isSigned;
118 160768 const bool isUnsigned = lhs.isUnsigned == rhs.isUnsigned;
119 160768 const bool isHeap = lhs.isHeap == rhs.isHeap;
120
6/8
✓ Branch 2 → 3 taken 160664 times.
✓ Branch 2 → 7 taken 104 times.
✓ Branch 3 → 4 taken 160664 times.
✗ Branch 3 → 7 not taken.
✓ Branch 4 → 5 taken 160664 times.
✗ Branch 4 → 7 not taken.
✓ Branch 5 → 6 taken 159731 times.
✓ Branch 5 → 7 taken 933 times.
160768 return isConst && isSigned && isUnsigned && isHeap;
121 }
122
123 3192909 bool TypeQualifiers::getBit(uint8_t index) const {
124
7/8
✓ Branch 2 → 3 taken 406340 times.
✓ Branch 2 → 4 taken 583780 times.
✓ Branch 2 → 5 taken 577429 times.
✓ Branch 2 → 6 taken 406340 times.
✓ Branch 2 → 7 taken 406340 times.
✓ Branch 2 → 8 taken 406340 times.
✓ Branch 2 → 9 taken 406340 times.
✗ Branch 2 → 10 not taken.
3192909 switch (index) {
125 406340 case BIT_INDEX_CONST:
126 406340 return isConst;
127 583780 case BIT_INDEX_SIGNED:
128 583780 return isSigned;
129 577429 case BIT_INDEX_UNSIGNED:
130 577429 return isUnsigned;
131 406340 case BIT_INDEX_HEAP:
132 406340 return isHeap;
133 406340 case BIT_INDEX_PUBLIC:
134 406340 return isPublic;
135 406340 case BIT_INDEX_INLINE:
136 406340 return isInline;
137 406340 case BIT_INDEX_COMPOSITION:
138 406340 return isComposition;
139 default: // GCOV_EXCL_LINE
140 throw CompilerError(UNHANDLED_BRANCH, "Bit index fallthrough"); // GCOV_EXCL_LINE
141 }
142 }
143
144 1371976 bool TypeQualifiers::setBit(uint8_t index, bool value) {
145
7/8
✓ Branch 2 → 3 taken 185422 times.
✓ Branch 2 → 4 taken 225843 times.
✓ Branch 2 → 5 taken 225843 times.
✓ Branch 2 → 6 taken 178680 times.
✓ Branch 2 → 7 taken 201308 times.
✓ Branch 2 → 8 taken 177440 times.
✓ Branch 2 → 9 taken 177440 times.
✗ Branch 2 → 10 not taken.
1371976 switch (index) {
146 185422 case BIT_INDEX_CONST:
147 185422 return isConst = value;
148 225843 case BIT_INDEX_SIGNED:
149 225843 return isSigned = value;
150 225843 case BIT_INDEX_UNSIGNED:
151 225843 return isUnsigned = value;
152 178680 case BIT_INDEX_HEAP:
153 178680 return isHeap = value;
154 201308 case BIT_INDEX_PUBLIC:
155 201308 return isPublic = value;
156 177440 case BIT_INDEX_INLINE:
157 177440 return isInline = value;
158 177440 case BIT_INDEX_COMPOSITION:
159 177440 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