PTHManager.h revision 8a6aec620dbec1f292fe4116c0373ac81ab90234
1//===--- PTHManager.h - Manager object for PTH processing -------*- 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 PTHManager interface.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_CLANG_PTHMANAGER_H
15#define LLVM_CLANG_PTHMANAGER_H
16
17#include "clang/Lex/PTHLexer.h"
18#include "clang/Basic/LangOptions.h"
19#include "clang/Basic/IdentifierTable.h"
20#include "llvm/ADT/DenseMap.h"
21#include "llvm/Support/Allocator.h"
22#include <string>
23
24namespace llvm {
25  class MemoryBuffer;
26}
27
28namespace clang {
29
30class FileEntry;
31class PTHLexer;
32class Diagnostic;
33
34class PTHManager : public IdentifierInfoLookup {
35  friend class PTHLexer;
36
37  /// The memory mapped PTH file.
38  const llvm::MemoryBuffer* Buf;
39
40  /// Alloc - Allocator used for IdentifierInfo objects.
41  llvm::BumpPtrAllocator Alloc;
42
43  /// IdMap - A lazily generated cache mapping from persistent identifiers to
44  ///  IdentifierInfo*.
45  IdentifierInfo** PerIDCache;
46
47  /// FileLookup - Abstract data structure used for mapping between files
48  ///  and token data in the PTH file.
49  void* FileLookup;
50
51  /// IdDataTable - Array representing the mapping from persistent IDs to the
52  ///  data offset within the PTH file containing the information to
53  ///  reconsitute an IdentifierInfo.
54  const unsigned char* const IdDataTable;
55
56  /// SortedIdTable - Array ordering persistent identifier IDs by the lexical
57  ///  order of their corresponding strings.  This is used by get().
58  const unsigned char* const SortedIdTable;
59
60  /// NumIds - The number of identifiers in the PTH file.
61  const unsigned NumIds;
62
63  /// PP - The Preprocessor object that will use this PTHManager to create
64  ///  PTHLexer objects.
65  Preprocessor* PP;
66
67  /// SpellingBase - The base offset within the PTH memory buffer that
68  ///  contains the cached spellings for literals.
69  const unsigned char* const SpellingBase;
70
71  /// This constructor is intended to only be called by the static 'Create'
72  /// method.
73  PTHManager(const llvm::MemoryBuffer* buf, void* fileLookup,
74             const unsigned char* idDataTable, IdentifierInfo** perIDCache,
75             const unsigned char* sortedIdTable, unsigned numIds,
76             const unsigned char* spellingBase);
77
78  // Do not implement.
79  PTHManager();
80  void operator=(const PTHManager&);
81
82  /// getSpellingAtPTHOffset - Used by PTHLexer classes to get the cached
83  ///  spelling for a token.
84  unsigned getSpellingAtPTHOffset(unsigned PTHOffset, const char*& Buffer);
85
86
87  /// GetIdentifierInfo - Used to reconstruct IdentifierInfo objects from the
88  ///  PTH file.
89  inline IdentifierInfo* GetIdentifierInfo(unsigned PersistentID) {
90    // Check if the IdentifierInfo has already been resolved.
91    if (IdentifierInfo* II = PerIDCache[PersistentID])
92      return II;
93    return LazilyCreateIdentifierInfo(PersistentID);
94  }
95  IdentifierInfo* LazilyCreateIdentifierInfo(unsigned PersistentID);
96
97public:
98  // The current PTH version.
99  enum { Version = 1 };
100
101  ~PTHManager();
102
103  /// get - Return the identifier token info for the specified named identifier.
104  ///  Unlike the version in IdentifierTable, this returns a pointer instead
105  ///  of a reference.  If the pointer is NULL then the IdentifierInfo cannot
106  ///  be found.
107  IdentifierInfo *get(const char *NameStart, const char *NameEnd);
108
109  /// Create - This method creates PTHManager objects.  The 'file' argument
110  ///  is the name of the PTH file.  This method returns NULL upon failure.
111  static PTHManager *Create(const std::string& file, Diagnostic* Diags = 0);
112
113  void setPreprocessor(Preprocessor *pp) { PP = pp; }
114
115  /// CreateLexer - Return a PTHLexer that "lexes" the cached tokens for the
116  ///  specified file.  This method returns NULL if no cached tokens exist.
117  ///  It is the responsibility of the caller to 'delete' the returned object.
118  PTHLexer *CreateLexer(FileID FID);
119};
120
121}  // end namespace clang
122
123#endif
124