Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lld/wasm/
H A DSyntheticSections.h320 class StartSection : public SyntheticSection {
322 StartSection() : SyntheticSection(llvm::wasm::WASM_SEC_START) {}
442 StartSection *startSec;
H A DSyntheticSections.cpp534 bool StartSection::isNeeded() const { in isNeeded()
538 void StartSection::writeBody() { in writeBody()
H A DWriter.cpp1504 out.startSec = make<StartSection>(); in createSyntheticSections()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp140 static void sectionMapping(IO &IO, WasmYAML::StartSection &Section) { in sectionMapping()
251 Section.reset(new WasmYAML::StartSection()); in mapping()
252 sectionMapping(IO, *cast<WasmYAML::StartSection>(Section.get())); in mapping()
H A DWasmEmitter.cpp47 void writeSectionContent(raw_ostream &OS, WasmYAML::StartSection &Section);
439 WasmYAML::StartSection &Section) { in writeSectionContent()
631 else if (auto S = dyn_cast<WasmYAML::StartSection>(Sec.get())) in writeWasm()
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h366 struct StartSection : Section { struct
367 StartSection() : Section(wasm::WASM_SEC_START) {} in StartSection() argument
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp313 auto StartSec = std::make_unique<WasmYAML::StartSection>(); in dump()