Home
last modified time | relevance | path

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

/freebsd-head/contrib/llvm-project/llvm/tools/llvm-readobj/
HDWasmDumper.cpp167 if (!LinkingData.InitFunctions.empty()) { in printSectionHeaders()
169 for (const wasm::WasmInitFunc &F : LinkingData.InitFunctions) in printSectionHeaders()
/freebsd-head/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
HDLLJIT.cpp219 InitFunctions[&JD].add(KV.first); in notifyAdding()
271 InitFunctions[&JD].add(InitName); in registerInitFunc()
295 auto IFItr = InitFunctions.find(NextJD.get()); in getInitializers()
296 if (IFItr != InitFunctions.end()) { in getInitializers()
298 InitFunctions.erase(IFItr); in getInitializers()
487 DenseMap<JITDylib *, SymbolLookupSet> InitFunctions; member in __anon29a0831a0111::GenericLLVMIRPlatformSupport
/freebsd-head/contrib/llvm-project/llvm/lib/ObjectYAML/
HDWasmEmitter.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()
HDWasmYAML.cpp78 IO.mapOptional("InitFunctions", Section.InitFunctions); in sectionMapping()
/freebsd-head/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
HDWasm.h479 std::vector<WasmInitFunc> InitFunctions; member
/freebsd-head/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
HDWasmYAML.h259 std::vector<InitFunction> InitFunctions; member
/freebsd-head/contrib/llvm-project/llvm/lib/Object/
HDWasmObjectFile.cpp655 LinkingData.InitFunctions.reserve(Count); in parseLinkingSection()
664 LinkingData.InitFunctions.emplace_back(Init); in parseLinkingSection()