Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lld/wasm/
H A DSyntheticSections.h205 class FunctionSection : public SyntheticSection {
207 FunctionSection() : SyntheticSection(llvm::wasm::WASM_SEC_FUNCTION) {}
436 FunctionSection *functionSec;
H A DSyntheticSections.cpp293 void FunctionSection::writeBody() { in writeBody()
301 void FunctionSection::addFunction(InputFunction *func) { in addFunction()
H A DWriter.cpp1523 out.functionSec = make<FunctionSection>(); in createSyntheticSections()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp41 void writeSectionContent(raw_ostream &OS, WasmYAML::FunctionSection &Section);
422 WasmYAML::FunctionSection &Section) { in writeSectionContent()
619 else if (auto S = dyn_cast<WasmYAML::FunctionSection>(Sec.get())) in writeWasm()
H A DWasmYAML.cpp110 static void sectionMapping(IO &IO, WasmYAML::FunctionSection &Section) { in sectionMapping()
221 Section.reset(new WasmYAML::FunctionSection()); in mapping()
222 sectionMapping(IO, *cast<WasmYAML::FunctionSection>(Section.get())); in mapping()
/openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h306 struct FunctionSection : Section { struct
307 FunctionSection() : Section(wasm::WASM_SEC_FUNCTION) {} in FunctionSection() argument
/openbsd-src/gnu/llvm/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp263 auto FuncSec = std::make_unique<WasmYAML::FunctionSection>(); in dump()