Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.h172 class BssSection final : public SyntheticSection {
174 BssSection(StringRef name, uint64_t size, uint32_t addralign);
1488 std::unique_ptr<BssSection> bss;
1489 std::unique_ptr<BssSection> bssRelRo;
H A DSyntheticSections.cpp375 BssSection::BssSection(StringRef name, uint64_t size, uint32_t alignment) in BssSection() function in BssSection
2225 static BssSection *getCommonSec(Symbol *sym) { in getCommonSec()
2228 return dyn_cast_or_null<BssSection>(d->section); in getCommonSec()
2258 if (BssSection *commonSec = getCommonSec(sym)) { in writeTo()
4681 in.bss = std::make_unique<BssSection>(".bss", 0, 1); in createSyntheticSections()
4688 in.bssRelRo = std::make_unique<BssSection>( in createSyntheticSections()
4818 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.cpp2349 auto *bss = make<BssSection>("COMMON", s->size, s->alignment); in replaceCommonSymbols()