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
*
Rewrite handling of DBG_VALUE; previous algorithm
Dale Johannesen
2010-02-12
1
-16
/
+24
*
Reapply the new LoopStrengthReduction code, with compile time and
Dan Gohman
2010-02-12
1
-0
/
+4
*
* Updated the cost matrix normalization proceedure to better handle infinite ...
Lang Hames
2010-02-12
2
-13
/
+21
*
Add a new pass on machine instructions to optimize away PHI cycles that
Bob Wilson
2010-02-12
3
-0
/
+143
*
Reapply coalescer fix for better cross-class coalescing.
Jakob Stoklund Olesen
2010-02-11
1
-1
/
+1
*
Revert functional change. This broke a bunch of tests.
Jakob Stoklund Olesen
2010-02-11
1
-1
/
+1
*
It is always good to do a cross-class join when the large register has a tiny...
Jakob Stoklund Olesen
2010-02-11
1
-6
/
+11
*
Allow for more than one DBG_VALUE targeting the
Dale Johannesen
2010-02-11
1
-4
/
+4
*
Don't allow DBG_VALUE to affect codegen.
Dale Johannesen
2010-02-11
1
-0
/
+3
*
Use array_pod_sort instead of std::sort for improved code size.
Jakob Stoklund Olesen
2010-02-11
1
-2
/
+2
*
Use .empty() instead of .size().
Bill Wendling
2010-02-11
1
-2
/
+2
*
Fix to get it to compile.
Bill Wendling
2010-02-11
1
-1
/
+1
*
Don't print out a default newline when emitting the section offset. There are
Bill Wendling
2010-02-11
2
-2
/
+1
*
Reuse operand location when updating PHI instructions.
Jakob Stoklund Olesen
2010-02-11
1
-7
/
+26
*
Remove duplicate successors from indirectbr instructions before building the ...
Jakob Stoklund Olesen
2010-02-11
1
-2
/
+8
*
The previous fix of widening divides that trap was too fragile as it depends ...
Mon P Wang
2010-02-10
2
-3
/
+107
*
Ignore debug info one more place during coalescing.
Dale Johannesen
2010-02-10
1
-0
/
+2
*
Delete dead PHI machine instructions. These can be created due to type
Bob Wilson
2010-02-10
1
-1
/
+1
*
Skip debug info in a couple of places.
Dale Johannesen
2010-02-10
1
-3
/
+7
*
Use an index instead of pointers into the vector. If the vector resizes, then
Bill Wendling
2010-02-10
2
-12
/
+13
*
When I rewrote this loop per Chris' preference I
Dale Johannesen
2010-02-10
1
-0
/
+3
*
Fix several comments which had previously been "the the" where a
Dan Gohman
2010-02-10
1
-1
/
+1
*
Fix "the the" and similar typos.
Dan Gohman
2010-02-10
17
-18
/
+18
*
Now that ShrinkDemandedOps() is separated out from DAG combine. It sometimes ...
Evan Cheng
2010-02-10
1
-1
/
+18
*
Rewrite loop to suit Chris' preference.
Dale Johannesen
2010-02-10
1
-16
/
+19
*
fix a layering violation: VirtRegRewriter.cpp shouldn't use AsmPrinter.h.
Chris Lattner
2010-02-10
2
-5
/
+4
*
Remove duplicated #include.
Evan Cheng
2010-02-10
1
-1
/
+0
*
Emit an error for illegal inline asm constraint (which uses illegal type) rat...
Evan Cheng
2010-02-10
2
-1
/
+14
*
fix missing #includes.
Chris Lattner
2010-02-10
3
-1
/
+3
*
Improve comments a even more.
Bill Wendling
2010-02-10
1
-3
/
+3
*
Skip DBG_VALUE many places in live intervals and
Dale Johannesen
2010-02-10
2
-38
/
+57
*
Move verbose asm instruction comments to using MCStreamer.
Chris Lattner
2010-02-10
1
-74
/
+61
*
Improve comments a bit more.
Bill Wendling
2010-02-10
1
-4
/
+4
*
more comment updates
Dale Johannesen
2010-02-10
1
-2
/
+2
*
Add isDebug argument to ChangeToRegister; this prevents
Dale Johannesen
2010-02-10
1
-1
/
+3
*
print all the newlines at the end of instructions with
Chris Lattner
2010-02-10
1
-4
/
+6
*
Fix comments to reflect renaming elsewhere.
Dale Johannesen
2010-02-10
3
-4
/
+4
*
Only dump output in debug mode.
David Greene
2010-02-09
1
-4
/
+5
*
Improve comments in the LSDA somewhat. They can be improved much more.
Bill Wendling
2010-02-09
1
-10
/
+17
*
move target-independent opcodes out of TargetInstrInfo
Chris Lattner
2010-02-09
37
-213
/
+163
*
Remember to update live-in lists when coalescing physregs.
Jakob Stoklund Olesen
2010-02-09
1
-0
/
+17
*
Skip DEBUG_VALUE in some places where it was affecting codegen.
Dale Johannesen
2010-02-09
3
-0
/
+9
*
Add declaration attribute to a variable DIE, if there is a separate DIE for t...
Devang Patel
2010-02-09
1
-0
/
+1
*
Fixed a bug in the PBQP allocator's findCoalesces method.
Lang Hames
2010-02-09
1
-6
/
+17
*
Added copy sensible construction & assignment to PBQP graphs and fixed a memo...
Lang Hames
2010-02-09
2
-18
/
+85
*
Implement AsmPrinter support for several more operators which have
Dan Gohman
2010-02-09
1
-0
/
+10
*
now that @GOTOFF is no longer represented as a suffix on a
Chris Lattner
2010-02-08
1
-6
/
+4
*
ConstantFoldConstantExpression can theoretically return the original
Dan Gohman
2010-02-08
1
-2
/
+4
*
When CodeGen'ing unoptimized code, there may be unfolded constant expressions
Dan Gohman
2010-02-08
1
-9
/
+11
*
Apply the 95471 fix to SelectionDAGBuilder as well;
Dale Johannesen
2010-02-08
1
-0
/
+2
[next]