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
/
Scalar
/
Reassociate.cpp
Age
Commit message (
Expand
)
Author
2013-04-27
Fix a XOR reassociation bug.
Shuxin Yang
2013-04-08
Redo the fix Benjamin Kramer committed in r178793 about iterator invalidation...
Shuxin Yang
2013-04-04
Reassociate: Avoid iterator invalidation.
Benjamin Kramer
2013-04-01
Correct assertion condition
Shuxin Yang
2013-03-30
Implement XOR reassociation. It is based on following rules:
Shuxin Yang
2013-01-02
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2012-12-03
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-11-18
Remove the last bit of constant folding from LinearizeExprTree (most of it was
Duncan Sands
2012-11-18
Fix PR14060, an infinite loop in reassociate. The problem was that one of the
Duncan Sands
2012-11-15
Fix a crash observed by Shuxin Yang. The issue here is that LinearizeExprTree,
Duncan Sands
2012-11-13
revert r167740
Shuxin Yang
2012-11-12
This change is to fix rdar://12571717 which is about assertion in Reassociate...
Shuxin Yang
2012-07-26
Stop reassociate from looking through expressions of arbitrary complexity. This
Duncan Sands
2012-07-24
Clean whitespaces.
Nadav Rotem
2012-07-23
Suppress a warning.
Nadav Rotem
2012-06-29
Rework this to clarify where the removal of nodes from the queue is
Duncan Sands
2012-06-29
Fix a reassociate crash on sozefx when compiling with dragonegg+gcc-4.7 due to
Duncan Sands
2012-06-29
Move llvm/Support/IRBuilder.h -> llvm/IRBuilder.h
Chandler Carruth
2012-06-27
Some reassociate optimizations create new instructions, which they insert just
Duncan Sands
2012-06-24
Remove a dangling reference to a deleted instruction. Fixes PR13185!
Nick Lewycky
2012-06-15
Fix issues (infinite loop and/or crash) with self-referential instructions, for
Duncan Sands
2012-06-13
It is possible for several constants which aren't individually absorbing to
Duncan Sands
2012-06-13
When linearizing a multiplication, return at once if we see a factor of zero,
Duncan Sands
2012-06-12
Use DenseMap as SmallMap workaround rather than std::map, at Chandler's request.
Duncan Sands
2012-06-12
Use std::map rather than SmallMap because SmallMap assumes that the value has
Duncan Sands
2012-06-12
Now that Reassociate's LinearizeExprTree can look through arbitrary expression
Duncan Sands
2012-06-08
Reapply commit 158073 with a fix (the testcase was already committed). The
Duncan Sands
2012-06-08
Revert commit 158073 while waiting for a fix. The issue is that reassociate
Duncan Sands
2012-06-06
Grab-bag of reassociate tweaks. Unify handling of dead instructions and
Duncan Sands
2012-06-02
Fix typos found by http://github.com/lyda/misspell-check
Benjamin Kramer
2012-05-26
Since commit 157467, if reassociate isn't actually going to change an expression
Duncan Sands
2012-05-26
Move this debug statement earlier so it is easy to see the order in
Duncan Sands
2012-05-25
Make the reassociation pass more powerful so that it can handle expressions
Duncan Sands
2012-05-08
Calling ReassociateExpression recursively is extremely dangerous since it will
Duncan Sands
2012-05-07
Teach reassociate to commute FMul's and FAdd's in order to canonicalize the o...
Owen Anderson
2012-05-04
Add 'landingpad' instructions to the list of instructions to ignore.
Bill Wendling
2012-05-02
Whitespace cleanup.
Bill Wendling
2012-05-02
The value held in the vector may be RAUW'ed by some of the canonicalization
Bill Wendling
2012-04-26
Teach the reassociate pass to fold chains of multiplies with repeated
Chandler Carruth
2012-03-26
Prune some includes and forward declarations.
Craig Topper
2011-08-12
Silence a bunch (but not all) "variable written but not read" warnings
Duncan Sands
2011-08-02
Revert r136503 and r136480 in an effort to fix non-determinism in the llvm-gc...
Owen Anderson
2011-07-29
Clear DbgValues in the end.
Devang Patel
2011-07-29
Clean up debug info after reassociation.
Devang Patel
2011-07-15
start using the new helper methods a bit.
Chris Lattner
2011-04-28
Preserve line number information.
Devang Patel
2011-04-12
Fix reassociate to use a worklist instead of recursing when new
Dan Gohman
2011-03-10
RecursivelyDeleteTriviallyDeadInstructions only needs a
Dan Gohman
2011-03-10
Fix reassociate to postpone certain instruction deletions until
Dan Gohman
2011-02-17
fix PR9215, preventing -reassociate from clearing nsw/nuw when
Chris Lattner
[next]