mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-16 14:31:59 +00:00
add some nodes for extractelement
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26927 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f3ce43210a
commit
4b8db6c453
@ -156,6 +156,16 @@ namespace ISD {
|
||||
/// INSERT_VECTOR_ELT(VECTOR, VAL, IDX) - Returns VECTOR (a legal packed
|
||||
/// type) with the element at IDX replaced with VAL.
|
||||
INSERT_VECTOR_ELT,
|
||||
|
||||
/// VEXTRACT_VECTOR_ELT(VECTOR, IDX) - Returns a single element from VECTOR
|
||||
/// (an MVT::Vector value) identified by the (potentially variable) element
|
||||
/// number IDX.
|
||||
VEXTRACT_VECTOR_ELT,
|
||||
|
||||
/// EXTRACT_VECTOR_ELT(VECTOR, IDX) - Returns a single element from VECTOR
|
||||
/// (a legal packed type vector) identified by the (potentially variable)
|
||||
/// element number IDX.
|
||||
EXTRACT_VECTOR_ELT,
|
||||
|
||||
/// VECTOR_SHUFFLE(VEC1, VEC2, SHUFFLEVEC) - Returns a vector, of the same
|
||||
/// type as VEC1/VEC2. SHUFFLEVEC is a BUILD_VECTOR of constant int values
|
||||
|
Loading…
x
Reference in New Issue
Block a user