Home
last modified time | relevance | path

Searched refs:InitFunctions (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DWasmDumper.cpp167 if (!LinkingData.InitFunctions.empty()) { in printSectionHeaders()
169 for (const wasm::WasmInitFunc &F : LinkingData.InitFunctions) in printSectionHeaders()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DLLJIT.cpp205 InitFunctions[&JD].add(KV.first); in notifyAdding()
255 InitFunctions[&JD].add(InitName); in registerInitFunc()
272 auto IFItr = InitFunctions.find(NextJD.get()); in getInitializers()
273 if (IFItr != InitFunctions.end()) { in getInitializers()
275 InitFunctions.erase(IFItr); in getInitializers()
442 DenseMap<JITDylib *, SymbolLookupSet> InitFunctions; member in __anon09f517660111::GenericLLVMIRPlatformSupport
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp230 if (Section.InitFunctions.size()) { in writeSectionContent()
232 encodeULEB128(Section.InitFunctions.size(), SubSection.getStream()); in writeSectionContent()
233 for (const WasmYAML::InitFunction &Func : Section.InitFunctions) { in writeSectionContent()
H A DWasmYAML.cpp74 IO.mapOptional("InitFunctions", Section.InitFunctions); in sectionMapping()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp145 for (const wasm::WasmInitFunc &Func : Obj.linkingData().InitFunctions) { in dumpCustomSection()
147 LinkingSec->InitFunctions.emplace_back(F); in dumpCustomSection()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
H A DWasm.h222 std::vector<WasmInitFunc> InitFunctions; member
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h241 std::vector<InitFunction> InitFunctions; member
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DWasmObjectFile.cpp471 LinkingData.InitFunctions.reserve(Count); in parseLinkingSection()
480 LinkingData.InitFunctions.emplace_back(Init); in parseLinkingSection()