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
/
CodeGen
/
MachineLICM.cpp
Age
Commit message (
Expand
)
Author
2008-03-10
Minor cleanup. No functionality change.
Bill Wendling
2008-02-26
Rename PrintableName to Name.
Bill Wendling
2008-02-26
Change "Name" to "AsmName" in the target register info. Gee, a refactoring tool
Bill Wendling
2008-02-10
Rename MRegisterInfo to TargetRegisterInfo.
Dan Gohman
2008-01-10
Simplify the side effect stuff a bit more and make licm/sinking
Chris Lattner
2008-01-07
rename TargetInstrDescriptor -> TargetInstrDesc.
Chris Lattner
2008-01-07
Rename MachineInstr::getInstrDescriptor -> getDesc(), which reflects
Chris Lattner
2008-01-04
Add that this preserves some analyses.
Bill Wendling
2008-01-04
Move option to enable machine LICM into LLVMTargetMachine.cpp.
Bill Wendling
2008-01-04
Call the parent's getAnalysisUsage.
Bill Wendling
2008-01-04
remove dead #includes and reorder the rest.
Chris Lattner
2008-01-02
Use the correct MachineRegisterInfo object.
Bill Wendling
2008-01-02
Remove dead code.
Bill Wendling
2008-01-02
Use the new architecture to get the containing machine basic block for a machine
Bill Wendling
2007-12-29
Remove attribution from file headers, per discussion on llvmdev.
Chris Lattner
2007-12-20
Updated comments to reflect what "side effects" means in this situation.
Bill Wendling
2007-12-18
Add debugging info. Use the newly created "hasUnmodelledSideEffects" method.
Bill Wendling
2007-12-11
Need to grow the indexed map. Added debug statements.
Bill Wendling
2007-12-11
Simplify slightly.
Bill Wendling
2007-12-11
Blark! How in the world did this work without this?!
Bill Wendling
2007-12-11
- Update the virtual reg to machine instruction map when hoisting.
Bill Wendling
2007-12-11
Checking for "zero operands" during the "CanHoistInst()" method isn't necessary
Bill Wendling
2007-12-08
Reverting 44702. It wasn't correct to rename them.
Bill Wendling
2007-12-08
Renaming:
Bill Wendling
2007-12-08
Incorporated comments from Evan and Chris:
Bill Wendling
2007-12-07
Initial commit of the machine code LICM pass. It successfully hoists this:
Bill Wendling