| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | BlockFrequencyInfoImpl.cpp | 120 DitheringDistributer(Distribution &Dist, const BlockMass &Mass); 127 DitheringDistributer::DitheringDistributer(Distribution &Dist, in DitheringDistributer() argument 129 Dist.normalize(); in DitheringDistributer() 130 RemWeight = Dist.Total; in DitheringDistributer() 312 bool BlockFrequencyInfoImplBase::addToDist(Distribution &Dist, in addToDist() argument 341 Dist.addBackedge(Resolved, Weight); in addToDist() 347 Dist.addExit(Resolved, Weight); in addToDist() 370 Dist.addLocal(Resolved, Weight); in addToDist() 375 const LoopData *OuterLoop, LoopData &Loop, Distribution &Dist) { in addLoopSuccessorsToDist() argument 378 if (!addToDist(Dist, OuterLoop, Loop.getHeader(), I.first, in addLoopSuccessorsToDist() [all …]
|
| H A D | LoopAccessAnalysis.cpp | 1664 int64_t Dist = *Val / Size; in getPointersDiff() local 1668 if (!StrictCheck || Dist * Size == Val) in getPointersDiff() 1669 return Dist; in getPointersDiff() 1874 const SCEV &MaxBTC, const SCEV &Dist, in isSafeDependenceDistance() argument 1897 const SCEV *CastedDist = &Dist; in isSafeDependenceDistance() 1899 uint64_t DistTypeSizeBits = DL.getTypeSizeInBits(Dist.getType()); in isSafeDependenceDistance() 1906 CastedProduct = SE.getZeroExtendExpr(Product, Dist.getType()); in isSafeDependenceDistance() 1908 CastedDist = SE.getNoopOrSignExtend(&Dist, Product->getType()); in isSafeDependenceDistance() 2028 const SCEV *Dist = SE.getMinusSCEV(Sink, Src); in getDependenceDistanceStrideAndSize() local 2033 << ": " << *Dist << "\n"); in getDependenceDistanceStrideAndSize() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | TwoAddressInstructionPass.cpp | 126 bool noUseAfterLastDef(Register Reg, unsigned Dist, unsigned &LastDef); 151 MachineInstr *MI, unsigned Dist); 154 unsigned RegBIdx, unsigned RegCIdx, unsigned Dist); 160 Register RegB, unsigned &Dist); 162 bool isDefTooClose(Register Reg, unsigned Dist, MachineInstr *MI); 172 unsigned &Dist, bool shouldOnlyCommute); 178 unsigned Dist); 187 void processTiedPairs(MachineInstr *MI, TiedPairList&, unsigned &Dist); 339 bool TwoAddressInstructionImpl::noUseAfterLastDef(Register Reg, unsigned Dist, in noUseAfterLastDef() argument 342 unsigned LastUse = Dist; in noUseAfterLastDef() [all …]
|
| H A D | LiveVariables.cpp | 227 unsigned Dist = DistanceMap[Def]; in FindLastPartialDef() local 228 if (Dist > LastDefDist) { in FindLastPartialDef() 231 LastDefDist = Dist; in FindLastPartialDef() 313 unsigned Dist = DistanceMap[Def]; in FindLastRefOrPartRef() local 314 if (Dist > LastPartDefDist) in FindLastRefOrPartRef() 315 LastPartDefDist = Dist; in FindLastRefOrPartRef() 317 unsigned Dist = DistanceMap[Use]; in FindLastRefOrPartRef() local 318 if (Dist > LastRefOrPartRefDist) { in FindLastRefOrPartRef() 319 LastRefOrPartRefDist = Dist; in FindLastRefOrPartRef() 361 unsigned Dist = DistanceMap[Def]; in HandlePhysRegKill() local [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | ExponentialBackoff.cpp | 20 std::uniform_int_distribution<uint64_t> Dist(MinWait.count(), in waitForNextAttempt() local 24 duration WaitDuration = std::min(duration(Dist(RandDev)), EndTime - Now); in waitForNextAttempt()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | BitTracker.h | 72 UseQueueType() : Uses(Dist) {} in UseQueueType() 92 Dist.clear(); in reset() 96 Cmp(DenseMap<const MachineInstr*,unsigned> &Map) : Dist(Map) {} in Cmp() 98 DenseMap<const MachineInstr*,unsigned> &Dist; member 101 DenseMap<const MachineInstr*,unsigned> Dist; member
|
| H A D | HexagonHardwareLoops.cpp | 784 int64_t Dist = EndV - StartV; in computeCount() local 785 if (Dist == 0) in computeCount() 788 bool Exact = (Dist % IVBump) == 0; in computeCount() 793 if ((Dist < 0) ^ (IVBump < 0)) in computeCount() 800 Dist = Dist > 0 ? Dist+1 : Dist-1; in computeCount() 806 if ((CmpLess && Dist < 0) || (CmpGreater && Dist > 0)) in computeCount() 810 int64_t Dist1 = (IVBump > 0) ? (Dist + (IVBump - 1)) / IVBump in computeCount() 811 : (-Dist + (-IVBump - 1)) / (-IVBump); in computeCount()
|
| H A D | HexagonISelDAGToDAGHVX.cpp | 1569 if (auto Dist = rotationDistance(SM, VecLen)) { in shuffs1() local 1570 OpRef Rotate = funnels(Va, Va, *Dist, Results); in shuffs1() 2042 std::optional<int> Dist; in rotationDistance() local 2047 if (Dist) { in rotationDistance() 2048 if ((I + *Dist) % static_cast<int>(WrapAt) != M) in rotationDistance() 2054 Dist = M - I; in rotationDistance() 2055 if (Dist < 0) in rotationDistance() 2056 Dist = *Dist + WrapAt; in rotationDistance() 2059 return Dist; in rotationDistance() 2080 if (auto Dist = rotationDistance(SM, 2 * VecLen)) { in contracting() local [all …]
|
| H A D | BitTracker.cpp | 777 auto F = Dist.find(MI); in operator ()() 778 if (F != Dist.end()) in operator ()() 783 Dist.insert(std::make_pair(MI, D)); in operator ()()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86OptimizeLEAs.cpp | 271 int64_t &AddrDispShift, int &Dist); 341 MachineInstr *&BestLEA, int64_t &AddrDispShift, int &Dist) { in chooseBestLEA() argument 383 Dist = DistTemp; in chooseBestLEA() 527 int Dist; in removeRedundantAddrCalc() local 528 if (!chooseBestLEA(Insns->second, MI, DefMI, AddrDispShift, Dist)) in removeRedundantAddrCalc() 537 if (Dist < 0) { in removeRedundantAddrCalc()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | BlockFrequencyInfoImpl.h | 444 Distribution &Dist); 453 bool addToDist(Distribution &Dist, const LoopData *OuterLoop, 482 Distribution &Dist); 497 void distributeIrrLoopHeaderMass(Distribution &Dist); 1251 Distribution Dist; 1275 Dist.addLocal(HeaderNode, HeaderWeightValue); 1294 Dist.addLocal(HeaderNode, MinWeight); 1296 distributeIrrLoopHeaderMass(Dist); 1666 Distribution Dist; 1669 if (!addLoopSuccessorsToDist(OuterLoop, *Loop, Dist)) [all …]
|
| H A D | LoopAccessAnalysis.h | 392 const SCEV *Dist; member 406 DepDistanceStrideAndSizeInfo(const SCEV *Dist, uint64_t MaxStride, in DepDistanceStrideAndSizeInfo() 410 : Dist(Dist), MaxStride(MaxStride), CommonStride(CommonStride), in DepDistanceStrideAndSizeInfo()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BPFMIPeephole.cpp | 478 int Dist; in adjustBranch() local 484 Dist = SoFarNumInsns[CondTargetBB] - CondTargetBB->size() - CurrNumInsns; in adjustBranch() 485 if (in16BitRange(Dist)) in adjustBranch() 563 Dist = SoFarNumInsns[CondTargetBB] - CondTargetBB->size() - CurrNumInsns; in adjustBranch() 564 if (!in16BitRange(Dist)) { in adjustBranch()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTTypeTraits.cpp | 81 unsigned Dist = 0; in isBaseOf() local 84 ++Dist; in isBaseOf() 87 *Distance = Dist; in isBaseOf()
|
| /freebsd/crypto/openssl/external/perl/Text-Template-1.56/ |
| H A D | MANIFEST | 1 # This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.012.
|
| H A D | Changes | 44 the Dist::Zilla generated LICENSE file. 47 with Dist::Zilla and avoids maintenance issue of updating the tests for
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | CodeLayout.cpp | 163 const uint64_t Dist = DstAddr - (SrcAddr + SrcSize); in extTSPScore() local 164 return jumpExtTSPScore(Dist, ForwardDistance, Count, in extTSPScore() 169 const uint64_t Dist = SrcAddr + SrcSize - DstAddr; in extTSPScore() local 170 return jumpExtTSPScore(Dist, BackwardDistance, Count, in extTSPScore() 1296 uint64_t Dist = SrcAddr <= DstAddr ? DstAddr - SrcAddr : SrcAddr - DstAddr; in distScore() local 1297 double D = Dist == 0 ? 0.1 : static_cast<double>(Dist); in distScore()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LoopLoadElimination.cpp | 127 auto *Dist = dyn_cast<SCEVConstant>( in isDependenceDistanceOfOne() local 129 if (!Dist) in isDependenceDistanceOfOne() 131 const APInt &Val = Dist->getAPInt(); in isDependenceDistanceOfOne()
|
| /freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
| H A D | Cuda.cpp | 189 Distro Dist(FS, llvm::Triple(llvm::sys::getProcessTriple())); in CudaInstallationDetector() local 190 if (Dist.IsDebian() || Dist.IsUbuntu()) in CudaInstallationDetector()
|
| /freebsd/sys/contrib/device-tree/src/arm64/freescale/ |
| H A D | imx8dxl.dtsi | 93 reg = <0x0 0x51a00000 0 0x10000>, /* GIC Dist */
|
| H A D | imx8qxp.dtsi | 160 reg = <0x0 0x51a00000 0 0x10000>, /* GIC Dist */
|
| /freebsd/sys/contrib/device-tree/src/arm64/amazon/ |
| H A D | alpine-v2.dtsi | 119 reg = <0x0 0xf0200000 0x0 0x10000>, /* GIC Dist */
|
| /freebsd/sys/contrib/device-tree/src/arm64/al/ |
| H A D | alpine-v2.dtsi | 118 reg = <0x0 0xf0200000 0x0 0x10000>, /* GIC Dist */
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | SLPVectorizer.cpp | 2240 std::optional<int64_t> Dist = getPointersDiff( in getShallowScore() local 2243 if (!Dist || *Dist == 0) { in getShallowScore() 2253 if (std::abs(*Dist) > NumLanes / 2) in getShallowScore() 2258 return (*Dist > 0) ? LookAheadHeuristics::ScoreConsecutiveLoads in getShallowScore() 2294 int Dist = Idx2 - Idx1; in getShallowScore() local 2297 if (std::abs(Dist) == 0) in getShallowScore() 2299 if (std::abs(Dist) > NumLanes / 2) in getShallowScore() 2301 return (Dist > 0) ? LookAheadHeuristics::ScoreConsecutiveExtracts in getShallowScore() 5628 const SCEV *Dist = SE.getMinusSCEV(PtrSCEVHighest, PtrSCEVLowest); in calculateRtStride() local 5629 if (isa<SCEVCouldNotCompute>(Dist)) in calculateRtStride() [all …]
|
| /freebsd/sys/contrib/device-tree/src/arm64/microchip/ |
| H A D | sparx5.dtsi | 116 reg = <0x6 0x00300000 0x10000>, /* GIC Dist */
|