Lines Matching refs:SectionKind
160 auto Kind = StringSwitch<std::optional<SectionKind>>(Name) in parseSectionDirective()
161 .StartsWith(".data", SectionKind::getData()) in parseSectionDirective()
162 .StartsWith(".tdata", SectionKind::getThreadData()) in parseSectionDirective()
163 .StartsWith(".tbss", SectionKind::getThreadBSS()) in parseSectionDirective()
164 .StartsWith(".rodata", SectionKind::getReadOnly()) in parseSectionDirective()
165 .StartsWith(".text", SectionKind::getText()) in parseSectionDirective()
166 .StartsWith(".custom_section", SectionKind::getMetadata()) in parseSectionDirective()
167 .StartsWith(".bss", SectionKind::getBSS()) in parseSectionDirective()
170 .StartsWith(".init_array", SectionKind::getData()) in parseSectionDirective()
171 .StartsWith(".debug_", SectionKind::getMetadata()) in parseSectionDirective()
172 .Default(SectionKind::getData()); in parseSectionDirective()