Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/test/ObjectYAML/wasm/
H A Dlinking_section.yaml49 InitFunctions:
68 # CHECK-NEXT: InitFunctions:
/llvm-project-15.0.7/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.cpp1474 for (const WasmInitFunc &f : l.InitFunctions) { in calculateInitFunctions()
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/
H A DLLJIT.cpp221 InitFunctions[&JD].add(KV.first); in notifyAdding()
273 InitFunctions[&JD].add(InitName); in registerInitFunc()
298 auto IFItr = InitFunctions.find(NextJD.get()); in getInitializers()
299 if (IFItr != InitFunctions.end()) { in getInitializers()
301 InitFunctions.erase(IFItr); in getInitializers()
490 DenseMap<JITDylib *, SymbolLookupSet> InitFunctions; member in __anon97b4e7eb0111::GenericLLVMIRPlatformSupport
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DWasmDumper.cpp167 if (!LinkingData.InitFunctions.empty()) { in printSectionHeaders()
169 for (const wasm::WasmInitFunc &F : LinkingData.InitFunctions) in printSectionHeaders()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/lld/test/wasm/
H A Dinit-fini.ll139 ; RELOC-NEXT: InitFunctions [
/llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/
H A DWasm.h236 std::vector<WasmInitFunc> InitFunctions; member
/llvm-project-15.0.7/llvm/test/MC/WebAssembly/
H A Dglobal-ctor-dtor.ll178 ; CHECK-NEXT: InitFunctions:
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h258 std::vector<InitFunction> InitFunctions; member
/llvm-project-15.0.7/llvm/lib/Object/
H A DWasmObjectFile.cpp554 LinkingData.InitFunctions.reserve(Count); in parseLinkingSection()
563 LinkingData.InitFunctions.emplace_back(Init); in parseLinkingSection()