blob: bd48ae64ab4beb93ac56b1d56df4c366e766c171 [file] [log] [blame]
Argyrios Kyrtzidis03db1b32008-08-10 13:15:22 +00001//===--- PPCaching.cpp - Handle caching lexed tokens ----------------------===//
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// This file implements pieces of the Preprocessor interface that manage the
11// caching of lexed tokens.
12//
13//===----------------------------------------------------------------------===//
14
15#include "clang/Lex/Preprocessor.h"
16using namespace clang;
17
Stephen Hines651f13c2014-04-23 16:59:28 -070018// EnableBacktrackAtThisPos - From the point that this method is called, and
19// until CommitBacktrackedTokens() or Backtrack() is called, the Preprocessor
20// keeps track of the lexed tokens so that a subsequent Backtrack() call will
21// make the Preprocessor re-lex the same tokens.
22//
23// Nested backtracks are allowed, meaning that EnableBacktrackAtThisPos can
24// be called multiple times and CommitBacktrackedTokens/Backtrack calls will
25// be combined with the EnableBacktrackAtThisPos calls in reverse order.
Argyrios Kyrtzidisbff73f72008-08-23 12:05:53 +000026void Preprocessor::EnableBacktrackAtThisPos() {
Argyrios Kyrtzidisbff73f72008-08-23 12:05:53 +000027 BacktrackPositions.push_back(CachedLexPos);
28 EnterCachingLexMode();
29}
Argyrios Kyrtzidisa9e274c2008-08-22 21:27:50 +000030
Stephen Hines651f13c2014-04-23 16:59:28 -070031// Disable the last EnableBacktrackAtThisPos call.
Argyrios Kyrtzidised5c3862008-08-24 12:29:43 +000032void Preprocessor::CommitBacktrackedTokens() {
Argyrios Kyrtzidisbff73f72008-08-23 12:05:53 +000033 assert(!BacktrackPositions.empty()
34 && "EnableBacktrackAtThisPos was not called!");
35 BacktrackPositions.pop_back();
Argyrios Kyrtzidisbff73f72008-08-23 12:05:53 +000036}
37
Stephen Hines651f13c2014-04-23 16:59:28 -070038// Make Preprocessor re-lex the tokens that were lexed since
39// EnableBacktrackAtThisPos() was previously called.
Argyrios Kyrtzidisbff73f72008-08-23 12:05:53 +000040void Preprocessor::Backtrack() {
41 assert(!BacktrackPositions.empty()
42 && "EnableBacktrackAtThisPos was not called!");
43 CachedLexPos = BacktrackPositions.back();
44 BacktrackPositions.pop_back();
Douglas Gregord6aba062012-01-04 06:20:15 +000045 recomputeCurLexerKind();
Argyrios Kyrtzidisbff73f72008-08-23 12:05:53 +000046}
Argyrios Kyrtzidisa9e274c2008-08-22 21:27:50 +000047
Argyrios Kyrtzidis03db1b32008-08-10 13:15:22 +000048void Preprocessor::CachingLex(Token &Result) {
Argyrios Kyrtzidis03569ea2010-07-12 18:49:30 +000049 if (!InCachingLexMode())
50 return;
51
Argyrios Kyrtzidis03db1b32008-08-10 13:15:22 +000052 if (CachedLexPos < CachedTokens.size()) {
53 Result = CachedTokens[CachedLexPos++];
54 return;
55 }
56
57 ExitCachingLexMode();
Argyrios Kyrtzidis8951bfd2010-07-12 21:41:41 +000058 Lex(Result);
Argyrios Kyrtzidis03db1b32008-08-10 13:15:22 +000059
Argyrios Kyrtzidisa06642a2012-04-04 02:57:01 +000060 if (isBacktrackEnabled()) {
61 // Cache the lexed token.
62 EnterCachingLexMode();
63 CachedTokens.push_back(Result);
64 ++CachedLexPos;
Argyrios Kyrtzidis03db1b32008-08-10 13:15:22 +000065 return;
66 }
67
Argyrios Kyrtzidisa06642a2012-04-04 02:57:01 +000068 if (CachedLexPos < CachedTokens.size()) {
69 EnterCachingLexMode();
70 } else {
71 // All cached tokens were consumed.
72 CachedTokens.clear();
73 CachedLexPos = 0;
74 }
Argyrios Kyrtzidis03db1b32008-08-10 13:15:22 +000075}
76
77void Preprocessor::EnterCachingLexMode() {
78 if (InCachingLexMode())
79 return;
80
Ted Kremenek174da892008-11-12 22:21:57 +000081 PushIncludeMacroStack();
Douglas Gregord6aba062012-01-04 06:20:15 +000082 CurLexerKind = CLK_CachingLexer;
Argyrios Kyrtzidis03db1b32008-08-10 13:15:22 +000083}
84
85
86const Token &Preprocessor::PeekAhead(unsigned N) {
87 assert(CachedLexPos + N > CachedTokens.size() && "Confused caching.");
88 ExitCachingLexMode();
89 for (unsigned C = CachedLexPos + N - CachedTokens.size(); C > 0; --C) {
90 CachedTokens.push_back(Token());
91 Lex(CachedTokens.back());
92 }
93 EnterCachingLexMode();
94 return CachedTokens.back();
95}
Argyrios Kyrtzidis3604e382008-11-08 16:17:04 +000096
97void Preprocessor::AnnotatePreviousCachedTokens(const Token &Tok) {
Chris Lattner47246be2009-01-26 19:29:26 +000098 assert(Tok.isAnnotation() && "Expected annotation token");
Argyrios Kyrtzidis3604e382008-11-08 16:17:04 +000099 assert(CachedLexPos != 0 && "Expected to have some cached tokens");
Sebastian Redl39d67112010-02-08 19:35:18 +0000100 assert(CachedTokens[CachedLexPos-1].getLastLoc() == Tok.getAnnotationEndLoc()
Argyrios Kyrtzidis3604e382008-11-08 16:17:04 +0000101 && "The annotation should be until the most recent cached token");
102
103 // Start from the end of the cached tokens list and look for the token
104 // that is the beginning of the annotation token.
105 for (CachedTokensTy::size_type i = CachedLexPos; i != 0; --i) {
106 CachedTokensTy::iterator AnnotBegin = CachedTokens.begin() + i-1;
107 if (AnnotBegin->getLocation() == Tok.getLocation()) {
108 assert((BacktrackPositions.empty() || BacktrackPositions.back() < i) &&
109 "The backtrack pos points inside the annotated tokens!");
110 // Replace the cached tokens with the single annotation token.
Nuno Lopes1b68f712009-07-26 16:36:45 +0000111 if (i < CachedLexPos)
112 CachedTokens.erase(AnnotBegin + 1, CachedTokens.begin() + CachedLexPos);
Argyrios Kyrtzidis3604e382008-11-08 16:17:04 +0000113 *AnnotBegin = Tok;
114 CachedLexPos = i;
115 return;
116 }
117 }
Argyrios Kyrtzidis3604e382008-11-08 16:17:04 +0000118}