Lines Matching defs:section
42 InputFile *getFile() const { return section.file; }
43 StringRef getName() const { return section.name; }
44 StringRef getSegName() const { return section.segname; }
45 uint32_t getFlags() const { return section.flags; }
67 InputSection(Kind kind, const Section §ion, ArrayRef<uint8_t> data,
70 data(data), section(section) {}
74 align(rhs.align), data(rhs.data), section(rhs.section) {}
81 // keep the address of the symbol(s) in this section unique in the final
84 // Does this section have symbols at offsets other than zero? (NOTE: only
96 const Section §ion;
107 ConcatInputSection(const Section §ion, ArrayRef<uint8_t> data,
109 : InputSection(ConcatKind, section, data, align) {}
133 // Points to the surviving section after this one is folded by ICF
148 // beginning of the output section this section was assigned to.
175 // Offset from the start of the containing input section.
180 // Offset from the start of the containing output section.
201 CStringInputSection(const Section §ion, ArrayRef<uint8_t> data,
203 : InputSection(CStringLiteralKind, section, data, align),
250 WordLiteralInputSection(const Section §ion, ArrayRef<uint8_t> data,