HomeSort by relevance Sort by last modified time
    Searched refs:MCLabel (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/MC/
MCLabel.h 1 //===- MCLabel.h - Machine Code Directional Local Labels --------*- C++ -*-===//
10 // This file contains the declaration of the MCLabel class.
21 /// MCLabel - Instances of this class represent a label name in the MC file,
22 /// and MCLabel are created and unique'd by the MCContext class. MCLabel
24 class MCLabel {
30 MCLabel(unsigned instance)
33 MCLabel(const MCLabel&); // DO NOT IMPLEMENT
34 void operator=(const MCLabel&); // DO NOT IMPLEMEN
    [all...]
MCContext.h 27 class MCLabel;
78 DenseMap<unsigned, MCLabel *> Instances;
  /external/llvm/lib/MC/
MCLabel.cpp 1 //===- lib/MC/MCLabel.cpp - MCLabel implementation ----------------------===//
10 #include "llvm/MC/MCLabel.h"
15 void MCLabel::print(raw_ostream &OS) const {
19 void MCLabel::dump() const {
MCContext.cpp 18 #include "llvm/MC/MCLabel.h"
125 MCLabel *&Label = Instances[LocalLabelVal];
127 Label = new (*this) MCLabel(0);
132 MCLabel *&Label = Instances[LocalLabelVal];
134 Label = new (*this) MCLabel(0);
Android.mk 24 MCLabel.cpp \

Completed in 193 milliseconds