index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
include
/
clang
/
Lex
/
PTHManager.h
Age
Commit message (
Expand
)
Author
2012-12-04
Sort #include lines for all files under include/...
Chandler Carruth
2012-09-15
Make PTHManager properly noncopyable.
Dmitri Gribenko
2012-08-17
Switch PTH format from a 7 byte magic number to an 8 byte one, to avoid
Richard Smith
2012-02-07
Revert my patches which removed Diagnostic.h includes by moving some operator...
Benjamin Kramer
2012-02-04
Remove Diagnostic.h include from Preprocessor.h.
Benjamin Kramer
2011-09-25
Rename Diagnostic to DiagnosticsEngine as per issue 5397
David Blaikie
2011-07-20
now that we have a centralized place to do so, add some using declarations for
Chris Lattner
2010-11-23
rework the stat cache, pulling it out of FileManager.h into
Chris Lattner
2010-11-23
don't allow remapping PTH file paths with -fworking-directory, the
Chris Lattner
2010-11-23
now the FileManager has a FileSystemOpts ivar, stop threading
Chris Lattner
2010-11-03
Implement -working-directory.
Argyrios Kyrtzidis
2010-03-12
Switch over IdentifierInfoLookup to StringRef
Kovarththanan Rajaratnam
2009-11-12
Switch PTHManager to using diagnostics for most errors.
Daniel Dunbar
2009-09-09
Remove tabs, and whitespace cleanups.
Mike Stump
2009-03-22
PTHManager::Create():
Ted Kremenek
2009-03-19
Add PTHManager::getOriginalSourceFile(), a method that returns the name of the
Ted Kremenek
2009-02-13
Add some boilerplate to the PTH file to prepare for the caching of stats for ...
Ted Kremenek
2009-02-12
PTH: Cache stat information for files in the PTH file. Hook up FileManager
Ted Kremenek
2009-02-11
PTH: Have meta data be at the beginning of the PTH file, not the end.
Ted Kremenek
2009-02-11
PTH: Replace string identifier to persistent ID lookup with a hashtable. This is
Ted Kremenek
2009-02-11
PTH: Don't emit the PTH offset of the IdentifierInfo string data as that data is
Ted Kremenek
2009-02-10
Bump PTH version.
Ted Kremenek
2009-01-28
Enhance PTHManager::Create() to take an optional Diagnostic* argument that ca...
Ted Kremenek
2009-01-27
PTH: Use Token::setLiteralData() to directly store a pointer to cached spelli...
Ted Kremenek
2009-01-26
Add version number to PTH files.
Ted Kremenek
2009-01-18
rearrange GetIdentifierInfo so that the fast path can be partially inlined in...
Chris Lattner
2009-01-18
switch PTH lexer from using "const char*"s to "const unsigned char*"s
Chris Lattner
2009-01-17
simplify PTHManager::CreateLexer
Chris Lattner
2009-01-17
this massive patch introduces a simple new abstraction: it makes
Chris Lattner
2009-01-15
IdentifierInfo:
Ted Kremenek
2009-01-13
PTH: Fix remaining cases where the spelling cache in the PTH file was being m...
Ted Kremenek
2009-01-09
Enhance PTH 'getSpelling' caching:
Ted Kremenek
2009-01-08
PTH: Hook up getSpelling() caching in PTHLexer. This results in a nice
Ted Kremenek
2008-12-23
PTH:
Ted Kremenek
2008-12-10
Declare PerIDCache as IdentifierInfo** instead of void*. This is just cleane...
Ted Kremenek
2008-12-03
PTH:
Ted Kremenek
2008-12-03
- Remove PTHManager.cpp. Move all of its functions to PTHLexer.cpp since som...
Ted Kremenek
2008-12-02
Added PTHManager, a utility class that will be used by Preprocessor to lazily...
Ted Kremenek