GCC Code Coverage Report


Directory: ../
Coverage: low: ≥ 0% medium: ≥ 75.0% high: ≥ 90.0%
Coverage Exec / Excl / Total
Lines: 96.0% 359 / 0 / 374
Functions: 100.0% 33 / 0 / 33
Branches: 64.7% 494 / 0 / 764

src/typechecker/FunctionManager.cpp
Line Branch Exec Source
1 // Copyright (c) 2021-2026 ChilliBits. All rights reserved.
2
3 #include "FunctionManager.h"
4
5 #include <algorithm>
6 #include <limits>
7
8 #include <ast/ASTNodes.h>
9 #include <exception/SemanticError.h>
10 #include <model/GenericType.h>
11 #include <symboltablebuilder/Scope.h>
12 #include <symboltablebuilder/SymbolTableBuilder.h>
13 #include <typechecker/TypeChecker.h>
14 #include <typechecker/TypeMatcher.h>
15 #include <util/CodeLoc.h>
16 #include <util/Concurrency.h>
17 #include <util/CustomHashFunctions.h>
18
19 namespace spice::compiler {
20
21 // Static member initialization
22 std::unordered_map<uint64_t, Function *> FunctionManager::lookupCache = {};
23 size_t FunctionManager::lookupCacheHits = 0;
24 size_t FunctionManager::lookupCacheMisses = 0;
25
26 101328 Function *FunctionManager::insert(Scope *insertScope, const Function &baseFunction, std::vector<Function *> *nodeFunctionList) {
27 // Open a new manifestation list for the function definition
28
3/6
✓ Branch 2 → 3 taken 101328 times.
✗ Branch 2 → 49 not taken.
✓ Branch 3 → 4 taken 101328 times.
✗ Branch 3 → 46 not taken.
✓ Branch 4 → 5 taken 101328 times.
✗ Branch 4 → 44 not taken.
101328 const std::string fctId = baseFunction.name + ":" + baseFunction.declNode->codeLoc.toPrettyLineAndColumn();
29
1/2
✓ Branch 8 → 9 taken 101328 times.
✗ Branch 8 → 50 not taken.
101328 insertScope->functions.emplace(fctId, FunctionManifestationList());
30
31 // Collect substantiations
32 101328 std::vector<Function> manifestations;
33
1/2
✓ Branch 10 → 11 taken 101328 times.
✗ Branch 10 → 54 not taken.
101328 substantiateOptionalParams(baseFunction, manifestations);
34
1/2
✗ Branch 12 → 13 not taken.
✓ Branch 12 → 14 taken 101328 times.
101328 assert(!manifestations.empty());
35
36 // Save substantiations in declaration node
37 101328 Function *manifestationPtr = nullptr;
38
2/2
✓ Branch 32 → 16 taken 106478 times.
✓ Branch 32 → 33 taken 101324 times.
309130 for (const Function &manifestation : manifestations) {
39
2/2
✓ Branch 18 → 19 taken 106474 times.
✓ Branch 18 → 53 taken 4 times.
106478 manifestationPtr = insertSubstantiation(insertScope, manifestation, baseFunction.declNode);
40
1/2
✗ Branch 19 → 20 not taken.
✓ Branch 19 → 21 taken 106474 times.
106474 assert(manifestationPtr != nullptr);
41
1/2
✓ Branch 21 → 22 taken 106474 times.
✗ Branch 21 → 23 not taken.
106474 if (nodeFunctionList)
42
1/2
✓ Branch 22 → 23 taken 106474 times.
✗ Branch 22 → 53 not taken.
106474 nodeFunctionList->push_back(manifestationPtr);
43 }
44
45
1/2
✗ Branch 33 → 34 not taken.
✓ Branch 33 → 35 taken 101324 times.
101324 if (!nodeFunctionList)
46 return manifestationPtr;
47
48
1/2
✗ Branch 36 → 37 not taken.
✓ Branch 36 → 38 taken 101324 times.
101324 assert(!nodeFunctionList->empty());
49 101324 return nodeFunctionList->front();
50 101332 }
51
52 /**
53 * Create definite functions from ambiguous ones, in regard to optional arguments.
54 *
55 * Example:
56 * int testFunc(string, int?, double?)
57 * gets
58 * int testFunc(string)
59 * int testFunc(string, int)
60 * int testFunc(string, int, double)
61 *
62 * This method also accepts functions, that are already definite, but does nothing to them.
63 *
64 * @param baseFunction Ambiguous base function
65 * @param manifestations Vector to store the definite manifestations
66 * @return True, if there were optional arguments found
67 */
68 101328 void FunctionManager::substantiateOptionalParams(const Function &baseFunction, std::vector<Function> &manifestations) {
69 // Handle the case of no parameters -> simply return the base function
70
2/2
✓ Branch 3 → 4 taken 27611 times.
✓ Branch 3 → 6 taken 73717 times.
101328 if (baseFunction.paramList.empty()) {
71
1/2
✓ Branch 4 → 5 taken 27611 times.
✗ Branch 4 → 47 not taken.
27611 manifestations.push_back(baseFunction);
72 27611 return;
73 }
74
75 73717 ParamList currentFunctionParamTypes;
76
1/2
✓ Branch 7 → 8 taken 73717 times.
✗ Branch 7 → 45 not taken.
73717 currentFunctionParamTypes.reserve(baseFunction.paramList.size());
77 73717 bool metFirstOptionalParam = false;
78
1/2
✓ Branch 8 → 9 taken 73717 times.
✗ Branch 8 → 45 not taken.
73717 Function manifestation = baseFunction;
79
80 // Loop over all parameters
81
2/2
✓ Branch 32 → 11 taken 115406 times.
✓ Branch 32 → 33 taken 73717 times.
262840 for (const auto &[qualType, isOptional] : baseFunction.paramList) {
82 // Check if we have a mandatory parameter
83
2/2
✓ Branch 13 → 14 taken 110256 times.
✓ Branch 13 → 16 taken 5150 times.
115406 if (!isOptional) {
84
1/2
✓ Branch 14 → 15 taken 110256 times.
✗ Branch 14 → 40 not taken.
110256 currentFunctionParamTypes.push_back({qualType, /*optional=*/false});
85 110256 continue;
86 }
87
88 // Add substantiation without the optional parameter
89
2/2
✓ Branch 16 → 17 taken 4907 times.
✓ Branch 16 → 20 taken 243 times.
5150 if (!metFirstOptionalParam) {
90
1/2
✓ Branch 17 → 18 taken 4907 times.
✗ Branch 17 → 42 not taken.
4907 manifestation.paramList = currentFunctionParamTypes;
91
1/2
✓ Branch 18 → 19 taken 4907 times.
✗ Branch 18 → 42 not taken.
4907 manifestations.push_back(manifestation);
92 // Now we cannot accept mandatory parameters anymore
93 4907 metFirstOptionalParam = true;
94 }
95
96 // Add substantiation with the optional parameter
97
1/2
✓ Branch 20 → 21 taken 5150 times.
✗ Branch 20 → 41 not taken.
5150 currentFunctionParamTypes.push_back({qualType, /*optional=*/false});
98
1/2
✓ Branch 21 → 22 taken 5150 times.
✗ Branch 21 → 42 not taken.
5150 manifestation.paramList = currentFunctionParamTypes;
99
1/2
✓ Branch 22 → 23 taken 5150 times.
✗ Branch 22 → 42 not taken.
5150 manifestations.push_back(manifestation);
100 }
101
102 // Ensure at least once manifestation
103
2/2
✓ Branch 34 → 35 taken 68810 times.
✓ Branch 34 → 36 taken 4907 times.
73717 if (manifestations.empty())
104
1/2
✓ Branch 35 → 36 taken 68810 times.
✗ Branch 35 → 43 not taken.
68810 manifestations.push_back(baseFunction);
105 73717 }
106
107 464 Function FunctionManager::createMainFunction(SymbolTableEntry *entry, const QualTypeList &paramTypes, ASTNode *declNode) {
108 464 ParamList paramList;
109
2/2
✓ Branch 16 → 4 taken 16 times.
✓ Branch 16 → 17 taken 464 times.
944 for (const QualType &paramType : paramTypes)
110
1/2
✓ Branch 6 → 7 taken 16 times.
✗ Branch 6 → 33 not taken.
16 paramList.push_back({paramType, false});
111
5/10
✓ Branch 19 → 20 taken 464 times.
✗ Branch 19 → 45 not taken.
✓ Branch 20 → 21 taken 464 times.
✗ Branch 20 → 42 not taken.
✓ Branch 21 → 22 taken 464 times.
✗ Branch 21 → 41 not taken.
✓ Branch 22 → 23 taken 464 times.
✗ Branch 22 → 40 not taken.
✓ Branch 24 → 25 taken 464 times.
✗ Branch 24 → 35 not taken.
1392 return {MAIN_FUNCTION_NAME, entry, QualType(TY_DYN), QualType(TY_INT), paramList, {}, declNode};
112 464 }
113
114 /**
115 * Search all manifestation lists of the given scope for a function with the given signature
116 *
117 * @param scope Scope to search in
118 * @param signature Signature to search for
119 * @return Found function or nullptr
120 */
121 30044 Function *FunctionManager::findManifestationBySignature(Scope *scope, const std::string &signature) {
122
5/8
✓ Branch 2 → 3 taken 30044 times.
✗ Branch 2 → 19 not taken.
✓ Branch 3 → 4 taken 30044 times.
✗ Branch 3 → 19 not taken.
✓ Branch 4 → 5 taken 30044 times.
✗ Branch 4 → 19 not taken.
✓ Branch 15 → 6 taken 600535 times.
✓ Branch 15 → 16 taken 27310 times.
627845 for (auto &manifestations : scope->functions | std::views::values)
123
3/4
✓ Branch 7 → 8 taken 600535 times.
✗ Branch 7 → 18 not taken.
✓ Branch 10 → 11 taken 2734 times.
✓ Branch 10 → 13 taken 597801 times.
600535 if (const auto it = manifestations.find(signature); it != manifestations.end())
124 2734 return &it->second;
125 27310 return nullptr;
126 }
127
128 133788 Function *FunctionManager::insertSubstantiation(Scope *insertScope, const Function &newManifestation, const ASTNode *declNode) {
129
2/4
✓ Branch 2 → 3 taken 133788 times.
✗ Branch 2 → 70 not taken.
✗ Branch 3 → 4 not taken.
✓ Branch 3 → 5 taken 133788 times.
133788 assert(newManifestation.hasSubstantiatedParams());
130
131
1/2
✓ Branch 5 → 6 taken 133788 times.
✗ Branch 5 → 70 not taken.
133788 const std::string signature = newManifestation.getSignature(true, true, false, true);
132
133 // Check if the function exists already
134
5/8
✓ Branch 6 → 7 taken 133788 times.
✗ Branch 6 → 59 not taken.
✓ Branch 7 → 8 taken 133788 times.
✗ Branch 7 → 59 not taken.
✓ Branch 8 → 9 taken 133788 times.
✗ Branch 8 → 59 not taken.
✓ Branch 30 → 10 taken 2111682 times.
✓ Branch 30 → 31 taken 133784 times.
2245466 for (const auto &manifestations : insertScope->functions | std::views::values) {
135
3/4
✓ Branch 11 → 12 taken 2111682 times.
✗ Branch 11 → 59 not taken.
✓ Branch 12 → 13 taken 4 times.
✓ Branch 12 → 28 taken 2111678 times.
2111682 if (manifestations.contains(signature)) {
136
2/2
✓ Branch 16 → 17 taken 2 times.
✓ Branch 16 → 18 taken 2 times.
4 const SemanticErrorType errorType = newManifestation.isFunction() ? FUNCTION_DECLARED_TWICE : PROCEDURE_DECLARED_TWICE;
137
4/8
✓ Branch 20 → 21 taken 4 times.
✗ Branch 20 → 53 not taken.
✓ Branch 21 → 22 taken 4 times.
✗ Branch 21 → 51 not taken.
✓ Branch 22 → 23 taken 4 times.
✗ Branch 22 → 49 not taken.
✓ Branch 23 → 24 taken 4 times.
✗ Branch 23 → 47 not taken.
4 throw SemanticError(declNode, errorType, "'" + newManifestation.getSignature(true, false) + "' is declared twice");
138 }
139 }
140
141 // Retrieve the matching manifestation list of the scope
142
3/6
✓ Branch 31 → 32 taken 133784 times.
✗ Branch 31 → 65 not taken.
✓ Branch 32 → 33 taken 133784 times.
✗ Branch 32 → 62 not taken.
✓ Branch 33 → 34 taken 133784 times.
✗ Branch 33 → 60 not taken.
133784 const std::string fctId = newManifestation.name + ":" + declNode->codeLoc.toPrettyLineAndColumn();
143
2/4
✓ Branch 36 → 37 taken 133784 times.
✗ Branch 36 → 66 not taken.
✗ Branch 37 → 38 not taken.
✓ Branch 37 → 39 taken 133784 times.
133784 assert(insertScope->functions.contains(fctId));
144
1/2
✓ Branch 39 → 40 taken 133784 times.
✗ Branch 39 → 66 not taken.
133784 FunctionManifestationList &manifestationList = insertScope->functions.at(fctId);
145
146 // Add substantiated function
147
1/2
✓ Branch 40 → 41 taken 133784 times.
✗ Branch 40 → 66 not taken.
133784 manifestationList.emplace(signature, newManifestation);
148
1/2
✓ Branch 41 → 42 taken 133784 times.
✗ Branch 41 → 66 not taken.
267568 return &manifestationList.at(signature);
149 133788 }
150
151 /**
152 * Checks if a function exists by matching it, but not setting it to used
153 *
154 * @param matchScope Scope to match against
155 * @param reqName Function name requirement
156 * @param reqThisType This type requirement
157 * @param reqArgs Argument requirement
158 * @param strictQualifierMatching Match argument and this type qualifiers strictly
159 * @return Found function or nullptr
160 */
161 101839 const Function *FunctionManager::lookup(Scope *matchScope, const std::string &reqName, const QualType &reqThisType,
162 const ArgList &reqArgs, bool strictQualifierMatching) {
163
2/4
✓ Branch 2 → 3 taken 101839 times.
✗ Branch 2 → 66 not taken.
✗ Branch 3 → 4 not taken.
✓ Branch 3 → 5 taken 101839 times.
101839 assert(reqThisType.isOneOf({TY_DYN, TY_STRUCT}));
164
165 // Unlike match(), lookup() is also called from the IR generator (e.g. to find a copy ctor), so it can run on multiple
166 // threads at once and has to guard the process-wide lookup machinery.
167
1/2
✓ Branch 5 → 6 taken 101839 times.
✗ Branch 5 → 78 not taken.
101839 const ConditionalLock lock(symbolRegistryMutex);
168
169 // Do cache lookup
170 101839 const uint64_t cacheKey = getCacheKey(matchScope, reqName, reqThisType, reqArgs, {});
171
3/4
✓ Branch 9 → 10 taken 101839 times.
✗ Branch 9 → 67 not taken.
✓ Branch 12 → 13 taken 20483 times.
✓ Branch 12 → 15 taken 81356 times.
101839 if (const auto it = lookupCache.find(cacheKey); it != lookupCache.end()) {
172 20483 lookupCacheHits++;
173 20483 return it->second;
174 }
175 81356 lookupCacheMisses++;
176
177 27676 const auto pred = [&](const Arg &arg) { return arg.first.hasAnyGenericParts(); };
178
4/8
✓ Branch 15 → 16 taken 81356 times.
✗ Branch 15 → 76 not taken.
✓ Branch 16 → 17 taken 81356 times.
✗ Branch 16 → 20 not taken.
✓ Branch 17 → 18 taken 81356 times.
✗ Branch 17 → 76 not taken.
✓ Branch 18 → 19 taken 81356 times.
✗ Branch 18 → 20 not taken.
81356 const bool requestedFullySubstantiated = !reqThisType.hasAnyGenericParts() && std::ranges::none_of(reqArgs, pred);
179
180 // Loop over function registry to find functions, that match the requirements of the call
181 81356 std::vector<const Function *> matches;
182
2/2
✓ Branch 55 → 23 taken 574421 times.
✓ Branch 55 → 56 taken 81356 times.
655777 for (const auto &[defCodeLocStr, manifestations] : matchScope->functions) {
183
2/2
✓ Branch 52 → 28 taken 658601 times.
✓ Branch 52 → 53 taken 248582 times.
907183 for (const auto &[signature, presetFunction] : manifestations) {
184
2/4
✓ Branch 31 → 32 taken 658601 times.
✗ Branch 31 → 71 not taken.
✗ Branch 32 → 33 not taken.
✓ Branch 32 → 34 taken 658601 times.
658601 assert(presetFunction.hasSubstantiatedParams()); // No optional params are allowed at this point
185
186 // - search for concrete fct: Only match against fully substantiated versions to prevent double matching of a function
187 // - search for generic fct: Only match against generic preset functions
188
3/4
✓ Branch 34 → 35 taken 658601 times.
✗ Branch 34 → 71 not taken.
✓ Branch 35 → 36 taken 266186 times.
✓ Branch 35 → 37 taken 392415 times.
658601 if (presetFunction.isFullySubstantiated() != requestedFullySubstantiated)
189 332762 continue;
190
191 // Copy the function to be able to substantiate types
192
1/2
✓ Branch 37 → 38 taken 392415 times.
✗ Branch 37 → 71 not taken.
392415 Function candidate = presetFunction;
193
194 // Create empty type mapping
195 392415 TypeMapping &typeMapping = candidate.typeMapping;
196
197 392415 bool forceSubstantiation = false;
198
1/2
✓ Branch 38 → 39 taken 392415 times.
✗ Branch 38 → 69 not taken.
392415 const MatchResult matchResult = matchManifestation(candidate, matchScope, reqName, reqThisType, reqArgs, typeMapping,
199 strictQualifierMatching, forceSubstantiation, nullptr);
200
2/2
✓ Branch 39 → 40 taken 302453 times.
✓ Branch 39 → 41 taken 89962 times.
392415 if (matchResult == MatchResult::SKIP_FUNCTION)
201 302453 break; // Leave the whole function
202
2/2
✓ Branch 41 → 42 taken 66576 times.
✓ Branch 41 → 43 taken 23386 times.
89962 if (matchResult == MatchResult::SKIP_MANIFESTATION)
203 66576 continue; // Leave this manifestation and try the next one
204
205 // Add to matches
206
3/6
✓ Branch 43 → 44 taken 23386 times.
✗ Branch 43 → 68 not taken.
✓ Branch 44 → 45 taken 23386 times.
✗ Branch 44 → 68 not taken.
✓ Branch 45 → 46 taken 23386 times.
✗ Branch 45 → 68 not taken.
23386 matches.push_back(&matchScope->functions.at(defCodeLocStr).at(signature));
207
208 23386 break; // Leave the whole manifestation list to not double-match the manifestation
209
2/2
✓ Branch 48 → 49 taken 66576 times.
✓ Branch 48 → 50 taken 325839 times.
392415 }
210 }
211
212 // Return the very match or a nullptr
213
2/2
✓ Branch 57 → 58 taken 23386 times.
✓ Branch 57 → 60 taken 57970 times.
81356 return !matches.empty() ? matches.front() : nullptr;
214 101839 }
215
216 /**
217 * Check if there is a function in the scope, fulfilling all given requirements and if found, return it.
218 * If more than one function matches the requirement, an error gets thrown.
219 *
220 * @param matchScope Scope to match against
221 * @param reqName Function name requirement
222 * @param reqThisType This type requirement
223 * @param reqArgs Argument requirement
224 * @param templateTypeHints Template type requirement
225 * @param strictQualifierMatching Match argument and this type qualifiers strictly
226 * @param callNode Call AST node for printing error messages
227 * @return Matched function or nullptr
228 */
229 1126139 Function *FunctionManager::match(Scope *matchScope, const std::string &reqName, const QualType &reqThisType,
230 const ArgList &reqArgs, const QualTypeList &templateTypeHints, bool strictQualifierMatching,
231 const ASTNode *callNode) {
232
2/4
✓ Branch 2 → 3 taken 1126139 times.
✗ Branch 2 → 182 not taken.
✗ Branch 3 → 4 not taken.
✓ Branch 3 → 5 taken 1126139 times.
1126139 assert(reqThisType.isOneOf({TY_DYN, TY_STRUCT, TY_INTERFACE}));
233
234 // Do cache lookup
235 1126139 const uint64_t cacheKey = getCacheKey(matchScope, reqName, reqThisType, reqArgs, templateTypeHints);
236
3/4
✓ Branch 6 → 7 taken 1126139 times.
✗ Branch 6 → 183 not taken.
✓ Branch 9 → 10 taken 135355 times.
✓ Branch 9 → 12 taken 990784 times.
1126139 if (const auto it = lookupCache.find(cacheKey); it != lookupCache.end()) {
237 135355 lookupCacheHits++;
238 135355 return it->second;
239 }
240 990784 lookupCacheMisses++;
241
242 // Loop over function registry to find functions, that match the requirements of the call
243 990784 std::vector<Function *> matches;
244
2/2
✓ Branch 141 → 14 taken 11140195 times.
✓ Branch 141 → 142 taken 990782 times.
12130977 for (auto &[fctId, manifestations] : matchScope->functions) {
245
2/2
✓ Branch 138 → 19 taken 11434830 times.
✓ Branch 138 → 139 taken 439090 times.
11873920 for (const auto &[signature, presetFunction] : manifestations) {
246
2/4
✓ Branch 22 → 23 taken 11434830 times.
✗ Branch 22 → 205 not taken.
✗ Branch 23 → 24 not taken.
✓ Branch 23 → 25 taken 11434830 times.
11434830 assert(presetFunction.hasSubstantiatedParams()); // No optional params are allowed at this point
247
248 // Skip generic and newly inserted substantiations to prevent double matching of a function
249
6/8
✓ Branch 25 → 26 taken 11434830 times.
✗ Branch 25 → 205 not taken.
✓ Branch 26 → 27 taken 11148646 times.
✓ Branch 26 → 28 taken 286184 times.
✗ Branch 27 → 28 not taken.
✓ Branch 27 → 29 taken 11148646 times.
✓ Branch 30 → 31 taken 286184 times.
✓ Branch 30 → 32 taken 11148646 times.
11434830 if (presetFunction.isGenericSubstantiation() || presetFunction.isNewlyInserted)
250 733725 continue;
251
252 // Copy the function to be able to substantiate types
253
1/2
✓ Branch 32 → 33 taken 11148646 times.
✗ Branch 32 → 205 not taken.
11148646 Function candidate = presetFunction;
254
255 // Prepare type mapping, based on the given initial type mapping
256 11148646 TypeMapping &typeMapping = candidate.typeMapping;
257 11148646 typeMapping.clear();
258
2/2
✓ Branch 46 → 35 taken 123666 times.
✓ Branch 46 → 47 taken 11148646 times.
11272312 for (size_t i = 0; i < std::min(templateTypeHints.size(), candidate.templateTypes.size()); i++) {
259 // Skip template slots that are not generic (anymore). The default members of an already-concrete struct
260 // manifestation carry the concrete types in their template type list, and only generic types have a sub type
261 // usable as a mapping key here - getSubType() would assert on e.g. a primitive or a 'heap byte*'.
262
1/2
✓ Branch 35 → 36 taken 123666 times.
✗ Branch 35 → 203 not taken.
123666 const GenericType &candidateTemplateType = candidate.templateTypes.at(i);
263
3/4
✓ Branch 36 → 37 taken 123666 times.
✗ Branch 36 → 203 not taken.
✓ Branch 37 → 38 taken 1270 times.
✓ Branch 37 → 39 taken 122396 times.
123666 if (!candidateTemplateType.is(TY_GENERIC))
264 1270 continue;
265
1/2
✓ Branch 39 → 40 taken 122396 times.
✗ Branch 39 → 203 not taken.
122396 const std::string &typeName = candidateTemplateType.getSubType();
266
1/2
✓ Branch 40 → 41 taken 122396 times.
✗ Branch 40 → 203 not taken.
122396 const QualType &templateType = templateTypeHints.at(i);
267
1/2
✓ Branch 41 → 42 taken 122396 times.
✗ Branch 41 → 203 not taken.
122396 typeMapping.emplace(typeName, templateType);
268 }
269
270 11148646 bool forceSubstantiation = false;
271
2/2
✓ Branch 47 → 48 taken 11148644 times.
✓ Branch 47 → 203 taken 2 times.
11148646 const MatchResult matchResult = matchManifestation(candidate, matchScope, reqName, reqThisType, reqArgs, typeMapping,
272 strictQualifierMatching, forceSubstantiation, callNode);
273
2/2
✓ Branch 48 → 49 taken 10671059 times.
✓ Branch 48 → 50 taken 477585 times.
11148644 if (matchResult == MatchResult::SKIP_FUNCTION)
274 10671059 break; // Leave the whole function
275
2/2
✓ Branch 50 → 51 taken 402592 times.
✓ Branch 50 → 52 taken 74993 times.
477585 if (matchResult == MatchResult::SKIP_MANIFESTATION)
276 402592 continue; // Leave this manifestation and try the next one
277
278 // We found a match! -> Set the actual candidate and its entry to used
279 74993 candidate.used = true;
280 74993 candidate.entry->used = true;
281
282 // Check if the function is generic needs to be substantiated
283
6/6
✓ Branch 53 → 54 taken 46455 times.
✓ Branch 53 → 56 taken 28538 times.
✓ Branch 54 → 55 taken 44949 times.
✓ Branch 54 → 56 taken 1506 times.
✓ Branch 57 → 58 taken 44949 times.
✓ Branch 57 → 70 taken 30044 times.
74993 if (presetFunction.templateTypes.empty() && !forceSubstantiation) {
284
5/10
✓ Branch 58 → 59 taken 44949 times.
✗ Branch 58 → 184 not taken.
✓ Branch 59 → 60 taken 44949 times.
✗ Branch 59 → 64 not taken.
✓ Branch 60 → 61 taken 44949 times.
✗ Branch 60 → 184 not taken.
✓ Branch 61 → 62 taken 44949 times.
✗ Branch 61 → 184 not taken.
✓ Branch 62 → 63 taken 44949 times.
✗ Branch 62 → 64 not taken.
44949 assert(matchScope->functions.contains(fctId) && matchScope->functions.at(fctId).contains(signature));
285
2/4
✓ Branch 65 → 66 taken 44949 times.
✗ Branch 65 → 184 not taken.
✓ Branch 66 → 67 taken 44949 times.
✗ Branch 66 → 184 not taken.
44949 Function *match = &matchScope->functions.at(fctId).at(signature);
286 44949 match->used = true;
287
1/2
✓ Branch 67 → 68 taken 44949 times.
✗ Branch 67 → 184 not taken.
44949 matches.push_back(match);
288 44949 continue; // Match was successful -> match the next function
289 44949 }
290
291 // Check if we already have this manifestation and can simply re-use it. matchManifestation may have redirected
292 // matchScope from the generic struct scope to the concrete manifestation scope; the substantiation is inserted
293 // there, so that is also where an already existing one has to be looked for. Searching the manifestation list we
294 // are currently iterating instead would miss it and insert a duplicate (which insertSubstantiation then reports
295 // as 'declared twice').
296
1/2
✓ Branch 70 → 71 taken 30044 times.
✗ Branch 70 → 203 not taken.
30044 const std::string newSignature = candidate.getSignature(true, true, false, true);
297
3/4
✓ Branch 71 → 72 taken 30044 times.
✗ Branch 71 → 185 not taken.
✓ Branch 72 → 73 taken 2734 times.
✓ Branch 72 → 75 taken 27310 times.
30044 if (Function *existingManifestation = findManifestationBySignature(matchScope, newSignature)) {
298 2734 existingManifestation->used = true;
299
1/2
✓ Branch 73 → 74 taken 2734 times.
✗ Branch 73 → 185 not taken.
2734 matches.push_back(existingManifestation);
300 2734 break; // Leave the whole manifestation list to not double-match the manifestation
301 }
302
303 // Insert the substantiated version if required
304
1/2
✓ Branch 75 → 77 taken 27310 times.
✗ Branch 75 → 201 not taken.
27310 Function *substantiatedFunction = insertSubstantiation(matchScope, candidate, presetFunction.declNode);
305
2/4
✓ Branch 77 → 78 taken 27310 times.
✗ Branch 77 → 201 not taken.
✓ Branch 78 → 79 taken 27310 times.
✗ Branch 78 → 201 not taken.
27310 substantiatedFunction->genericPreset = &matchScope->functions.at(fctId).at(signature);
306 27310 substantiatedFunction->alreadyTypeChecked = false;
307
2/4
✓ Branch 79 → 80 taken 27310 times.
✗ Branch 79 → 201 not taken.
✓ Branch 80 → 81 taken 27310 times.
✗ Branch 80 → 201 not taken.
27310 substantiatedFunction->declNode->getFctManifestations(reqName)->push_back(substantiatedFunction);
308 27310 substantiatedFunction->isNewlyInserted = true; // To not iterate over it in the same matching
309
310 // Copy function entry
311
1/2
✓ Branch 81 → 82 taken 27310 times.
✗ Branch 81 → 201 not taken.
27310 const std::string newScopeName = substantiatedFunction->getScopeName();
312
1/2
✓ Branch 82 → 83 taken 27310 times.
✗ Branch 82 → 199 not taken.
27310 matchScope->lookupStrict(presetFunction.entry->name)->used = true;
313
1/2
✓ Branch 85 → 86 taken 27310 times.
✗ Branch 85 → 199 not taken.
27310 substantiatedFunction->entry = matchScope->symbolTable.copySymbol(presetFunction.entry->name, newScopeName);
314
1/2
✗ Branch 86 → 87 not taken.
✓ Branch 86 → 88 taken 27310 times.
27310 assert(substantiatedFunction->entry != nullptr);
315
316 // Copy function scope. Interface method declarations have no body and therefore no child scope to copy - only
317 // their signature needs to be substantiated for call-site type checking, so skip this step for them.
318
1/2
✓ Branch 88 → 89 taken 27310 times.
✗ Branch 88 → 199 not taken.
27310 const std::string oldScopeName = presetFunction.getScopeName();
319
3/4
✓ Branch 89 → 90 taken 27310 times.
✗ Branch 89 → 197 not taken.
✓ Branch 90 → 91 taken 27298 times.
✓ Branch 90 → 127 taken 12 times.
27310 if (matchScope->children.contains(oldScopeName)) {
320
1/2
✓ Branch 91 → 92 taken 27298 times.
✗ Branch 91 → 197 not taken.
27298 Scope *childScope = matchScope->copyChildScope(oldScopeName, newScopeName);
321
1/2
✗ Branch 92 → 93 not taken.
✓ Branch 92 → 94 taken 27298 times.
27298 assert(childScope != nullptr);
322 27298 childScope->isGenericScope = false;
323 27298 substantiatedFunction->bodyScope = childScope;
324
325 // Insert symbols for generic type names with concrete types into the child block
326
2/2
✓ Branch 104 → 96 taken 33002 times.
✓ Branch 104 → 105 taken 27298 times.
60300 for (const auto &[typeName, concreteType] : substantiatedFunction->typeMapping)
327
2/4
✓ Branch 99 → 100 taken 33002 times.
✗ Branch 99 → 188 not taken.
✓ Branch 100 → 101 taken 33002 times.
✗ Branch 100 → 186 not taken.
33002 childScope->insertGenericType(typeName, GenericType(concreteType));
328
329 // Substantiate the 'this' entry in the new function scope
330
6/6
✓ Branch 108 → 109 taken 20746 times.
✓ Branch 108 → 112 taken 6552 times.
✓ Branch 110 → 111 taken 20740 times.
✓ Branch 110 → 112 taken 6 times.
✓ Branch 113 → 114 taken 20740 times.
✓ Branch 113 → 127 taken 6558 times.
27298 if (presetFunction.isMethod() && !presetFunction.templateTypes.empty()) {
331
1/2
✓ Branch 116 → 117 taken 20740 times.
✗ Branch 116 → 192 not taken.
62220 SymbolTableEntry *thisEntry = childScope->lookupStrict(THIS_VARIABLE_NAME);
332
1/2
✗ Branch 122 → 123 not taken.
✓ Branch 122 → 124 taken 20740 times.
20740 assert(thisEntry != nullptr);
333
2/4
✓ Branch 124 → 125 taken 20740 times.
✗ Branch 124 → 196 not taken.
✓ Branch 125 → 126 taken 20740 times.
✗ Branch 125 → 196 not taken.
20740 thisEntry->updateType(candidate.thisType.toPtr(callNode), /*overwriteExistingType=*/true);
334 }
335 }
336
337 // Add to matched functions
338
1/2
✓ Branch 127 → 128 taken 27310 times.
✗ Branch 127 → 197 not taken.
27310 matches.push_back(substantiatedFunction);
339
340 27310 break; // Leave the whole manifestation list to not double-match the manifestation
341
2/2
✓ Branch 134 → 135 taken 447541 times.
✓ Branch 134 → 136 taken 10701103 times.
11178690 }
342 }
343
344 // If no matches were found, return a nullptr
345
2/2
✓ Branch 143 → 144 taken 915815 times.
✓ Branch 143 → 145 taken 74967 times.
990782 if (matches.empty())
346 915815 return nullptr;
347
348 // Tie-breaking: if multiple candidates match, narrow them by qualifier specificity and by preferring
349 // explicitly declared overloads over generic substitutions (see breakOverloadTie).
350
1/2
✓ Branch 145 → 146 taken 74967 times.
✗ Branch 145 → 221 not taken.
74967 breakOverloadTie(matches, reqArgs);
351
352 // Check if more than one function matches the requirements
353
1/2
✗ Branch 147 → 148 not taken.
✓ Branch 147 → 175 taken 74967 times.
74967 if (matches.size() > 1) {
354 std::stringstream errorMessage;
355 errorMessage << "The function/procedure '" << reqName << "' is ambiguous. All of the following match the requested criteria:";
356 for (const Function *match : matches)
357 errorMessage << "\n " << match->getSignature();
358 throw SemanticError(callNode, FUNCTION_AMBIGUITY, errorMessage.str());
359 }
360 74967 Function *matchedFunction = matches.front();
361 74967 matchedFunction->isNewlyInserted = false;
362
363 // Insert into cache
364
1/2
✓ Branch 176 → 177 taken 74967 times.
✗ Branch 176 → 221 not taken.
74967 lookupCache[cacheKey] = matchedFunction;
365
366 // Trigger revisit in type checker if required
367
1/2
✓ Branch 177 → 178 taken 74967 times.
✗ Branch 177 → 221 not taken.
74967 TypeChecker::requestRevisitIfRequired(matchedFunction);
368
369 // Return the very match
370 74967 return matchedFunction;
371 990784 }
372
373 11541061 MatchResult FunctionManager::matchManifestation(Function &candidate, Scope *&matchScope, const std::string &reqName,
374 const QualType &reqThisType, const ArgList &reqArgs, TypeMapping &typeMapping,
375 bool strictQualifierMatching, bool &forceSubstantiation,
376 const ASTNode *callNode) {
377 // Check name requirement
378
2/2
✓ Branch 3 → 4 taken 10973512 times.
✓ Branch 3 → 5 taken 567549 times.
11541061 if (!matchName(candidate, reqName))
379 10973512 return MatchResult::SKIP_FUNCTION; // Leave the whole manifestation list, because all have the same name
380
381 // Check 'this' type requirement
382
2/4
✓ Branch 5 → 6 taken 567549 times.
✗ Branch 5 → 29 not taken.
✗ Branch 6 → 7 not taken.
✓ Branch 6 → 8 taken 567549 times.
567549 if (!matchThisType(candidate, reqThisType, typeMapping, strictQualifierMatching, callNode))
383 return MatchResult::SKIP_MANIFESTATION; // Leave this manifestation and try the next one
384
385 // Check arg types requirement
386
4/4
✓ Branch 8 → 9 taken 567547 times.
✓ Branch 8 → 29 taken 2 times.
✓ Branch 9 → 10 taken 469164 times.
✓ Branch 9 → 11 taken 98383 times.
567549 if (!matchArgTypes(candidate, reqArgs, typeMapping, strictQualifierMatching, forceSubstantiation, callNode))
387 469164 return MatchResult::SKIP_MANIFESTATION; // Leave this manifestation and try the next one
388
389 // Check if there are unresolved generic types. Only template slots that actually are generic have to be resolved into
390 // the type mapping - a slot that already holds a concrete type (as for the default members of an already-concrete
391 // struct manifestation, e.g. HashEntry<int, String>::dtor()) never ends up there and must not count as unresolved.
392 41116 const auto isGeneric = [](const GenericType &templateType) { return templateType.is(TY_GENERIC); };
393
3/4
✓ Branch 12 → 13 taken 98383 times.
✗ Branch 12 → 29 not taken.
✓ Branch 13 → 14 taken 4 times.
✓ Branch 13 → 15 taken 98379 times.
98383 if (typeMapping.size() < static_cast<size_t>(std::ranges::count_if(candidate.templateTypes, isGeneric)))
394 4 return MatchResult::SKIP_MANIFESTATION; // Leave this manifestation and try the next one
395
396 // Substantiate return type
397
1/2
✓ Branch 15 → 16 taken 98379 times.
✗ Branch 15 → 29 not taken.
98379 substantiateReturnType(candidate, typeMapping, callNode);
398
399 // Set the match scope to the scope of the concrete substantiation
400 98379 const QualType &thisType = candidate.thisType;
401
3/4
✓ Branch 16 → 17 taken 98379 times.
✗ Branch 16 → 29 not taken.
✓ Branch 17 → 18 taken 68358 times.
✓ Branch 17 → 25 taken 30021 times.
98379 if (!thisType.is(TY_DYN)) {
402 // If we only have the generic struct scope, lookup the concrete manifestation scope
403
2/2
✓ Branch 18 → 19 taken 30 times.
✓ Branch 18 → 23 taken 68328 times.
68358 if (matchScope->isGenericScope) {
404
1/2
✓ Branch 19 → 20 taken 30 times.
✗ Branch 19 → 29 not taken.
30 const Struct *spiceStruct = thisType.getStruct(candidate.declNode);
405
1/2
✗ Branch 20 → 21 not taken.
✓ Branch 20 → 22 taken 30 times.
30 assert(spiceStruct != nullptr);
406 30 matchScope = spiceStruct->scope;
407 }
408
1/2
✓ Branch 23 → 24 taken 68358 times.
✗ Branch 23 → 28 not taken.
68358 candidate.thisType = candidate.thisType.getWithBodyScope(matchScope);
409 }
410
411 98379 return MatchResult::MATCHED;
412 }
413
414 /**
415 * Checks if the matching candidate fulfills the name requirement
416 *
417 * @param candidate Matching candidate function
418 * @param reqName Requested function name
419 * @return Fulfilled or not
420 */
421 11541061 bool FunctionManager::matchName(const Function &candidate, const std::string &reqName) { return candidate.name == reqName; }
422
423 /**
424 * Checks if the matching candidate fulfills the 'this' type requirement
425 *
426 * @param candidate Matching candidate function
427 * @param reqThisType Requested 'this' type
428 * @param typeMapping Concrete template type mapping
429 * @param strictQualifierMatching Match qualifiers strictly
430 * @param callNode Call AST node for printing error messages
431 * @return Fulfilled or not
432 */
433 567549 bool FunctionManager::matchThisType(Function &candidate, const QualType &reqThisType, TypeMapping &typeMapping,
434 bool strictQualifierMatching, const ASTNode *callNode) {
435 567549 QualType &candidateThisType = candidate.thisType;
436
437 // Shortcut for procedures
438
7/10
✓ Branch 2 → 3 taken 567549 times.
✗ Branch 2 → 23 not taken.
✓ Branch 3 → 4 taken 385550 times.
✓ Branch 3 → 7 taken 181999 times.
✓ Branch 4 → 5 taken 385550 times.
✗ Branch 4 → 23 not taken.
✓ Branch 5 → 6 taken 385550 times.
✗ Branch 5 → 7 not taken.
✓ Branch 8 → 9 taken 385550 times.
✓ Branch 8 → 10 taken 181999 times.
567549 if (candidateThisType.is(TY_DYN) && reqThisType.is(TY_DYN))
439 385550 return true;
440
441 // Give the type matcher a way to retrieve instances of GenericType by their name
442 392543 TypeMatcher::ResolverFct genericTypeResolver = [&](const std::string &genericTypeName) {
443 28545 return getGenericTypeOfCandidateByName(candidate, genericTypeName);
444 181999 };
445
446 // Check if the requested 'this' type matches the candidate 'this' type. The type mapping may be extended
447
2/4
✓ Branch 11 → 12 taken 181999 times.
✗ Branch 11 → 21 not taken.
✗ Branch 12 → 13 not taken.
✓ Branch 12 → 14 taken 181999 times.
181999 if (!TypeMatcher::matchRequestedToCandidateType(candidateThisType, reqThisType, typeMapping, genericTypeResolver,
448 strictQualifierMatching))
449 return false;
450
451 // Substantiate the candidate param type, based on the type mapping
452
3/4
✓ Branch 14 → 15 taken 181999 times.
✗ Branch 14 → 21 not taken.
✓ Branch 15 → 16 taken 30906 times.
✓ Branch 15 → 17 taken 151093 times.
181999 if (candidateThisType.hasAnyGenericParts())
453
1/2
✓ Branch 16 → 17 taken 30906 times.
✗ Branch 16 → 21 not taken.
30906 TypeMatcher::substantiateTypeWithTypeMapping(candidateThisType, typeMapping, callNode);
454
455 181999 return true;
456 181999 }
457
458 /**
459 * Checks if the matching candidate fulfills the argument types requirement
460 *
461 * @param candidate Matching candidate function
462 * @param reqArgs Requested argument types
463 * @param typeMapping Concrete template type mapping
464 * @param strictQualifierMatching Match qualifiers strictly
465 * @param needsSubstantiation We want to create a substantiation after successfully matching
466 * @param callNode Call AST node for printing error messages
467 * @return Fulfilled or not
468 */
469 567549 bool FunctionManager::matchArgTypes(Function &candidate, const ArgList &reqArgs, TypeMapping &typeMapping,
470 bool strictQualifierMatching, bool &needsSubstantiation, const ASTNode *callNode) {
471 567549 std::vector<Param> &candidateParamList = candidate.paramList;
472
473 // If the number of arguments does not match with the number of params, the matching fails
474
6/6
✓ Branch 2 → 3 taken 565580 times.
✓ Branch 2 → 7 taken 1969 times.
✓ Branch 5 → 6 taken 78824 times.
✓ Branch 5 → 7 taken 486756 times.
✓ Branch 8 → 9 taken 78824 times.
✓ Branch 8 → 10 taken 488725 times.
567549 if (!candidate.isVararg && reqArgs.size() != candidateParamList.size())
475 78824 return false;
476 // In the case of a vararg function, we only disallow fewer arguments than parameters
477
4/6
✓ Branch 10 → 11 taken 1969 times.
✓ Branch 10 → 15 taken 486756 times.
✗ Branch 13 → 14 not taken.
✓ Branch 13 → 15 taken 1969 times.
✗ Branch 16 → 17 not taken.
✓ Branch 16 → 18 taken 488725 times.
488725 if (candidate.isVararg && reqArgs.size() < candidateParamList.size())
478 return false;
479
480 // Give the type matcher a way to retrieve instances of GenericType by their name
481 1006447 TypeMatcher::ResolverFct genericTypeResolver = [&](const std::string &genericTypeName) {
482 28997 return getGenericTypeOfCandidateByName(candidate, genericTypeName);
483 488725 };
484
485 // Loop over all parameters
486
2/2
✓ Branch 66 → 20 taken 507102 times.
✓ Branch 66 → 67 taken 98383 times.
605485 for (size_t i = 0; i < reqArgs.size(); i++) {
487 // In the case of a vararg function candidate, we can accept additional arguments, that are not defined in the candidate,
488 // but we need to modify the candidate param list to accept them
489
6/6
✓ Branch 20 → 21 taken 8371 times.
✓ Branch 20 → 24 taken 498731 times.
✓ Branch 22 → 23 taken 3889 times.
✓ Branch 22 → 24 taken 4482 times.
✓ Branch 25 → 26 taken 3889 times.
✓ Branch 25 → 29 taken 503213 times.
507102 if (candidate.isVararg && i >= candidateParamList.size()) {
490
2/4
✓ Branch 26 → 27 taken 3889 times.
✗ Branch 26 → 71 not taken.
✓ Branch 27 → 28 taken 3889 times.
✗ Branch 27 → 71 not taken.
3889 candidateParamList.push_back(Param(reqArgs.at(i).first, false));
491 3889 needsSubstantiation = true; // We need to modify the candidate param types
492 3889 continue;
493 }
494
495 // Retrieve actual and requested types
496
2/4
✓ Branch 29 → 30 taken 503213 times.
✗ Branch 29 → 84 not taken.
✗ Branch 30 → 31 not taken.
✓ Branch 30 → 32 taken 503213 times.
503213 assert(!candidateParamList.at(i).isOptional);
497
1/2
✓ Branch 32 → 33 taken 503213 times.
✗ Branch 32 → 84 not taken.
503213 QualType &candidateType = candidateParamList.at(i).qualType;
498
1/2
✓ Branch 33 → 34 taken 503213 times.
✗ Branch 33 → 84 not taken.
503213 const auto &[requestedType, isArgTemporary] = reqArgs.at(i);
499
500 // Check if the requested param type matches the candidate param type. The type mapping may be extended
501
3/4
✓ Branch 36 → 37 taken 503213 times.
✗ Branch 36 → 84 not taken.
✓ Branch 37 → 38 taken 390340 times.
✓ Branch 37 → 39 taken 112873 times.
503213 if (!TypeMatcher::matchRequestedToCandidateType(candidateType, requestedType, typeMapping, genericTypeResolver,
502 strictQualifierMatching))
503 390340 return false;
504
505 // Substantiate the candidate param type, based on the type mapping
506
3/4
✓ Branch 39 → 40 taken 112873 times.
✗ Branch 39 → 84 not taken.
✓ Branch 40 → 41 taken 22652 times.
✓ Branch 40 → 42 taken 90221 times.
112873 if (candidateType.hasAnyGenericParts())
507
1/2
✓ Branch 41 → 42 taken 22652 times.
✗ Branch 41 → 84 not taken.
22652 TypeMatcher::substantiateTypeWithTypeMapping(candidateType, typeMapping, callNode);
508
509 // Check if we try to bind a non-ref temporary to a non-const ref parameter
510
3/4
✓ Branch 42 → 43 taken 112873 times.
✗ Branch 42 → 84 not taken.
✓ Branch 43 → 44 taken 2 times.
✓ Branch 43 → 54 taken 112871 times.
112873 if (!candidateType.canBind(requestedType, isArgTemporary)) {
511
1/2
✓ Branch 44 → 45 taken 2 times.
✗ Branch 44 → 53 not taken.
2 if (callNode)
512
2/4
✓ Branch 48 → 49 taken 2 times.
✗ Branch 48 → 75 not taken.
✓ Branch 49 → 50 taken 2 times.
✗ Branch 49 → 72 not taken.
6 throw SemanticError(callNode, TEMP_TO_NON_CONST_REF, "Temporary values can only be bound to const reference parameters");
513 return false;
514 }
515
516 // If we have a function/procedure type we need to take care of the information, if it takes captures
517
9/12
✓ Branch 54 → 55 taken 112871 times.
✗ Branch 54 → 81 not taken.
✓ Branch 55 → 56 taken 112871 times.
✗ Branch 55 → 81 not taken.
✓ Branch 56 → 57 taken 164 times.
✓ Branch 56 → 60 taken 112707 times.
✓ Branch 57 → 58 taken 164 times.
✗ Branch 57 → 81 not taken.
✓ Branch 58 → 59 taken 40 times.
✓ Branch 58 → 60 taken 124 times.
✓ Branch 61 → 62 taken 40 times.
✓ Branch 61 → 64 taken 112831 times.
112871 if (requestedType.getBase().isOneOf({TY_FUNCTION, TY_PROCEDURE}) && requestedType.hasLambdaCaptures()) {
518
1/2
✓ Branch 62 → 63 taken 40 times.
✗ Branch 62 → 83 not taken.
40 candidateType = candidateType.getWithLambdaCaptures();
519 40 needsSubstantiation = true;
520 }
521 }
522
523 98383 return true;
524 488725 }
525
526 /**
527 * Substantiates the candidate return type, based on the given type mapping
528 *
529 * @param candidate Matching candidate function
530 * @param typeMapping Concrete template type mapping
531 * @param callNode AST node for error messages
532 */
533 98379 void FunctionManager::substantiateReturnType(Function &candidate, const TypeMapping &typeMapping, const ASTNode *callNode) {
534
2/2
✓ Branch 3 → 4 taken 8438 times.
✓ Branch 3 → 5 taken 89941 times.
98379 if (candidate.returnType.hasAnyGenericParts())
535 8438 TypeMatcher::substantiateTypeWithTypeMapping(candidate.returnType, typeMapping, callNode);
536 98379 }
537
538 /**
539 * Searches the candidate template types for a generic type object with a certain name and return it
540 *
541 * @param candidate Matching candidate function
542 * @param templateTypeName Template type name
543 * @return Generic type object
544 */
545 57542 const GenericType *FunctionManager::getGenericTypeOfCandidateByName(const Function &candidate,
546 const std::string &templateTypeName) {
547
1/2
✓ Branch 19 → 4 taken 65094 times.
✗ Branch 19 → 20 not taken.
122636 for (const GenericType &templateType : candidate.templateTypes) {
548
3/4
✓ Branch 6 → 7 taken 65094 times.
✗ Branch 6 → 22 not taken.
✓ Branch 8 → 9 taken 57542 times.
✓ Branch 8 → 10 taken 7552 times.
65094 if (templateType.getSubType() == templateTypeName)
549 57542 return &templateType;
550 }
551 return nullptr;
552 }
553
554 /**
555 * Narrow a multi-match overload set by preferring the candidate whose parameter qualifiers most closely match
556 * the argument qualifiers. This resolves the typical copy-vs-move ctor ambiguity where both a `const T&`
557 * (copy) and a `T&` (move) ctor match a non-const lvalue argument - we prefer the non-const-ref candidate
558 * (move) since it requires no constification. When the argument is const, we prefer the const-ref candidate
559 * (copy) since binding to a non-const ref would require const-loss. As a secondary criterion, an explicitly
560 * declared (non-generic) overload is preferred over a generic substitution that matches equally well.
561 *
562 * Modifies `matches` in place, removing any candidate that scores worse than the best one. A no-op if there
563 * are fewer than two candidates.
564 *
565 * @param matches Candidate list to narrow
566 * @param reqArgs Argument list from the call site
567 */
568 74967 void FunctionManager::breakOverloadTie(std::vector<Function *> &matches, const ArgList &reqArgs) {
569
2/2
✓ Branch 3 → 4 taken 74941 times.
✓ Branch 3 → 5 taken 26 times.
74967 if (matches.size() < 2)
570 74941 return;
571
572 26 constexpr int CONSTIFY_PENALTY = 1;
573 26 constexpr int CONST_LOSS_PENALTY = 100;
574 // An exact type match is always preferred over a match that required an implicit upcast (struct to
575 // implemented interface, or struct to composed base struct). This keeps e.g. 'f(Derived)' preferred
576 // over 'f(Base)' when called with a Derived, instead of reporting an ambiguity.
577 26 constexpr int UPCAST_PENALTY = 1000;
578 130 const auto scoreSpecificity = [&](const Function *f) {
579 104 int penalty = 0;
580
2/2
✓ Branch 23 → 3 taken 104 times.
✓ Branch 23 → 24 taken 104 times.
208 for (size_t i = 0; i < std::min(reqArgs.size(), f->paramList.size()); i++) {
581
1/2
✓ Branch 3 → 4 taken 104 times.
✗ Branch 3 → 28 not taken.
104 const QualType &paramType = f->paramList.at(i).qualType;
582
1/2
✓ Branch 4 → 5 taken 104 times.
✗ Branch 4 → 28 not taken.
104 const QualType &argType = reqArgs.at(i).first;
583
2/4
✓ Branch 5 → 6 taken 104 times.
✗ Branch 5 → 26 not taken.
✓ Branch 6 → 7 taken 104 times.
✗ Branch 6 → 26 not taken.
104 const bool paramIsConst = paramType.removeReferenceWrapper().isConst();
584
2/4
✓ Branch 7 → 8 taken 104 times.
✗ Branch 7 → 27 not taken.
✓ Branch 8 → 9 taken 104 times.
✗ Branch 8 → 27 not taken.
104 const bool argIsConst = argType.removeReferenceWrapper().isConst();
585
4/4
✓ Branch 9 → 10 taken 56 times.
✓ Branch 9 → 12 taken 48 times.
✓ Branch 10 → 11 taken 16 times.
✓ Branch 10 → 12 taken 40 times.
104 if (paramIsConst && !argIsConst)
586 16 penalty += CONSTIFY_PENALTY;
587
4/4
✓ Branch 12 → 13 taken 48 times.
✓ Branch 12 → 15 taken 40 times.
✓ Branch 13 → 14 taken 24 times.
✓ Branch 13 → 15 taken 24 times.
88 else if (!paramIsConst && argIsConst)
588 24 penalty += CONST_LOSS_PENALTY;
589 // Penalize matches that were only possible through an implicit upcast
590 104 QualType paramBase = paramType;
591 104 QualType argBase = argType;
592
1/2
✓ Branch 15 → 16 taken 104 times.
✗ Branch 15 → 28 not taken.
104 QualType::unwrapBothWithRefWrappers(paramBase, argBase);
593
2/4
✓ Branch 16 → 17 taken 104 times.
✗ Branch 16 → 28 not taken.
✗ Branch 17 → 18 not taken.
✓ Branch 17 → 19 taken 104 times.
104 if (!paramBase.matches(argBase, true, true, true))
594 penalty += UPCAST_PENALTY;
595 }
596 104 return penalty;
597 26 };
598
599 26 int bestScore = std::numeric_limits<int>::max();
600
2/2
✓ Branch 20 → 7 taken 52 times.
✓ Branch 20 → 21 taken 26 times.
104 for (const Function *m : matches)
601
1/2
✓ Branch 9 → 10 taken 52 times.
✗ Branch 9 → 76 not taken.
52 bestScore = std::min(bestScore, scoreSpecificity(m));
602 26 std::vector<Function *> filtered;
603
1/2
✓ Branch 22 → 23 taken 26 times.
✗ Branch 22 → 80 not taken.
26 filtered.reserve(matches.size());
604
2/2
✓ Branch 39 → 25 taken 52 times.
✓ Branch 39 → 40 taken 26 times.
104 for (Function *m : matches)
605
3/4
✓ Branch 27 → 28 taken 52 times.
✗ Branch 27 → 78 not taken.
✓ Branch 28 → 29 taken 32 times.
✓ Branch 28 → 30 taken 20 times.
52 if (scoreSpecificity(m) == bestScore)
606
1/2
✓ Branch 29 → 30 taken 32 times.
✗ Branch 29 → 78 not taken.
32 filtered.push_back(m);
607 26 matches = std::move(filtered);
608
609 // Secondary tie-break: prefer an explicitly declared (non-generic) overload over a generic substitution
610 // when both match equally well, mirroring C++ overload resolution where a non-template wins over a
611 // template specialization. This resolves e.g. the copy ctor 'Any.ctor(const Any&)' vs. the value ctor
612 // 'Any.ctor<Any>(const Any&)' ambiguity when copy-constructing from another value of the same type. It is
613 // applied after the qualifier-specificity narrowing above, so a more specific generic match still wins.
614 // A generic substitution that loses here and was only inserted for this very match is removed from its
615 // declaration's manifestation list again, so the IR generator never emits a manifestation that was never
616 // type-checked (and so we leave no dead code behind).
617
6/8
✓ Branch 44 → 45 taken 6 times.
✓ Branch 44 → 48 taken 20 times.
✓ Branch 45 → 46 taken 6 times.
✗ Branch 45 → 80 not taken.
✓ Branch 46 → 47 taken 6 times.
✗ Branch 46 → 48 not taken.
✓ Branch 49 → 50 taken 6 times.
✓ Branch 49 → 73 taken 20 times.
36 if (matches.size() > 1 && std::ranges::any_of(matches, [](const Function *m) { return !m->isGenericSubstantiation(); })) {
618
2/2
✓ Branch 71 → 52 taken 12 times.
✓ Branch 71 → 72 taken 6 times.
24 for (Function *m : matches)
619
6/8
✓ Branch 54 → 55 taken 12 times.
✗ Branch 54 → 79 not taken.
✓ Branch 55 → 56 taken 6 times.
✓ Branch 55 → 58 taken 6 times.
✓ Branch 56 → 57 taken 6 times.
✗ Branch 56 → 58 not taken.
✓ Branch 59 → 60 taken 6 times.
✓ Branch 59 → 62 taken 6 times.
12 if (m->isGenericSubstantiation() && m->isNewlyInserted)
620
2/4
✓ Branch 60 → 61 taken 6 times.
✗ Branch 60 → 79 not taken.
✓ Branch 61 → 62 taken 6 times.
✗ Branch 61 → 79 not taken.
6 std::erase(*m->declNode->getFctManifestations(m->name), m);
621
1/2
✓ Branch 72 → 73 taken 6 times.
✗ Branch 72 → 80 not taken.
18 std::erase_if(matches, [](const Function *m) { return m->isGenericSubstantiation(); });
622 }
623 26 }
624
625 /**
626 * Calculate the cache key for the function lookup cache
627 *
628 * @param scope Scope to match against
629 * @param name Function name requirement
630 * @param thisType This type requirement
631 * @param args Argument requirement
632 * @param templateTypes Template type requirement
633 * @return Cache key
634 */
635 1227978 uint64_t FunctionManager::getCacheKey(const Scope *scope, const std::string &name, const QualType &thisType, const ArgList &args,
636 const QualTypeList &templateTypes) {
637 1227978 uint64_t hash = 0;
638 1227978 hashCombine64(hash, hashPointer(scope));
639 1227978 hashCombine64(hash, std::hash<std::string>{}(name));
640 1227978 hashCombine64(hash, std::hash<QualType>{}(thisType));
641
2/2
✓ Branch 27 → 10 taken 2000080 times.
✓ Branch 27 → 28 taken 1227978 times.
6456116 for (const auto &[first, second] : args) {
642 2000080 hashCombine64(hash, std::hash<QualType>{}(first));
643 2000080 hashCombine64(hash, std::hash<bool>{}(second));
644 }
645 1227978 hashCombine64(hash, hashVector(templateTypes));
646 1227978 return hash;
647 }
648
649 40671 bool FunctionManager::hasCtor(const Scope *matchScope, CtorKind kind) {
650
5/8
✓ Branch 2 → 3 taken 40671 times.
✗ Branch 2 → 60 not taken.
✓ Branch 3 → 4 taken 40671 times.
✗ Branch 3 → 60 not taken.
✓ Branch 4 → 5 taken 40671 times.
✗ Branch 4 → 60 not taken.
✓ Branch 55 → 6 taken 193220 times.
✓ Branch 55 → 56 taken 27281 times.
220501 for (const auto &manifestations : matchScope->functions | std::views::values) {
651
5/8
✓ Branch 7 → 8 taken 193220 times.
✗ Branch 7 → 59 not taken.
✓ Branch 8 → 9 taken 193220 times.
✗ Branch 8 → 59 not taken.
✓ Branch 9 → 10 taken 193220 times.
✗ Branch 9 → 59 not taken.
✓ Branch 51 → 11 taken 209777 times.
✓ Branch 51 → 52 taken 179830 times.
389607 for (const auto &function : manifestations | std::views::values) {
652 // If it is no ctor, skip it
653
3/4
✓ Branch 12 → 13 taken 209777 times.
✗ Branch 12 → 59 not taken.
✓ Branch 13 → 14 taken 135878 times.
✓ Branch 13 → 15 taken 73899 times.
209777 if (function.name != CTOR_FUNCTION_NAME)
654 135878 continue;
655 // Classify the ctor based on its parameter list
656
6/8
✓ Branch 16 → 17 taken 40919 times.
✓ Branch 16 → 25 taken 32980 times.
✓ Branch 17 → 18 taken 40919 times.
✗ Branch 17 → 58 not taken.
✓ Branch 18 → 19 taken 40919 times.
✗ Branch 18 → 58 not taken.
✓ Branch 19 → 20 taken 18919 times.
✓ Branch 19 → 25 taken 22000 times.
92818 const bool singleSelfRefParam = function.paramList.size() == 1 && function.paramList.at(0).qualType.isRef() &&
657
5/8
✓ Branch 20 → 21 taken 18919 times.
✗ Branch 20 → 58 not taken.
✓ Branch 21 → 22 taken 18919 times.
✗ Branch 21 → 58 not taken.
✓ Branch 22 → 23 taken 18919 times.
✗ Branch 22 → 58 not taken.
✓ Branch 23 → 24 taken 14868 times.
✓ Branch 23 → 25 taken 4051 times.
18919 function.paramList.at(0).qualType.getBase() == function.thisType;
658
6/8
✓ Branch 26 → 27 taken 14868 times.
✓ Branch 26 → 31 taken 59031 times.
✓ Branch 27 → 28 taken 14868 times.
✗ Branch 27 → 59 not taken.
✓ Branch 28 → 29 taken 14868 times.
✗ Branch 28 → 59 not taken.
✓ Branch 29 → 30 taken 14842 times.
✓ Branch 29 → 31 taken 26 times.
73899 const bool isCopyCtor = singleSelfRefParam && function.paramList.at(0).qualType.isConstRef();
659
6/8
✓ Branch 32 → 33 taken 14868 times.
✓ Branch 32 → 37 taken 59031 times.
✓ Branch 33 → 34 taken 14868 times.
✗ Branch 33 → 59 not taken.
✓ Branch 34 → 35 taken 14868 times.
✗ Branch 34 → 59 not taken.
✓ Branch 35 → 36 taken 26 times.
✓ Branch 35 → 37 taken 14842 times.
73899 const bool isMoveCtor = singleSelfRefParam && !function.paramList.at(0).qualType.isConstRef();
660
3/4
✓ Branch 38 → 39 taken 54710 times.
✓ Branch 38 → 42 taken 11355 times.
✓ Branch 38 → 45 taken 7834 times.
✗ Branch 38 → 49 not taken.
73899 switch (kind) {
661 54710 case CtorKind::COPY:
662
2/2
✓ Branch 39 → 40 taken 8304 times.
✓ Branch 39 → 41 taken 46406 times.
54710 if (isCopyCtor)
663 13390 return true;
664 46406 break;
665 11355 case CtorKind::MOVE:
666
2/2
✓ Branch 42 → 43 taken 8 times.
✓ Branch 42 → 44 taken 11347 times.
11355 if (isMoveCtor)
667 8 return true;
668 11347 break;
669 7834 case CtorKind::ANY_NON_COPY_NON_MOVE:
670
4/4
✓ Branch 45 → 46 taken 5082 times.
✓ Branch 45 → 48 taken 2752 times.
✓ Branch 46 → 47 taken 5078 times.
✓ Branch 46 → 48 taken 4 times.
7834 if (!isCopyCtor && !isMoveCtor)
671 5078 return true;
672 2756 break;
673 }
674 }
675 }
676 27281 return false;
677 }
678
679 1987 bool FunctionManager::hasAnyCtor(const Scope *matchScope) {
680
5/8
✓ Branch 2 → 3 taken 1987 times.
✗ Branch 2 → 24 not taken.
✓ Branch 3 → 4 taken 1987 times.
✗ Branch 3 → 24 not taken.
✓ Branch 4 → 5 taken 1987 times.
✗ Branch 4 → 24 not taken.
✓ Branch 20 → 6 taken 2822 times.
✓ Branch 20 → 21 taken 1987 times.
4809 for (const auto &manifestations : matchScope->functions | std::views::values)
681
5/8
✓ Branch 7 → 8 taken 2822 times.
✗ Branch 7 → 23 not taken.
✓ Branch 8 → 9 taken 2822 times.
✗ Branch 8 → 23 not taken.
✓ Branch 9 → 10 taken 2822 times.
✗ Branch 9 → 23 not taken.
✓ Branch 17 → 11 taken 2870 times.
✓ Branch 17 → 18 taken 2822 times.
5692 for (const auto &function : manifestations | std::views::values)
682
2/4
✓ Branch 12 → 13 taken 2870 times.
✗ Branch 12 → 23 not taken.
✗ Branch 13 → 14 not taken.
✓ Branch 13 → 15 taken 2870 times.
2870 if (function.name == CTOR_FUNCTION_NAME)
683 return true;
684 1987 return false;
685 }
686
687 5350 bool FunctionManager::hasAnyNonCopyCtor(const Scope *matchScope) { return hasCtor(matchScope, CtorKind::ANY_NON_COPY_NON_MOVE); }
688
689 29262 bool FunctionManager::hasCopyCtor(const Scope *matchScope) { return hasCtor(matchScope, CtorKind::COPY); }
690
691 6051 bool FunctionManager::hasUserCopyCtor(const Scope *matchScope) {
692
5/8
✓ Branch 2 → 3 taken 6051 times.
✗ Branch 2 → 42 not taken.
✓ Branch 3 → 4 taken 6051 times.
✗ Branch 3 → 42 not taken.
✓ Branch 4 → 5 taken 6051 times.
✗ Branch 4 → 42 not taken.
✓ Branch 37 → 6 taken 27640 times.
✓ Branch 37 → 38 taken 5537 times.
33177 for (const auto &manifestations : matchScope->functions | std::views::values) {
693
5/8
✓ Branch 7 → 8 taken 27640 times.
✗ Branch 7 → 41 not taken.
✓ Branch 8 → 9 taken 27640 times.
✗ Branch 8 → 41 not taken.
✓ Branch 9 → 10 taken 27640 times.
✗ Branch 9 → 41 not taken.
✓ Branch 34 → 11 taken 29482 times.
✓ Branch 34 → 35 taken 27126 times.
56608 for (const auto &function : manifestations | std::views::values) {
694
7/8
✓ Branch 12 → 13 taken 29482 times.
✗ Branch 12 → 41 not taken.
✓ Branch 13 → 14 taken 11325 times.
✓ Branch 13 → 15 taken 18157 times.
✓ Branch 14 → 15 taken 3504 times.
✓ Branch 14 → 16 taken 7821 times.
✓ Branch 17 → 18 taken 21661 times.
✓ Branch 17 → 19 taken 7821 times.
29482 if (function.name != CTOR_FUNCTION_NAME || function.implicitDefault)
695 21661 continue;
696
6/8
✓ Branch 20 → 21 taken 5533 times.
✓ Branch 20 → 29 taken 2288 times.
✓ Branch 21 → 22 taken 5533 times.
✗ Branch 21 → 40 not taken.
✓ Branch 22 → 23 taken 5533 times.
✗ Branch 22 → 40 not taken.
✓ Branch 23 → 24 taken 838 times.
✓ Branch 23 → 29 taken 4695 times.
8659 const bool isCopyCtor = function.paramList.size() == 1 && function.paramList.at(0).qualType.isConstRef() &&
697
5/8
✓ Branch 24 → 25 taken 838 times.
✗ Branch 24 → 40 not taken.
✓ Branch 25 → 26 taken 838 times.
✗ Branch 25 → 40 not taken.
✓ Branch 26 → 27 taken 838 times.
✗ Branch 26 → 40 not taken.
✓ Branch 27 → 28 taken 514 times.
✓ Branch 27 → 29 taken 324 times.
838 function.paramList.at(0).qualType.getBase() == function.thisType;
698
2/2
✓ Branch 30 → 31 taken 514 times.
✓ Branch 30 → 32 taken 7307 times.
7821 if (isCopyCtor)
699 514 return true;
700 }
701 }
702 5537 return false;
703 }
704
705 6059 bool FunctionManager::hasMoveCtor(const Scope *matchScope) { return hasCtor(matchScope, CtorKind::MOVE); }
706
707 34248 Function *FunctionManager::findMoveCtor(Scope *matchScope) {
708
5/8
✓ Branch 2 → 3 taken 34248 times.
✗ Branch 2 → 41 not taken.
✓ Branch 3 → 4 taken 34248 times.
✗ Branch 3 → 41 not taken.
✓ Branch 4 → 5 taken 34248 times.
✗ Branch 4 → 41 not taken.
✓ Branch 36 → 6 taken 308942 times.
✓ Branch 36 → 37 taken 33911 times.
342853 for (auto &manifestations : matchScope->functions | std::views::values) {
709
5/8
✓ Branch 7 → 8 taken 308942 times.
✗ Branch 7 → 40 not taken.
✓ Branch 8 → 9 taken 308942 times.
✗ Branch 8 → 40 not taken.
✓ Branch 9 → 10 taken 308942 times.
✗ Branch 9 → 40 not taken.
✓ Branch 33 → 11 taken 389005 times.
✓ Branch 33 → 34 taken 308605 times.
697610 for (auto &function : manifestations | std::views::values) {
710
3/4
✓ Branch 12 → 13 taken 389005 times.
✗ Branch 12 → 40 not taken.
✓ Branch 13 → 14 taken 297113 times.
✓ Branch 13 → 15 taken 91892 times.
389005 if (function.name != CTOR_FUNCTION_NAME)
711 297113 continue;
712
4/6
✓ Branch 17 → 18 taken 67556 times.
✗ Branch 17 → 39 not taken.
✓ Branch 18 → 19 taken 67556 times.
✗ Branch 18 → 39 not taken.
✓ Branch 19 → 20 taken 42134 times.
✓ Branch 19 → 28 taken 25422 times.
159448 const bool isMoveCtor = function.paramList.size() == 1 && function.paramList.at(0).qualType.isRef() &&
713
6/8
✓ Branch 16 → 17 taken 67556 times.
✓ Branch 16 → 28 taken 24336 times.
✓ Branch 20 → 21 taken 42134 times.
✗ Branch 20 → 39 not taken.
✓ Branch 21 → 22 taken 42134 times.
✗ Branch 21 → 39 not taken.
✓ Branch 22 → 23 taken 5983 times.
✓ Branch 22 → 28 taken 36151 times.
165431 !function.paramList.at(0).qualType.isConstRef() &&
714
5/8
✓ Branch 23 → 24 taken 5983 times.
✗ Branch 23 → 39 not taken.
✓ Branch 24 → 25 taken 5983 times.
✗ Branch 24 → 39 not taken.
✓ Branch 25 → 26 taken 5983 times.
✗ Branch 25 → 39 not taken.
✓ Branch 26 → 27 taken 337 times.
✓ Branch 26 → 28 taken 5646 times.
5983 function.paramList.at(0).qualType.getBase() == function.thisType;
715
2/2
✓ Branch 29 → 30 taken 337 times.
✓ Branch 29 → 31 taken 91555 times.
91892 if (isMoveCtor)
716 337 return &function;
717 }
718 }
719 33911 return nullptr;
720 }
721
722 22 bool FunctionManager::hasDefaultCtor(const Scope *matchScope) {
723
4/8
✓ Branch 2 → 3 taken 22 times.
✗ Branch 2 → 29 not taken.
✓ Branch 3 → 4 taken 22 times.
✗ Branch 3 → 29 not taken.
✓ Branch 4 → 5 taken 22 times.
✗ Branch 4 → 29 not taken.
✓ Branch 25 → 6 taken 84 times.
✗ Branch 25 → 26 not taken.
84 for (const auto &manifestations : matchScope->functions | std::views::values)
724
5/8
✓ Branch 7 → 8 taken 84 times.
✗ Branch 7 → 28 not taken.
✓ Branch 8 → 9 taken 84 times.
✗ Branch 8 → 28 not taken.
✓ Branch 9 → 10 taken 84 times.
✗ Branch 9 → 28 not taken.
✓ Branch 22 → 11 taken 84 times.
✓ Branch 22 → 23 taken 62 times.
146 for (const auto &function : manifestations | std::views::values)
725
6/8
✓ Branch 12 → 13 taken 84 times.
✗ Branch 12 → 28 not taken.
✓ Branch 13 → 14 taken 22 times.
✓ Branch 13 → 17 taken 62 times.
✓ Branch 15 → 16 taken 22 times.
✗ Branch 15 → 17 not taken.
✓ Branch 18 → 19 taken 22 times.
✓ Branch 18 → 20 taken 62 times.
84 if (function.name == CTOR_FUNCTION_NAME && function.paramList.empty())
726 22 return true;
727 return false;
728 }
729
730 53029 bool FunctionManager::hasDtor(const Scope *matchScope) {
731
5/8
✓ Branch 2 → 3 taken 53029 times.
✗ Branch 2 → 24 not taken.
✓ Branch 3 → 4 taken 53029 times.
✗ Branch 3 → 24 not taken.
✓ Branch 4 → 5 taken 53029 times.
✗ Branch 4 → 24 not taken.
✓ Branch 20 → 6 taken 413497 times.
✓ Branch 20 → 21 taken 30808 times.
444305 for (const auto &manifestations : matchScope->functions | std::views::values)
732
5/8
✓ Branch 7 → 8 taken 413497 times.
✗ Branch 7 → 23 not taken.
✓ Branch 8 → 9 taken 413497 times.
✗ Branch 8 → 23 not taken.
✓ Branch 9 → 10 taken 413497 times.
✗ Branch 9 → 23 not taken.
✓ Branch 17 → 11 taken 455677 times.
✓ Branch 17 → 18 taken 391276 times.
846953 for (const auto &function : manifestations | std::views::values)
733
3/4
✓ Branch 12 → 13 taken 455677 times.
✗ Branch 12 → 23 not taken.
✓ Branch 13 → 14 taken 22221 times.
✓ Branch 13 → 15 taken 433456 times.
455677 if (function.name == DTOR_FUNCTION_NAME)
734 22221 return true;
735 30808 return false;
736 }
737
738 /**
739 * Clear the lookup cache
740 */
741 1314 void FunctionManager::cleanup() {
742 1314 lookupCache.clear();
743 1314 lookupCacheHits = 0;
744 1314 lookupCacheMisses = 0;
745 1314 }
746
747 /**
748 * Dump usage statistics for the lookup cache
749 */
750 762 std::string FunctionManager::dumpLookupCacheStatistics() {
751
1/2
✓ Branch 2 → 3 taken 762 times.
✗ Branch 2 → 22 not taken.
762 std::stringstream stats;
752
2/4
✓ Branch 3 → 4 taken 762 times.
✗ Branch 3 → 20 not taken.
✓ Branch 4 → 5 taken 762 times.
✗ Branch 4 → 20 not taken.
762 stats << "FunctionManager lookup cache statistics:" << std::endl;
753
3/6
✓ Branch 5 → 6 taken 762 times.
✗ Branch 5 → 20 not taken.
✓ Branch 7 → 8 taken 762 times.
✗ Branch 7 → 20 not taken.
✓ Branch 8 → 9 taken 762 times.
✗ Branch 8 → 20 not taken.
762 stats << " lookup cache entries: " << lookupCache.size() << std::endl;
754
3/6
✓ Branch 9 → 10 taken 762 times.
✗ Branch 9 → 20 not taken.
✓ Branch 10 → 11 taken 762 times.
✗ Branch 10 → 20 not taken.
✓ Branch 11 → 12 taken 762 times.
✗ Branch 11 → 20 not taken.
762 stats << " lookup cache hits: " << lookupCacheHits << std::endl;
755
3/6
✓ Branch 12 → 13 taken 762 times.
✗ Branch 12 → 20 not taken.
✓ Branch 13 → 14 taken 762 times.
✗ Branch 13 → 20 not taken.
✓ Branch 14 → 15 taken 762 times.
✗ Branch 14 → 20 not taken.
762 stats << " lookup cache misses: " << lookupCacheMisses << std::endl;
756
1/2
✓ Branch 15 → 16 taken 762 times.
✗ Branch 15 → 20 not taken.
1524 return stats.str();
757 762 }
758
759 } // namespace spice::compiler
760