Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/MC/
H A DMCSection.cpp92 PendingLabels.push_back(PendingLabel(label, Subsection)); in addPendingLabel()
97 if (PendingLabels.empty()) in flushPendingLabels()
102 for (auto It = PendingLabels.begin(); It != PendingLabels.end(); ++It) { in flushPendingLabels()
107 PendingLabels.erase(It--); in flushPendingLabels()
115 while (!PendingLabels.empty()) { in flushPendingLabels()
116 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()
73 assert(PendingLabels.empty()); in flushPendingLabels()
77 if (!PendingLabels.empty()) { in flushPendingLabels()
78 for (MCSymbol* Sym : PendingLabels) in flushPendingLabels()
80 PendingLabels.clear(); in flushPendingLabels()
93 if (!PendingLabels.empty()) { in flushPendingLabels()
96 for (MCSymbol* Sym : PendingLabels) in flushPendingLabels()
98 PendingLabels.clear(); in flushPendingLabels()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/MC/
H A DMCSection.h109 SmallVector<PendingLabel, 2> PendingLabels;
H A DMCObjectStreamer.h47 SmallVector<MCSymbol *, 2> PendingLabels; variable