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
/
lib
/
VMCore
/
ValueSymbolTable.cpp
Age
Commit message (
Expand
)
Author
2011-06-18
eliminate the Type::getDescription() method, using "<<" instead. This
Chris Lattner
2010-07-21
Make NamedMDNode not be a subclass of Value, and simplify the interface
Dan Gohman
2010-03-31
Bump SmallString size a bit to avoid malloc trashing.
Benjamin Kramer
2010-01-09
Delete NamedMDSymTable while destrucing Module.
Devang Patel
2010-01-05
Change errs() to dbgs().
David Greene
2009-11-06
Pass StringRef by value.
Daniel Dunbar
2009-08-23
remove some DOUTs
Chris Lattner
2009-08-19
Change ValueSymbolTable to use raw_svector_ostream for string concatenation.
Daniel Dunbar
2009-07-25
Remove Value::{isName, getNameRef}.
Daniel Dunbar
2009-07-24
Move more to raw_ostream.
Daniel Dunbar
2009-07-23
Switch ValueSymbolTable to StringRef based API.
Daniel Dunbar
2009-07-23
Convert StringMap to using StringRef for its APIs.
Daniel Dunbar
2009-05-21
Use v.data() instead of &v[0] when SmallVector v might be empty.
Jay Foad
2008-06-27
implement some fixme's by making "autorenaming" in the value symbol table not
Chris Lattner
2008-06-27
Add a new version of Module::getFunction that takes a const char* instead
Chris Lattner
2007-12-29
Remove attribution from file headers, per discussion on llvmdev.
Chris Lattner
2007-02-25
disable some noisy debug output
Chris Lattner
2007-02-12
Switch ValueSymbolTable to use StringMap<Value*> instead of std::map<std::str...
Chris Lattner
2007-02-07
constants can't be in the symtab anymore
Chris Lattner
2007-02-07
update comment.
Chris Lattner
2007-02-07
shrink vmcore by moving symbol table stripping support out of VMCore into
Chris Lattner
2007-02-07
eliminate ValueSymbolTable::rename, it has no advantage over using remove+ins...
Chris Lattner
2007-02-07
speed up conflict handling.
Chris Lattner
2007-02-07
Eliminate a bunch of work from ValueSymbolTable::insert for the common case
Chris Lattner
2007-02-05
For PR411:
Reid Spencer
2006-11-17
Removed iostream #includes. Replaced std::cerr with DOUT.
Bill Wendling
2006-01-11
Simple is good. CVS is for revision control, not file headers
Chris Lattner
2006-01-10
For PR411:
Reid Spencer