Lines Matching refs:SectionKind
117 auto Kind = StringSwitch<Optional<SectionKind>>(Name) in parseSectionDirective()
118 .StartsWith(".data", SectionKind::getData()) in parseSectionDirective()
119 .StartsWith(".tdata", SectionKind::getThreadData()) in parseSectionDirective()
120 .StartsWith(".tbss", SectionKind::getThreadBSS()) in parseSectionDirective()
121 .StartsWith(".rodata", SectionKind::getReadOnly()) in parseSectionDirective()
122 .StartsWith(".text", SectionKind::getText()) in parseSectionDirective()
123 .StartsWith(".custom_section", SectionKind::getMetadata()) in parseSectionDirective()
124 .StartsWith(".bss", SectionKind::getBSS()) in parseSectionDirective()
127 .StartsWith(".init_array", SectionKind::getData()) in parseSectionDirective()
128 .StartsWith(".debug_", SectionKind::getMetadata()) in parseSectionDirective()
129 .Default(Optional<SectionKind>()); in parseSectionDirective()