|
clang 22.0.0git
|
Used to hold and unique data used to represent #line information. More...
#include "clang/Basic/SourceManagerInternals.h"
Public Types | |
| using | iterator = std::map<FileID, std::vector<LineEntry>>::iterator |
Public Member Functions | |
| void | clear () |
| unsigned | getLineTableFilenameID (StringRef Str) |
| StringRef | getFilename (unsigned ID) const |
| unsigned | getNumFilenames () const |
| void | AddLineNote (FileID FID, unsigned Offset, unsigned LineNo, int FilenameID, unsigned EntryExit, SrcMgr::CharacteristicKind FileKind) |
| Add a line note to the line table that indicates that there is a #line or GNU line marker at the specified FID/Offset location which changes the presumed location to LineNo/FilenameID. | |
| const LineEntry * | FindNearestLineEntry (FileID FID, unsigned Offset) |
| Find the line entry nearest to FID that is before it. | |
| iterator | begin () |
| iterator | end () |
| void | AddEntry (FileID FID, const std::vector< LineEntry > &Entries) |
| Add a new line entry that has already been encoded into the internal representation of the line table. | |
Used to hold and unique data used to represent #line information.
Definition at line 80 of file SourceManagerInternals.h.
| using clang::LineTableInfo::iterator = std::map<FileID, std::vector<LineEntry>>::iterator |
Definition at line 121 of file SourceManagerInternals.h.
Add a new line entry that has already been encoded into the internal representation of the line table.
Definition at line 253 of file SourceManager.cpp.
| void LineTableInfo::AddLineNote | ( | FileID | FID, |
| unsigned | Offset, | ||
| unsigned | LineNo, | ||
| int | FilenameID, | ||
| unsigned | EntryExit, | ||
| SrcMgr::CharacteristicKind | FileKind ) |
Add a line note to the line table that indicates that there is a #line or GNU line marker at the specified FID/Offset location which changes the presumed location to LineNo/FilenameID.
If EntryExit is 0, then this doesn't change the presumed #include stack. If it is 1, this is a file entry, if it is 2 then this is a file exit. FileKind specifies whether this is a system header or extern C system header.
Definition at line 197 of file SourceManager.cpp.
References FindNearestLineEntry(), clang::LineEntry::get(), and clang::nullptr.
|
inline |
Definition at line 123 of file SourceManagerInternals.h.
|
inline |
Definition at line 95 of file SourceManagerInternals.h.
|
inline |
Definition at line 124 of file SourceManagerInternals.h.
Find the line entry nearest to FID that is before it.
FindNearestLineEntry - Find the line entry nearest to FID that is before it.
If there is no line entry before Offset in FID, returns null.
If there is no line entry before Offset in FID, return null.
Definition at line 234 of file SourceManager.cpp.
Referenced by AddLineNote().
|
inline |
Definition at line 103 of file SourceManagerInternals.h.
| unsigned LineTableInfo::getLineTableFilenameID | ( | StringRef | Str | ) |
Definition at line 184 of file SourceManager.cpp.
|
inline |
Definition at line 108 of file SourceManagerInternals.h.