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
Commit message (
Expand
)
Author
Age
Files
Lines
*
Further improvements to pre-RA-sched=list-ilp.
Andrew Trick
2011-03-08
1
-17
/
+62
*
Let shrinkToUses optionally return a list of now dead machine instructions.
Jakob Stoklund Olesen
2011-03-07
1
-1
/
+6
*
Make the UselessRegs argument optional in the LiveRangeEdit constructor.
Jakob Stoklund Olesen
2011-03-07
4
-13
/
+11
*
Move getRegPressureLimit() from TargetLoweringInfo to TargetRegisterInfo.
Cameron Zwarich
2011-03-07
2
-2
/
+2
*
Handle the special case of registers begin redefined by early-clobber defs.
Jakob Stoklund Olesen
2011-03-07
1
-0
/
+7
*
Use the correct LHS type when determining the legalization of a shift's RHS t...
Owen Anderson
2011-03-07
2
-5
/
+8
*
Typo.
Eric Christopher
2011-03-06
1
-1
/
+1
*
lib/CodeGen/AsmPrinter/CMakeLists.txt: Fix CMake build, following up to r127099.
NAKAMURA Takumi
2011-03-06
1
-0
/
+1
*
Disable a couple of experimental heuristics to get the best results from the ...
Andrew Trick
2011-03-06
1
-2
/
+2
*
Some first rudimentary support for ARM EHABI: print exception table in "text ...
Anton Korobeynikov
2011-03-05
4
-0
/
+123
*
Add FrameSetup MI flags
Anton Korobeynikov
2011-03-05
1
-10
/
+23
*
Work around a coalescer bug.
Jakob Stoklund Olesen
2011-03-05
2
-4
/
+23
*
Be explicit with abs(). Visual Studio workaround.
Andrew Trick
2011-03-05
1
-4
/
+6
*
Fix for -sched-high-latency-cycles in sched=list-ilp mode.
Andrew Trick
2011-03-05
1
-1
/
+3
*
Missing comment.
Andrew Trick
2011-03-05
1
-0
/
+2
*
Increased the register pressure limit on x86_64 from 8 to 12
Andrew Trick
2011-03-05
2
-23
/
+156
*
Rework the global split cost calculation.
Jakob Stoklund Olesen
2011-03-05
1
-21
/
+30
*
Compute the constraints for global live range splitting from an interference ...
Jakob Stoklund Olesen
2011-03-05
1
-163
/
+67
*
Teach the register scavenger to take subregs into account when finding a free...
Jim Grosbach
2011-03-05
1
-5
/
+10
*
Improve readability with some whitespace!
Eric Christopher
2011-03-04
1
-1
/
+1
*
Extract a method. No functional change.
Jakob Stoklund Olesen
2011-03-04
1
-40
/
+52
*
Go back to comparing spill weights when deciding if interference can be evicted.
Jakob Stoklund Olesen
2011-03-04
1
-9
/
+5
*
Renumber slot indexes locally when possible.
Jakob Stoklund Olesen
2011-03-04
1
-2
/
+25
*
Number SlotIndexes uniformly without looking at the number of defs on each in...
Jakob Stoklund Olesen
2011-03-04
1
-24
/
+5
*
Add SlotIndex statistics.
Jakob Stoklund Olesen
2011-03-04
1
-0
/
+4
*
Tweak debug output. No functional changes.
Jakob Stoklund Olesen
2011-03-04
2
-10
/
+6
*
Revert commit 126684 "Use the correct shift amount type". It is only the cor...
Duncan Sands
2011-03-04
1
-1
/
+1
*
Minor pre-RA-sched fixes and cleanup.
Andrew Trick
2011-03-04
1
-7
/
+15
*
Precompute block frequencies, pow() isn't free.
Jakob Stoklund Olesen
2011-03-04
3
-17
/
+15
*
Use an IndexedMap instead of a DenseMap for the live-out cache.
Jakob Stoklund Olesen
2011-03-04
2
-48
/
+47
*
There are times when the landing pad won't have a call to 'eh.selector' in
Bill Wendling
2011-03-03
1
-9
/
+23
*
Revert r123908; the code in question is completely untested and wrong.
Eli Friedman
2011-03-03
2
-28
/
+0
*
Fix typo.
Devang Patel
2011-03-03
1
-1
/
+1
*
Fix thinko in previous check-in.
Devang Patel
2011-03-03
1
-1
/
+3
*
llvm::Function argument count is not a good indicator of how many arugments d...
Devang Patel
2011-03-03
1
-1
/
+4
*
Allow a target to choose whether to prefer the scavenger emergency spill slot
Jim Grosbach
2011-03-03
1
-7
/
+6
*
Renumber slot indexes uniformly instead of spacing according to the number of...
Jakob Stoklund Olesen
2011-03-03
1
-15
/
+1
*
Represent sentinel slot indexes with a null pointer.
Jakob Stoklund Olesen
2011-03-03
1
-31
/
+0
*
Avoid comparing invalid slot indexes, and assert that it doesn't happen.
Jakob Stoklund Olesen
2011-03-03
2
-5
/
+3
*
Avoid comparing invalid slot indexes.
Jakob Stoklund Olesen
2011-03-03
1
-4
/
+6
*
Cache basic block bounds instead of asking SlotIndexes::getMBBRange all the t...
Jakob Stoklund Olesen
2011-03-03
3
-50
/
+42
*
Change the SplitEditor interface to a single instance can be shared for multi...
Jakob Stoklund Olesen
2011-03-03
3
-41
/
+51
*
Only run the updateSSA loop when we have actually seen multiple values.
Jakob Stoklund Olesen
2011-03-03
1
-3
/
+23
*
Fix PHI handling in LiveIntervals::shrinkToUses().
Jakob Stoklund Olesen
2011-03-03
1
-1
/
+1
*
Avoid exponential blow-up when printing DAGs.
Bob Wilson
2011-03-02
1
-2
/
+5
*
Turn the Edit member into a pointer so it can change dynamically.
Jakob Stoklund Olesen
2011-03-02
2
-44
/
+44
*
Transfer simply defined values directly without recomputing liveness and SSA.
Jakob Stoklund Olesen
2011-03-02
3
-29
/
+75
*
Extract a method. No functional change.
Jakob Stoklund Olesen
2011-03-02
2
-27
/
+28
*
Can't introduce floating-point immediate constants after legalization.
Stuart Hastings
2011-03-02
1
-2
/
+6
*
Fix some typos.
Cameron Zwarich
2011-03-02
1
-3
/
+3
[next]