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
/
RegAllocFast.cpp
Age
Commit message (
Expand
)
Author
2010-10-19
Get rid of static constructors for pass registration. Instead, every pass ex...
Owen Anderson
2010-09-10
Add DEBUG message.
Devang Patel
2010-09-03
previous patch was a little too tricky for its own good. Don't try to
Jim Grosbach
2010-09-01
The register allocator shouldn't consider allocating reserved registers.
Jim Grosbach
2010-09-01
tidy up a few 80-column and trailing whitespace bits.
Jim Grosbach
2010-08-31
Ignore unallocatable registers in RegAllocFast.
Jakob Stoklund Olesen
2010-08-21
Delete dead comment.
Eli Friedman
2010-08-06
Reapply r110396, with fixes to appease the Linux buildbot gods.
Owen Anderson
2010-08-06
While emitting DBG_VALUE for registers spilled at the end of a block do not u...
Devang Patel
2010-08-06
Revert r110396 to fix buildbots.
Owen Anderson
2010-08-05
Don't use PassInfo* as a type identifier for passes. Instead, use the addres...
Owen Anderson
2010-08-04
While spilling live registers at the end of block check whether they are used...
Devang Patel
2010-07-29
Fix a bug in the -regalloc=fast handling of exotic two-address instruction with
Jakob Stoklund Olesen
2010-07-19
Fix memory leak reported by valgrind.
Devang Patel
2010-07-16
Remove many calls to TII::isMoveInstr. Targets should be producing COPY anyway.
Jakob Stoklund Olesen
2010-07-09
Update DBG_VALUE to refer appropriate stack slot in case of a spill.
Devang Patel
2010-07-03
Detect and handle COPY in many places.
Jakob Stoklund Olesen
2010-06-29
Fix the handling of partial redefines in the fast register allocator.
Jakob Stoklund Olesen
2010-06-28
Add more special treatment for inline asm in RegAllocFast.
Jakob Stoklund Olesen
2010-06-15
Avoid processing early clobbers twice in RegAllocFast.
Jakob Stoklund Olesen
2010-06-04
Keep track of the call instructions whose clobber lists were skipped during fast
Jakob Stoklund Olesen
2010-05-19
Add support for partial redefs to the fast register allocator.
Jakob Stoklund Olesen
2010-05-18
Properly handle multiple definitions of a virtual register in the same
Jakob Stoklund Olesen
2010-05-17
Pull the UsedInInstr.test() calls into calcSpillCost() and remember aliases.
Jakob Stoklund Olesen
2010-05-17
Remove debug option. Add comment on spill order determinism.
Jakob Stoklund Olesen
2010-05-17
Avoid allocating the same physreg to multiple virtregs in one instruction.
Jakob Stoklund Olesen
2010-05-17
Minor optimizations. DenseMap::begin() is surprisingly slow on an empty map.
Jakob Stoklund Olesen
2010-05-17
Extract spill cost calculation to a new method, and use definePhysReg() to clear
Jakob Stoklund Olesen
2010-05-17
Only use clairvoyance when defining a register, and then only if it has one use.
Jakob Stoklund Olesen
2010-05-17
Eliminate a hash table probe when killing virtual registers.
Jakob Stoklund Olesen
2010-05-17
Execute virtreg kills immediately instead of after processing all uses.
Jakob Stoklund Olesen
2010-05-17
Sprinkle superregister <imp-def> and <imp-kill> operands when dealing with su...
Jakob Stoklund Olesen
2010-05-17
Now that we don't keep live registers across calls, there is not reason to go
Jakob Stoklund Olesen
2010-05-17
Boldly attempt consistent capitalization. Functional changes unintended.
Jakob Stoklund Olesen
2010-05-17
Spill and kill all virtual registers across a call.
Jakob Stoklund Olesen
2010-05-17
Reduce hashtable probes by using DenseMap::insert() for lookup.
Jakob Stoklund Olesen
2010-05-17
Make MBB a class member instead of passing it around everywhere.
Jakob Stoklund Olesen
2010-05-15
Fix an GCC warning that seems to have actually caught a bug (!!!) in
Chandler Carruth
2010-05-15
Calculate liveness on the fly for local registers.
Jakob Stoklund Olesen
2010-05-14
Don't bother spilling before a return
Jakob Stoklund Olesen
2010-05-14
Track allocatable instead of reserved regs, and never take an unallocatable h...
Jakob Stoklund Olesen
2010-05-14
Avoid scanning the long tail of physreg operands on calls
Jakob Stoklund Olesen
2010-05-14
Count coalesced copies
Jakob Stoklund Olesen
2010-05-14
Allow virtreg redefines when verifying for RegAllocFast
Jakob Stoklund Olesen
2010-05-14
When verifying two-address instructions, check the following:
Jakob Stoklund Olesen
2010-05-14
Simplify the handling of physreg defs and uses in RegAllocFast.
Jakob Stoklund Olesen
2010-05-14
Enable opportunistic coalescing
Jakob Stoklund Olesen
2010-05-14
Trust kill flags from isel and later passes.
Jakob Stoklund Olesen
2010-05-14
Fix an embarrassing runtime regression for RegAllocFast.
Jakob Stoklund Olesen
2010-05-13
Clean up RegAllocFast debug output
Jakob Stoklund Olesen
[next]