Home
last modified time | relevance | path

Searched refs:InputFunction (Results 1 – 13 of 13) sorted by relevance

/external/llvm-project/lld/wasm/
DSymbolTable.h55 InputFunction *function);
85 InputFunction *function);
97 std::vector<InputFunction *> syntheticFunctions;
106 InputFunction *replaceWithUnreachable(Symbol *sym, const WasmSignature &sig,
DInputChunks.h123 class InputFunction : public InputChunk {
125 InputFunction(const WasmSignature &s, const WasmFunction *func, ObjFile *f) in InputFunction() function
188 class SyntheticFunction : public InputFunction {
192 : InputFunction(s, nullptr, nullptr), name(name), debugName(debugName) { in InputFunction() function
DInputChunks.cpp211 void InputFunction::setFunctionIndex(uint32_t index) { in setFunctionIndex()
218 void InputFunction::setTableIndex(uint32_t index) { in setTableIndex()
281 void InputFunction::calculateSize() { in calculateSize()
318 void InputFunction::writeTo(uint8_t *buf) const { in writeTo()
DOutputSections.h61 explicit CodeSection(ArrayRef<InputFunction *> functions) in CodeSection()
75 ArrayRef<InputFunction *> functions;
DInputFiles.h31 class InputFunction; variable
139 std::vector<InputFunction *> functions;
DSyntheticSections.cpp203 for (const InputFunction *func : inputFunctions) in writeBody()
207 void FunctionSection::addFunction(InputFunction *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()
DSymbols.h34 class InputFunction; variable
202 InputFunction *function);
208 InputFunction *function;
DSyntheticSections.h137 void addFunction(InputFunction *func);
139 std::vector<InputFunction *> inputFunctions;
DInputFiles.cpp178 InputFunction *f = in calcExpectedValue()
398 auto* func = make<InputFunction>(types[funcTypes[i]], &funcs[i], this); in parse()
462 InputFunction *func = in createDefined()
DSymbolTable.cpp201 InputFunction *function) { in addSyntheticFunction()
286 InputFunction *function) { in addDefinedFunction()
666 InputFunction *SymbolTable::replaceWithUnreachable(Symbol *sym, in replaceWithUnreachable()
DOutputSections.cpp89 for (InputFunction *func : functions) { in finalizeContents()
DWriter.cpp680 for (const InputFunction *f : out.functionSec->inputFunctions) in calculateTypes()
751 for (InputFunction *func : symtab->syntheticFunctions) in assignIndexes()
756 for (InputFunction *func : file->functions) in assignIndexes()
DSymbols.cpp261 InputFunction *function) in DefinedFunction()