1 //===--- PPCallbacks.h - Callbacks for Preprocessor actions -----*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 /// 10 /// \file 11 /// Defines the PPCallbacks interface. 12 /// 13 //===----------------------------------------------------------------------===// 14 15 #ifndef LLVM_CLANG_LEX_PPCALLBACKS_H 16 #define LLVM_CLANG_LEX_PPCALLBACKS_H 17 18 #include "clang/Basic/DiagnosticIDs.h" 19 #include "clang/Basic/SourceLocation.h" 20 #include "clang/Basic/SourceManager.h" 21 #include "clang/Lex/ModuleLoader.h" 22 #include "clang/Lex/Pragma.h" 23 #include "llvm/ADT/StringRef.h" 24 25 namespace clang { 26 class Token; 27 class IdentifierInfo; 28 class MacroDefinition; 29 class MacroDirective; 30 class MacroArgs; 31 32 /// This interface provides a way to observe the actions of the 33 /// preprocessor as it does its thing. 34 /// 35 /// Clients can define their hooks here to implement preprocessor level tools. 36 class PPCallbacks { 37 public: 38 virtual ~PPCallbacks(); 39 40 enum FileChangeReason { 41 EnterFile, ExitFile, SystemHeaderPragma, RenameFile 42 }; 43 44 /// Callback invoked whenever a source file is entered or exited. 45 /// 46 /// \param Loc Indicates the new location. 47 /// \param PrevFID the file that was exited if \p Reason is ExitFile. 48 virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason, 49 SrcMgr::CharacteristicKind FileType, 50 FileID PrevFID = FileID()) { 51 } 52 53 /// Callback invoked whenever a source file is skipped as the result 54 /// of header guard optimization. 55 /// 56 /// \param SkippedFile The file that is skipped instead of entering \#include 57 /// 58 /// \param FilenameTok The file name token in \#include "FileName" directive 59 /// or macro expanded file name token from \#include MACRO(PARAMS) directive. 60 /// Note that FilenameTok contains corresponding quotes/angles symbols. FileSkipped(const FileEntry & SkippedFile,const Token & FilenameTok,SrcMgr::CharacteristicKind FileType)61 virtual void FileSkipped(const FileEntry &SkippedFile, 62 const Token &FilenameTok, 63 SrcMgr::CharacteristicKind FileType) { 64 } 65 66 /// Callback invoked whenever an inclusion directive results in a 67 /// file-not-found error. 68 /// 69 /// \param FileName The name of the file being included, as written in the 70 /// source code. 71 /// 72 /// \param RecoveryPath If this client indicates that it can recover from 73 /// this missing file, the client should set this as an additional header 74 /// search patch. 75 /// 76 /// \returns true to indicate that the preprocessor should attempt to recover 77 /// by adding \p RecoveryPath as a header search path. FileNotFound(StringRef FileName,SmallVectorImpl<char> & RecoveryPath)78 virtual bool FileNotFound(StringRef FileName, 79 SmallVectorImpl<char> &RecoveryPath) { 80 return false; 81 } 82 83 /// Callback invoked whenever an inclusion directive of 84 /// any kind (\c \#include, \c \#import, etc.) has been processed, regardless 85 /// of whether the inclusion will actually result in an inclusion. 86 /// 87 /// \param HashLoc The location of the '#' that starts the inclusion 88 /// directive. 89 /// 90 /// \param IncludeTok The token that indicates the kind of inclusion 91 /// directive, e.g., 'include' or 'import'. 92 /// 93 /// \param FileName The name of the file being included, as written in the 94 /// source code. 95 /// 96 /// \param IsAngled Whether the file name was enclosed in angle brackets; 97 /// otherwise, it was enclosed in quotes. 98 /// 99 /// \param FilenameRange The character range of the quotes or angle brackets 100 /// for the written file name. 101 /// 102 /// \param File The actual file that may be included by this inclusion 103 /// directive. 104 /// 105 /// \param SearchPath Contains the search path which was used to find the file 106 /// in the file system. If the file was found via an absolute include path, 107 /// SearchPath will be empty. For framework includes, the SearchPath and 108 /// RelativePath will be split up. For example, if an include of "Some/Some.h" 109 /// is found via the framework path 110 /// "path/to/Frameworks/Some.framework/Headers/Some.h", SearchPath will be 111 /// "path/to/Frameworks/Some.framework/Headers" and RelativePath will be 112 /// "Some.h". 113 /// 114 /// \param RelativePath The path relative to SearchPath, at which the include 115 /// file was found. This is equal to FileName except for framework includes. 116 /// 117 /// \param Imported The module, whenever an inclusion directive was 118 /// automatically turned into a module import or null otherwise. 119 /// 120 /// \param FileType The characteristic kind, indicates whether a file or 121 /// directory holds normal user code, system code, or system code which is 122 /// implicitly 'extern "C"' in C++ mode. 123 /// InclusionDirective(SourceLocation HashLoc,const Token & IncludeTok,StringRef FileName,bool IsAngled,CharSourceRange FilenameRange,const FileEntry * File,StringRef SearchPath,StringRef RelativePath,const Module * Imported,SrcMgr::CharacteristicKind FileType)124 virtual void InclusionDirective(SourceLocation HashLoc, 125 const Token &IncludeTok, 126 StringRef FileName, 127 bool IsAngled, 128 CharSourceRange FilenameRange, 129 const FileEntry *File, 130 StringRef SearchPath, 131 StringRef RelativePath, 132 const Module *Imported, 133 SrcMgr::CharacteristicKind FileType) { 134 } 135 136 /// Callback invoked whenever there was an explicit module-import 137 /// syntax. 138 /// 139 /// \param ImportLoc The location of import directive token. 140 /// 141 /// \param Path The identifiers (and their locations) of the module 142 /// "path", e.g., "std.vector" would be split into "std" and "vector". 143 /// 144 /// \param Imported The imported module; can be null if importing failed. 145 /// moduleImport(SourceLocation ImportLoc,ModuleIdPath Path,const Module * Imported)146 virtual void moduleImport(SourceLocation ImportLoc, 147 ModuleIdPath Path, 148 const Module *Imported) { 149 } 150 151 /// Callback invoked when the end of the main file is reached. 152 /// 153 /// No subsequent callbacks will be made. EndOfMainFile()154 virtual void EndOfMainFile() { 155 } 156 157 /// Callback invoked when a \#ident or \#sccs directive is read. 158 /// \param Loc The location of the directive. 159 /// \param str The text of the directive. 160 /// Ident(SourceLocation Loc,StringRef str)161 virtual void Ident(SourceLocation Loc, StringRef str) { 162 } 163 164 /// Callback invoked when start reading any pragma directive. PragmaDirective(SourceLocation Loc,PragmaIntroducerKind Introducer)165 virtual void PragmaDirective(SourceLocation Loc, 166 PragmaIntroducerKind Introducer) { 167 } 168 169 /// Callback invoked when a \#pragma comment directive is read. PragmaComment(SourceLocation Loc,const IdentifierInfo * Kind,StringRef Str)170 virtual void PragmaComment(SourceLocation Loc, const IdentifierInfo *Kind, 171 StringRef Str) { 172 } 173 174 /// Callback invoked when a \#pragma detect_mismatch directive is 175 /// read. PragmaDetectMismatch(SourceLocation Loc,StringRef Name,StringRef Value)176 virtual void PragmaDetectMismatch(SourceLocation Loc, StringRef Name, 177 StringRef Value) { 178 } 179 180 /// Callback invoked when a \#pragma clang __debug directive is read. 181 /// \param Loc The location of the debug directive. 182 /// \param DebugType The identifier following __debug. PragmaDebug(SourceLocation Loc,StringRef DebugType)183 virtual void PragmaDebug(SourceLocation Loc, StringRef DebugType) { 184 } 185 186 /// Determines the kind of \#pragma invoking a call to PragmaMessage. 187 enum PragmaMessageKind { 188 /// \#pragma message has been invoked. 189 PMK_Message, 190 191 /// \#pragma GCC warning has been invoked. 192 PMK_Warning, 193 194 /// \#pragma GCC error has been invoked. 195 PMK_Error 196 }; 197 198 /// Callback invoked when a \#pragma message directive is read. 199 /// \param Loc The location of the message directive. 200 /// \param Namespace The namespace of the message directive. 201 /// \param Kind The type of the message directive. 202 /// \param Str The text of the message directive. PragmaMessage(SourceLocation Loc,StringRef Namespace,PragmaMessageKind Kind,StringRef Str)203 virtual void PragmaMessage(SourceLocation Loc, StringRef Namespace, 204 PragmaMessageKind Kind, StringRef Str) { 205 } 206 207 /// Callback invoked when a \#pragma gcc diagnostic push directive 208 /// is read. PragmaDiagnosticPush(SourceLocation Loc,StringRef Namespace)209 virtual void PragmaDiagnosticPush(SourceLocation Loc, 210 StringRef Namespace) { 211 } 212 213 /// Callback invoked when a \#pragma gcc diagnostic pop directive 214 /// is read. PragmaDiagnosticPop(SourceLocation Loc,StringRef Namespace)215 virtual void PragmaDiagnosticPop(SourceLocation Loc, 216 StringRef Namespace) { 217 } 218 219 /// Callback invoked when a \#pragma gcc diagnostic directive is read. PragmaDiagnostic(SourceLocation Loc,StringRef Namespace,diag::Severity mapping,StringRef Str)220 virtual void PragmaDiagnostic(SourceLocation Loc, StringRef Namespace, 221 diag::Severity mapping, StringRef Str) {} 222 223 /// Called when an OpenCL extension is either disabled or 224 /// enabled with a pragma. PragmaOpenCLExtension(SourceLocation NameLoc,const IdentifierInfo * Name,SourceLocation StateLoc,unsigned State)225 virtual void PragmaOpenCLExtension(SourceLocation NameLoc, 226 const IdentifierInfo *Name, 227 SourceLocation StateLoc, unsigned State) { 228 } 229 230 /// Callback invoked when a \#pragma warning directive is read. PragmaWarning(SourceLocation Loc,StringRef WarningSpec,ArrayRef<int> Ids)231 virtual void PragmaWarning(SourceLocation Loc, StringRef WarningSpec, 232 ArrayRef<int> Ids) { 233 } 234 235 /// Callback invoked when a \#pragma warning(push) directive is read. PragmaWarningPush(SourceLocation Loc,int Level)236 virtual void PragmaWarningPush(SourceLocation Loc, int Level) { 237 } 238 239 /// Callback invoked when a \#pragma warning(pop) directive is read. PragmaWarningPop(SourceLocation Loc)240 virtual void PragmaWarningPop(SourceLocation Loc) { 241 } 242 243 /// Callback invoked when a \#pragma clang assume_nonnull begin directive 244 /// is read. PragmaAssumeNonNullBegin(SourceLocation Loc)245 virtual void PragmaAssumeNonNullBegin(SourceLocation Loc) {} 246 247 /// Callback invoked when a \#pragma clang assume_nonnull end directive 248 /// is read. PragmaAssumeNonNullEnd(SourceLocation Loc)249 virtual void PragmaAssumeNonNullEnd(SourceLocation Loc) {} 250 251 /// Called by Preprocessor::HandleMacroExpandedIdentifier when a 252 /// macro invocation is found. MacroExpands(const Token & MacroNameTok,const MacroDefinition & MD,SourceRange Range,const MacroArgs * Args)253 virtual void MacroExpands(const Token &MacroNameTok, 254 const MacroDefinition &MD, SourceRange Range, 255 const MacroArgs *Args) {} 256 257 /// Hook called whenever a macro definition is seen. MacroDefined(const Token & MacroNameTok,const MacroDirective * MD)258 virtual void MacroDefined(const Token &MacroNameTok, 259 const MacroDirective *MD) { 260 } 261 262 /// Hook called whenever a macro \#undef is seen. 263 /// \param MacroNameTok The active Token 264 /// \param MD A MacroDefinition for the named macro. 265 /// \param Undef New MacroDirective if the macro was defined, null otherwise. 266 /// 267 /// MD is released immediately following this callback. MacroUndefined(const Token & MacroNameTok,const MacroDefinition & MD,const MacroDirective * Undef)268 virtual void MacroUndefined(const Token &MacroNameTok, 269 const MacroDefinition &MD, 270 const MacroDirective *Undef) { 271 } 272 273 /// Hook called whenever the 'defined' operator is seen. 274 /// \param MD The MacroDirective if the name was a macro, null otherwise. Defined(const Token & MacroNameTok,const MacroDefinition & MD,SourceRange Range)275 virtual void Defined(const Token &MacroNameTok, const MacroDefinition &MD, 276 SourceRange Range) { 277 } 278 279 /// Hook called when a '__has_include' or '__has_include_next' directive is 280 /// read. HasInclude(SourceLocation Loc,StringRef FileName,bool IsAngled,const FileEntry * File,SrcMgr::CharacteristicKind FileType)281 virtual void HasInclude(SourceLocation Loc, StringRef FileName, bool IsAngled, 282 const FileEntry *File, 283 SrcMgr::CharacteristicKind FileType) {} 284 285 /// Hook called when a source range is skipped. 286 /// \param Range The SourceRange that was skipped. The range begins at the 287 /// \#if/\#else directive and ends after the \#endif/\#else directive. 288 /// \param EndifLoc The end location of the 'endif' token, which may precede 289 /// the range skipped by the directive (e.g excluding comments after an 290 /// 'endif'). SourceRangeSkipped(SourceRange Range,SourceLocation EndifLoc)291 virtual void SourceRangeSkipped(SourceRange Range, SourceLocation EndifLoc) { 292 } 293 294 enum ConditionValueKind { 295 CVK_NotEvaluated, CVK_False, CVK_True 296 }; 297 298 /// Hook called whenever an \#if is seen. 299 /// \param Loc the source location of the directive. 300 /// \param ConditionRange The SourceRange of the expression being tested. 301 /// \param ConditionValue The evaluated value of the condition. 302 /// 303 // FIXME: better to pass in a list (or tree!) of Tokens. If(SourceLocation Loc,SourceRange ConditionRange,ConditionValueKind ConditionValue)304 virtual void If(SourceLocation Loc, SourceRange ConditionRange, 305 ConditionValueKind ConditionValue) { 306 } 307 308 /// Hook called whenever an \#elif is seen. 309 /// \param Loc the source location of the directive. 310 /// \param ConditionRange The SourceRange of the expression being tested. 311 /// \param ConditionValue The evaluated value of the condition. 312 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive. 313 // FIXME: better to pass in a list (or tree!) of Tokens. Elif(SourceLocation Loc,SourceRange ConditionRange,ConditionValueKind ConditionValue,SourceLocation IfLoc)314 virtual void Elif(SourceLocation Loc, SourceRange ConditionRange, 315 ConditionValueKind ConditionValue, SourceLocation IfLoc) { 316 } 317 318 /// Hook called whenever an \#ifdef is seen. 319 /// \param Loc the source location of the directive. 320 /// \param MacroNameTok Information on the token being tested. 321 /// \param MD The MacroDefinition if the name was a macro, null otherwise. Ifdef(SourceLocation Loc,const Token & MacroNameTok,const MacroDefinition & MD)322 virtual void Ifdef(SourceLocation Loc, const Token &MacroNameTok, 323 const MacroDefinition &MD) { 324 } 325 326 /// Hook called whenever an \#ifndef is seen. 327 /// \param Loc the source location of the directive. 328 /// \param MacroNameTok Information on the token being tested. 329 /// \param MD The MacroDefiniton if the name was a macro, null otherwise. Ifndef(SourceLocation Loc,const Token & MacroNameTok,const MacroDefinition & MD)330 virtual void Ifndef(SourceLocation Loc, const Token &MacroNameTok, 331 const MacroDefinition &MD) { 332 } 333 334 /// Hook called whenever an \#else is seen. 335 /// \param Loc the source location of the directive. 336 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive. Else(SourceLocation Loc,SourceLocation IfLoc)337 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { 338 } 339 340 /// Hook called whenever an \#endif is seen. 341 /// \param Loc the source location of the directive. 342 /// \param IfLoc the source location of the \#if/\#ifdef/\#ifndef directive. Endif(SourceLocation Loc,SourceLocation IfLoc)343 virtual void Endif(SourceLocation Loc, SourceLocation IfLoc) { 344 } 345 }; 346 347 /// Simple wrapper class for chaining callbacks. 348 class PPChainedCallbacks : public PPCallbacks { 349 virtual void anchor(); 350 std::unique_ptr<PPCallbacks> First, Second; 351 352 public: PPChainedCallbacks(std::unique_ptr<PPCallbacks> _First,std::unique_ptr<PPCallbacks> _Second)353 PPChainedCallbacks(std::unique_ptr<PPCallbacks> _First, 354 std::unique_ptr<PPCallbacks> _Second) 355 : First(std::move(_First)), Second(std::move(_Second)) {} 356 FileChanged(SourceLocation Loc,FileChangeReason Reason,SrcMgr::CharacteristicKind FileType,FileID PrevFID)357 void FileChanged(SourceLocation Loc, FileChangeReason Reason, 358 SrcMgr::CharacteristicKind FileType, 359 FileID PrevFID) override { 360 First->FileChanged(Loc, Reason, FileType, PrevFID); 361 Second->FileChanged(Loc, Reason, FileType, PrevFID); 362 } 363 FileSkipped(const FileEntry & SkippedFile,const Token & FilenameTok,SrcMgr::CharacteristicKind FileType)364 void FileSkipped(const FileEntry &SkippedFile, 365 const Token &FilenameTok, 366 SrcMgr::CharacteristicKind FileType) override { 367 First->FileSkipped(SkippedFile, FilenameTok, FileType); 368 Second->FileSkipped(SkippedFile, FilenameTok, FileType); 369 } 370 FileNotFound(StringRef FileName,SmallVectorImpl<char> & RecoveryPath)371 bool FileNotFound(StringRef FileName, 372 SmallVectorImpl<char> &RecoveryPath) override { 373 return First->FileNotFound(FileName, RecoveryPath) || 374 Second->FileNotFound(FileName, RecoveryPath); 375 } 376 InclusionDirective(SourceLocation HashLoc,const Token & IncludeTok,StringRef FileName,bool IsAngled,CharSourceRange FilenameRange,const FileEntry * File,StringRef SearchPath,StringRef RelativePath,const Module * Imported,SrcMgr::CharacteristicKind FileType)377 void InclusionDirective(SourceLocation HashLoc, const Token &IncludeTok, 378 StringRef FileName, bool IsAngled, 379 CharSourceRange FilenameRange, const FileEntry *File, 380 StringRef SearchPath, StringRef RelativePath, 381 const Module *Imported, 382 SrcMgr::CharacteristicKind FileType) override { 383 First->InclusionDirective(HashLoc, IncludeTok, FileName, IsAngled, 384 FilenameRange, File, SearchPath, RelativePath, 385 Imported, FileType); 386 Second->InclusionDirective(HashLoc, IncludeTok, FileName, IsAngled, 387 FilenameRange, File, SearchPath, RelativePath, 388 Imported, FileType); 389 } 390 moduleImport(SourceLocation ImportLoc,ModuleIdPath Path,const Module * Imported)391 void moduleImport(SourceLocation ImportLoc, ModuleIdPath Path, 392 const Module *Imported) override { 393 First->moduleImport(ImportLoc, Path, Imported); 394 Second->moduleImport(ImportLoc, Path, Imported); 395 } 396 EndOfMainFile()397 void EndOfMainFile() override { 398 First->EndOfMainFile(); 399 Second->EndOfMainFile(); 400 } 401 Ident(SourceLocation Loc,StringRef str)402 void Ident(SourceLocation Loc, StringRef str) override { 403 First->Ident(Loc, str); 404 Second->Ident(Loc, str); 405 } 406 PragmaDirective(SourceLocation Loc,PragmaIntroducerKind Introducer)407 void PragmaDirective(SourceLocation Loc, 408 PragmaIntroducerKind Introducer) override { 409 First->PragmaDirective(Loc, Introducer); 410 Second->PragmaDirective(Loc, Introducer); 411 } 412 PragmaComment(SourceLocation Loc,const IdentifierInfo * Kind,StringRef Str)413 void PragmaComment(SourceLocation Loc, const IdentifierInfo *Kind, 414 StringRef Str) override { 415 First->PragmaComment(Loc, Kind, Str); 416 Second->PragmaComment(Loc, Kind, Str); 417 } 418 PragmaDetectMismatch(SourceLocation Loc,StringRef Name,StringRef Value)419 void PragmaDetectMismatch(SourceLocation Loc, StringRef Name, 420 StringRef Value) override { 421 First->PragmaDetectMismatch(Loc, Name, Value); 422 Second->PragmaDetectMismatch(Loc, Name, Value); 423 } 424 PragmaDebug(SourceLocation Loc,StringRef DebugType)425 void PragmaDebug(SourceLocation Loc, StringRef DebugType) override { 426 First->PragmaDebug(Loc, DebugType); 427 Second->PragmaDebug(Loc, DebugType); 428 } 429 PragmaMessage(SourceLocation Loc,StringRef Namespace,PragmaMessageKind Kind,StringRef Str)430 void PragmaMessage(SourceLocation Loc, StringRef Namespace, 431 PragmaMessageKind Kind, StringRef Str) override { 432 First->PragmaMessage(Loc, Namespace, Kind, Str); 433 Second->PragmaMessage(Loc, Namespace, Kind, Str); 434 } 435 PragmaDiagnosticPush(SourceLocation Loc,StringRef Namespace)436 void PragmaDiagnosticPush(SourceLocation Loc, StringRef Namespace) override { 437 First->PragmaDiagnosticPush(Loc, Namespace); 438 Second->PragmaDiagnosticPush(Loc, Namespace); 439 } 440 PragmaDiagnosticPop(SourceLocation Loc,StringRef Namespace)441 void PragmaDiagnosticPop(SourceLocation Loc, StringRef Namespace) override { 442 First->PragmaDiagnosticPop(Loc, Namespace); 443 Second->PragmaDiagnosticPop(Loc, Namespace); 444 } 445 PragmaDiagnostic(SourceLocation Loc,StringRef Namespace,diag::Severity mapping,StringRef Str)446 void PragmaDiagnostic(SourceLocation Loc, StringRef Namespace, 447 diag::Severity mapping, StringRef Str) override { 448 First->PragmaDiagnostic(Loc, Namespace, mapping, Str); 449 Second->PragmaDiagnostic(Loc, Namespace, mapping, Str); 450 } 451 HasInclude(SourceLocation Loc,StringRef FileName,bool IsAngled,const FileEntry * File,SrcMgr::CharacteristicKind FileType)452 void HasInclude(SourceLocation Loc, StringRef FileName, bool IsAngled, 453 const FileEntry *File, 454 SrcMgr::CharacteristicKind FileType) override { 455 First->HasInclude(Loc, FileName, IsAngled, File, FileType); 456 Second->HasInclude(Loc, FileName, IsAngled, File, FileType); 457 } 458 PragmaOpenCLExtension(SourceLocation NameLoc,const IdentifierInfo * Name,SourceLocation StateLoc,unsigned State)459 void PragmaOpenCLExtension(SourceLocation NameLoc, const IdentifierInfo *Name, 460 SourceLocation StateLoc, unsigned State) override { 461 First->PragmaOpenCLExtension(NameLoc, Name, StateLoc, State); 462 Second->PragmaOpenCLExtension(NameLoc, Name, StateLoc, State); 463 } 464 PragmaWarning(SourceLocation Loc,StringRef WarningSpec,ArrayRef<int> Ids)465 void PragmaWarning(SourceLocation Loc, StringRef WarningSpec, 466 ArrayRef<int> Ids) override { 467 First->PragmaWarning(Loc, WarningSpec, Ids); 468 Second->PragmaWarning(Loc, WarningSpec, Ids); 469 } 470 PragmaWarningPush(SourceLocation Loc,int Level)471 void PragmaWarningPush(SourceLocation Loc, int Level) override { 472 First->PragmaWarningPush(Loc, Level); 473 Second->PragmaWarningPush(Loc, Level); 474 } 475 PragmaWarningPop(SourceLocation Loc)476 void PragmaWarningPop(SourceLocation Loc) override { 477 First->PragmaWarningPop(Loc); 478 Second->PragmaWarningPop(Loc); 479 } 480 PragmaAssumeNonNullBegin(SourceLocation Loc)481 void PragmaAssumeNonNullBegin(SourceLocation Loc) override { 482 First->PragmaAssumeNonNullBegin(Loc); 483 Second->PragmaAssumeNonNullBegin(Loc); 484 } 485 PragmaAssumeNonNullEnd(SourceLocation Loc)486 void PragmaAssumeNonNullEnd(SourceLocation Loc) override { 487 First->PragmaAssumeNonNullEnd(Loc); 488 Second->PragmaAssumeNonNullEnd(Loc); 489 } 490 MacroExpands(const Token & MacroNameTok,const MacroDefinition & MD,SourceRange Range,const MacroArgs * Args)491 void MacroExpands(const Token &MacroNameTok, const MacroDefinition &MD, 492 SourceRange Range, const MacroArgs *Args) override { 493 First->MacroExpands(MacroNameTok, MD, Range, Args); 494 Second->MacroExpands(MacroNameTok, MD, Range, Args); 495 } 496 MacroDefined(const Token & MacroNameTok,const MacroDirective * MD)497 void MacroDefined(const Token &MacroNameTok, 498 const MacroDirective *MD) override { 499 First->MacroDefined(MacroNameTok, MD); 500 Second->MacroDefined(MacroNameTok, MD); 501 } 502 MacroUndefined(const Token & MacroNameTok,const MacroDefinition & MD,const MacroDirective * Undef)503 void MacroUndefined(const Token &MacroNameTok, 504 const MacroDefinition &MD, 505 const MacroDirective *Undef) override { 506 First->MacroUndefined(MacroNameTok, MD, Undef); 507 Second->MacroUndefined(MacroNameTok, MD, Undef); 508 } 509 Defined(const Token & MacroNameTok,const MacroDefinition & MD,SourceRange Range)510 void Defined(const Token &MacroNameTok, const MacroDefinition &MD, 511 SourceRange Range) override { 512 First->Defined(MacroNameTok, MD, Range); 513 Second->Defined(MacroNameTok, MD, Range); 514 } 515 SourceRangeSkipped(SourceRange Range,SourceLocation EndifLoc)516 void SourceRangeSkipped(SourceRange Range, SourceLocation EndifLoc) override { 517 First->SourceRangeSkipped(Range, EndifLoc); 518 Second->SourceRangeSkipped(Range, EndifLoc); 519 } 520 521 /// Hook called whenever an \#if is seen. If(SourceLocation Loc,SourceRange ConditionRange,ConditionValueKind ConditionValue)522 void If(SourceLocation Loc, SourceRange ConditionRange, 523 ConditionValueKind ConditionValue) override { 524 First->If(Loc, ConditionRange, ConditionValue); 525 Second->If(Loc, ConditionRange, ConditionValue); 526 } 527 528 /// Hook called whenever an \#elif is seen. Elif(SourceLocation Loc,SourceRange ConditionRange,ConditionValueKind ConditionValue,SourceLocation IfLoc)529 void Elif(SourceLocation Loc, SourceRange ConditionRange, 530 ConditionValueKind ConditionValue, SourceLocation IfLoc) override { 531 First->Elif(Loc, ConditionRange, ConditionValue, IfLoc); 532 Second->Elif(Loc, ConditionRange, ConditionValue, IfLoc); 533 } 534 535 /// Hook called whenever an \#ifdef is seen. Ifdef(SourceLocation Loc,const Token & MacroNameTok,const MacroDefinition & MD)536 void Ifdef(SourceLocation Loc, const Token &MacroNameTok, 537 const MacroDefinition &MD) override { 538 First->Ifdef(Loc, MacroNameTok, MD); 539 Second->Ifdef(Loc, MacroNameTok, MD); 540 } 541 542 /// Hook called whenever an \#ifndef is seen. Ifndef(SourceLocation Loc,const Token & MacroNameTok,const MacroDefinition & MD)543 void Ifndef(SourceLocation Loc, const Token &MacroNameTok, 544 const MacroDefinition &MD) override { 545 First->Ifndef(Loc, MacroNameTok, MD); 546 Second->Ifndef(Loc, MacroNameTok, MD); 547 } 548 549 /// Hook called whenever an \#else is seen. Else(SourceLocation Loc,SourceLocation IfLoc)550 void Else(SourceLocation Loc, SourceLocation IfLoc) override { 551 First->Else(Loc, IfLoc); 552 Second->Else(Loc, IfLoc); 553 } 554 555 /// Hook called whenever an \#endif is seen. Endif(SourceLocation Loc,SourceLocation IfLoc)556 void Endif(SourceLocation Loc, SourceLocation IfLoc) override { 557 First->Endif(Loc, IfLoc); 558 Second->Endif(Loc, IfLoc); 559 } 560 }; 561 562 } // end namespace clang 563 564 #endif 565