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
*
Fixed the DAG combiner to better handle the folding of AND nodes for vector t...
Silviu Baranga
2012-09-05
1
-1
/
+11
*
Convert vextracti128/vextractf128 intrinsics to extract_subvector at DAG buil...
Craig Topper
2012-09-05
1
-1
/
+15
*
Generic Bypass Slow Div
Preston Gurd
2012-09-04
1
-1
/
+0
*
Fix a typo.
Nadav Rotem
2012-09-02
1
-1
/
+1
*
Generate better select code by allowing the target to use scalar select, and ...
Nadav Rotem
2012-09-02
1
-4
/
+3
*
Only legalise a VSELECT in to bitwise operations if the vector mask bool is z...
Pete Cooper
2012-09-01
1
-1
/
+6
*
Revert "Take account of boolean vector contents when promoting a build vector...
Pete Cooper
2012-09-01
1
-17
/
+1
*
Teach DAG combine a number of tricks to simplify FMA expressions in fast-math...
Owen Anderson
2012-09-01
1
-0
/
+64
*
Fix typo
Michael Liao
2012-09-01
1
-1
/
+1
*
Add MachineInstr::tieOperands, remove setIsTied().
Jakob Stoklund Olesen
2012-08-31
1
-6
/
+2
*
Don't enforce ordered inline asm operands.
Jakob Stoklund Olesen
2012-08-31
1
-10
/
+0
*
Take account of boolean vector contents when promoting a build vector from i1...
Pete Cooper
2012-08-30
1
-1
/
+17
*
Teach the DAG combiner to turn chains of FADDs (x+x+x+x+...) into FMULs by co...
Owen Anderson
2012-08-30
1
-1
/
+122
*
Currently targets that do not support selects with scalar conditions and vect...
Nadav Rotem
2012-08-30
1
-1
/
+65
*
Add FMA to switch statement in VectorLegalizer::LegalizeOp so that it can be ...
Craig Topper
2012-08-30
1
-0
/
+1
*
Add support for FMA to WidenVectorResult.
Craig Topper
2012-08-30
2
-0
/
+14
*
Verify the order of tied operands in inline asm.
Jakob Stoklund Olesen
2012-08-29
1
-0
/
+12
*
Set the isTied flags when building INLINEASM MachineInstrs.
Jakob Stoklund Olesen
2012-08-29
1
-4
/
+21
*
Remove extra MayLoad/MayStore flags from atomic_load/store.
Jakob Stoklund Olesen
2012-08-28
1
-18
/
+23
*
Fix bug 13532.
Akira Hatanaka
2012-08-28
1
-1
/
+1
*
Fix integer undefined behavior due to signed left shift overflow in LLVM.
Richard Smith
2012-08-24
1
-3
/
+2
*
Avoid including explicit uses when counting SDNode imp-uses.
Jakob Stoklund Olesen
2012-08-24
1
-3
/
+6
*
BranchProb: modify the definition of an edge in BranchProbabilityInfo to handle
Manman Ren
2012-08-24
3
-28
/
+60
*
Rejected 169195. As Duncan commented, bitcasting to proper type is wrong appr...
Stepan Dyatkovskiy
2012-08-22
1
-23
/
+3
*
Add a getName function to MachineFunction. Use it in places that previously d...
Craig Topper
2012-08-22
2
-5
/
+4
*
Initialize SelectionDAGBuilder's Context in 'init', not in its constructor. The
Richard Smith
2012-08-22
2
-1
/
+2
*
Don't add CFG edges for redundant conditional branches.
Jakob Stoklund Olesen
2012-08-20
1
-1
/
+4
*
Fixed DAGCombiner bug (found and localized by James Malloy):
Stepan Dyatkovskiy
2012-08-20
1
-3
/
+23
*
Make atomic load and store of pointers work. Tighten verification of atomic ...
Eli Friedman
2012-08-17
1
-2
/
+2
*
TargetLowering: Use the large shift amount during legalize types. The legaliz...
Benjamin Kramer
2012-08-17
1
-3
/
+3
*
Add a roundToIntegral method to APFloat, which can be parameterized over vari...
Owen Anderson
2012-08-13
2
-0
/
+60
*
Fix the legalization of ExtLoad on ARM. ExpandUnalignedLoad did not properly
Nadav Rotem
2012-08-09
1
-3
/
+4
*
Add SelectionDAG::getTargetIndex.
Jakob Stoklund Olesen
2012-08-07
4
-0
/
+35
*
Refactor and check "onlyReadsMemory" before optimizing builtins.
Bob Wilson
2012-08-03
2
-83
/
+30
*
Try to reduce the compile time impact of r161232.
Bob Wilson
2012-08-03
2
-43
/
+59
*
Fix memcmp code-gen to honor -fno-builtin.
Bob Wilson
2012-08-03
1
-1
/
+1
*
Fall back to selection DAG isel for calls to builtin functions.
Bob Wilson
2012-08-03
2
-3
/
+18
*
Added FMA functionality to X86 target.
Elena Demikhovsky
2012-08-01
1
-8
/
+20
*
Conform to LLVM coding style.
Micah Villmow
2012-07-31
1
-2
/
+2
*
Don't generate ordered or unordered comparison operations if it is not legal ...
Micah Villmow
2012-07-31
1
-1
/
+2
*
Consider address spaces for hashing and CSEing DAG nodes. Otherwise two load...
Pete Cooper
2012-07-30
1
-0
/
+22
*
Add a floor intrinsic.
Dan Gohman
2012-07-26
1
-0
/
+5
*
Change llvm_unreachable in SplitVectorOperand to report_fatal_error. Keeps re...
Craig Topper
2012-07-24
1
-1
/
+3
*
Fix a typo (the the => the)
Sylvestre Ledru
2012-07-23
1
-1
/
+1
*
Fixed DAGCombine optimizations which generate select_cc for targets
Nadav Rotem
2012-07-23
1
-33
/
+47
*
Tidy up. Fix indentation and remove trailing whitespace.
Craig Topper
2012-07-23
1
-16
/
+14
*
Change llvm_unreachable in SplitVectorResult to report_fatal_error. Keeps rel...
Craig Topper
2012-07-23
1
-1
/
+2
*
Replace some explicit compare loops with std::equal.
Benjamin Kramer
2012-07-19
1
-7
/
+1
*
Fixed few warnings.
Galina Kistanova
2012-07-19
1
-1
/
+1
*
Remove tabs.
Bill Wendling
2012-07-19
4
-22
/
+24
[next]