index
:
external_llvm.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
CodeGen
/
RegAllocFast.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Use SparseSet for the RAFast live virtual register map.
Jakob Stoklund Olesen
2012-02-22
1
-73
/
+110
*
Clear virtual registers after they are no longer referenced.
Andrew Trick
2012-02-21
1
-0
/
+4
*
Transfer regmasks to MRI.
Jakob Stoklund Olesen
2012-02-17
1
-3
/
+0
*
RegAlloc superpass: includes phi elimination, coalescing, and scheduling.
Andrew Trick
2012-02-10
1
-6
/
+3
*
Obvious unnecessary loop removal. Follow through from previous checkin.
Andrew Trick
2012-01-31
1
-11
/
+10
*
RAFast: Generalize the logic for return operands.
Andrew Trick
2012-01-31
1
-20
/
+59
*
Freeze reserved registers before starting register allocation.
Jakob Stoklund Olesen
2012-01-05
1
-0
/
+1
*
Add bundle aware API for querying instruction properties and switch the code
Evan Cheng
2011-12-07
1
-3
/
+3
*
If a register is both an early clobber and part of a tied use, handle the use
Rafael Espindola
2011-11-22
1
-7
/
+16
*
Insert modified DBG_VALUE into LiveDbgValueMap.
Devang Patel
2011-11-15
1
-1
/
+1
*
Better diagnostics when inline asm fails to allocate.
Jakob Stoklund Olesen
2011-07-02
1
-10
/
+4
*
- Rename TargetInstrDesc, TargetOperandInfo to MCInstrDesc and MCOperandInfo and
Evan Cheng
2011-06-28
1
-7
/
+7
*
Print registers by name instead of by number.
Jakob Stoklund Olesen
2011-06-28
1
-6
/
+7
*
After register is spilled there should not be any DBG_VALUE referring the sam...
Devang Patel
2011-06-21
1
-1
/
+3
*
There could be more than one DBG_VALUE instructions for variables where all o...
Devang Patel
2011-06-21
1
-4
/
+6
*
Be less aggressive about hinting in RAFast.
Jakob Stoklund Olesen
2011-06-13
1
-7
/
+5
*
Avoid calling TRI->getAllocatableSet in RAFast.
Jakob Stoklund Olesen
2011-06-02
1
-9
/
+4
*
Use RegisterClassInfo::getOrder in RAFast.
Jakob Stoklund Olesen
2011-06-02
1
-10
/
+7
*
Typo
Evan Cheng
2011-04-22
1
-1
/
+1
*
Fix a bug where we were counting the alias sets as completely used
Eric Christopher
2011-04-18
1
-5
/
+0
*
Temporarily revert r129408 to see if it brings the bots back.
Eric Christopher
2011-04-13
1
-0
/
+2
*
Fix a bug where we were counting the alias sets as completely used
Eric Christopher
2011-04-12
1
-2
/
+0
*
Add more comments... err debug statements to the fast allocator.
Eric Christopher
2011-04-12
1
-3
/
+16
*
Fix typo.
Eric Christopher
2011-04-12
1
-1
/
+1
*
Mark that the return is using EAX so that we don't use it for some other
Nick Lewycky
2011-02-04
1
-0
/
+21
*
Simplify a bunch of isVirtualRegister() and isPhysicalRegister() logic.
Jakob Stoklund Olesen
2011-01-10
1
-4
/
+5
*
Remove MachineRegisterInfo::getLastVirtReg(), it was giving wrong results
Jakob Stoklund Olesen
2011-01-09
1
-2
/
+1
*
Replace TargetRegisterInfo::printReg with a PrintReg class that also works wi...
Jakob Stoklund Olesen
2011-01-09
1
-10
/
+10
*
Fix comment.
Eric Christopher
2010-12-08
1
-1
/
+1
*
Get rid of static constructors for pass registration. Instead, every pass ex...
Owen Anderson
2010-10-19
1
-1
/
+4
*
Add DEBUG message.
Devang Patel
2010-09-10
1
-2
/
+6
*
previous patch was a little too tricky for its own good. Don't try to
Jim Grosbach
2010-09-03
1
-8
/
+7
*
The register allocator shouldn't consider allocating reserved registers.
Jim Grosbach
2010-09-01
1
-3
/
+7
*
tidy up a few 80-column and trailing whitespace bits.
Jim Grosbach
2010-09-01
1
-16
/
+19
*
Ignore unallocatable registers in RegAllocFast.
Jakob Stoklund Olesen
2010-08-31
1
-1
/
+2
*
Delete dead comment.
Eli Friedman
2010-08-21
1
-2
/
+1
*
Reapply r110396, with fixes to appease the Linux buildbot gods.
Owen Anderson
2010-08-06
1
-1
/
+1
*
While emitting DBG_VALUE for registers spilled at the end of a block do not u...
Devang Patel
2010-08-06
1
-1
/
+8
*
Revert r110396 to fix buildbots.
Owen Anderson
2010-08-06
1
-1
/
+1
*
Don't use PassInfo* as a type identifier for passes. Instead, use the addres...
Owen Anderson
2010-08-05
1
-1
/
+1
*
While spilling live registers at the end of block check whether they are used...
Devang Patel
2010-08-04
1
-1
/
+24
*
Fix a bug in the -regalloc=fast handling of exotic two-address instruction with
Jakob Stoklund Olesen
2010-07-29
1
-3
/
+11
*
Fix memory leak reported by valgrind.
Devang Patel
2010-07-19
1
-23
/
+31
*
Remove many calls to TII::isMoveInstr. Targets should be producing COPY anyway.
Jakob Stoklund Olesen
2010-07-16
1
-6
/
+2
*
Update DBG_VALUE to refer appropriate stack slot in case of a spill.
Devang Patel
2010-07-09
1
-2
/
+19
*
Detect and handle COPY in many places.
Jakob Stoklund Olesen
2010-07-03
1
-3
/
+10
*
Fix the handling of partial redefines in the fast register allocator.
Jakob Stoklund Olesen
2010-06-29
1
-17
/
+39
*
Add more special treatment for inline asm in RegAllocFast.
Jakob Stoklund Olesen
2010-06-28
1
-21
/
+107
*
Avoid processing early clobbers twice in RegAllocFast.
Jakob Stoklund Olesen
2010-06-15
1
-3
/
+8
*
Keep track of the call instructions whose clobber lists were skipped during fast
Jakob Stoklund Olesen
2010-06-04
1
-0
/
+17
[next]