index
:
emscripten-fastcomp
master
LLVM with the emscripten fastcomp javascript backend
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Transforms
/
IPO
/
StripSymbols.cpp
Age
Commit message (
Expand
)
Author
2009-03-13
Fix -strip-debug-declare to work when there are
Dale Johannesen
2009-03-09
Remove llvm.dbg.global_variables also.
Devang Patel
2009-03-09
Add helper pass to remove llvm.dbg.declare intrinsics.
Devang Patel
2009-03-03
Recursively remove dead argument while removing llvm.dbg.declare intrinsic.
Devang Patel
2009-03-02
Remove all dbg symobls, including those with circular references.
Devang Patel
2009-01-15
Add the private linkage.
Rafael Espindola
2008-11-20
Do not forget llvm.dbg.declare's first argument while removing debugging info...
Devang Patel
2008-11-19
Remove unused variables.
Devang Patel
2008-11-19
Fix typo.
Devang Patel
2008-11-18
Add new helper pass that strips all symbol names except debugging information.
Devang Patel
2008-11-18
Remove even more llvm.dbg variables.
Devang Patel
2008-11-16
simplify loop
Chris Lattner
2008-11-14
Refactor code.
Devang Patel
2008-11-13
Really remove all debug information.
Devang Patel
2008-09-04
Tidy up several unbeseeming casts from pointer to intptr_t.
Dan Gohman
2008-05-13
Clean up the use of static and anonymous namespaces. This turned up
Dan Gohman
2008-01-16
Handle attribute(used) global variables that are i8.
Chris Lattner
2008-01-16
Do not strip llvm.used values.
Devang Patel
2007-12-29
Remove attribution from file headers, per discussion on llvmdev.
Chris Lattner
2007-11-04
Finishing initial docs for all transformations in Passes.html.
Gordon Henriksen
2007-08-01
More explicit keywords.
Dan Gohman
2007-05-06
Fix typo in comment.
Nick Lewycky
2007-05-03
Drop 'const'
Devang Patel
2007-05-02
Use 'static const char' instead of 'static const int'.
Devang Patel
2007-05-01
Do not use typeinfo to identify pass in pass manager.
Devang Patel
2007-02-12
Switch ValueSymbolTable to use StringMap<Value*> instead of std::map<std::str...
Chris Lattner
2007-02-07
shrink vmcore by moving symbol table stripping support out of VMCore into
Chris Lattner
2007-02-05
Apply the VISIBILITY_HIDDEN field to the remaining anonymous classes in
Reid Spencer
2007-02-05
For PR411:
Reid Spencer
2007-02-05
For PR411:
Reid Spencer
2007-01-06
For PR411:
Reid Spencer
2006-08-27
eliminate RegisterOpt. It does the same thing as RegisterPass.
Chris Lattner
2006-03-23
Strip changes to llvm.dbg intrinsics.
Jim Laskey
2006-03-15
Teach the strip pass to strip type names in addition to value names. This
Chris Lattner
2006-03-13
Handle the removal of the debug chain.
Jim Laskey
2006-03-09
fix a pasto
Chris Lattner
2005-04-21
Remove trailing whitespace
Misha Brukman
2005-03-15
This mega patch converts us from using Function::a{iterator|begin|end} to
Chris Lattner
2004-12-03
Implement stripping of debug symbols, making the --strip-debug options in
Chris Lattner
2004-12-02
Initial reimplementation of the -strip pass, with a stub for implementing
Chris Lattner