reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
165 SectionType = Section->Type; 173 auto CustomSection = cast<WasmYAML::CustomSection>(Section.get()); 180 Section.reset(new WasmYAML::DylinkSection()); 181 sectionMapping(IO, *cast<WasmYAML::DylinkSection>(Section.get())); 184 Section.reset(new WasmYAML::LinkingSection()); 185 sectionMapping(IO, *cast<WasmYAML::LinkingSection>(Section.get())); 188 Section.reset(new WasmYAML::NameSection()); 189 sectionMapping(IO, *cast<WasmYAML::NameSection>(Section.get())); 192 Section.reset(new WasmYAML::ProducersSection()); 193 sectionMapping(IO, *cast<WasmYAML::ProducersSection>(Section.get())); 196 Section.reset(new WasmYAML::TargetFeaturesSection()); 197 sectionMapping(IO, *cast<WasmYAML::TargetFeaturesSection>(Section.get())); 200 Section.reset(new WasmYAML::CustomSection(SectionName)); 201 sectionMapping(IO, *cast<WasmYAML::CustomSection>(Section.get())); 207 Section.reset(new WasmYAML::TypeSection()); 208 sectionMapping(IO, *cast<WasmYAML::TypeSection>(Section.get())); 212 Section.reset(new WasmYAML::ImportSection()); 213 sectionMapping(IO, *cast<WasmYAML::ImportSection>(Section.get())); 217 Section.reset(new WasmYAML::FunctionSection()); 218 sectionMapping(IO, *cast<WasmYAML::FunctionSection>(Section.get())); 222 Section.reset(new WasmYAML::TableSection()); 223 sectionMapping(IO, *cast<WasmYAML::TableSection>(Section.get())); 227 Section.reset(new WasmYAML::MemorySection()); 228 sectionMapping(IO, *cast<WasmYAML::MemorySection>(Section.get())); 232 Section.reset(new WasmYAML::GlobalSection()); 233 sectionMapping(IO, *cast<WasmYAML::GlobalSection>(Section.get())); 237 Section.reset(new WasmYAML::EventSection()); 238 sectionMapping(IO, *cast<WasmYAML::EventSection>(Section.get())); 242 Section.reset(new WasmYAML::ExportSection()); 243 sectionMapping(IO, *cast<WasmYAML::ExportSection>(Section.get())); 247 Section.reset(new WasmYAML::StartSection()); 248 sectionMapping(IO, *cast<WasmYAML::StartSection>(Section.get())); 252 Section.reset(new WasmYAML::ElemSection()); 253 sectionMapping(IO, *cast<WasmYAML::ElemSection>(Section.get())); 257 Section.reset(new WasmYAML::CodeSection()); 258 sectionMapping(IO, *cast<WasmYAML::CodeSection>(Section.get())); 262 Section.reset(new WasmYAML::DataSection()); 263 sectionMapping(IO, *cast<WasmYAML::DataSection>(Section.get())); 267 Section.reset(new WasmYAML::DataCountSection()); 268 sectionMapping(IO, *cast<WasmYAML::DataCountSection>(Section.get()));