Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCSection.cpp92 PendingLabels.push_back(PendingLabel(label, Subsection)); in addPendingLabel()
99 for (auto It = PendingLabels.begin(); It != PendingLabels.end(); ++It) { in flushPendingLabels()
104 PendingLabels.erase(It--); in flushPendingLabels()
112 while (!PendingLabels.empty()) { in flushPendingLabels()
113 PendingLabel& Label = PendingLabels[0]; in flushPendingLabels()
H A DMCObjectStreamer.cpp54 if (!PendingLabels.empty()) { in addPendingLabel()
57 PendingLabels.clear(); in addPendingLabel()
67 PendingLabels.push_back(S); in addPendingLabel()
74 assert(PendingLabels.empty()); in flushPendingLabels()
78 if (!PendingLabels.empty()) { in flushPendingLabels()
79 for (MCSymbol* Sym : PendingLabels) in flushPendingLabels()
81 PendingLabels.clear(); in flushPendingLabels()
90 if (!PendingLabels.empty()) { in flushPendingLabels()
93 for (MCSymbol* Sym : PendingLabels) in flushPendingLabels()
95 PendingLabels.clear(); in flushPendingLabels()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSection.h109 SmallVector<PendingLabel, 2> PendingLabels;
H A DMCObjectStreamer.h47 SmallVector<MCSymbol *, 2> PendingLabels; variable