reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Target/X86/X86ISelLowering.cpp
 5616     if (VT.getSizeInBits() > 512) {
 5617       NumSubs = VT.getSizeInBits() / 512;
 5618       assert((VT.getSizeInBits() % 512) == 0 && "Illegal vector size");
 5621     if (VT.getSizeInBits() > 256) {
 5622       NumSubs = VT.getSizeInBits() / 256;
 5623       assert((VT.getSizeInBits() % 256) == 0 && "Illegal vector size");
 5626     if (VT.getSizeInBits() > 128) {
 5627       NumSubs = VT.getSizeInBits() / 128;
 5628       assert((VT.getSizeInBits() % 128) == 0 && "Illegal vector size");
 5646   return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, Subs);