Lines Matching defs:sec
45 #define invokeOnRelocs(sec, f, ...) \
47 const RelsOrRelas<ELFT> rs = (sec).template relsOrRelas<ELFT>(); \
147 const InputSectionBase *sec;
151 const InputSectionBase &sec;
378 EhSectionPiece(size_t off, InputSectionBase *sec, uint32_t size,
380 : inputOff(off), sec(sec), size(size), firstRelocation(firstRelocation) {}
383 return {sec->content().data() + this->inputOff, size};
388 InputSectionBase *sec;
485 static bool classof(const SectionBase *sec) {
486 return sec->kind() == InputSectionBase::Spill;
512 static bool classof(const SectionBase *sec) {
513 return sec->kind() == InputSectionBase::Synthetic;
522 inline bool isDebugSection(const InputSectionBase &sec) {
523 return (sec.flags & llvm::ELF::SHF_ALLOC) == 0 &&
524 sec.name.starts_with(".debug");