Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lld/wasm/
H A DMarkLive.cpp80 for (const WasmInitFunc &f : l.InitFunctions) { in enqueueInitFunctions()
198 for (const WasmInitFunc &f : l.InitFunctions) { in isCallCtorsLive()
H A DWriter.cpp1499 for (const WasmInitFunc &f : l.InitFunctions) { in calculateInitFunctions()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DLLJIT.cpp270 InitFunctions[&JD].add(KV.first); in notifyAdding()
322 InitFunctions[&JD].add(InitName); in registerInitFunc()
347 auto IFItr = InitFunctions.find(NextJD.get()); in getInitializers()
348 if (IFItr != InitFunctions.end()) { in getInitializers()
350 InitFunctions.erase(IFItr); in getInitializers()
539 DenseMap<JITDylib *, SymbolLookupSet> InitFunctions; member in __anonafc103b20111::GenericLLVMIRPlatformSupport
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DWasmDumper.cpp167 if (!LinkingData.InitFunctions.empty()) { in printSectionHeaders()
169 for (const wasm::WasmInitFunc &F : LinkingData.InitFunctions) in printSectionHeaders()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp243 if (Section.InitFunctions.size()) { in writeSectionContent()
245 encodeULEB128(Section.InitFunctions.size(), SubSection.getStream()); in writeSectionContent()
246 for (const WasmYAML::InitFunction &Func : Section.InitFunctions) { in writeSectionContent()
H A DWasmYAML.cpp76 IO.mapOptional("InitFunctions", Section.InitFunctions); in sectionMapping()
/openbsd-src/gnu/llvm/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp149 for (const wasm::WasmInitFunc &Func : Obj.linkingData().InitFunctions) { in dumpCustomSection()
151 LinkingSec->InitFunctions.emplace_back(F); in dumpCustomSection()
/openbsd-src/gnu/llvm/llvm/include/llvm/BinaryFormat/
H A DWasm.h236 std::vector<WasmInitFunc> InitFunctions; member
/openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h258 std::vector<InitFunction> InitFunctions; member
/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DWasmObjectFile.cpp554 LinkingData.InitFunctions.reserve(Count); in parseLinkingSection()
563 LinkingData.InitFunctions.emplace_back(Init); in parseLinkingSection()