Home
last modified time | relevance | path

Searched refs:ElemsPerChunk (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Target/X86/
DX86ISelLowering.cpp100 unsigned ElemsPerChunk = 128 / ElVT.getSizeInBits(); in Extract128BitVector() local
105 * ElemsPerChunk); in Extract128BitVector()
136 unsigned ElemsPerChunk = 128/ElVT.getSizeInBits(); in Insert128BitVector() local
141 * ElemsPerChunk); in Insert128BitVector()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp5108 unsigned ElemsPerChunk = vectorWidth / ElVT.getSizeInBits(); in extractSubVector() local
5109 assert(isPowerOf2_32(ElemsPerChunk) && "Elements per chunk not power of 2"); in extractSubVector()
5113 IdxVal &= ~(ElemsPerChunk - 1); in extractSubVector()
5118 Vec->ops().slice(IdxVal, ElemsPerChunk)); in extractSubVector()
5157 unsigned ElemsPerChunk = vectorWidth/ElVT.getSizeInBits(); in insertSubVector() local
5158 assert(isPowerOf2_32(ElemsPerChunk) && "Elements per chunk not power of 2"); in insertSubVector()
5162 IdxVal &= ~(ElemsPerChunk - 1); in insertSubVector()
15385 unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits(); in LowerEXTRACT_VECTOR_ELT() local
15386 assert(isPowerOf2_32(ElemsPerChunk) && "Elements per chunk not power of 2"); in LowerEXTRACT_VECTOR_ELT()
15390 IdxVal &= ElemsPerChunk - 1; in LowerEXTRACT_VECTOR_ELT()