Lines Matching defs:SectionKind

20 /// SectionKind - This is a simple POD value that classifies the properties of
28 class SectionKind {
38 /// SectionKind are not mergeable.
200 static SectionKind get(Kind K) {
201 SectionKind Res;
207 static SectionKind getMetadata() { return get(Metadata); }
208 static SectionKind getText() { return get(Text); }
209 static SectionKind getReadOnly() { return get(ReadOnly); }
210 static SectionKind getMergeable1ByteCString() {
213 static SectionKind getMergeable2ByteCString() {
216 static SectionKind getMergeable4ByteCString() {
219 static SectionKind getMergeableConst() { return get(MergeableConst); }
220 static SectionKind getMergeableConst4() { return get(MergeableConst4); }
221 static SectionKind getMergeableConst8() { return get(MergeableConst8); }
222 static SectionKind getMergeableConst16() { return get(MergeableConst16); }
223 static SectionKind getThreadBSS() { return get(ThreadBSS); }
224 static SectionKind getThreadData() { return get(ThreadData); }
225 static SectionKind getBSS() { return get(BSS); }
226 static SectionKind getBSSLocal() { return get(BSSLocal); }
227 static SectionKind getBSSExtern() { return get(BSSExtern); }
228 static SectionKind getCommon() { return get(Common); }
229 static SectionKind getDataRel() { return get(DataRel); }
230 static SectionKind getDataRelLocal() { return get(DataRelLocal); }
231 static SectionKind getDataNoRel() { return get(DataNoRel); }
232 static SectionKind getReadOnlyWithRel() { return get(ReadOnlyWithRel); }
233 static SectionKind getReadOnlyWithRelLocal(){