index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
Lex
/
PTHLexer.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
remove my gross #ifdef's, using portable abstractions now that the 32-bit
Chris Lattner
2009-01-22
1
-11
/
+8
*
remove Read8/Read24, which are dead. Rename Read16/Read32 to be more
Chris Lattner
2009-01-22
1
-58
/
+30
*
Fix <rdar://problem/6512717> by correctly reading the right offset in the tok...
Ted Kremenek
2009-01-21
1
-1
/
+1
*
merge two checks for identifiers in the pth loop into one.
Chris Lattner
2009-01-21
1
-9
/
+10
*
Add a bit to IdentifierInfo that acts as a simple predicate which
Chris Lattner
2009-01-21
1
-1
/
+3
*
Don't crash on empty PTH files. This fixes <rdar://problem/6512714>.
Ted Kremenek
2009-01-21
1
-9
/
+19
*
really we only need on Read24!
Chris Lattner
2009-01-21
1
-16
/
+0
*
revert my previous patch, it assumed endianness.
Chris Lattner
2009-01-21
1
-6
/
+38
*
minor cleanups: now that tokens are 4-byte aligned in a PTH
Chris Lattner
2009-01-21
1
-22
/
+6
*
Fix: <rdar://problem/6510344> [pth] PTH slows down regular lexer considerably...
Ted Kremenek
2009-01-20
1
-1
/
+1
*
PTH: Emitted tokens now consist of 12 bytes that are loaded used 3 32-bit loa...
Ted Kremenek
2009-01-19
1
-5
/
+8
*
rearrange GetIdentifierInfo so that the fast path can be partially inlined in...
Chris Lattner
2009-01-18
1
-10
/
+4
*
rename some variables, only set a tokens identifierinfo if non-null.
Chris Lattner
2009-01-18
1
-10
/
+11
*
On i386 and x86-64, just do unaligned loads
Chris Lattner
2009-01-18
1
-0
/
+20
*
switch PTHLexer to use Read32 and friends instead of lots of inlined
Chris Lattner
2009-01-18
1
-107
/
+60
*
switch PTH lexer from using "const char*"s to "const unsigned char*"s
Chris Lattner
2009-01-18
1
-48
/
+71
*
simplify PTHManager::CreateLexer
Chris Lattner
2009-01-17
1
-1
/
+2
*
suck the call to "getSpellingLoc" that all clients do into
Chris Lattner
2009-01-17
1
-2
/
+3
*
this massive patch introduces a simple new abstraction: it makes
Chris Lattner
2009-01-17
1
-30
/
+33
*
Change some terminology in SourceLocation: instead of referring to
Chris Lattner
2009-01-16
1
-1
/
+1
*
PTH: Fix termination condition in binary search.
Ted Kremenek
2009-01-15
1
-1
/
+1
*
IdentifierInfo:
Ted Kremenek
2009-01-15
1
-11
/
+74
*
PTH: Embed a persistentID side-table in the PTH file that is sorted in the
Ted Kremenek
2009-01-15
1
-2
/
+3
*
PTH:
Ted Kremenek
2009-01-13
1
-1
/
+1
*
Fix corner cases in PTH getSpelling() binary search.
Ted Kremenek
2009-01-13
1
-0
/
+3
*
PTH: Fix remaining cases where the spelling cache in the PTH file was being m...
Ted Kremenek
2009-01-13
1
-16
/
+19
*
Enhance PTH 'getSpelling' caching:
Ted Kremenek
2009-01-09
1
-15
/
+104
*
Invert assertion condition.
Ted Kremenek
2009-01-09
1
-1
/
+1
*
PTH: Hook up getSpelling() caching in PTHLexer. This results in a nice
Ted Kremenek
2009-01-08
1
-4
/
+62
*
PTH:
Ted Kremenek
2009-01-08
1
-6
/
+22
*
PTH: Remove some methods and simplify some conditions in PTHLexer::Lex(). No...
Ted Kremenek
2008-12-23
1
-58
/
+30
*
PTH: Use 3 bytes instead of 4 bytes to encode the persistent ID for a token.
Ted Kremenek
2008-12-23
1
-9
/
+8
*
Cosmetics: rename a variable and tighten spacing. No functionality change.
Ted Kremenek
2008-12-23
1
-4
/
+2
*
PTH:
Ted Kremenek
2008-12-23
1
-4
/
+2
*
PTH:
Ted Kremenek
2008-12-23
1
-30
/
+39
*
PTH:
Ted Kremenek
2008-12-23
1
-111
/
+92
*
Use '&' to test StartOfLine flag.
Ted Kremenek
2008-12-18
1
-1
/
+1
*
Rewrite PTHLexer::DiscardToEndOfLine() to not use GetToken and instead only r...
Ted Kremenek
2008-12-17
1
-9
/
+18
*
Change PTHLexer::getSourceLocation() to not call GetToken() and instead just ...
Ted Kremenek
2008-12-17
1
-0
/
+15
*
add a dropped word back
Chris Lattner
2008-12-17
1
-1
/
+1
*
Shadow CurPtr with a local variable in ReadToken.
Ted Kremenek
2008-12-17
1
-6
/
+12
*
PTH: Added minor 'sibling jumping' optimization for iterating over the side t...
Ted Kremenek
2008-12-12
1
-9
/
+37
*
Added PTH optimization to not process entire blocks of tokens that appear in ...
Ted Kremenek
2008-12-12
1
-13
/
+98
*
PTH:
Ted Kremenek
2008-12-11
1
-12
/
+18
*
PTHLexer: Keep track of the location of the last '#' token and provide the me...
Ted Kremenek
2008-12-11
1
-6
/
+9
*
Remove unused ivar CurTokenIdx.
Ted Kremenek
2008-12-11
1
-1
/
+1
*
Declare PerIDCache as IdentifierInfo** instead of void*. This is just cleane...
Ted Kremenek
2008-12-10
1
-2
/
+2
*
Remove unneeded assertion.
Ted Kremenek
2008-12-04
1
-1
/
+1
*
Use 'free' to release PerIDCache since it was allocated using calloc().
Ted Kremenek
2008-12-04
1
-1
/
+1
*
PTH:
Ted Kremenek
2008-12-03
1
-13
/
+23
[prev]
[next]