Searched refs:vecWidth (Results 1 – 1 of 1) sorted by relevance
4248 static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) { in isVEXTRACTIndex() argument4249 assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width"); in isVEXTRACTIndex()4259 bool Result = (Index * ElSize) % vecWidth == 0; in isVEXTRACTIndex()4267 static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) { in isVINSERTIndex() argument4268 assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width"); in isVINSERTIndex()4277 bool Result = (Index * ElSize) % vecWidth == 0; in isVINSERTIndex()4298 static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) { in getExtractVEXTRACTImmediate() argument4299 assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width"); in getExtractVEXTRACTImmediate()4309 unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits(); in getExtractVEXTRACTImmediate()4313 static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) { in getInsertVINSERTImmediate() argument[all …]