Home
last modified time | relevance | path

Searched refs:BssSection (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.h167 class BssSection final : public SyntheticSection {
169 BssSection(StringRef name, uint64_t size, uint32_t addralign);
1341 std::unique_ptr<BssSection> bss;
1342 std::unique_ptr<BssSection> bssRelRo;
H A DSyntheticSections.cpp351 BssSection::BssSection(StringRef name, uint64_t size, uint32_t alignment) in BssSection() function in BssSection
2204 static BssSection *getCommonSec(Symbol *sym) { in getCommonSec()
2207 return dyn_cast_or_null<BssSection>(d->section); in getCommonSec()
2237 if (BssSection *commonSec = getCommonSec(sym)) { in writeTo()
H A DWriter.cpp355 in.bss = std::make_unique<BssSection>(".bss", 0, 1); in createSyntheticSections()
362 in.bssRelRo = std::make_unique<BssSection>( in createSyntheticSections()
486 std::make_unique<BssSection>(".part.end", config->maxPageSize, 1); in createSyntheticSections()
H A DRelocations.cpp383 BssSection *sec = in addCopyRelSymbol()
384 make<BssSection>(isRO ? ".bss.rel.ro" : ".bss", symSize, ss.alignment); in addCopyRelSymbol()
H A DDriver.cpp2217 auto *bss = make<BssSection>("COMMON", s->size, s->alignment); in replaceCommonSymbols()