Searched refs:InputFunction (Results 1 – 13 of 13) sorted by relevance
/external/llvm-project/lld/wasm/ |
D | SymbolTable.h | 55 InputFunction *function); 85 InputFunction *function); 97 std::vector<InputFunction *> syntheticFunctions; 106 InputFunction *replaceWithUnreachable(Symbol *sym, const WasmSignature &sig,
|
D | InputChunks.h | 123 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
|
D | InputChunks.cpp | 211 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()
|
D | OutputSections.h | 61 explicit CodeSection(ArrayRef<InputFunction *> functions) in CodeSection() 75 ArrayRef<InputFunction *> functions;
|
D | InputFiles.h | 31 class InputFunction; variable 139 std::vector<InputFunction *> functions;
|
D | SyntheticSections.cpp | 203 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()
|
D | Symbols.h | 34 class InputFunction; variable 202 InputFunction *function); 208 InputFunction *function;
|
D | SyntheticSections.h | 137 void addFunction(InputFunction *func); 139 std::vector<InputFunction *> inputFunctions;
|
D | InputFiles.cpp | 178 InputFunction *f = in calcExpectedValue() 398 auto* func = make<InputFunction>(types[funcTypes[i]], &funcs[i], this); in parse() 462 InputFunction *func = in createDefined()
|
D | SymbolTable.cpp | 201 InputFunction *function) { in addSyntheticFunction() 286 InputFunction *function) { in addDefinedFunction() 666 InputFunction *SymbolTable::replaceWithUnreachable(Symbol *sym, in replaceWithUnreachable()
|
D | OutputSections.cpp | 89 for (InputFunction *func : functions) { in finalizeContents()
|
D | Writer.cpp | 680 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()
|
D | Symbols.cpp | 261 InputFunction *function) in DefinedFunction()
|