• Home
  • Raw
  • Download

Lines Matching refs:SyntheticSection

36 class SyntheticSection : public OutputSection {
38 SyntheticSection(uint32_t type, std::string name = "")
75 class DylinkSection : public SyntheticSection {
77 DylinkSection() : SyntheticSection(llvm::wasm::WASM_SEC_CUSTOM, "dylink") {} in DylinkSection()
85 class TypeSection : public SyntheticSection {
87 TypeSection() : SyntheticSection(llvm::wasm::WASM_SEC_TYPE) {} in TypeSection()
99 class ImportSection : public SyntheticSection {
101 ImportSection() : SyntheticSection(llvm::wasm::WASM_SEC_IMPORT) {} in ImportSection()
131 class FunctionSection : public SyntheticSection {
133 FunctionSection() : SyntheticSection(llvm::wasm::WASM_SEC_FUNCTION) {} in FunctionSection()
144 class TableSection : public SyntheticSection {
146 TableSection() : SyntheticSection(llvm::wasm::WASM_SEC_TABLE) {} in TableSection()
163 class MemorySection : public SyntheticSection {
165 MemorySection() : SyntheticSection(llvm::wasm::WASM_SEC_MEMORY) {} in MemorySection()
184 class EventSection : public SyntheticSection {
186 EventSection() : SyntheticSection(llvm::wasm::WASM_SEC_EVENT) {} in EventSection()
194 class GlobalSection : public SyntheticSection {
196 GlobalSection() : SyntheticSection(llvm::wasm::WASM_SEC_GLOBAL) {} in GlobalSection()
230 class ExportSection : public SyntheticSection {
232 ExportSection() : SyntheticSection(llvm::wasm::WASM_SEC_EXPORT) {} in ExportSection()
240 class StartSection : public SyntheticSection {
243 : SyntheticSection(llvm::wasm::WASM_SEC_START), in StartSection()
252 class ElemSection : public SyntheticSection {
255 : SyntheticSection(llvm::wasm::WASM_SEC_ELEM) {} in ElemSection()
265 class DataCountSection : public SyntheticSection {
277 class LinkingSection : public SyntheticSection {
281 : SyntheticSection(llvm::wasm::WASM_SEC_CUSTOM, "linking"), in LinkingSection()
297 class NameSection : public SyntheticSection {
299 NameSection() : SyntheticSection(llvm::wasm::WASM_SEC_CUSTOM, "name") {} in NameSection()
309 class ProducersSection : public SyntheticSection {
312 : SyntheticSection(llvm::wasm::WASM_SEC_CUSTOM, "producers") {} in ProducersSection()
328 class TargetFeaturesSection : public SyntheticSection {
331 : SyntheticSection(llvm::wasm::WASM_SEC_CUSTOM, "target_features") {} in TargetFeaturesSection()
340 class RelocSection : public SyntheticSection {
343 : SyntheticSection(llvm::wasm::WASM_SEC_CUSTOM, std::string(name)), in RelocSection()