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 174 /// MCLineSection - Instances of this class represent the line information
178 class MCLineSection {
181 MCLineSection(const MCLineSection&) LLVM_DELETED_FUNCTION;
182 void operator=(const MCLineSection&) LLVM_DELETED_FUNCTION;
185 // Constructor to create an MCLineSection with an empty MCLineEntries
187 MCLineSection() {}
189 // addLineEntry - adds an entry to this MCLineSection's line entries
204 // Returns whether MCLineSection contains entries for a given Compile
MCContext.h 34 class MCLineSection;
149 DenseMap<const MCSection *, MCLineSection *> MCLineSections;
312 const DenseMap<const MCSection *, MCLineSection *>
319 void addMCLineSection(const MCSection *Sec, MCLineSection *Line) {
  /external/llvm/lib/MC/
MCDwarf.cpp 89 // Get the MCLineSection for this section, if one does not exist for this
91 const DenseMap<const MCSection *, MCLineSection *> &MCLineSections =
93 MCLineSection *LineSection = MCLineSections.lookup(Section);
95 // Create a new MCLineSection. This will be deleted after the dwarf line
98 LineSection = new MCLineSection;
135 const MCLineSection *LineSection,
149 for (MCLineSection::const_iterator
236 const DenseMap<const MCSection *, MCLineSection *> &MCLineSections =
238 for (DenseMap<const MCSection *, MCLineSection *>::const_iterator it =
327 const DenseMap<const MCSection *, MCLineSection *> &MCLineSections
    [all...]

Completed in 129 milliseconds