blob: 16fcaa365cb4a5bc911a75be03ea9d15420ba2b6 [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
Argyrios Kyrtzidis02e7e742008-09-05 08:53:53 +000018/// 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
Argyrios Kyrtzidised5c3862008-08-24 12:29:43 +000031/// CommitBacktrackedTokens - Disable the last EnableBacktrackAtThisPos call.
32void 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
38/// Backtrack - Make Preprocessor re-lex the tokens that were lexed since
Mike Stump1eb44332009-09-09 15:08:12 +000039/// 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();
Argyrios Kyrtzidisbff73f72008-08-23 12:05:53 +000045}
Argyrios Kyrtzidisa9e274c2008-08-22 21:27:50 +000046
Argyrios Kyrtzidis03db1b32008-08-10 13:15:22 +000047void Preprocessor::CachingLex(Token &Result) {
Argyrios Kyrtzidis03569ea2010-07-12 18:49:30 +000048 if (!InCachingLexMode())
49 return;
50
Argyrios Kyrtzidis03db1b32008-08-10 13:15:22 +000051 if (CachedLexPos < CachedTokens.size()) {
52 Result = CachedTokens[CachedLexPos++];
53 return;
54 }
55
56 ExitCachingLexMode();
Argyrios Kyrtzidis03569ea2010-07-12 18:49:30 +000057 // True if we consumed everything already.
58 bool PastEOF = CurPPLexer == 0 && CurTokenLexer == 0;
59 if (!PastEOF)
60 Lex(Result);
Argyrios Kyrtzidis03db1b32008-08-10 13:15:22 +000061
Argyrios Kyrtzidisfad03b22008-11-19 14:23:14 +000062 if (!isBacktrackEnabled()) {
Argyrios Kyrtzidis03db1b32008-08-10 13:15:22 +000063 // All cached tokens were consumed.
64 CachedTokens.clear();
65 CachedLexPos = 0;
66 return;
67 }
68
Argyrios Kyrtzidis03569ea2010-07-12 18:49:30 +000069 // Cache the lexed token if it's not a repeated tok::eof.
Argyrios Kyrtzidis03db1b32008-08-10 13:15:22 +000070 EnterCachingLexMode();
Argyrios Kyrtzidis03569ea2010-07-12 18:49:30 +000071 if (!PastEOF) {
72 CachedTokens.push_back(Result);
73 ++CachedLexPos;
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();
Argyrios Kyrtzidis03db1b32008-08-10 13:15:22 +000082}
83
84
85const Token &Preprocessor::PeekAhead(unsigned N) {
86 assert(CachedLexPos + N > CachedTokens.size() && "Confused caching.");
87 ExitCachingLexMode();
88 for (unsigned C = CachedLexPos + N - CachedTokens.size(); C > 0; --C) {
89 CachedTokens.push_back(Token());
90 Lex(CachedTokens.back());
91 }
92 EnterCachingLexMode();
93 return CachedTokens.back();
94}
Argyrios Kyrtzidis3604e382008-11-08 16:17:04 +000095
96void Preprocessor::AnnotatePreviousCachedTokens(const Token &Tok) {
Chris Lattner47246be2009-01-26 19:29:26 +000097 assert(Tok.isAnnotation() && "Expected annotation token");
Argyrios Kyrtzidis3604e382008-11-08 16:17:04 +000098 assert(CachedLexPos != 0 && "Expected to have some cached tokens");
Sebastian Redl39d67112010-02-08 19:35:18 +000099 assert(CachedTokens[CachedLexPos-1].getLastLoc() == Tok.getAnnotationEndLoc()
Argyrios Kyrtzidis3604e382008-11-08 16:17:04 +0000100 && "The annotation should be until the most recent cached token");
101
102 // Start from the end of the cached tokens list and look for the token
103 // that is the beginning of the annotation token.
104 for (CachedTokensTy::size_type i = CachedLexPos; i != 0; --i) {
105 CachedTokensTy::iterator AnnotBegin = CachedTokens.begin() + i-1;
106 if (AnnotBegin->getLocation() == Tok.getLocation()) {
107 assert((BacktrackPositions.empty() || BacktrackPositions.back() < i) &&
108 "The backtrack pos points inside the annotated tokens!");
109 // Replace the cached tokens with the single annotation token.
Nuno Lopes1b68f712009-07-26 16:36:45 +0000110 if (i < CachedLexPos)
111 CachedTokens.erase(AnnotBegin + 1, CachedTokens.begin() + CachedLexPos);
Argyrios Kyrtzidis3604e382008-11-08 16:17:04 +0000112 *AnnotBegin = Tok;
113 CachedLexPos = i;
114 return;
115 }
116 }
Argyrios Kyrtzidis3604e382008-11-08 16:17:04 +0000117}