index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
lib
/
CodeGen
/
SelectionDAG
Commit message (
Expand
)
Author
Age
Files
Lines
*
Implement support for vector operands to inline asm, implementing
Chris Lattner
2007-03-25
1
-4
/
+16
*
implement initial support for the silly X constraint. Testcase here: CodeGen...
Chris Lattner
2007-03-25
1
-0
/
+2
*
Implement CodeGen/X86/2007-03-24-InlineAsmMultiRegConstraint.ll
Chris Lattner
2007-03-25
1
-1
/
+4
*
switch TargetLowering::getConstraintType to take the entire constraint,
Chris Lattner
2007-03-25
2
-24
/
+28
*
don't rely on ADL
Chris Lattner
2007-03-24
1
-1
/
+1
*
Adjust offset to compensate for big endian machines.
Evan Cheng
2007-03-24
1
-7
/
+5
*
Make sure SEXTLOAD of the specific type is supported on the target.
Evan Cheng
2007-03-23
1
-0
/
+4
*
Also replace uses of SRL if that's also folded during ReduceLoadWidth().
Evan Cheng
2007-03-23
1
-1
/
+8
*
A couple of bug fixes for reducing load width xform:
Evan Cheng
2007-03-23
1
-7
/
+16
*
Change uses of Function::front to Function::getEntryBlock for readability.
Dan Gohman
2007-03-22
1
-1
/
+1
*
More opportunities to reduce load size.
Evan Cheng
2007-03-22
1
-45
/
+101
*
repair x86 performance, dejagnu problems from previous change
Dale Johannesen
2007-03-21
1
-2
/
+2
*
fold (truncate (srl (load x), c)) -> (smaller load (x+c/vt bits))
Evan Cheng
2007-03-21
1
-6
/
+24
*
do not share old induction variables when this would result in invalid
Dale Johannesen
2007-03-20
1
-0
/
+16
*
Fix some VC++ warnings.
Jeff Cohen
2007-03-20
1
-0
/
+1
*
Code clean up.
Lauro Ramos Venancio
2007-03-20
1
-23
/
+20
*
Minor bug.
Evan Cheng
2007-03-20
1
-1
/
+2
*
CopyToReg source operand can be a physical register.
Lauro Ramos Venancio
2007-03-20
1
-3
/
+19
*
Use SmallSet instead of std::set.
Evan Cheng
2007-03-17
1
-1
/
+1
*
If sdisel has decided to sink GEP index expression into any BB. Replace all uses
Evan Cheng
2007-03-17
1
-22
/
+37
*
Turn on GEP index sinking by default.
Evan Cheng
2007-03-16
1
-7
/
+0
*
Stupid bug.
Evan Cheng
2007-03-16
1
-1
/
+1
*
Sink a binary expression into its use blocks if it is a loop invariant
Evan Cheng
2007-03-16
1
-0
/
+92
*
Added isLegalAddressExpression hook to test if the given expression can be
Evan Cheng
2007-03-16
1
-0
/
+8
*
Estimate a cost using the possible number of scratch registers required and use
Evan Cheng
2007-03-14
1
-9
/
+47
*
Try schedule def + use closer whne Sethi-Ullman numbers are the same.
Evan Cheng
2007-03-13
1
-6
/
+38
*
More flexible TargetLowering LSR hooks for testing whether an immediate is a ...
Evan Cheng
2007-03-12
1
-3
/
+13
*
implement support for floating point constants used as inline asm memory oper...
Chris Lattner
2007-03-08
1
-2
/
+7
*
make this fail even in non-assert builds.
Chris Lattner
2007-03-08
1
-2
/
+4
*
Refactoring of formal parameter flags. Enable properly use of
Anton Korobeynikov
2007-03-07
2
-31
/
+31
*
Avoid combining indexed load further.
Evan Cheng
2007-03-07
1
-8
/
+14
*
big endian 32-bit systems (e.g. ppc32) want to return the high reg first, not
Chris Lattner
2007-03-06
1
-0
/
+5
*
Enumerate SDISel formal parameter attributes. Make use of new
Anton Korobeynikov
2007-03-06
1
-22
/
+24
*
Unbreak VC++ build.
Jeff Cohen
2007-03-05
1
-1
/
+1
*
fold away addc nodes when we know there cannot be a carry-out.
Chris Lattner
2007-03-04
2
-8
/
+28
*
generalize
Chris Lattner
2007-03-04
1
-5
/
+9
*
canonicalize constants to the RHS of addc/adde. If nothing uses the carry ou...
Chris Lattner
2007-03-04
1
-0
/
+47
*
eliminate some ops if they have an undef RHS
Chris Lattner
2007-03-04
1
-0
/
+2
*
Fix CodeGen/Generic/fpowi-promote.ll and PR1239
Chris Lattner
2007-03-03
1
-0
/
+12
*
Add an expand action for ISD label which just deletes the label.
Chris Lattner
2007-03-03
1
-0
/
+3
*
Lower eh filter intrinsic.
Jim Laskey
2007-03-01
1
-1
/
+4
*
Chain is on second operand.
Jim Laskey
2007-02-28
1
-4
/
+23
*
MERGE_VALUES unnecessary.
Jim Laskey
2007-02-28
1
-12
/
+4
*
add methods for analysis of call results and return nodes.
Chris Lattner
2007-02-28
1
-12
/
+42
*
add methods to analyze calls and formals.
Chris Lattner
2007-02-28
1
-0
/
+34
*
Minor refactoring of CC Lowering interfaces
Chris Lattner
2007-02-27
1
-1
/
+4
*
move CC Lowering stuff to its own public interface
Chris Lattner
2007-02-27
1
-0
/
+34
*
Fold (sext (truncate x)) more aggressively, by avoiding creation of a
Chris Lattner
2007-02-26
1
-10
/
+34
*
track signedness of formal argument, though we have a fixme here.
Chris Lattner
2007-02-26
1
-0
/
+8
*
Fix for PR1224.
Jim Laskey
2007-02-25
1
-35
/
+50
[next]