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
/
RegAllocPBQP.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Moved LiveRangeEdit.h so that it can be called from other parts of the backen...
Pete Cooper
2012-04-02
1
-1
/
+1
*
Refactored the LiveRangeEdit interface so that MachineFunction, TargetInstrIn...
Pete Cooper
2012-04-02
1
-1
/
+1
*
Add a debug option to dump PBQP graphs during register allocation.
Lang Hames
2012-03-26
1
-0
/
+29
*
Add support for register masks to PBQP.
Lang Hames
2012-03-23
1
-4
/
+38
*
Use uint16_t to store register overlaps to reduce static data.
Craig Topper
2012-03-04
1
-1
/
+1
*
Use uint16_t instead of unsigned to store registers in reg classes. Reduces s...
Craig Topper
2012-03-04
1
-1
/
+1
*
Clear virtual registers after they are no longer referenced.
Andrew Trick
2012-02-21
1
-0
/
+5
*
RegAlloc superpass: includes phi elimination, coalescing, and scheduling.
Andrew Trick
2012-02-10
1
-2
/
+0
*
whitespace
Andrew Trick
2012-02-10
1
-11
/
+11
*
Convert assert(0) to llvm_unreachable
Craig Topper
2012-02-05
1
-1
/
+1
*
Freeze reserved registers before starting register allocation.
Jakob Stoklund Olesen
2012-01-05
1
-0
/
+1
*
Kill off the LoopSplitter. It's not being used or maintained.
Lang Hames
2011-12-06
1
-9
/
+0
*
Update PBQP's analysis usage to reflect the requirements of the inline spiller.
Lang Hames
2011-12-06
1
-0
/
+7
*
Switch PBQP to VRM's trivial rewriter.
Jakob Stoklund Olesen
2011-11-13
1
-4
/
+1
*
Switch PBQP to the modern InlineSpiller framework.
Jakob Stoklund Olesen
2011-11-12
1
-40
/
+11
*
Refer to the RegisterCoalescer pass by ID.
Jakob Stoklund Olesen
2011-08-09
1
-1
/
+1
*
There is only one register coalescer. Merge it into the base class and
Rafael Espindola
2011-06-26
1
-1
/
+1
*
Move RegisterCoalescer.h to lib/CodeGen.
Rafael Espindola
2011-06-26
1
-1
/
+1
*
Add a hook for PBQP clients to run a custom pre-alloc pass to run prior to PB...
Lang Hames
2011-06-17
1
-4
/
+9
*
Move PBQP off allocation_order_begin. No functional change intended.
Jakob Stoklund Olesen
2011-06-16
1
-5
/
+4
*
Make SpillIs an optional pointer. Avoid creating a bunch of temporary SmallVe...
Jakob Stoklund Olesen
2011-03-10
1
-2
/
+1
*
Fix some style issues in PBQP. Patch by David Blaikie.
Lang Hames
2010-11-12
1
-20
/
+25
*
Get rid of static constructors for pass registration. Instead, every pass ex...
Owen Anderson
2010-10-19
1
-1
/
+12
*
Removed the older style (in-allocator) problem construction system from the P...
Lang Hames
2010-10-04
1
-628
/
+9
*
Removed VNInfo::isDefAccurate(). Def "accuracy" can be checked by testing whe...
Lang Hames
2010-09-25
1
-1
/
+1
*
Moved the PBQP allocator class out of the header and back in to the cpp file ...
Lang Hames
2010-09-23
1
-60
/
+190
*
Fixed ambiguous call.
Lang Hames
2010-09-21
1
-1
/
+2
*
Added an additional PBQP problem builder which adds coalescing costs (both be...
Lang Hames
2010-09-21
1
-14
/
+127
*
Unbreak msvc build.
Benjamin Kramer
2010-09-18
1
-1
/
+1
*
Fixed non-const iterator error.
Lang Hames
2010-09-18
1
-1
/
+1
*
Added a separate class (PBQPBuilder) for PBQP Problem construction. This clas...
Lang Hames
2010-09-18
1
-172
/
+309
*
Added support for register allocators to record which intervals are spill int...
Lang Hames
2010-09-02
1
-1
/
+4
*
The register allocator shouldn't consider allocating reserved registers. PBQP...
Jim Grosbach
2010-09-01
1
-2
/
+8
*
Reapply r110396, with fixes to appease the Linux buildbot gods.
Owen Anderson
2010-08-06
1
-1
/
+1
*
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
*
Switched to rendering after allocation (but before rewriting) in PBQP.
Lang Hames
2010-07-20
1
-2
/
+3
*
Render MachineFunctions to HTML pages, with options to render register
Lang Hames
2010-07-19
1
-0
/
+5
*
Added -pbqp-pre-coalescing flag to PBQP. If enabled this will cause PBQP to r...
Lang Hames
2010-07-18
1
-0
/
+8
*
Iterating over sets of pointers in a heuristic was a bad idea. Switching
Lang Hames
2010-07-17
1
-2
/
+10
*
Remove many calls to TII::isMoveInstr. Targets should be producing COPY anyway.
Jakob Stoklund Olesen
2010-07-16
1
-2
/
+4
*
Don't use getPhysicalRegisterRegClass in PBQP. The existing checks that the
Rafael Espindola
2010-07-12
1
-15
/
+10
*
improve portability to systems that don't have powf/modf (e.g. solaris 9)
Chris Lattner
2010-05-15
1
-1
/
+1
*
Remove terminating dot in description. Inconsistency pointed
Duncan Sands
2010-02-18
1
-1
/
+1
*
Removed an early out which was causing the PBQP allocator to not compute live...
Lang Hames
2010-02-17
1
-4
/
+0
*
Fixed a bug in the PBQP allocator's findCoalesces method.
Lang Hames
2010-02-09
1
-6
/
+17
*
New PBQP solver.
Lang Hames
2010-01-26
1
-24
/
+17
*
Change errs() to dbgs().
David Greene
2010-01-05
1
-7
/
+7
*
Moved spill weight calculation out of SimpleRegisterCoalescing and into its o...
Lang Hames
2009-12-14
1
-0
/
+2
*
Added an assert to the PBQP allocator to catch infinite cost solutions which ...
Lang Hames
2009-11-15
1
-0
/
+5
[next]