Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/ELF/
H A DLinkerScript.cpp664 PotentialSpillSection *pss = make<PotentialSpillSection>( in computeInputSections()
669 PotentialSpillSection *&tail = it->second.tail; in computeInputSections()
822 if (isa<PotentialSpillSection>(isec) || in processSectionCommands()
1264 if (isa<PotentialSpillSection>(isec)) in assignOffsets()
1577 DenseSet<PotentialSpillSection *> skippedSpills; in spillSections()
1602 if (isa<PotentialSpillSection>(isec)) in spillSections()
1610 auto canSpillHelp = [&](PotentialSpillSection *spill) { in spillSections()
1621 PotentialSpillSection *spill; in spillSections()
1669 for (PotentialSpillSection *s : skippedSpills) in spillSections()
1673 return skippedSpills.contains(dyn_cast<PotentialSpillSection>(s)); in spillSections()
[all …]
H A DInputSection.h473 class PotentialSpillSection : public InputSection {
480 PotentialSpillSection *next = nullptr;
482 PotentialSpillSection(const InputSectionBase &source,
H A DLinkerScript.h463 PotentialSpillSection *head;
464 PotentialSpillSection *tail;
H A DInputSection.cpp379 PotentialSpillSection::PotentialSpillSection(const InputSectionBase &source, in PotentialSpillSection() function in PotentialSpillSection
H A DOutputSections.cpp268 for (PotentialSpillSection *s = it->second.head; s; s = s->next) { in finalizeInputSections()