Lines Matching refs:Consts
2302 MutableArrayRef<ConstantInt*> Consts) const { in getBuildVectorConstInts()
2311 Consts[i] = ConstantInt::get(IntTy, 0); in getBuildVectorConstInts()
2317 Consts[i] = ConstantInt::get(IntTy, CI->getValue().getSExtValue()); in getBuildVectorConstInts()
2321 Consts[i] = ConstantInt::get(IntTy, A.getZExtValue()); in getBuildVectorConstInts()
2335 SmallVector<ConstantInt*,4> Consts(Elem.size()); in buildVector32() local
2336 bool AllConst = getBuildVectorConstInts(Elem, VecTy, DAG, Consts); in buildVector32()
2347 llvm::all_of(Consts, [](ConstantInt *CI) { return CI->isZero(); })) in buildVector32()
2353 uint32_t V = (Consts[0]->getZExtValue() & 0xFFFF) | in buildVector32()
2354 Consts[1]->getZExtValue() << 16; in buildVector32()
2365 int32_t V = (Consts[0]->getZExtValue() & 0xFF) | in buildVector32()
2366 (Consts[1]->getZExtValue() & 0xFF) << 8 | in buildVector32()
2367 (Consts[1]->getZExtValue() & 0xFF) << 16 | in buildVector32()
2368 Consts[2]->getZExtValue() << 24; in buildVector32()
2417 SmallVector<ConstantInt*,8> Consts(Elem.size()); in buildVector64() local
2418 bool AllConst = getBuildVectorConstInts(Elem, VecTy, DAG, Consts); in buildVector64()
2429 llvm::all_of(Consts, [](ConstantInt *CI) { return CI->isZero(); })) in buildVector64()
2455 Val = (Val << W) | (Consts[Num-1-i]->getZExtValue() & Mask); in buildVector64()