index
:
emscripten-fastcomp
master
LLVM with the emscripten fastcomp javascript backend
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
CodeGen
/
SelectionDAG
/
LegalizeVectorOps.cpp
Age
Commit message (
Expand
)
Author
2012-02-05
Convert assert(0) to llvm_unreachable
Craig Topper
2011-12-13
Initial CodeGen support for CTTZ/CTLZ where a zero input produces an
Chandler Carruth
2011-10-19
Improve code generation for vselect on SSE2:
Nadav Rotem
2011-10-18
Fix a bug in the legalization of vector anyext-load and trunc-store. Mem Inde...
Nadav Rotem
2011-10-18
Fix a bunch of unused variable warnings when doing a release
Duncan Sands
2011-10-17
Removed set, but unused variable.
Chad Rosier
2011-10-15
Move the legalization of vector loads and stores into LegalizeVectorOps. In some
Nadav Rotem
2011-09-18
white space cleanups
Nadav Rotem
2011-09-13
Fix the assertion which checks the size of the input operand.
Nadav Rotem
2011-09-13
Add vselect target support for targets that do not support blend but do support
Nadav Rotem
2011-09-06
Add codegen support for vector select (in the IR this means a select
Duncan Sands
2011-07-14
[VECTOR-SELECT]
Nadav Rotem
2011-03-19
Add support for legalizing UINT_TO_FP of vectors on platforms which do
Nadav Rotem
2010-11-23
Renaming ISD::BIT_CONVERT to ISD::BITCAST to better reflect the LLVM IR concept.
Wesley Peck
2010-06-18
Change UpdateNodeOperands' operand and return value from SDValue to
Dan Gohman
2010-04-17
Use const qualifiers with TargetLowering. This eliminates several
Dan Gohman
2010-01-09
Revert an earlier change to SIGN_EXTEND_INREG for vectors. The VTSDNode
Dan Gohman
2009-12-11
Implement vector widening, splitting, and scalarizing for SIGN_EXTEND_INREG.
Dan Gohman
2009-12-03
improve portability to avoid conflicting with std::next in c++'0x.
Chris Lattner
2009-11-30
Added support to allow clients to custom widen. For X86, custom widen vectors...
Mon P Wang
2009-08-11
Split EVT into MVT and EVT, the former representing _just_ a primitive type, ...
Owen Anderson
2009-08-10
Rename MVT to EVT, in preparation for splitting SimpleValueType out into its ...
Owen Anderson
2009-08-05
Major calling convention code refactoring.
Dan Gohman
2009-06-06
Make SINT_TO_FP/UINT_TO_FP vector legalization queries query on the
Eli Friedman
2009-05-27
Remove special cases for more opcodes.
Eli Friedman
2009-05-24
Add a comment which should hopefully make the purpose of this method a
Eli Friedman
2009-05-23
Add a new step to legalization to legalize vector math operations. This
Eli Friedman