Home
last modified time | relevance | path

Searched refs:importSec (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/lld/wasm/
DSyntheticSections.cpp211 out.importSec->getNumImportedFunctions() + inputFunctions.size(); in addFunction()
261 out.importSec->getNumImportedEvents() + inputEvents.size(); in addEvent()
268 uint32_t globalIndex = out.importSec->getNumImportedGlobals(); in assignIndexes()
545 unsigned numNames = out.importSec->getNumImportedFunctions(); in numNamedFunctions()
555 unsigned numNames = out.importSec->getNumImportedGlobals(); in numNamedGlobals()
575 for (const Symbol *s : out.importSec->importedSymbols) { in writeBody()
599 for (const Symbol *s : out.importSec->importedSymbols) { in writeBody()
605 for (const Symbol *s : out.importSec->gotSymbols) { in writeBody()
DWriter.cpp395 addSection(out.importSec); in addSections()
485 for (const Symbol *sym : out.importSec->importedSymbols) { in populateTargetFeatures()
584 out.importSec->addImport(sym); in calculateImports()
602 out.importSec->getNumImportedGlobals() + out.globalSec->numGlobals(); in calculateExports()
673 for (const Symbol *sym : out.importSec->importedSymbols) { in calculateTypes()
749 out.importSec->seal(); in assignIndexes()
1202 out.importSec = make<ImportSection>(); in createSyntheticSections()
1301 Twine(out.importSec->getNumImportedFunctions())); in run()
1302 log("Global Imports : " + Twine(out.importSec->getNumImportedGlobals())); in run()
1303 log("Event Imports : " + Twine(out.importSec->getNumImportedEvents())); in run()
DRelocations.cpp79 out.importSec->addGOTEntry(sym); in addGOTEntry()
DSyntheticSections.h357 ImportSection *importSec; member