GCC Code Coverage Report


Directory: ../
Coverage: low: ≥ 0% medium: ≥ 75.0% high: ≥ 90.0%
Coverage Exec / Excl / Total
Lines: 94.4% 17 / 0 / 18
Functions: 100.0% 2 / 0 / 2
Branches: 80.0% 16 / 0 / 20

src/model/GenericType.cpp
Line Branch Exec Source
1 // Copyright (c) 2021-2026 ChilliBits. All rights reserved.
2
3 #include "GenericType.h"
4
5 namespace spice::compiler {
6
7 /**
8 * Checks if the given symbol qualType matches all conditions to get a manifestation of the current generic qualType
9 *
10 * @param requestedType Qualified qualType to be checked
11 * @param substantiation Concrete substantiation of the generic type
12 * @param ignoreArraySize Ignore the array size for qualType comparison
13 * @param ignoreQualifiers Ignore the type qualifiers for qualType comparison
14 * @return True or false
15 */
16 29938 bool GenericType::checkConditionsOf(const QualType &requestedType, QualType &substantiation, bool ignoreArraySize,
17 bool ignoreQualifiers) const {
18 29938 return checkTypeConditionOf(requestedType, substantiation, ignoreArraySize, ignoreQualifiers);
19 }
20
21 /**
22 * Checks if the given qualType matches all qualType conditions to get a manifestation of the current generic qualType
23 *
24 * @param requestedType Qualified type to be checked
25 * @param substantiation Concrete substantiation of the generic type
26 * @param ignoreArraySize Ignore the array size for qualType comparison
27 * @param ignoreQualifiers Ignore the type qualifiers for qualType comparison
28 * @return True or false
29 */
30 29938 bool GenericType::checkTypeConditionOf(const QualType &requestedType, QualType &substantiation, bool ignoreArraySize,
31 bool ignoreQualifiers) const {
32 29938 substantiation = requestedType;
33 // Succeed if there are no type conditions
34
1/2
✗ Branch 3 → 4 not taken.
✓ Branch 3 → 5 taken 29938 times.
29938 if (typeConditions.empty())
35 return true;
36 // Succeed if the given qual type is generic and matches the current one
37
6/6
✓ Branch 6 → 7 taken 2099 times.
✓ Branch 6 → 10 taken 27839 times.
✓ Branch 8 → 9 taken 1240 times.
✓ Branch 8 → 10 taken 859 times.
✓ Branch 11 → 12 taken 1240 times.
✓ Branch 11 → 13 taken 28698 times.
29938 if (requestedType.hasAnyGenericParts() && requestedType == *this)
38 1240 return true;
39 // Check type conditions
40
2/2
✓ Branch 34 → 15 taken 38518 times.
✓ Branch 34 → 35 taken 6683 times.
73899 for (const QualType &typeCondition : typeConditions) {
41 // If we have a dyn type condition, the conditions are fulfilled immediately
42
3/4
✓ Branch 17 → 18 taken 38518 times.
✗ Branch 17 → 37 not taken.
✓ Branch 18 → 19 taken 18702 times.
✓ Branch 18 → 20 taken 19816 times.
38518 if (typeCondition.is(TY_DYN))
43 22015 return true;
44 // In situations like this we need to unwrap: requestedType = const int&, typeCondition = int
45 19816 QualType typeConditionCopy = typeCondition;
46 19816 QualType requestedTypeCopy = requestedType;
47
1/2
✓ Branch 20 → 21 taken 19816 times.
✗ Branch 20 → 37 not taken.
19816 unwrapBothWithRefWrappers(typeConditionCopy, requestedTypeCopy);
48
3/4
✓ Branch 21 → 22 taken 19816 times.
✗ Branch 21 → 37 not taken.
✓ Branch 22 → 23 taken 3313 times.
✓ Branch 22 → 24 taken 16503 times.
19816 if (typeConditionCopy.matches(requestedTypeCopy, ignoreArraySize, ignoreQualifiers, ignoreQualifiers)) {
49 3313 substantiation = typeCondition;
50 3313 return true;
51 }
52 }
53 6683 return false;
54 }
55
56 } // namespace spice::compiler
57