Home
last modified time | relevance | path

Searched refs:intTy (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/CIR/Dialect/IR/
H A DCIRAttrs.cpp230 const auto intTy = mlir::dyn_cast<IntType>(arrayTy.getElementType()); in verify() local
233 if (!intTy || intTy.getWidth() != 8) in verify()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DABIInfo.cpp269 } else if (auto intTy = dyn_cast<llvm::IntegerType>(type)) { in occupiesMoreThan() local
271 intCount += (intTy->getBitWidth() + ptrWidth - 1) / ptrWidth; in occupiesMoreThan()
H A DSwiftCallingConv.cpp236 if (auto intTy = dyn_cast<llvm::IntegerType>(type)) { in addTypedData() local
237 if (!isLegalIntegerType(CGM, intTy)) in addTypedData()
668 llvm::IntegerType *intTy) { in isLegalIntegerType() argument
669 auto size = intTy->getBitWidth(); in isLegalIntegerType()
/freebsd/contrib/llvm-project/clang/lib/CIR/Lowering/
H A DLoweringHelpers.cpp37 const auto intTy = mlir::cast<cir::IntType>(ty); in getZeroInitFromType() local
38 return mlir::APInt::getZero(intTy.getWidth()); in getZeroInitFromType()
/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenBuilder.h263 if (auto intTy = mlir::dyn_cast<cir::IntType>(value.getType())) { in createNeg() local
265 if (intTy.isUnsigned()) in createNeg()
266 value = createIntCast(value, getSIntNTy(intTy.getWidth())); in createNeg()
/freebsd/contrib/llvm-project/clang/include/clang/CodeGen/
H A DConstantInitBuilder.h200 void addInt(llvm::IntegerType *intTy, uint64_t value,
202 add(llvm::ConstantInt::get(intTy, value, isSigned));
/freebsd/contrib/llvm-project/clang/lib/CIR/Lowering/DirectToLLVM/
H A DLowerToLLVM.cpp2523 .Case<cir::IntType>([&](cir::IntType intTy) { in computeBitfieldIntType() argument
2524 storageSize = intTy.getWidth(); in computeBitfieldIntType()
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVInstructionSelector.cpp237 const SPIRVType *intTy, const SPIRVType *boolTy) const;