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
/
SelectionDAG.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Start eliminating temporary vectors used to create DAG nodes. Instead, pass
Chris Lattner
2006-08-08
1
-128
/
+35
*
Eliminate some malloc traffic by allocating vectors on the stack. Change some
Chris Lattner
2006-08-08
1
-61
/
+44
*
Revamp the "CSEMap" datastructure used in the SelectionDAG class. This
Chris Lattner
2006-08-07
1
-312
/
+278
*
Clear TopOrder before assigning topological order. Some clean ups.
Evan Cheng
2006-08-07
1
-1
/
+3
*
Make SelectionDAG::RemoveDeadNodes iterative instead of recursive, which
Chris Lattner
2006-08-04
1
-50
/
+32
*
- Change AssignTopologicalOrder to return vector of SDNode* by reference.
Evan Cheng
2006-08-02
1
-16
/
+22
*
Added AssignTopologicalOrder() to assign each node an unique id based on thei...
Evan Cheng
2006-08-01
1
-2
/
+38
*
Remove InFlightSet hack. No longer needed.
Evan Cheng
2006-07-28
1
-14
/
+0
*
AssignNodeIds should return unsigned.
Evan Cheng
2006-07-27
1
-2
/
+2
*
AssignNodeIds assign each node in the DAG an unique id.
Evan Cheng
2006-07-27
1
-0
/
+12
*
Add an out-of-line virtual method for the sdnode class to give it a home.
Chris Lattner
2006-07-19
1
-0
/
+4
*
Ugly hack! Add helper functions InsertInFlightSetEntry and
Evan Cheng
2006-06-29
1
-0
/
+14
*
Fix CodeGen/Generic/2006-06-28-SimplifySetCCCrash.ll
Chris Lattner
2006-06-28
1
-6
/
+4
*
Add a new ISD::CALL node, make the default impl of TargetLowering::LowerCallTo
Chris Lattner
2006-05-16
1
-0
/
+1
*
remove dead vars
Chris Lattner
2006-05-12
1
-2
/
+1
*
Compile:
Chris Lattner
2006-05-12
1
-1
/
+6
*
Fold shifts with undef operands.
Chris Lattner
2006-05-08
1
-0
/
+7
*
constant fold sign_extend_inreg
Chris Lattner
2006-05-06
1
-1
/
+9
*
Fix Regression/CodeGen/Generic/2006-04-26-SetCCAnd.ll and
Chris Lattner
2006-04-27
1
-1
/
+29
*
JumpTable support! What this represents is working asm and jit support for
Nate Begeman
2006-04-22
1
-0
/
+26
*
Implement folding of a bunch of binops with undef
Chris Lattner
2006-04-20
1
-0
/
+46
*
Make these predicates return true for bit_convert(buildvector)'s as well as
Chris Lattner
2006-04-15
1
-0
/
+8
*
Implement support for the formal_arguments node. To get this, targets should...
Chris Lattner
2006-04-12
1
-0
/
+1
*
Don't memoize vloads in the load map! Don't memoize them anywhere here, let
Chris Lattner
2006-04-12
1
-2
/
+0
*
Add code generator support for VSELECT
Chris Lattner
2006-04-08
1
-8
/
+9
*
Constant fold bitconvert(undef)
Chris Lattner
2006-04-04
1
-0
/
+2
*
These entries already exist
Chris Lattner
2006-04-02
1
-4
/
+0
*
Add some missing node names
Chris Lattner
2006-04-02
1
-0
/
+9
*
Significantly improve handling of vectors that are live across basic blocks,
Chris Lattner
2006-03-31
1
-2
/
+1
*
new node
Chris Lattner
2006-03-28
1
-0
/
+1
*
Add an assertion
Chris Lattner
2006-03-28
1
-0
/
+2
*
Tblgen doesn't like multiple SDNode<> definitions that map to the sameenum va...
Chris Lattner
2006-03-28
1
-3
/
+7
*
Unbreak the build on non-apple compilers :-(
Chris Lattner
2006-03-27
1
-1
/
+2
*
Try again
Evan Cheng
2006-03-27
1
-3
/
+10
*
Incorrect check for FP all one's
Evan Cheng
2006-03-27
1
-1
/
+2
*
Change isBuildVectorAllOnesInteger to isBuildVectorAllOnes. Also check for
Evan Cheng
2006-03-27
1
-24
/
+39
*
Instead of printing "INTRINSIC" on intrinsic node, print the intrinsic name.
Chris Lattner
2006-03-27
1
-1
/
+5
*
Add ISD::isBuildVectorAllZeros predicate
Evan Cheng
2006-03-26
1
-0
/
+24
*
Fix a bug in ISD::isBuildVectorAllOnesInteger that caused it to always return
Chris Lattner
2006-03-25
1
-2
/
+3
*
Implement the ISD::isBuildVectorAllOnesInteger predicate
Chris Lattner
2006-03-25
1
-1
/
+32
*
fix some bogus assertions: noop bitconverts are legal
Chris Lattner
2006-03-24
1
-10
/
+4
*
Identify the INTRINSIC node
Chris Lattner
2006-03-24
1
-0
/
+1
*
Implement simple support for vector casting. This can currently only handle
Chris Lattner
2006-03-22
1
-0
/
+1
*
add some trivial support for extractelement.
Chris Lattner
2006-03-21
1
-0
/
+2
*
Add a hacky workaround for crashes due to vectors live across blocks.
Chris Lattner
2006-03-21
1
-1
/
+2
*
Add very basic support for VECTOR_SHUFFLE
Chris Lattner
2006-03-19
1
-1
/
+9
*
Add SCALAR_TO_VECTOR support
Chris Lattner
2006-03-19
1
-3
/
+14
*
Rename ConstantVec -> BUILD_VECTOR and VConstant -> VBUILD_VECTOR. Allow*BUI...
Chris Lattner
2006-03-19
1
-3
/
+2
*
Change the structure of lowering vector stuff. Note: This breaks some
Chris Lattner
2006-03-18
1
-2
/
+2
*
add a couple enum values
Chris Lattner
2006-03-17
1
-1
/
+3
[prev]
[next]