Searched refs:vecWidth (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp3817 static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) { argument
3818 assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
3822 // The index should be aligned on a vecWidth-bit boundary.
3828 bool Result = (Index * ElSize) % vecWidth == 0;
3836 static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) { argument
3837 assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
3840 // The index should be aligned on a vecWidth-bit boundary.
3846 bool Result = (Index * ElSize) % vecWidth
3867 getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) argument
3882 getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) argument
[all...]

Completed in 55 milliseconds