Home
last modified time | relevance | path

Searched refs:inputFunctions (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/lld/wasm/
DSyntheticSections.cpp202 writeUleb128(os, inputFunctions.size(), "function count"); in writeBody()
203 for (const InputFunction *func : inputFunctions) in writeBody()
211 out.importSec->getNumImportedFunctions() + inputFunctions.size(); in addFunction()
212 inputFunctions.emplace_back(func); in addFunction()
504 for (const InputFunction *f : out.functionSec->inputFunctions) { in writeBody()
547 for (const InputFunction *f : out.functionSec->inputFunctions) in numNamedFunctions()
581 for (const InputFunction *f : out.functionSec->inputFunctions) { in writeBody()
DSyntheticSections.h135 bool isNeeded() const override { return inputFunctions.size() > 0; }; in isNeeded()
139 std::vector<InputFunction *> inputFunctions; variable
DWriter.cpp406 addSection(make<CodeSection>(out.functionSec->inputFunctions)); in addSections()
680 for (const InputFunction *f : out.functionSec->inputFunctions) in calculateTypes()
1297 log("Defined Functions: " + Twine(out.functionSec->inputFunctions.size())); in run()