1//===- SourceLocation.cpp - Compact identifier for Source Files -----------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file defines accessor methods for the FullSourceLoc class.
10//
11//===----------------------------------------------------------------------===//
12
13#include "clang/Basic/SourceLocation.h"
14#include "clang/Basic/LLVM.h"
15#include "clang/Basic/PrettyStackTrace.h"
16#include "clang/Basic/SourceManager.h"
17#include "llvm/ADT/DenseMapInfo.h"
18#include "llvm/ADT/FoldingSet.h"
19#include "llvm/Support/Compiler.h"
20#include "llvm/Support/raw_ostream.h"
21#include <cassert>
22#include <string>
23#include <utility>
24
25using namespace clang;
26
27//===----------------------------------------------------------------------===//
28// PrettyStackTraceLoc
29//===----------------------------------------------------------------------===//
30
31void PrettyStackTraceLoc::print(raw_ostream &OS) const {
32 if (Loc.isValid()) {
33 Loc.print(OS, SM);
34 OS << ": ";
35 }
36 OS << Message << '\n';
37}
38
39//===----------------------------------------------------------------------===//
40// SourceLocation
41//===----------------------------------------------------------------------===//
42
43static_assert(std::is_trivially_destructible_v<SourceLocation>,
44 "SourceLocation must be trivially destructible because it is "
45 "used in unions");
46
47static_assert(std::is_trivially_destructible_v<SourceRange>,
48 "SourceRange must be trivially destructible because it is "
49 "used in unions");
50
51unsigned SourceLocation::getHashValue() const {
52 return llvm::DenseMapInfo<UIntTy>::getHashValue(Val: ID);
53}
54
55void llvm::FoldingSetTrait<SourceLocation>::Profile(
56 const SourceLocation &X, llvm::FoldingSetNodeID &ID) {
57 ID.AddInteger(I: X.ID);
58}
59
60void SourceLocation::print(raw_ostream &OS, const SourceManager &SM)const{
61 if (!isValid()) {
62 OS << "<invalid loc>";
63 return;
64 }
65
66 if (isFileID()) {
67 PresumedLoc PLoc = SM.getPresumedLoc(Loc: *this);
68
69 if (PLoc.isInvalid()) {
70 OS << "<invalid>";
71 return;
72 }
73 // The macro expansion and spelling pos is identical for file locs.
74 OS << PLoc.getFilename() << ':' << PLoc.getLine()
75 << ':' << PLoc.getColumn();
76 return;
77 }
78
79 SM.getExpansionLoc(Loc: *this).print(OS, SM);
80
81 OS << " <Spelling=";
82 SM.getSpellingLoc(Loc: *this).print(OS, SM);
83 OS << '>';
84}
85
86LLVM_DUMP_METHOD std::string
87SourceLocation::printToString(const SourceManager &SM) const {
88 std::string S;
89 llvm::raw_string_ostream OS(S);
90 print(OS, SM);
91 return S;
92}
93
94LLVM_DUMP_METHOD void SourceLocation::dump(const SourceManager &SM) const {
95 print(OS&: llvm::errs(), SM);
96 llvm::errs() << '\n';
97}
98
99LLVM_DUMP_METHOD void SourceRange::dump(const SourceManager &SM) const {
100 print(OS&: llvm::errs(), SM);
101 llvm::errs() << '\n';
102}
103
104static PresumedLoc PrintDifference(raw_ostream &OS, const SourceManager &SM,
105 SourceLocation Loc, PresumedLoc Previous) {
106 if (Loc.isFileID()) {
107
108 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
109
110 if (PLoc.isInvalid()) {
111 OS << "<invalid sloc>";
112 return Previous;
113 }
114
115 if (Previous.isInvalid() ||
116 strcmp(s1: PLoc.getFilename(), s2: Previous.getFilename()) != 0) {
117 OS << PLoc.getFilename() << ':' << PLoc.getLine() << ':'
118 << PLoc.getColumn();
119 } else if (Previous.isInvalid() || PLoc.getLine() != Previous.getLine()) {
120 OS << "line" << ':' << PLoc.getLine() << ':' << PLoc.getColumn();
121 } else {
122 OS << "col" << ':' << PLoc.getColumn();
123 }
124 return PLoc;
125 }
126 auto PrintedLoc = PrintDifference(OS, SM, Loc: SM.getExpansionLoc(Loc), Previous);
127
128 OS << " <Spelling=";
129 PrintedLoc = PrintDifference(OS, SM, Loc: SM.getSpellingLoc(Loc), Previous: PrintedLoc);
130 OS << '>';
131 return PrintedLoc;
132}
133
134void SourceRange::print(raw_ostream &OS, const SourceManager &SM) const {
135
136 OS << '<';
137 auto PrintedLoc = PrintDifference(OS, SM, Loc: B, Previous: {});
138 if (B != E) {
139 OS << ", ";
140 PrintDifference(OS, SM, Loc: E, Previous: PrintedLoc);
141 }
142 OS << '>';
143}
144
145LLVM_DUMP_METHOD std::string
146SourceRange::printToString(const SourceManager &SM) const {
147 std::string S;
148 llvm::raw_string_ostream OS(S);
149 print(OS, SM);
150 return S;
151}
152
153//===----------------------------------------------------------------------===//
154// FullSourceLoc
155//===----------------------------------------------------------------------===//
156
157FileID FullSourceLoc::getFileID() const {
158 assert(isValid());
159 return SrcMgr->getFileID(SpellingLoc: *this);
160}
161
162FullSourceLoc FullSourceLoc::getExpansionLoc() const {
163 assert(isValid());
164 return FullSourceLoc(SrcMgr->getExpansionLoc(Loc: *this), *SrcMgr);
165}
166
167std::pair<FileID, unsigned> FullSourceLoc::getDecomposedExpansionLoc() const {
168 return SrcMgr->getDecomposedExpansionLoc(Loc: *this);
169}
170
171FullSourceLoc FullSourceLoc::getSpellingLoc() const {
172 assert(isValid());
173 return FullSourceLoc(SrcMgr->getSpellingLoc(Loc: *this), *SrcMgr);
174}
175
176FullSourceLoc FullSourceLoc::getFileLoc() const {
177 assert(isValid());
178 return FullSourceLoc(SrcMgr->getFileLoc(Loc: *this), *SrcMgr);
179}
180
181PresumedLoc FullSourceLoc::getPresumedLoc(bool UseLineDirectives) const {
182 if (!isValid())
183 return PresumedLoc();
184
185 return SrcMgr->getPresumedLoc(Loc: *this, UseLineDirectives);
186}
187
188bool FullSourceLoc::isMacroArgExpansion(FullSourceLoc *StartLoc) const {
189 assert(isValid());
190 return SrcMgr->isMacroArgExpansion(Loc: *this, StartLoc);
191}
192
193FullSourceLoc FullSourceLoc::getImmediateMacroCallerLoc() const {
194 assert(isValid());
195 return FullSourceLoc(SrcMgr->getImmediateMacroCallerLoc(Loc: *this), *SrcMgr);
196}
197
198std::pair<FullSourceLoc, StringRef> FullSourceLoc::getModuleImportLoc() const {
199 if (!isValid())
200 return std::make_pair(x: FullSourceLoc(), y: StringRef());
201
202 std::pair<SourceLocation, StringRef> ImportLoc =
203 SrcMgr->getModuleImportLoc(Loc: *this);
204 return std::make_pair(x: FullSourceLoc(ImportLoc.first, *SrcMgr),
205 y&: ImportLoc.second);
206}
207
208unsigned FullSourceLoc::getFileOffset() const {
209 assert(isValid());
210 return SrcMgr->getFileOffset(SpellingLoc: *this);
211}
212
213unsigned FullSourceLoc::getLineNumber(bool *Invalid) const {
214 assert(isValid());
215 return SrcMgr->getLineNumber(FID: getFileID(), FilePos: getFileOffset(), Invalid);
216}
217
218unsigned FullSourceLoc::getColumnNumber(bool *Invalid) const {
219 assert(isValid());
220 return SrcMgr->getColumnNumber(FID: getFileID(), FilePos: getFileOffset(), Invalid);
221}
222
223const FileEntry *FullSourceLoc::getFileEntry() const {
224 assert(isValid());
225 return SrcMgr->getFileEntryForID(FID: getFileID());
226}
227
228OptionalFileEntryRef FullSourceLoc::getFileEntryRef() const {
229 assert(isValid());
230 return SrcMgr->getFileEntryRefForID(FID: getFileID());
231}
232
233unsigned FullSourceLoc::getExpansionLineNumber(bool *Invalid) const {
234 assert(isValid());
235 return SrcMgr->getExpansionLineNumber(Loc: *this, Invalid);
236}
237
238unsigned FullSourceLoc::getExpansionColumnNumber(bool *Invalid) const {
239 assert(isValid());
240 return SrcMgr->getExpansionColumnNumber(Loc: *this, Invalid);
241}
242
243unsigned FullSourceLoc::getSpellingLineNumber(bool *Invalid) const {
244 assert(isValid());
245 return SrcMgr->getSpellingLineNumber(Loc: *this, Invalid);
246}
247
248unsigned FullSourceLoc::getSpellingColumnNumber(bool *Invalid) const {
249 assert(isValid());
250 return SrcMgr->getSpellingColumnNumber(Loc: *this, Invalid);
251}
252
253bool FullSourceLoc::isInSystemHeader() const {
254 assert(isValid());
255 return SrcMgr->isInSystemHeader(Loc: *this);
256}
257
258bool FullSourceLoc::isBeforeInTranslationUnitThan(SourceLocation Loc) const {
259 assert(isValid());
260 return SrcMgr->isBeforeInTranslationUnit(LHS: *this, RHS: Loc);
261}
262
263LLVM_DUMP_METHOD void FullSourceLoc::dump() const {
264 SourceLocation::dump(SM: *SrcMgr);
265}
266
267const char *FullSourceLoc::getCharacterData(bool *Invalid) const {
268 assert(isValid());
269 return SrcMgr->getCharacterData(SL: *this, Invalid);
270}
271
272StringRef FullSourceLoc::getBufferData(bool *Invalid) const {
273 assert(isValid());
274 return SrcMgr->getBufferData(FID: SrcMgr->getFileID(SpellingLoc: *this), Invalid);
275}
276
277std::pair<FileID, unsigned> FullSourceLoc::getDecomposedLoc() const {
278 return SrcMgr->getDecomposedLoc(Loc: *this);
279}
280

Provided by KDAB

Privacy Policy
Learn to use CMake with our Intro Training
Find out more

source code of clang/lib/Basic/SourceLocation.cpp