Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCLabel.h23 class MCLabel {
30 MCLabel(unsigned instance) : Instance(instance) {} in MCLabel() function
33 MCLabel(const MCLabel &) = delete;
34 MCLabel &operator=(const MCLabel &) = delete;
49 inline raw_ostream &operator<<(raw_ostream &OS, const MCLabel &Label) {
H A DMCContext.h47 class MCLabel; variable
167 DenseMap<unsigned, MCLabel *> Instances;
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCLabel.cpp17 void MCLabel::print(raw_ostream &OS) const { in print()
22 LLVM_DUMP_METHOD void MCLabel::dump() const { in dump()
H A DMCContext.cpp328 MCLabel *&Label = Instances[LocalLabelVal]; in NextInstance()
330 Label = new (*this) MCLabel(0); in NextInstance()
335 MCLabel *&Label = Instances[LocalLabelVal]; in GetInstance()
337 Label = new (*this) MCLabel(0); in GetInstance()