index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
utils
/
TableGen
/
TGLexer.cpp
Age
Commit message (
Expand
)
Author
2010-01-05
Add an !eq() operator to TableGen. It operates on strings only.
David Greene
2009-07-03
Replace std::iostreams with raw_ostream in TableGen.
Daniel Dunbar
2009-06-30
Normalize SourceMgr messages.
Daniel Dunbar
2009-06-21
rename SourceMgr::PrintError to PrintMessage.
Chris Lattner
2009-06-21
simplify some error recovery stuff.
Chris Lattner
2009-06-21
prune #include, fix warning.
Chris Lattner
2009-06-21
move include searching logic from TGLexer to SourceMgr.
Chris Lattner
2009-06-21
Rename TGSourceMgr -> SourceMgr.
Chris Lattner
2009-06-21
rename TGLoc -> SMLoc.
Chris Lattner
2009-06-21
move TGSourceMgr class out of TableGen into libsupport.
Chris Lattner
2009-06-09
Revert 73074 and 73099 because Windows doesn't have POSIX
David Greene
2009-06-08
Add a !patsubst operator. Use on string types.
David Greene
2009-06-08
Add a !regmatch operator to do pattern matching in TableGen.
David Greene
2009-05-14
Implement !if, analogous to $(if) in GNU make.
David Greene
2009-05-14
Graduate LLVM to the big leagues by embedding a LISP processor into TableGen.
David Greene
2009-05-14
Implement a !foreach operator analogous to GNU make's $(foreach).
David Greene
2009-05-14
Implement a !subst operation simmilar to $(subst) in GNU make to do
David Greene
2009-05-14
Implement !cast.
David Greene
2009-05-14
Operation Enhancements
David Greene
2009-05-05
Allow multiclass def names to contain "#NAME"" where TableGen replaces
David Greene
2009-04-22
Implement !nameconcat to concatenate strings and look up the resulting
David Greene
2009-03-13
Fix escaping in asm string literals correctly by having tblgen unescape
Chris Lattner
2009-03-13
add a horrible hack to fix the build.
Chris Lattner
2009-03-13
add support for a few simple escape characters in tblgen strings.
Chris Lattner
2009-03-13
make "locations" a class instead of a typedef.
Chris Lattner
2009-03-13
split buffer management and diagnostic printing out of the tblgen
Chris Lattner
2008-10-17
Fun x86 encoding tricks: when adding an immediate value of 128,
Dan Gohman
2008-10-08
Add <cstdio> include where needed by gcc-4.4.
Duncan Sands
2008-04-01
Change the MemoryBuffer::getFile* methods to take just a pointer to the
Chris Lattner
2008-02-20
Unbreak build with gcc 4.3: provide missed includes and silence most annoying...
Anton Korobeynikov
2007-12-29
remove attributions from utils.
Chris Lattner
2007-11-22
Rewrite the tblgen parser in a recursive descent style, eliminating the bison...
Chris Lattner
2007-11-21
Switching back to strtoll. Including config.h. On VStudio builds, this overr...
Chuck Rose III
2007-11-21
This change does a couple of things. First it gets the Visual Studio builds ...
Chuck Rose III
2007-11-19
Record the start of the current token, for use in error reporting.
Chris Lattner
2007-11-19
Add carat diagnostics to tblgen lexer errors.
Chris Lattner
2007-11-18
minor cleanups
Chris Lattner
2007-11-18
ensure header is self contained.
Chris Lattner
2007-11-18
reimplement the tblgen lexer with a simple hand-written lexer. This eliminates
Chris Lattner