Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
DWasmDumper.cpp170 if (!LinkingData.InitFunctions.empty()) { in printSections()
172 for (const wasm::WasmInitFunc &F: LinkingData.InitFunctions) in printSections()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/yaml2obj/
Dyaml2wasm.cpp192 if (Section.InitFunctions.size()) { in writeSectionContent()
194 encodeULEB128(Section.InitFunctions.size(), SubSection.GetStream()); in writeSectionContent()
195 for (const WasmYAML::InitFunction &Func : Section.InitFunctions) { in writeSectionContent()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
Dwasm2yaml.cpp116 for (const wasm::WasmInitFunc &Func : Obj.linkingData().InitFunctions) { in dumpCustomSection()
118 LinkingSec->InitFunctions.emplace_back(F); in dumpCustomSection()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/BinaryFormat/
DWasm.h168 std::vector<WasmInitFunc> InitFunctions; member
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/WebAssembly/
Dglobal-ctor-dtor.ll175 ; CHECK-NEXT: InitFunctions:
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/
DWasmYAML.h201 std::vector<InitFunction> InitFunctions; member
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
DWasmObjectFile.cpp391 LinkingData.InitFunctions.reserve(Count); in parseLinkingSection()
400 LinkingData.InitFunctions.emplace_back(Init); in parseLinkingSection()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DWasmYAML.cpp63 IO.mapOptional("InitFunctions", Section.InitFunctions); in sectionMapping()