Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DImportedFunctionsInliningStatistics.cpp80 ImportedFunctions += int(F.hasMetadata("thinlto_src_module")); in setModuleInfo()
145 auto NotImportedFuncCount = AllFunctions - ImportedFunctions; in dump()
147 ImportedFunctions - InlinedImportedFunctionsToImportingModuleCount; in dump()
151 << ", imported functions: " << ImportedFunctions << "\n" in dump()
155 InlinedImportedFunctionsCount, ImportedFunctions, in dump()
159 ImportedFunctions, "imported functions", in dump()
162 ImportedFunctions, "imported functions") in dump()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/Utils/
H A DImportedFunctionsInliningStatistics.h101 int ImportedFunctions = 0; variable
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp705 std::vector<wasm::WasmImport *> ImportedFunctions; in parseLinkingSectionSymtab() local
709 ImportedFunctions.reserve(Imports.size()); in parseLinkingSectionSymtab()
714 ImportedFunctions.emplace_back(&I); in parseLinkingSectionSymtab()
748 wasm::WasmImport &Import = *ImportedFunctions[Info.ElementIndex]; in parseLinkingSectionSymtab()