| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | MatrixUtils.cpp | 84 CreateLoop(Start, End, B.getInt64(NumColumns), B.getInt64(TileSize), in CreateTiledLoops() 88 CreateLoop(ColBody, ColumnLoop.Latch, B.getInt64(NumRows), in CreateTiledLoops() 89 B.getInt64(TileSize), "rows", B, DTU, RowLoopInfo, LI); in CreateTiledLoops() 93 CreateLoop(RowBody, RowLoop.Latch, B.getInt64(NumInner), in CreateTiledLoops() 94 B.getInt64(TileSize), "inner", B, DTU, KLoopInfo, LI); in CreateTiledLoops()
|
| H A D | AMDGPUEmitPrintf.cpp | 80 auto Zero = Builder.getInt64(0); in appendArg() 92 auto One = Builder.getInt64(1); in getStrlenWithNull() 93 auto Zero = Builder.getInt64(0); in getStrlenWithNull() 497 Builder.CreateStore(Builder.getInt64(Hash.low()), Ptr); in emitAMDGPUPrintfCall()
|
| H A D | VNCoercion.cpp | 106 {StoredVal, Helper.getInt64(0)}); in coerceAvailableValueToLoadType()
|
| H A D | SimplifyLibCalls.cpp | 229 Value *Off = B.getInt64(Offset + Str.size()); in convertStrToInt() 534 return B.CreateInBoundsGEP(B.getInt8Ty(), SrcStr, B.getInt64(I), "strchr"); in optimizeStrChr() 920 Value *Off = B.getInt64(std::min(SrcLen, N)); in optimizeStringNCpy() 1084 B.getInt64(I), "strpbrk"); in optimizeStrPBrk() 1257 return B.CreateInBoundsGEP(B.getInt8Ty(), SrcStr, B.getInt64(Pos)); in optimizeMemRChr() 1267 B.getInt64(Pos), "memrchr.ptr_plus"); in optimizeMemRChr() 1340 Value *SrcPlus = B.CreateInBoundsGEP(B.getInt8Ty(), SrcStr, B.getInt64(Pos), in optimizeMemChr()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | SMEABIPass.cpp | 77 Builder.getInt64(0)); in emitTPIDR2Save() 122 Builder.getInt64(0), "cmp"); in updateNewStateFunctions()
|
| H A D | AArch64Arm64ECCallLowering.cpp | 561 Arg = IRB.CreatePtrAdd(Arg, IRB.getInt64(0x20)); in buildEntryThunk() 565 Args.push_back(IRB.getInt64(0)); in buildEntryThunk()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | PGOCtxProfLowering.cpp | 283 Guid = Builder.getInt64( in lowerFunction() 327 auto *Index = Builder.CreateAnd(CtxAsInt, Builder.getInt64(1)); in lowerFunction() 342 Builder.CreateAnd(CtxAsInt, Builder.getInt64(-2)), in lowerFunction()
|
| H A D | SanitizerBinaryMetadata.cpp | 302 Constant *CFM = IRB.getInt64(FeatureMask); in runOn()
|
| H A D | GCOVProfiling.cpp | 910 Builder.getInt64(1), MaybeAlign(), in emitProfileNotes() 916 Value *NewCount = Builder.CreateAdd(OldCount, Builder.getInt64(1)); in emitProfileNotes()
|
| H A D | PGOInstrumentation.cpp | 1086 {NormalizedNamePtr, Builder.getInt64(FuncInfo.FunctionHash), in instrument() 1778 {NormalizedFuncNameVarPtr, Builder.getInt64(FuncHash), in instrumentOneSelectInst()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | SampleProfileProbe.cpp | 401 Value *Args[] = {Builder.getInt64(Guid), Builder.getInt64(Index), in instrumentOneFunc() 403 Builder.getInt64(PseudoProbeFullDistributionFactor)}; in instrumentOneFunc()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86LowerAMXType.cpp | 378 Value *Stride = Builder.getInt64(64); in combineLoadBitcast() 405 Value *Stride = Builder.getInt64(64); in combineBitcastStore() 434 Stride = Builder.getInt64(64); in transformBitcast() 611 Value *Stride = Builder.getInt64(64); in createTileStore() 642 Value *Stride = Builder.getInt64(64); in replaceWithTileLoad() 1326 Stride = Builder.getInt64(64); in transformAMXCast()
|
| H A D | X86LowerAMXIntrinsics.cpp | 526 Value *StrideDWord = PreBuilder.CreateLShr(Stride, PreBuilder.getInt64(2)); in lowerTileLoadStore()
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | PseudoProbe.cpp | 86 II->replaceUsesOfWith(II->getFactor(), Builder.getInt64(IntFactor)); in setProbeDistributionFactor()
|
| H A D | IRBuilder.cpp | 418 Size = getInt64(-1); in CreateLifetimeStart() 430 Size = getInt64(-1); in CreateLifetimeEnd() 443 Size = getInt64(-1); in CreateInvariantStart() 650 Args.push_back(B.getInt64(ID)); in getStatepointArgs() 1139 V = CreateInsertElement(Poison, V, getInt64(0), Name + ".splatinsert"); in CreateVectorSplat()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LowerMatrixIntrinsics.cpp | 1328 Builder.CreateMul(J, Builder.getInt64(MatrixShape.getStride())), I); in loadMatrix() 1335 Builder.getInt64(MatrixShape.getStride()), IsVolatile, in loadMatrix() 1366 Builder.CreateMul(J, Builder.getInt64(MatrixShape.getStride())), I); in storeMatrix() 1373 Builder.getInt64(MatrixShape.getStride()), IsVolatile, Builder); in storeMatrix() 2014 LShape, Builder.getInt64(I), Builder.getInt64(K), in emitSIMDTiling() 2018 RShape, Builder.getInt64(K), Builder.getInt64(J), in emitSIMDTiling() 2024 Builder.getInt64(I), Builder.getInt64(J), EltType, in emitSIMDTiling() 2258 Builder.getInt64(SI.getStride()), Inst->isVolatile(), SI, in VisitLoad() 2265 Builder.getInt64(SI.getStride()), Inst->isVolatile(), SI, in VisitStore()
|
| H A D | TailRecursionElimination.cpp | 627 Value *Size = Builder.getInt64(DL.getTypeAllocSize(AggTy)); in copyByValueOperandIntoLocalTemp() 648 Value *Size = Builder.getInt64(DL.getTypeAllocSize(AggTy)); in copyLocalTempOfByValueOperandIntoArguments()
|
| /freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
| H A D | OMPIRBuilder.cpp | 509 Value *Flags = Builder.getInt64(KernelArgs.HasNoWait); in getKernelArgsVector() 1353 /* number of arguments */ Builder.getInt64(NumCapturedVars)}; in targetParallelCallback() 1891 Builder.getInt64(M.getDataLayout().getTypeStoreSize(Dep.DepValueType)), in emitTaskDependencies() 2002 Value *TaskSize = Builder.getInt64( in createTask() 2008 Value *SharedsSize = Builder.getInt64(0); in createTask() 2020 Builder.getInt64(M.getDataLayout().getTypeStoreSize(ArgStructType)); in createTask() 2471 Builder.CreateICmpSGT(PtrDiff, Builder.getInt64(IntSize - 1)), ThenBB, in shuffleAndStore() 2592 Value *SizeVal = Builder.getInt64( in emitReductionListCopy() 2770 ArrayTy, TransferMedium, {Builder.getInt64(0), WarpID}); in emitInterWarpCopyFunction() 2810 ArrayTy, TransferMedium, {Builder.getInt64(0), GPUThreadID}); in emitInterWarpCopyFunction() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/XCore/ |
| H A D | XCoreLowerThreadLocal.cpp | 159 {Builder.getInt64(0), ThreadID}); in lowerGlobal()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGBuilder.h | 389 Src.getAlignment().getAsAlign(), getInt64(Size)); in CreateMemCpyInline() 413 getInt64(Size)); in CreateMemSetInline()
|
| H A D | CodeGenPGO.cpp | 1214 NormalizedFuncNameVarPtr, Builder.getInt64(FunctionHash), in emitCounterSetOrIncrement() 1243 Builder.getInt64(FunctionHash), in emitMCDCParameters() 1277 Builder.getInt64(FunctionHash), in emitMCDCTestVectorBitmapUpdate() 1392 Builder.getInt64(FunctionHash), in valueProfile()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | IRBuilder.h | 527 ConstantInt *getInt64(uint64_t C) { in getInt64() function 633 return CreateMemSet(Ptr, Val, getInt64(Size), Align, isVolatile, AAInfo); 655 Ptr, Val, getInt64(Size), Align(Alignment), ElementSize, AAInfo); 691 return CreateMemCpy(Dst, DstAlign, Src, SrcAlign, getInt64(Size), 733 return CreateMemMove(Dst, DstAlign, Src, SrcAlign, getInt64(Size), 1108 return CreateExtractVector(DstType, SrcVec, getInt64(Idx), Name); 1122 return CreateInsertVector(DstType, SrcVec, SubVec, getInt64(Idx), Name); 2570 return CreateExtractElement(Vec, getInt64(Idx), Name); 2592 return CreateInsertElement(Vec, NewElt, getInt64(Idx), Name);
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/ |
| H A D | DXILIntrinsicExpansion.cpp | 621 Value *ShiftedHi = Builder.CreateShl(Hi, Builder.getInt64(32)); in expandBufferLoadIntrinsic() 712 Constant *ShiftAmt = Builder.getInt64(32); in expandBufferStoreIntrinsic()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/TargetBuiltins/ |
| H A D | RISCV.cpp | 1028 Value *Mask = Builder.getInt64(RequireBitMasks[Idx]); in EmitRISCVCpuSupports() 1071 Result, Builder.CreateICmpEQ(ArchID, Builder.getInt64(Model.MArchID))); in EmitRISCVCpuIs() 1076 Result, Builder.CreateICmpEQ(ImpID, Builder.getInt64(Model.MImpID))); in EmitRISCVCpuIs()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUSwLowerLDS.cpp | 762 IRB.getInt8Ty(), MallocPtr, {IRB.getInt64(RedzoneOffset)}); in poisonRedzones() 765 {RedzoneAddress, IRB.getInt64(RedzoneSize)}); in poisonRedzones()
|