Home | History | Annotate | Download | only in MC

Lines Matching defs:MCDwarfLoc

57 class MCDwarfLoc {
78 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags,
84 // for an MCDwarfLoc object.
87 /// \brief Get the FileNum of this MCDwarfLoc.
90 /// \brief Get the Line of this MCDwarfLoc.
93 /// \brief Get the Column of this MCDwarfLoc.
96 /// \brief Get the Flags of this MCDwarfLoc.
99 /// \brief Get the Isa of this MCDwarfLoc.
102 /// \brief Get the Discriminator of this MCDwarfLoc.
105 /// \brief Set the FileNum of this MCDwarfLoc.
108 /// \brief Set the Line of this MCDwarfLoc.
111 /// \brief Set the Column of this MCDwarfLoc.
117 /// \brief Set the Flags of this MCDwarfLoc.
123 /// \brief Set the Isa of this MCDwarfLoc.
129 /// \brief Set the Discriminator of this MCDwarfLoc.
140 class MCDwarfLineEntry : public MCDwarfLoc {
149 MCDwarfLineEntry(MCSymbol *label, const MCDwarfLoc loc)
150 : MCDwarfLoc(loc), Label(label) {}