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
/
Inliner.cpp
Age
Commit message (
Expand
)
Author
2007-10-03
Use empty() member functions when that's what's being tested for instead
Dan Gohman
2007-06-19
Inliner pass header file was moved.
Tanya Lattner
2007-05-06
Fix PR1395, by passing the ID correctly
Chris Lattner
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-01-30
the inliner pass now passes targetdata down through the inliner api's
Chris Lattner
2007-01-30
For PR1136: Rename GlobalVariable::isExternal as isDeclaration to avoid
Reid Spencer
2006-12-19
Eliminate static ctors due to Statistic objects
Chris Lattner
2006-12-06
Detemplatize the Statistic class. The only type it is instantiated with
Chris Lattner
2006-11-26
Replace #include <iostream> with llvm_* streams.
Bill Wendling
2006-11-09
second patch to fix PR992/993.
Chris Lattner
2006-11-09
Minimal patch to fix PR992/PR993
Chris Lattner
2006-11-02
For PR786:
Reid Spencer
2006-07-12
Change the callgraph representation to store the callsite along with the
Chris Lattner
2006-05-12
Remove some dead variables.
Chris Lattner
2006-01-22
Make iostream #inclusion explicit
Chris Lattner
2006-01-14
Let the inliner update the callgraph to reflect the changes it makes, instead
Chris Lattner
2006-01-13
Fix 80 column violations
Chris Lattner
2005-04-21
Remove trailing whitespace
Misha Brukman
2004-09-18
Fix the inliner to always delete any edges from the external call node to
Chris Lattner
2004-09-01
Changes For Bug 352
Reid Spencer
2004-08-08
Fix another really nasty regression that Anshu pointed out. In cases where
Chris Lattner
2004-07-29
Fix #includes of i*.h => Instructions.h as per PR403.
Misha Brukman
2004-07-18
Fix a performance regression from the CPR patch, simplify code
Chris Lattner
2004-07-18
Fix a rather serious bug in previous checkin
Chris Lattner
2004-07-18
bug 122:
Reid Spencer
2004-06-20
Fix the inliner to be deterministic, not letting its output depend on the
Chris Lattner
2004-05-24
Fix a bug in my previous checkin
Chris Lattner
2004-05-23
Fix cases where we missed inlining some more obvious candidates because the
Chris Lattner
2004-04-21
Fix an incredibly nasty iterator invalidation problem. I am too spoiled by i...
Chris Lattner
2004-04-21
Fix typeo
Chris Lattner
2004-04-20
REALLY fix PR324: don't delete linkonce functions until after the SCC traversal
Chris Lattner
2004-04-20
Fix PR324 and testcase: Inline/2004-04-20-InlineLinkOnce.llx
Chris Lattner
2004-04-12
Actually update the call graph as the inliner changes it. This allows us to
Chris Lattner
2004-04-12
Stop printing Function*
Chris Lattner
2004-04-08
Remove the "really gross hacks" that are there to deal with recursive functions.
Chris Lattner
2003-11-21
Finegrainify namespacification
Chris Lattner
2003-11-11
Put all LLVM code into the llvm namespace, as per bug 109.
Brian Gaeke
2003-11-09
Do NOT inline self recursive calls into other functions. This is causing the
Chris Lattner
2003-10-31
Strip off CPR's manually, because if we don't, the inliner doesn't delete dead
Chris Lattner
2003-10-20
Added LLVM project notice to the top of every C++ source file.
John Criswell
2003-08-31
Heavily refactor code:
Chris Lattner