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&) LLVM_DELETED_FUNCTION;
181 void operator=(const MCLineSection&) LLVM_DELETED_FUNCTION;
184 // Constructor to create an MCLineSection with an empty MCLineEntries
186 MCLineSection() {}
188 // addLineEntry - adds an entry to this MCLineSection's line entries
203 // Returns whether MCLineSection contains entries for a given Compile
MCContext.h 35 class MCLineSection;
151 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 83 // Get the MCLineSection for this section, if one does not exist for this
85 const DenseMap<const MCSection *, MCLineSection *> &MCLineSections =
87 MCLineSection *LineSection = MCLineSections.lookup(Section);
89 // Create a new MCLineSection. This will be deleted after the dwarf line
92 LineSection = new MCLineSection;
129 const MCLineSection *LineSection,
143 for (MCLineSection::const_iterator
232 const DenseMap<const MCSection *, MCLineSection *> &MCLineSections =
234 for (DenseMap<const MCSection *, MCLineSection *>::const_iterator it =
323 const DenseMap<const MCSection *, MCLineSection *> &MCLineSections
    [all...]

Completed in 23 milliseconds