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
/
Transforms
/
Scalar
/
DecomposeMultiDimRefs.cpp
Age
Commit message (
Expand
)
Author
2004-11-07
This is V9 specific, move it there.
Chris Lattner
2004-09-01
Changes For Bug 352
Reid Spencer
2004-07-29
Fix #includes of i*.h => Instructions.h as per PR403.
Misha Brukman
2004-07-06
It doesn't matter what the 2nd operand is; if the GEP has 2 operands and
Brian Gaeke
2004-07-06
Add helper function.
Brian Gaeke
2004-07-02
Get rid of a dead variable, and fix a typo in a comment.
Brian Gaeke
2004-01-09
Finegrainify namespacification
Chris Lattner
2003-11-11
Put all LLVM code into the llvm namespace, as per bug 109.
Brian Gaeke
2003-10-20
Added LLVM project notice to the top of every C++ source file.
John Criswell
2003-08-14
Factory methods for function passes now return type FunctionPass *.
Brian Gaeke
2003-04-23
Remove unnecesary &*'s
Chris Lattner
2002-10-01
Updates to work with recent Statistic's changes:
Chris Lattner
2002-09-16
Extract most of the transformation into an externally accessible
Vikram S. Adve
2002-09-11
- Change getelementptr instruction to use long indexes instead of uint
Chris Lattner
2002-09-10
Simplify code (somtimes dramatically), by using the new "auto-insert" feature
Chris Lattner
2002-08-22
Eliminated the MemAccessInst class, folding contents into GEP class.
Chris Lattner
2002-08-22
Load & StoreInst no longer derive from MemAccessInst, so we don't have
Chris Lattner
2002-08-21
Remove an optimization that isn't.
Chris Lattner
2002-08-03
Eliminate cast instructions: use only GEPs in decomposed sequence.
Vikram S. Adve
2002-07-26
* Add support for different "PassType's"
Chris Lattner
2002-07-23
*** empty log message ***
Chris Lattner
2002-06-25
changes to make it compatible with 64bit gcc
Anand Shukla
2002-06-25
MEGAPATCH checkin.
Chris Lattner
2002-05-10
Add support for printing out statistics information when -stats is added to
Chris Lattner
2002-05-07
Merge all individual .h files into a single Scalar.h file
Chris Lattner
2002-04-29
Range insertion now returns an iterator
Chris Lattner
2002-04-29
changes because iMemory.h no longer #includes DerivedTypes.h
Chris Lattner
2002-04-29
Add new optional getPassName() virtual function that a Pass can override
Chris Lattner
2002-04-29
More cleanups
Chris Lattner
2002-04-29
Code cleanups
Chris Lattner
2002-04-28
Tighten up the AnalysisUsage of lots of passes, primarily to correctly indica...
Chris Lattner
2002-04-28
Split ConstantVals.h into Constant.h and Constants.h
Chris Lattner
2002-04-27
* Rename MethodPass class to FunctionPass
Chris Lattner
2002-04-08
s/Method/Function
Chris Lattner
2002-04-07
Change references to the Method class to be references to the Function
Chris Lattner
2002-03-24
Major overhaul to support arbitrary mixed array and structure indices.
Vikram S. Adve
2002-03-23
New pass to decompose multi-dimensional array references into
Vikram S. Adve