Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DImportedFunctionsInliningStatistics.cpp68 ImportedFunctions += int(F.getMetadata("thinlto_src_module") != nullptr); in setModuleInfo()
133 auto NotImportedFuncCount = AllFunctions - ImportedFunctions; in dump()
135 ImportedFunctions - InlinedImportedFunctionsToImportingModuleCount; in dump()
139 << ", imported functions: " << ImportedFunctions << "\n" in dump()
143 InlinedImportedFunctionsCount, ImportedFunctions, in dump()
147 ImportedFunctions, "imported functions", in dump()
150 ImportedFunctions, "imported functions") in dump()
/freebsd-12.1/contrib/llvm/include/llvm/Transforms/Utils/
H A DImportedFunctionsInliningStatistics.h101 int ImportedFunctions = 0; variable
/freebsd-12.1/contrib/llvm/lib/Object/
H A DWasmObjectFile.cpp468 std::vector<wasm::WasmImport *> ImportedFunctions; in parseLinkingSectionSymtab() local
471 ImportedFunctions.reserve(Imports.size()); in parseLinkingSectionSymtab()
475 ImportedFunctions.emplace_back(&I); in parseLinkingSectionSymtab()
507 wasm::WasmImport &Import = *ImportedFunctions[Info.ElementIndex]; in parseLinkingSectionSymtab()