Searched refs:intTy (Results 1 – 8 of 8) sorted by relevance
230 const auto intTy = mlir::dyn_cast<IntType>(arrayTy.getElementType()); in verify() local233 if (!intTy || intTy.getWidth() != 8) in verify()
269 } else if (auto intTy = dyn_cast<llvm::IntegerType>(type)) { in occupiesMoreThan() local271 intCount += (intTy->getBitWidth() + ptrWidth - 1) / ptrWidth; in occupiesMoreThan()
236 if (auto intTy = dyn_cast<llvm::IntegerType>(type)) { in addTypedData() local237 if (!isLegalIntegerType(CGM, intTy)) in addTypedData()668 llvm::IntegerType *intTy) { in isLegalIntegerType() argument669 auto size = intTy->getBitWidth(); in isLegalIntegerType()
37 const auto intTy = mlir::cast<cir::IntType>(ty); in getZeroInitFromType() local38 return mlir::APInt::getZero(intTy.getWidth()); in getZeroInitFromType()
263 if (auto intTy = mlir::dyn_cast<cir::IntType>(value.getType())) { in createNeg() local265 if (intTy.isUnsigned()) in createNeg()266 value = createIntCast(value, getSIntNTy(intTy.getWidth())); in createNeg()
200 void addInt(llvm::IntegerType *intTy, uint64_t value,202 add(llvm::ConstantInt::get(intTy, value, isSigned));
2523 .Case<cir::IntType>([&](cir::IntType intTy) { in computeBitfieldIntType() argument2524 storageSize = intTy.getWidth(); in computeBitfieldIntType()
237 const SPIRVType *intTy, const SPIRVType *boolTy) const;