| /freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/ |
| H A D | ThreadSanitizer.cpp | 224 Type *Ty = Type::getIntNTy(M.getContext(), BitSize); in initializeCallbacks() 635 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize); in instrumentAtomic() 650 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize); in instrumentAtomic() 667 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize); in instrumentAtomic() 681 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize); in instrumentAtomic()
|
| H A D | SanitizerCoverage.cpp | 320 IntptrTy = Type::getIntNTy(*C, DL->getPointerSizeInBits()); in runOnModule() 715 auto Ty = Type::getIntNTy(*C, TypeSize); in InjectTraceForDiv() 760 auto Ty = Type::getIntNTy(*C, TypeSize); in InjectTraceForCmp()
|
| H A D | MemorySanitizer.cpp | 773 FunctionName, IRB.getVoidTy(), IRB.getIntNTy(AccessSize * 8), in createUserspaceApi() 778 FunctionName, IRB.getVoidTy(), IRB.getIntNTy(AccessSize * 8), in createUserspaceApi() 1129 ConvertedShadow, IRB.getIntNTy(8 * (1 << SizeIndex))); in storeOrigin() 1211 IRB.CreateZExt(ConvertedShadow, IRB.getIntNTy(8 * (1 << SizeIndex))); in materializeOneCheck() 2066 Value *V1 = IRB.CreateBitCast(V, Type::getIntNTy(*MS.C, srcSizeInBits)); in CreateShadowCast() 2068 IRB.CreateIntCast(V1, Type::getIntNTy(*MS.C, dstSizeInBits), Signed); in CreateShadowCast()
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | Type.h | 406 static IntegerType *getIntNTy(LLVMContext &C, unsigned N); 416 return (Type*) Type::getIntNTy(C, noOfBits); in getScalarTy()
|
| H A D | DataLayout.h | 482 return (LargestSize == 0) ? nullptr : Type::getIntNTy(C, LargestSize); in getLargestLegalIntType()
|
| H A D | IRBuilder.h | 319 return ConstantInt::get(getIntNTy(N), C); in getIntN() 360 IntegerType *getIntNTy(unsigned N) { in getIntNTy() function 361 return Type::getIntNTy(Context, N); in getIntNTy()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULowerKernelArguments.cpp | 208 IntegerType *ArgIntTy = Builder.getIntNTy(Size); in runOnFunction()
|
| H A D | AMDGPUCodeGenPrepare.cpp | 599 Res = Builder.CreateTrunc(Res, Builder.getIntNTy(DivBits)); in expandDivRem24() 834 Type *IntNTy = Builder.getIntNTy(TySize); in visitLoadInst()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/ |
| H A D | SROA.cpp | 1799 Type::getIntNTy(Ty->getContext(), NumElements * ElementSize * 8); in isVectorPromotionViableForSlice() 2059 Type *IntTy = Type::getIntNTy(AllocaTy->getContext(), SizeInBits); in isIntegerWideningViable() 2289 ? Type::getIntNTy( in AllocaSliceRewriter() 2433 IntegerType *ExtractTy = Type::getIntNTy(LI.getContext(), SliceSize * 8); in rewriteIntegerLoad() 2458 Type *TargetTy = IsSplit ? Type::getIntNTy(LI.getContext(), SliceSize * 8) in visitLoadInst() 2625 IntegerType *NarrowTy = Type::getIntNTy(SI.getContext(), SliceSize * 8); in visitStoreInst() 2692 Type *SplatIntTy = Type::getIntNTy(VTy->getContext(), Size * 8); in getIntegerSplat() 2947 IntTy ? Type::getIntNTy(IntTy->getContext(), Size * 8) : nullptr; in visitMemTransferInst() 3794 auto *PartTy = Type::getIntNTy(Ty->getContext(), PartSize * 8); in presplitLoadsAndStores() 3927 auto *PartTy = Type::getIntNTy(Ty->getContext(), PartSize * 8); in presplitLoadsAndStores() [all …]
|
| H A D | CorrelatedValuePropagation.cpp | 530 auto *TruncTy = Type::getIntNTy(Instr->getContext(), NewWidth); in processUDivOrURem()
|
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | Type.cpp | 180 IntegerType *Type::getIntNTy(LLVMContext &C, unsigned N) { in getIntNTy() function in Type 213 return getIntNTy(C, N)->getPointerTo(AS); in getIntNPtrTy()
|
| H A D | DataLayout.cpp | 768 return Type::getIntNTy(C, LegalIntWidth); in getSmallestLegalIntType()
|
| H A D | ConstantFold.cpp | 2178 Type::getIntNTy(IdxTy->getContext(), CommonExtendedWidth); in ConstantFoldGetElementPtr() 2340 Type *ExtendedTy = Type::getIntNTy(Div->getContext(), CommonExtendedWidth); in ConstantFoldGetElementPtr()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGObjCRuntime.cpp | 112 llvm::Type::getIntNTy(CGF.getLLVMContext(), in EmitValueForIvarAtOffset()
|
| H A D | CGRecordLayoutBuilder.cpp | 123 return llvm::Type::getIntNTy(Types.getLLVMContext(), in getIntNType()
|
| H A D | CGObjC.cpp | 1000 llvm::Type *bitcastType = llvm::Type::getIntNTy(getLLVMContext(), ivarSize); in generateObjCGetterBody() 1016 llvm::Type *newTy = llvm::Type::getIntNTy(getLLVMContext(), retTySize); in generateObjCGetterBody() 1286 llvm::Type::getIntNTy(getLLVMContext(), in generateObjCSetterBody()
|
| H A D | CGNonTrivialStruct.cpp | 531 llvm::Type *Ty = llvm::Type::getIntNTy( in flushTrivialFields()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/ |
| H A D | IRDynamicChecks.cpp | 310 m_intptr_ty = llvm::Type::getIntNTy(m_module.getContext(), in GetIntptrTy()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Vectorize/ |
| H A D | LoadStoreVectorizer.cpp | 937 StoreTy = Type::getIntNTy(F.getParent()->getContext(), in vectorizeStoreChain() 1087 LoadTy = Type::getIntNTy(F.getParent()->getContext(), in vectorizeLoadChain()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-stress/ |
| H A D | llvm-stress.cpp | 87 Value = Type::getIntNTy(Context, N); in parse()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Coroutines/ |
| H A D | CoroFrame.cpp | 391 Type::getIntNTy(C, IndexBits)}; in buildFrameType()
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | AtomicExpandPass.cpp | 630 Ret.WordType = Type::getIntNTy(Ctx, WordSize * 8); in createMaskInstrs() 1595 Type *SizedIntTy = Type::getIntNTy(Ctx, Size * 8); in expandAtomicOpToLibcall()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineVectorOps.cpp | 236 Type *SrcIntTy = IntegerType::getIntNTy(Scalar->getContext(), SrcWidth); in foldBitcastExtElt() 248 Type *DestIntTy = IntegerType::getIntNTy(Scalar->getContext(), DestWidth); in foldBitcastExtElt()
|
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | IVDescriptors.cpp | 155 return std::make_pair(Type::getIntNTy(Exit->getContext(), MaxBitWidth), in computeRecurrenceType()
|
| H A D | ConstantFolding.cpp | 267 IntegerType *DstIntTy = Type::getIntNTy(C->getContext(), DstBitSize); in FoldBitCast() 518 MapTy = PointerType::getIntNTy(C->getContext(), in FoldReinterpretLoadFromConstPtr()
|