Lines Matching refs:SectionKind
155 auto Kind = StringSwitch<Optional<SectionKind>>(Name) in parseSectionDirective()
156 .StartsWith(".data", SectionKind::getData()) in parseSectionDirective()
157 .StartsWith(".tdata", SectionKind::getThreadData()) in parseSectionDirective()
158 .StartsWith(".tbss", SectionKind::getThreadBSS()) in parseSectionDirective()
159 .StartsWith(".rodata", SectionKind::getReadOnly()) in parseSectionDirective()
160 .StartsWith(".text", SectionKind::getText()) in parseSectionDirective()
161 .StartsWith(".custom_section", SectionKind::getMetadata()) in parseSectionDirective()
162 .StartsWith(".bss", SectionKind::getBSS()) in parseSectionDirective()
165 .StartsWith(".init_array", SectionKind::getData()) in parseSectionDirective()
166 .StartsWith(".debug_", SectionKind::getMetadata()) in parseSectionDirective()
167 .Default(SectionKind::getData()); in parseSectionDirective()