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
*
In the case of an extractelement on an insertelement value,
Dan Gohman
2009-01-29
1
-1
/
+5
*
Revert r63273. This was already implemented by Dale. There's no need for my
Bill Wendling
2009-01-29
1
-72
/
+101
*
- Add DebugLoc to getTargetNode().
Bill Wendling
2009-01-29
1
-101
/
+72
*
Add DebugLoc-sensitive versions of many node creation
Dale Johannesen
2009-01-29
1
-0
/
+458
*
Add DebugLoc to the getNode() methods.
Bill Wendling
2009-01-28
1
-41
/
+134
*
Add DebugLoc-aware constructors for SDNode derived
Dale Johannesen
2009-01-28
1
-0
/
+23
*
Add an assertion to the form of SelectionDAG::getConstant that takes
Dan Gohman
2009-01-27
1
-0
/
+3
*
Take the next steps in making SDUse more consistent with LLVM Use, and
Dan Gohman
2009-01-26
1
-80
/
+63
*
Eliminate the loop that searches through each of the operands
Dan Gohman
2009-01-25
1
-195
/
+178
*
Whitespace tidiments.
Dan Gohman
2009-01-25
1
-2
/
+1
*
Move the N->use_empty() assert from DeleteNode to
Dan Gohman
2009-01-25
1
-3
/
+2
*
Fold x-0 to x in unsafe-fp-math mode. This comes up in the
Dan Gohman
2009-01-23
1
-9
/
+16
*
Don't create ISD::FNEG nodes after legalize if they aren't legal.
Dan Gohman
2009-01-22
1
-2
/
+13
*
Add SelectionDAG::getNOT method to construct bitwise NOT operations,
Bob Wilson
2009-01-22
1
-0
/
+15
*
fix a typo
Chris Lattner
2009-01-22
1
-1
/
+1
*
Remove SDNode's virtual destructor. This makes it impossible for
Dan Gohman
2009-01-19
1
-53
/
+14
*
Fix SelectionDAG::ReplaceAllUsesWith to behave correctly when
Dan Gohman
2009-01-19
1
-6
/
+19
*
More consts on TargetLowering references.
Dan Gohman
2009-01-15
1
-1
/
+1
*
Removoe MachineModuleInfo methods (and related DebugInfoDesc class hierarchy...
Devang Patel
2009-01-13
1
-1
/
+1
*
Undo previous checkin.
Devang Patel
2009-01-13
1
-3
/
+2
*
Use dwarf writer to decide whether the module has debug info or not.
Devang Patel
2009-01-13
1
-2
/
+3
*
Use DebugInfo interface to lower dbg_* intrinsics.
Devang Patel
2009-01-13
1
-2
/
+2
*
Request DwarfWriter. This will be used to handle dbg_* intrinsics.
Devang Patel
2009-01-09
1
-1
/
+3
*
Clean up the atomic opcodes in SelectionDAG.
Dan Gohman
2008-12-23
1
-150
/
+47
*
Avoid generating a convert_rndsat node when the src and dest type are the same.
Mon P Wang
2008-12-11
1
-0
/
+4
*
Add sub/mul overflow intrinsics. This currently doesn't have a
Bill Wendling
2008-12-09
1
-0
/
+12
*
Fix PR3117: not all nodes being legalized. The
Duncan Sands
2008-12-09
1
-0
/
+16
*
Fix getNode to allow a vector for the shift amount for shifts of vectors.
Mon P Wang
2008-12-09
1
-2
/
+4
*
When allocating a stack temporary, use the correct
Duncan Sands
2008-12-04
1
-1
/
+1
*
Expand getVTList, getNodeValueTypes, and SelectNodeTo to handle more value ty...
Bill Wendling
2008-12-01
1
-0
/
+33
*
There are no longer any places that require a
Duncan Sands
2008-12-01
1
-4
/
+4
*
Eliminate some unused variable compile time warnings.
Evan Cheng
2008-11-24
1
-0
/
+2
*
Rename SetCCResultContents to BooleanContents. In
Duncan Sands
2008-11-23
1
-5
/
+5
*
Cleanup of the [SU]ADDO type legalization code. Patch by Duncan!
Bill Wendling
2008-11-22
1
-1
/
+11
*
Update comments.
Dan Gohman
2008-11-21
1
-3
/
+3
*
Rename "ADDO" to "SADDO" and "UADDO". The "UADDO" isn't equivalent to "ADDC"
Bill Wendling
2008-11-21
1
-1
/
+2
*
Implement the sadd_with_overflow intrinsic. This is converted into
Bill Wendling
2008-11-21
1
-2
/
+1
*
Add UADDO and SADDO nodes. These will be used for determining an overflow
Bill Wendling
2008-11-21
1
-0
/
+2
*
Added CONVERT_RNDSAT (conversion with rounding and saturation) SDNode to
Mon P Wang
2008-11-10
1
-0
/
+31
*
Added support for the following definition of shufflevector
Mon P Wang
2008-11-10
1
-1
/
+2
*
Fix PR2986: do not use a potentially illegal
Duncan Sands
2008-10-30
1
-1
/
+6
*
Add sanity checking for BUILD_PAIR (I noticed the
Duncan Sands
2008-10-29
1
-4
/
+18
*
fix some whitespace stuff
Chris Lattner
2008-10-28
1
-3
/
+3
*
Fix UpdateNodeOperands so that it does CSE of calls
Duncan Sands
2008-10-27
1
-86
/
+52
*
Initialize uninitialized variable.
Dale Johannesen
2008-10-24
1
-1
/
+1
*
Temporarily allow the operands of a BUILD_VECTOR
Duncan Sands
2008-10-22
1
-4
/
+8
*
Don't create TargetGlobalAddress nodes with offsets that don't fit
Dan Gohman
2008-10-21
1
-1
/
+1
*
Set N->OperandList to 0 after deletion. Otherwise, it's possible that it will
Bill Wendling
2008-10-19
1
-15
/
+26
*
Don't truncate GlobalAddress offsets to int in debug output.
Dan Gohman
2008-10-18
1
-1
/
+1
*
Teach DAGCombine to fold constant offsets into GlobalAddress nodes,
Dan Gohman
2008-10-18
1
-2
/
+8
[next]