Lexer.h revision 99ba9e3bd70671f3441fb974895f226a83ce0e66
1//===--- Lexer.h - C Language Family Lexer ----------------------*- 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//  This file defines the Lexer interface.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_CLANG_LEXER_H
15#define LLVM_CLANG_LEXER_H
16
17#include "clang/Lex/PreprocessorLexer.h"
18#include "clang/Basic/LangOptions.h"
19#include "llvm/ADT/SmallVector.h"
20#include <string>
21#include <cassert>
22
23namespace clang {
24class DiagnosticsEngine;
25class SourceManager;
26class Preprocessor;
27class DiagnosticBuilder;
28
29/// ConflictMarkerKind - Kinds of conflict marker which the lexer might be
30/// recovering from.
31enum ConflictMarkerKind {
32  /// Not within a conflict marker.
33  CMK_None,
34  /// A normal or diff3 conflict marker, initiated by at least 7 <s,
35  /// separated by at least 7 =s or |s, and terminated by at least 7 >s.
36  CMK_Normal,
37  /// A Perforce-style conflict marker, initiated by 4 >s, separated by 4 =s,
38  /// and terminated by 4 <s.
39  CMK_Perforce
40};
41
42/// Lexer - This provides a simple interface that turns a text buffer into a
43/// stream of tokens.  This provides no support for file reading or buffering,
44/// or buffering/seeking of tokens, only forward lexing is supported.  It relies
45/// on the specified Preprocessor object to handle preprocessor directives, etc.
46class Lexer : public PreprocessorLexer {
47  virtual void anchor();
48
49  //===--------------------------------------------------------------------===//
50  // Constant configuration values for this lexer.
51  const char *BufferStart;       // Start of the buffer.
52  const char *BufferEnd;         // End of the buffer.
53  SourceLocation FileLoc;        // Location for start of file.
54  LangOptions Features;          // Features enabled by this language (cache).
55  bool Is_PragmaLexer;           // True if lexer for _Pragma handling.
56
57  //===--------------------------------------------------------------------===//
58  // Context-specific lexing flags set by the preprocessor.
59  //
60
61  /// ExtendedTokenMode - The lexer can optionally keep comments and whitespace
62  /// and return them as tokens.  This is used for -C and -CC modes, and
63  /// whitespace preservation can be useful for some clients that want to lex
64  /// the file in raw mode and get every character from the file.
65  ///
66  /// When this is set to 2 it returns comments and whitespace.  When set to 1
67  /// it returns comments, when it is set to 0 it returns normal tokens only.
68  unsigned char ExtendedTokenMode;
69
70  //===--------------------------------------------------------------------===//
71  // Context that changes as the file is lexed.
72  // NOTE: any state that mutates when in raw mode must have save/restore code
73  // in Lexer::isNextPPTokenLParen.
74
75  // BufferPtr - Current pointer into the buffer.  This is the next character
76  // to be lexed.
77  const char *BufferPtr;
78
79  // IsAtStartOfLine - True if the next lexed token should get the "start of
80  // line" flag set on it.
81  bool IsAtStartOfLine;
82
83  // CurrentConflictMarkerState - The kind of conflict marker we are handling.
84  ConflictMarkerKind CurrentConflictMarkerState;
85
86  Lexer(const Lexer&);          // DO NOT IMPLEMENT
87  void operator=(const Lexer&); // DO NOT IMPLEMENT
88  friend class Preprocessor;
89
90  void InitLexer(const char *BufStart, const char *BufPtr, const char *BufEnd);
91public:
92
93  /// Lexer constructor - Create a new lexer object for the specified buffer
94  /// with the specified preprocessor managing the lexing process.  This lexer
95  /// assumes that the associated file buffer and Preprocessor objects will
96  /// outlive it, so it doesn't take ownership of either of them.
97  Lexer(FileID FID, const llvm::MemoryBuffer *InputBuffer, Preprocessor &PP);
98
99  /// Lexer constructor - Create a new raw lexer object.  This object is only
100  /// suitable for calls to 'LexRawToken'.  This lexer assumes that the text
101  /// range will outlive it, so it doesn't take ownership of it.
102  Lexer(SourceLocation FileLoc, const LangOptions &Features,
103        const char *BufStart, const char *BufPtr, const char *BufEnd);
104
105  /// Lexer constructor - Create a new raw lexer object.  This object is only
106  /// suitable for calls to 'LexRawToken'.  This lexer assumes that the text
107  /// range will outlive it, so it doesn't take ownership of it.
108  Lexer(FileID FID, const llvm::MemoryBuffer *InputBuffer,
109        const SourceManager &SM, const LangOptions &Features);
110
111  /// Create_PragmaLexer: Lexer constructor - Create a new lexer object for
112  /// _Pragma expansion.  This has a variety of magic semantics that this method
113  /// sets up.  It returns a new'd Lexer that must be delete'd when done.
114  static Lexer *Create_PragmaLexer(SourceLocation SpellingLoc,
115                                   SourceLocation ExpansionLocStart,
116                                   SourceLocation ExpansionLocEnd,
117                                   unsigned TokLen, Preprocessor &PP);
118
119
120  /// getFeatures - Return the language features currently enabled.  NOTE: this
121  /// lexer modifies features as a file is parsed!
122  const LangOptions &getFeatures() const { return Features; }
123
124  /// getFileLoc - Return the File Location for the file we are lexing out of.
125  /// The physical location encodes the location where the characters come from,
126  /// the virtual location encodes where we should *claim* the characters came
127  /// from.  Currently this is only used by _Pragma handling.
128  SourceLocation getFileLoc() const { return FileLoc; }
129
130  /// Lex - Return the next token in the file.  If this is the end of file, it
131  /// return the tok::eof token.  Return true if an error occurred and
132  /// compilation should terminate, false if normal.  This implicitly involves
133  /// the preprocessor.
134  void Lex(Token &Result) {
135    // Start a new token.
136    Result.startToken();
137
138    // NOTE, any changes here should also change code after calls to
139    // Preprocessor::HandleDirective
140    if (IsAtStartOfLine) {
141      Result.setFlag(Token::StartOfLine);
142      IsAtStartOfLine = false;
143    }
144
145    // Get a token.  Note that this may delete the current lexer if the end of
146    // file is reached.
147    LexTokenInternal(Result);
148  }
149
150  /// isPragmaLexer - Returns true if this Lexer is being used to lex a pragma.
151  bool isPragmaLexer() const { return Is_PragmaLexer; }
152
153  /// IndirectLex - An indirect call to 'Lex' that can be invoked via
154  ///  the PreprocessorLexer interface.
155  void IndirectLex(Token &Result) { Lex(Result); }
156
157  /// LexFromRawLexer - Lex a token from a designated raw lexer (one with no
158  /// associated preprocessor object.  Return true if the 'next character to
159  /// read' pointer points at the end of the lexer buffer, false otherwise.
160  bool LexFromRawLexer(Token &Result) {
161    assert(LexingRawMode && "Not already in raw mode!");
162    Lex(Result);
163    // Note that lexing to the end of the buffer doesn't implicitly delete the
164    // lexer when in raw mode.
165    return BufferPtr == BufferEnd;
166  }
167
168  /// isKeepWhitespaceMode - Return true if the lexer should return tokens for
169  /// every character in the file, including whitespace and comments.  This
170  /// should only be used in raw mode, as the preprocessor is not prepared to
171  /// deal with the excess tokens.
172  bool isKeepWhitespaceMode() const {
173    return ExtendedTokenMode > 1;
174  }
175
176  /// SetKeepWhitespaceMode - This method lets clients enable or disable
177  /// whitespace retention mode.
178  void SetKeepWhitespaceMode(bool Val) {
179    assert((!Val || LexingRawMode) &&
180           "Can only enable whitespace retention in raw mode");
181    ExtendedTokenMode = Val ? 2 : 0;
182  }
183
184  /// inKeepCommentMode - Return true if the lexer should return comments as
185  /// tokens.
186  bool inKeepCommentMode() const {
187    return ExtendedTokenMode > 0;
188  }
189
190  /// SetCommentRetentionMode - Change the comment retention mode of the lexer
191  /// to the specified mode.  This is really only useful when lexing in raw
192  /// mode, because otherwise the lexer needs to manage this.
193  void SetCommentRetentionState(bool Mode) {
194    assert(!isKeepWhitespaceMode() &&
195           "Can't play with comment retention state when retaining whitespace");
196    ExtendedTokenMode = Mode ? 1 : 0;
197  }
198
199  const char *getBufferStart() const { return BufferStart; }
200
201  /// ReadToEndOfLine - Read the rest of the current preprocessor line as an
202  /// uninterpreted string.  This switches the lexer out of directive mode.
203  std::string ReadToEndOfLine();
204
205
206  /// Diag - Forwarding function for diagnostics.  This translate a source
207  /// position in the current buffer into a SourceLocation object for rendering.
208  DiagnosticBuilder Diag(const char *Loc, unsigned DiagID) const;
209
210  /// getSourceLocation - Return a source location identifier for the specified
211  /// offset in the current file.
212  SourceLocation getSourceLocation(const char *Loc, unsigned TokLen = 1) const;
213
214  /// getSourceLocation - Return a source location for the next character in
215  /// the current file.
216  SourceLocation getSourceLocation() { return getSourceLocation(BufferPtr); }
217
218  /// \brief Return the current location in the buffer.
219  const char *getBufferLocation() const { return BufferPtr; }
220
221  /// Stringify - Convert the specified string into a C string by escaping '\'
222  /// and " characters.  This does not add surrounding ""'s to the string.
223  /// If Charify is true, this escapes the ' character instead of ".
224  static std::string Stringify(const std::string &Str, bool Charify = false);
225
226  /// Stringify - Convert the specified string into a C string by escaping '\'
227  /// and " characters.  This does not add surrounding ""'s to the string.
228  static void Stringify(SmallVectorImpl<char> &Str);
229
230
231  /// getSpelling - This method is used to get the spelling of a token into a
232  /// preallocated buffer, instead of as an std::string.  The caller is required
233  /// to allocate enough space for the token, which is guaranteed to be at least
234  /// Tok.getLength() bytes long.  The length of the actual result is returned.
235  ///
236  /// Note that this method may do two possible things: it may either fill in
237  /// the buffer specified with characters, or it may *change the input pointer*
238  /// to point to a constant buffer with the data already in it (avoiding a
239  /// copy).  The caller is not allowed to modify the returned buffer pointer
240  /// if an internal buffer is returned.
241  static unsigned getSpelling(const Token &Tok, const char *&Buffer,
242                              const SourceManager &SourceMgr,
243                              const LangOptions &Features,
244                              bool *Invalid = 0);
245
246  /// getSpelling() - Return the 'spelling' of the Tok token.  The spelling of a
247  /// token is the characters used to represent the token in the source file
248  /// after trigraph expansion and escaped-newline folding.  In particular, this
249  /// wants to get the true, uncanonicalized, spelling of things like digraphs
250  /// UCNs, etc.
251  static std::string getSpelling(const Token &Tok,
252                                 const SourceManager &SourceMgr,
253                                 const LangOptions &Features,
254                                 bool *Invalid = 0);
255
256  /// getSpelling - This method is used to get the spelling of the
257  /// token at the given source location.  If, as is usually true, it
258  /// is not necessary to copy any data, then the returned string may
259  /// not point into the provided buffer.
260  ///
261  /// This method lexes at the expansion depth of the given
262  /// location and does not jump to the expansion or spelling
263  /// location.
264  static StringRef getSpelling(SourceLocation loc,
265                                     SmallVectorImpl<char> &buffer,
266                                     const SourceManager &SourceMgr,
267                                     const LangOptions &Features,
268                                     bool *invalid = 0);
269
270  /// MeasureTokenLength - Relex the token at the specified location and return
271  /// its length in bytes in the input file.  If the token needs cleaning (e.g.
272  /// includes a trigraph or an escaped newline) then this count includes bytes
273  /// that are part of that.
274  static unsigned MeasureTokenLength(SourceLocation Loc,
275                                     const SourceManager &SM,
276                                     const LangOptions &LangOpts);
277
278  /// \brief Given a location any where in a source buffer, find the location
279  /// that corresponds to the beginning of the token in which the original
280  /// source location lands.
281  ///
282  /// \param Loc
283  static SourceLocation GetBeginningOfToken(SourceLocation Loc,
284                                            const SourceManager &SM,
285                                            const LangOptions &LangOpts);
286
287  /// AdvanceToTokenCharacter - If the current SourceLocation specifies a
288  /// location at the start of a token, return a new location that specifies a
289  /// character within the token.  This handles trigraphs and escaped newlines.
290  static SourceLocation AdvanceToTokenCharacter(SourceLocation TokStart,
291                                                unsigned Character,
292                                                const SourceManager &SM,
293                                                const LangOptions &Features);
294
295  /// \brief Computes the source location just past the end of the
296  /// token at this source location.
297  ///
298  /// This routine can be used to produce a source location that
299  /// points just past the end of the token referenced by \p Loc, and
300  /// is generally used when a diagnostic needs to point just after a
301  /// token where it expected something different that it received. If
302  /// the returned source location would not be meaningful (e.g., if
303  /// it points into a macro), this routine returns an invalid
304  /// source location.
305  ///
306  /// \param Offset an offset from the end of the token, where the source
307  /// location should refer to. The default offset (0) produces a source
308  /// location pointing just past the end of the token; an offset of 1 produces
309  /// a source location pointing to the last character in the token, etc.
310  static SourceLocation getLocForEndOfToken(SourceLocation Loc, unsigned Offset,
311                                            const SourceManager &SM,
312                                            const LangOptions &Features);
313
314  /// \brief Returns true if the given MacroID location points at the first
315  /// token of the macro expansion.
316  static bool isAtStartOfMacroExpansion(SourceLocation loc,
317                                            const SourceManager &SM,
318                                            const LangOptions &LangOpts);
319
320  /// \brief Returns true if the given MacroID location points at the last
321  /// token of the macro expansion.
322  static bool isAtEndOfMacroExpansion(SourceLocation loc,
323                                          const SourceManager &SM,
324                                          const LangOptions &LangOpts);
325
326  /// \brief Compute the preamble of the given file.
327  ///
328  /// The preamble of a file contains the initial comments, include directives,
329  /// and other preprocessor directives that occur before the code in this
330  /// particular file actually begins. The preamble of the main source file is
331  /// a potential prefix header.
332  ///
333  /// \param Buffer The memory buffer containing the file's contents.
334  ///
335  /// \param MaxLines If non-zero, restrict the length of the preamble
336  /// to fewer than this number of lines.
337  ///
338  /// \returns The offset into the file where the preamble ends and the rest
339  /// of the file begins along with a boolean value indicating whether
340  /// the preamble ends at the beginning of a new line.
341  static std::pair<unsigned, bool>
342  ComputePreamble(const llvm::MemoryBuffer *Buffer, const LangOptions &Features,
343                  unsigned MaxLines = 0);
344
345  //===--------------------------------------------------------------------===//
346  // Internal implementation interfaces.
347private:
348
349  /// LexTokenInternal - Internal interface to lex a preprocessing token. Called
350  /// by Lex.
351  ///
352  void LexTokenInternal(Token &Result);
353
354  /// FormTokenWithChars - When we lex a token, we have identified a span
355  /// starting at BufferPtr, going to TokEnd that forms the token.  This method
356  /// takes that range and assigns it to the token as its location and size.  In
357  /// addition, since tokens cannot overlap, this also updates BufferPtr to be
358  /// TokEnd.
359  void FormTokenWithChars(Token &Result, const char *TokEnd,
360                          tok::TokenKind Kind) {
361    unsigned TokLen = TokEnd-BufferPtr;
362    Result.setLength(TokLen);
363    Result.setLocation(getSourceLocation(BufferPtr, TokLen));
364    Result.setKind(Kind);
365    BufferPtr = TokEnd;
366  }
367
368  /// isNextPPTokenLParen - Return 1 if the next unexpanded token will return a
369  /// tok::l_paren token, 0 if it is something else and 2 if there are no more
370  /// tokens in the buffer controlled by this lexer.
371  unsigned isNextPPTokenLParen();
372
373  //===--------------------------------------------------------------------===//
374  // Lexer character reading interfaces.
375public:
376
377  // This lexer is built on two interfaces for reading characters, both of which
378  // automatically provide phase 1/2 translation.  getAndAdvanceChar is used
379  // when we know that we will be reading a character from the input buffer and
380  // that this character will be part of the result token. This occurs in (f.e.)
381  // string processing, because we know we need to read until we find the
382  // closing '"' character.
383  //
384  // The second interface is the combination of getCharAndSize with
385  // ConsumeChar.  getCharAndSize reads a phase 1/2 translated character,
386  // returning it and its size.  If the lexer decides that this character is
387  // part of the current token, it calls ConsumeChar on it.  This two stage
388  // approach allows us to emit diagnostics for characters (e.g. warnings about
389  // trigraphs), knowing that they only are emitted if the character is
390  // consumed.
391
392  /// isObviouslySimpleCharacter - Return true if the specified character is
393  /// obviously the same in translation phase 1 and translation phase 3.  This
394  /// can return false for characters that end up being the same, but it will
395  /// never return true for something that needs to be mapped.
396  static bool isObviouslySimpleCharacter(char C) {
397    return C != '?' && C != '\\';
398  }
399
400  /// getAndAdvanceChar - Read a single 'character' from the specified buffer,
401  /// advance over it, and return it.  This is tricky in several cases.  Here we
402  /// just handle the trivial case and fall-back to the non-inlined
403  /// getCharAndSizeSlow method to handle the hard case.
404  inline char getAndAdvanceChar(const char *&Ptr, Token &Tok) {
405    // If this is not a trigraph and not a UCN or escaped newline, return
406    // quickly.
407    if (isObviouslySimpleCharacter(Ptr[0])) return *Ptr++;
408
409    unsigned Size = 0;
410    char C = getCharAndSizeSlow(Ptr, Size, &Tok);
411    Ptr += Size;
412    return C;
413  }
414
415private:
416  /// ConsumeChar - When a character (identified by getCharAndSize) is consumed
417  /// and added to a given token, check to see if there are diagnostics that
418  /// need to be emitted or flags that need to be set on the token.  If so, do
419  /// it.
420  const char *ConsumeChar(const char *Ptr, unsigned Size, Token &Tok) {
421    // Normal case, we consumed exactly one token.  Just return it.
422    if (Size == 1)
423      return Ptr+Size;
424
425    // Otherwise, re-lex the character with a current token, allowing
426    // diagnostics to be emitted and flags to be set.
427    Size = 0;
428    getCharAndSizeSlow(Ptr, Size, &Tok);
429    return Ptr+Size;
430  }
431
432  /// getCharAndSize - Peek a single 'character' from the specified buffer,
433  /// get its size, and return it.  This is tricky in several cases.  Here we
434  /// just handle the trivial case and fall-back to the non-inlined
435  /// getCharAndSizeSlow method to handle the hard case.
436  inline char getCharAndSize(const char *Ptr, unsigned &Size) {
437    // If this is not a trigraph and not a UCN or escaped newline, return
438    // quickly.
439    if (isObviouslySimpleCharacter(Ptr[0])) {
440      Size = 1;
441      return *Ptr;
442    }
443
444    Size = 0;
445    return getCharAndSizeSlow(Ptr, Size);
446  }
447
448  /// getCharAndSizeSlow - Handle the slow/uncommon case of the getCharAndSize
449  /// method.
450  char getCharAndSizeSlow(const char *Ptr, unsigned &Size, Token *Tok = 0);
451public:
452
453  /// getCharAndSizeNoWarn - Like the getCharAndSize method, but does not ever
454  /// emit a warning.
455  static inline char getCharAndSizeNoWarn(const char *Ptr, unsigned &Size,
456                                          const LangOptions &Features) {
457    // If this is not a trigraph and not a UCN or escaped newline, return
458    // quickly.
459    if (isObviouslySimpleCharacter(Ptr[0])) {
460      Size = 1;
461      return *Ptr;
462    }
463
464    Size = 0;
465    return getCharAndSizeSlowNoWarn(Ptr, Size, Features);
466  }
467
468  /// getEscapedNewLineSize - Return the size of the specified escaped newline,
469  /// or 0 if it is not an escaped newline. P[-1] is known to be a "\" on entry
470  /// to this function.
471  static unsigned getEscapedNewLineSize(const char *P);
472
473  /// SkipEscapedNewLines - If P points to an escaped newline (or a series of
474  /// them), skip over them and return the first non-escaped-newline found,
475  /// otherwise return P.
476  static const char *SkipEscapedNewLines(const char *P);
477
478  /// \brief Checks that the given token is the first token that occurs after
479  /// the given location (this excludes comments and whitespace). Returns the
480  /// location immediately after the specified token. If the token is not found
481  /// or the location is inside a macro, the returned source location will be
482  /// invalid.
483  static SourceLocation findLocationAfterToken(SourceLocation loc,
484                                         tok::TokenKind TKind,
485                                         const SourceManager &SM,
486                                         const LangOptions &LangOpts,
487                                         bool SkipTrailingWhitespaceAndNewLine);
488
489private:
490
491  /// getCharAndSizeSlowNoWarn - Same as getCharAndSizeSlow, but never emits a
492  /// diagnostic.
493  static char getCharAndSizeSlowNoWarn(const char *Ptr, unsigned &Size,
494                                       const LangOptions &Features);
495
496  //===--------------------------------------------------------------------===//
497  // Other lexer functions.
498
499  void SkipBytes(unsigned Bytes, bool StartOfLine);
500
501  // Helper functions to lex the remainder of a token of the specific type.
502  void LexIdentifier         (Token &Result, const char *CurPtr);
503  void LexNumericConstant    (Token &Result, const char *CurPtr);
504  void LexStringLiteral      (Token &Result, const char *CurPtr,
505                              tok::TokenKind Kind);
506  void LexRawStringLiteral   (Token &Result, const char *CurPtr,
507                              tok::TokenKind Kind);
508  void LexAngledStringLiteral(Token &Result, const char *CurPtr);
509  void LexCharConstant       (Token &Result, const char *CurPtr,
510                              tok::TokenKind Kind);
511  bool LexEndOfFile          (Token &Result, const char *CurPtr);
512
513  bool SkipWhitespace        (Token &Result, const char *CurPtr);
514  bool SkipBCPLComment       (Token &Result, const char *CurPtr);
515  bool SkipBlockComment      (Token &Result, const char *CurPtr);
516  bool SaveBCPLComment       (Token &Result, const char *CurPtr);
517
518  bool IsStartOfConflictMarker(const char *CurPtr);
519  bool HandleEndOfConflictMarker(const char *CurPtr);
520
521  bool isCodeCompletionPoint(const char *CurPtr) const;
522  void cutOffLexing() { BufferPtr = BufferEnd; }
523};
524
525
526}  // end namespace clang
527
528#endif
529