Home | History | Annotate | Download | only in MC

Lines Matching refs:LineSection

87   MCLineSection *LineSection = MCLineSections.lookup(Section);
88 if (!LineSection) {
92 LineSection = new MCLineSection;
93 // Save a pointer to the new LineSection into the MCLineSections DenseMap.
94 MCOS->getContext().addMCLineSection(Section, LineSection);
98 LineSection->addLineEntry(LineEntry,
125 // in the LineSection.
129 const MCLineSection *LineSection,
131 // This LineSection does not contain any LineEntry for the given Compile Unit.
132 if (!LineSection->containEntriesForID(CUID))
144 it = LineSection->getMCLineEntries(CUID).begin(),
145 ie = LineSection->getMCLineEntries(CUID).end(); it != ie; ++it) {