Lines Matching refs:SectionBase
46 class SectionBase {
80 return const_cast<SectionBase *>(this)->getOutputSection(); in getOutputSection()
94 constexpr SectionBase(Kind sectionKind, StringRef name, uint64_t flags, in SectionBase() function
105 class InputSectionBase : public SectionBase {
116 static bool classof(const SectionBase *s) { return s->kind() != Output; } in classof()
127 SectionBase *parent = nullptr;
272 static bool classof(const SectionBase *s) { return s->kind() == Merge; } in classof()
328 static bool classof(const SectionBase *s) { return s->kind() == EHFrame; } in classof()
352 static bool classof(const SectionBase *s) { in classof()
353 return s->kind() == SectionBase::Regular || in classof()
354 s->kind() == SectionBase::Synthetic; in classof()