Home
last modified time | relevance | path

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

/freebsd/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.h50 class MCLabel; variable
169 DenseMap<unsigned, MCLabel *> Instances;
/freebsd/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.cpp358 MCLabel *&Label = Instances[LocalLabelVal]; in NextInstance()
360 Label = new (*this) MCLabel(0); in NextInstance()
365 MCLabel *&Label = Instances[LocalLabelVal]; in GetInstance()
367 Label = new (*this) MCLabel(0); in GetInstance()