| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | ValueTypes.cpp | 209 case MVT::i8: return Type::getInt8Ty(Context); in getTypeForEVT() 231 case MVT::v1i8: return VectorType::get(Type::getInt8Ty(Context), 1); in getTypeForEVT() 232 case MVT::v2i8: return VectorType::get(Type::getInt8Ty(Context), 2); in getTypeForEVT() 233 case MVT::v4i8: return VectorType::get(Type::getInt8Ty(Context), 4); in getTypeForEVT() 234 case MVT::v8i8: return VectorType::get(Type::getInt8Ty(Context), 8); in getTypeForEVT() 235 case MVT::v16i8: return VectorType::get(Type::getInt8Ty(Context), 16); in getTypeForEVT() 236 case MVT::v32i8: return VectorType::get(Type::getInt8Ty(Context), 32); in getTypeForEVT() 237 case MVT::v64i8: return VectorType::get(Type::getInt8Ty(Context), 64); in getTypeForEVT() 238 case MVT::v128i8: return VectorType::get(Type::getInt8Ty(Context), 128); in getTypeForEVT() 239 case MVT::v256i8: return VectorType::get(Type::getInt8Ty(Context), 256); in getTypeForEVT()
|
| H A D | PreISelIntrinsicLowering.cpp | 36 Type *Int8Ty = Type::getInt8Ty(F.getContext()); in lowerLoadRelative()
|
| H A D | ExpandMemCmp.cpp | 266 auto *ByteType = Type::getInt8Ty(CI->getContext()); in getPtrToElementAtOffset() 281 Type *LoadSizeType = Type::getInt8Ty(CI->getContext()); in emitLoadCompareByteBlock()
|
| H A D | GlobalMerge.cpp | 443 Type *Int8Ty = Type::getInt8Ty(M.getContext()); in doMerge()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/ |
| H A D | MemorySanitizer.cpp | 694 Type *RetTy = StructType::get(PointerType::get(IRB.getInt8Ty(), 0), in createKernelApi() 703 name_load, RetTy, PointerType::get(IRB.getInt8Ty(), 0)); in createKernelApi() 705 name_store, RetTy, PointerType::get(IRB.getInt8Ty(), 0)); in createKernelApi() 710 PointerType::get(IRB.getInt8Ty(), 0), IRB.getInt64Ty()); in createKernelApi() 713 PointerType::get(IRB.getInt8Ty(), 0), IRB.getInt64Ty()); in createKernelApi() 3228 getShadowOriginPtr(A, IRB, IRB.getInt8Ty(), Alignment, in visitCallSite() 3867 MSV.getShadowOriginPtr(RegSaveAreaPtr, IRB, IRB.getInt8Ty(), in finalizeInstrumentation() 4246 IRB.getInt8Ty(), in finalizeInstrumentation() 4247 IRB.CreateInBoundsGEP(IRB.getInt8Ty(), VAArgTLSCopy, in finalizeInstrumentation() 4261 IRB.CreateInBoundsGEP(IRB.getInt8Ty(), VAArgTLSCopy, in finalizeInstrumentation() [all …]
|
| H A D | SanitizerCoverage.cpp | 326 Int8PtrTy = PointerType::getUnqual(IRB.getInt8Ty()); in runOnModule() 330 Int8Ty = IRB.getInt8Ty(); in runOnModule() 336 SanCovTraceCmp1, VoidTy, IRB.getInt8Ty(), IRB.getInt8Ty())); in runOnModule()
|
| H A D | HWAddressSanitizer.cpp | 310 Int8Ty = IRB.getInt8Ty(); in doInitialization() 382 ArrayType::get(IRB.getInt8Ty(), 0)); in initializeCallbacks() 528 IRB.getInt8Ty()); in instrumentMemAccessInline() 651 Value *JustTag = IRB.CreateTrunc(Tag, IRB.getInt8Ty()); in tagAlloca()
|
| H A D | AddressSanitizer.cpp | 2137 Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize); in InstrumentGlobals() 2212 new GlobalVariable(M, IRB.getInt8Ty(), false, Linkage, in InstrumentGlobals() 2213 Constant::getNullValue(IRB.getInt8Ty()), in InstrumentGlobals() 2400 ArrayType::get(IRB.getInt8Ty(), 0)); in initializeCallbacks() 2821 Alloca = IRB.CreateAlloca(IRB.getInt8Ty(), in createAllocaForLayout() 2825 Alloca = IRB.CreateAlloca(ArrayType::get(IRB.getInt8Ty(), L.FrameSize), in createAllocaForLayout() 3110 Constant::getNullValue(IRBPoison.getInt8Ty()), in processStaticAllocas() 3222 AllocaInst *NewAlloca = IRB.CreateAlloca(IRB.getInt8Ty(), NewSize); in handleDynamicAllocaCall()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Utils/ |
| H A D | SimplifyLibCalls.cpp | 214 Value *CpyDst = B.CreateGEP(B.getInt8Ty(), Dst, DstLen, "endptr"); in emitStrLenMemCpy() 279 return B.CreateGEP(B.getInt8Ty(), SrcStr, emitStrLen(SrcStr, B, DL, TLI), in optimizeStrChr() 293 return B.CreateGEP(B.getInt8Ty(), SrcStr, B.getInt64(I), "strchr"); in optimizeStrChr() 320 return B.CreateGEP(B.getInt8Ty(), SrcStr, B.getInt64(I), "strrchr"); in optimizeStrRChr() 462 Value *DstEnd = B.CreateGEP(B.getInt8Ty(), Dst, in optimizeStpCpy() 629 return B.CreateGEP(B.getInt8Ty(), CI->getArgOperand(0), B.getInt64(I), in optimizeStrPBrk() 828 return B.CreateGEP(B.getInt8Ty(), SrcStr, B.getInt64(I), "memchr"); in optimizeMemChr() 979 Value *Val = B.CreateIntCast(CI->getArgOperand(1), B.getInt8Ty(), false); in optimizeMemSet() 2070 Value *V = B.CreateTrunc(CI->getArgOperand(2), B.getInt8Ty(), "char"); in optimizeSPrintFString() 2073 Ptr = B.CreateGEP(B.getInt8Ty(), Ptr, B.getInt32(1), "nul"); in optimizeSPrintFString() [all …]
|
| H A D | VNCoercion.cpp | 297 Src = ConstantExpr::getGetElementPtr(Type::getInt8Ty(Src->getContext()), Src, in analyzeLoadFromClobberingMemInst() 473 Src = ConstantExpr::getGetElementPtr(Type::getInt8Ty(Src->getContext()), Src, in getMemInstValueForLoadHelper()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CodeGenTypes.cpp | 418 ResultType = llvm::Type::getInt8Ty(getLLVMContext()); in ConvertType() 548 PointeeType = llvm::Type::getInt8Ty(getLLVMContext()); in ConvertType() 572 ResultType = llvm::Type::getInt8Ty(getLLVMContext()); in ConvertType() 585 EltTy = llvm::Type::getInt8Ty(getLLVMContext()); in ConvertType()
|
| H A D | ObjectFilePCHContainerOperations.cpp | 274 auto Int8Ty = llvm::Type::getInt8Ty(*VMContext); in HandleTranslationUnit()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/IPO/ |
| H A D | ThinLTOBitcodeWriter.cpp | 326 llvm::ConstantInt::get(Type::getInt8Ty(Ctx), Linkage))); in splitAndWriteThinLTOBitcode() 349 ConstantInt::get(Type::getInt8Ty(Ctx), A.getVisibility())), in splitAndWriteThinLTOBitcode() 351 ConstantInt::get(Type::getInt8Ty(Ctx), A.isWeakForLinker())), in splitAndWriteThinLTOBitcode()
|
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | Type.cpp | 174 IntegerType *Type::getInt8Ty(LLVMContext &C) { return &C.pImpl->Int8Ty; } in getInt8Ty() function in Type 221 return getInt8Ty(C)->getPointerTo(AS); in getInt8PtrTy() 247 case 8: return cast<IntegerType>(Type::getInt8Ty(C)); in get()
|
| /freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyLowerGlobalDtors.cpp | 121 Type *DsoHandleTy = Type::getInt8Ty(C); in runOnModule()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/ |
| H A D | SeparateConstOffsetFromGEP.cpp | 856 Builder.CreateGEP(Builder.getInt8Ty(), ResultPtr, Idx, "uglygep"); in lowerToSingleIndexGEPs() 866 Builder.CreateGEP(Builder.getInt8Ty(), ResultPtr, Offset, "uglygep"); in lowerToSingleIndexGEPs() 1099 Type::getInt8Ty(GEP->getContext()), NewGEP, in splitGEP()
|
| H A D | StraightLineStrengthReduce.cpp | 677 Builder.CreateInBoundsGEP(Builder.getInt8Ty(), Reduced, Bump); in rewriteCandidateWithBasis() 679 Reduced = Builder.CreateGEP(Builder.getInt8Ty(), Reduced, Bump); in rewriteCandidateWithBasis()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Coroutines/ |
| H A D | CoroEarly.cpp | 69 Type *Int8Ty = Builder.getInt8Ty(); in lowerCoroPromise()
|
| H A D | Coroutines.cpp | 110 auto *IndexVal = ConstantInt::get(Type::getInt8Ty(Context), Index); in makeSubFnCall()
|
| /freebsd-12.1/contrib/llvm/include/llvm/Analysis/ |
| H A D | TargetTransformInfoImpl.h | 509 return Type::getInt8Ty(Context); in getMemcpyLoopLoweringType() 518 OpsOut.push_back(Type::getInt8Ty(Context)); in getMemcpyLoopResidualLoweringType()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-stress/ |
| H A D | llvm-stress.cpp | 164 Type::getInt8Ty(Context) in GenEmptyFunction() 313 Type::getInt8Ty(Context), in pickScalarType()
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | Type.h | 408 static IntegerType *getInt8Ty(LLVMContext &C);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | IRForTarget.cpp | 428 Type *i8_ty = Type::getInt8Ty(m_module->getContext()); in RewriteObjCConstString() 2027 llvm::Type *char_type = llvm::Type::getInt8Ty(m_module->getContext()); in BuildRelocation() 2085 llvm::Type *int8_ty = Type::getInt8Ty(m_module->getContext()); in runOnModule()
|
| /freebsd-12.1/contrib/llvm/lib/Target/PowerPC/ |
| H A D | PPCLoopPreIncPrep.cpp | 407 Type *I8Ty = Type::getInt8Ty(MemI->getParent()->getContext()); in runOnLoop()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/ObjCARC/ |
| H A D | ObjCARCContract.cpp | 404 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C)); in tryToContractReleaseIntoStoreStrong()
|