Home
last modified time | relevance | path

Searched refs:WideBits (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/llvm/lib/Target/SystemZ/
DSystemZTargetTransformInfo.cpp370 unsigned WideBits = getScalarSizeInBits(Ty) * VTy->getNumElements(); in getNumVectorRegs() local
371 assert(WideBits > 0 && "Could not compute size of vector"); in getNumVectorRegs()
372 return ((WideBits % 128U) ? ((WideBits / 128U) + 1) : (WideBits / 128U)); in getNumVectorRegs()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZTargetTransformInfo.cpp345 unsigned WideBits = getScalarSizeInBits(Ty) * Ty->getVectorNumElements(); in getNumVectorRegs() local
346 assert(WideBits > 0 && "Could not compute size of vector"); in getNumVectorRegs()
347 return ((WideBits % 128U) ? ((WideBits / 128U) + 1) : (WideBits / 128U)); in getNumVectorRegs()
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeVectorOps.cpp574 unsigned WideBits = WideVT.getSizeInBits(); in ExpandLoad() local
579 if (BitOffset < WideBits) { in ExpandLoad()
587 if (BitOffset >= WideBits) { in ExpandLoad()
589 BitOffset -= WideBits; in ExpandLoad()
612 DAG.getConstant(WideBits - SrcEltBits, dl, in ExpandLoad()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DLegalizeVectorOps.cpp776 unsigned WideBits = WideVT.getSizeInBits(); in ExpandLoad() local
781 APInt::getLowBitsSet(WideBits, SrcEltBits), dl, WideVT); in ExpandLoad()
784 assert(BitOffset < WideBits && "Unexpected offset!"); in ExpandLoad()
791 if (BitOffset >= WideBits) { in ExpandLoad()
793 BitOffset -= WideBits; in ExpandLoad()
816 DAG.getConstant(WideBits - SrcEltBits, dl, in ExpandLoad()