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

  /external/llvm/include/llvm/MC/
MCDwarf.h 173 /// MCLineSection - Instances of this class represent the line information
177 class MCLineSection {
180 MCLineSection(const MCLineSection&); // DO NOT IMPLEMENT
181 void operator=(const MCLineSection&); // DO NOT IMPLEMENT
184 // Constructor to create an MCLineSection with an empty MCLineEntries
186 MCLineSection() {}
188 // addLineEntry - adds an entry to this MCLineSection's line entries
MCContext.h 32 class MCLineSection;
133 DenseMap<const MCSection *, MCLineSection *> MCLineSections;
250 const DenseMap<const MCSection *, MCLineSection *>
257 void addMCLineSection(const MCSection *Sec, MCLineSection *Line) {
  /external/llvm/lib/MC/
MCDwarf.cpp 88 // Get the MCLineSection for this section, if one does not exist for this
90 const DenseMap<const MCSection *, MCLineSection *> &MCLineSections =
92 MCLineSection *LineSection = MCLineSections.lookup(Section);
94 // Create a new MCLineSection. This will be deleted after the dwarf line
97 LineSection = new MCLineSection;
133 const MCLineSection *LineSection) {
142 for (MCLineSection::const_iterator
294 const DenseMap<const MCSection *, MCLineSection *> &MCLineSections =
302 const MCLineSection *Line = MCLineSections.lookup(Sec);
    [all...]

Completed in 34 milliseconds