Home
last modified time | relevance | path

Searched refs:Dist (Results 1 – 25 of 48) sorted by relevance

12

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DTwoAddressInstructionPass.cpp123 bool noUseAfterLastDef(Register Reg, unsigned Dist, unsigned &LastDef);
126 MachineInstr *MI, unsigned Dist);
129 unsigned RegBIdx, unsigned RegCIdx, unsigned Dist);
135 Register RegB, unsigned &Dist);
137 bool isDefTooClose(Register Reg, unsigned Dist, MachineInstr *MI);
147 unsigned &Dist, bool shouldOnlyCommute);
153 unsigned Dist);
162 void processTiedPairs(MachineInstr *MI, TiedPairList&, unsigned &Dist);
245 bool TwoAddressInstructionPass::noUseAfterLastDef(Register Reg, unsigned Dist, in noUseAfterLastDef() argument
248 unsigned LastUse = Dist; in noUseAfterLastDef()
[all …]
H A DLiveVariables.cpp199 unsigned Dist = DistanceMap[Def]; in FindLastPartialDef() local
200 if (Dist > LastDefDist) { in FindLastPartialDef()
203 LastDefDist = Dist; in FindLastPartialDef()
293 unsigned Dist = DistanceMap[Def]; in FindLastRefOrPartRef() local
294 if (Dist > LastPartDefDist) in FindLastRefOrPartRef()
295 LastPartDefDist = Dist; in FindLastRefOrPartRef()
297 unsigned Dist = DistanceMap[Use]; in FindLastRefOrPartRef() local
298 if (Dist > LastRefOrPartRefDist) { in FindLastRefOrPartRef()
299 LastRefOrPartRefDist = Dist; in FindLastRefOrPartRef()
342 unsigned Dist = DistanceMap[Def]; in HandlePhysRegKill() local
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp119 DitheringDistributer(Distribution &Dist, const BlockMass &Mass);
126 DitheringDistributer::DitheringDistributer(Distribution &Dist, in DitheringDistributer() argument
128 Dist.normalize(); in DitheringDistributer()
129 RemWeight = Dist.Total; in DitheringDistributer()
311 bool BlockFrequencyInfoImplBase::addToDist(Distribution &Dist, in addToDist() argument
340 Dist.addBackedge(Resolved, Weight); in addToDist()
346 Dist.addExit(Resolved, Weight); in addToDist()
369 Dist.addLocal(Resolved, Weight); in addToDist()
374 const LoopData *OuterLoop, LoopData &Loop, Distribution &Dist) { in addLoopSuccessorsToDist() argument
377 if (!addToDist(Dist, OuterLoop, Loop.getHeader(), I.first, in addLoopSuccessorsToDist()
[all …]
H A DLoopAccessAnalysis.cpp1538 int Dist = Val / Size; in getPointersDiff() local
1542 if (!StrictCheck || Dist * Size == Val) in getPointersDiff()
1543 return Dist; in getPointersDiff()
1741 const SCEV &Dist, uint64_t Stride, in isSafeDependenceDistance() argument
1765 const SCEV *CastedDist = &Dist; in isSafeDependenceDistance()
1767 uint64_t DistTypeSizeBits = DL.getTypeSizeInBits(Dist.getType()); in isSafeDependenceDistance()
1774 CastedProduct = SE.getZeroExtendExpr(Product, Dist.getType()); in isSafeDependenceDistance()
1776 CastedDist = SE.getNoopOrSignExtend(&Dist, Product->getType()); in isSafeDependenceDistance()
1870 const SCEV *Dist = SE.getMinusSCEV(Sink, Src); in isDependent() local
1875 << *InstMap[BIdx] << ": " << *Dist << "\n"); in isDependent()
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta/t/
H A Dprereqs-merge.t48 'Dist::Mothra' => '1.230',
83 'Dist::Mothra' => '1.230',
H A Dmerge.t20 bugtracker => { web => 'https://rt.cpan.org/Dist/Display.html?Foo-Bar' },
77 bugtracker => { web => 'https://rt.cpan.org/Dist/Display.html?Foo-Bar' },
115 bugtracker => { web => 'https://rt.cpan.org/Dist/Display.html?Foo-Bar' },
/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/
H A DBitTracker.h75 UseQueueType() : Uses(Dist) {} in UseQueueType()
95 Dist.clear(); in reset()
99 Cmp(DenseMap<const MachineInstr*,unsigned> &Map) : Dist(Map) {} in Cmp()
101 DenseMap<const MachineInstr*,unsigned> &Dist; member
105 DenseMap<const MachineInstr*,unsigned> Dist; member
H A DHexagonHardwareLoops.cpp786 int64_t Dist = EndV - StartV; in computeCount() local
787 if (Dist == 0) in computeCount()
790 bool Exact = (Dist % IVBump) == 0; in computeCount()
795 if ((Dist < 0) ^ (IVBump < 0)) in computeCount()
802 Dist = Dist > 0 ? Dist+1 : Dist-1; in computeCount()
808 if ((CmpLess && Dist < 0) || (CmpGreater && Dist > 0)) in computeCount()
812 int64_t Dist1 = (IVBump > 0) ? (Dist + (IVBump - 1)) / IVBump in computeCount()
813 : (-Dist + (-IVBump - 1)) / (-IVBump); in computeCount()
H A DHexagonISelDAGToDAGHVX.cpp1576 if (auto Dist = rotationDistance(SM, VecLen)) { in shuffs1() local
1577 OpRef Rotate = funnels(Va, Va, *Dist, Results); in shuffs1()
2021 std::optional<int> Dist; in rotationDistance() local
2026 if (Dist) { in rotationDistance()
2027 if ((I + *Dist) % static_cast<int>(WrapAt) != M) in rotationDistance()
2033 Dist = M - I; in rotationDistance()
2034 if (Dist < 0) in rotationDistance()
2035 Dist = *Dist + WrapAt; in rotationDistance()
2038 return Dist; in rotationDistance()
2059 if (auto Dist = rotationDistance(SM, 2 * VecLen)) { in contracting() local
[all …]
H A DBitTracker.cpp782 auto F = Dist.find(MI); in operator ()()
783 if (F != Dist.end()) in operator ()()
788 Dist.insert(std::make_pair(MI, D)); in operator ()()
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86OptimizeLEAs.cpp271 int64_t &AddrDispShift, int &Dist);
342 MachineInstr *&BestLEA, int64_t &AddrDispShift, int &Dist) { in chooseBestLEA() argument
384 Dist = DistTemp; in chooseBestLEA()
528 int Dist; in removeRedundantAddrCalc() local
529 if (!chooseBestLEA(Insns->second, MI, DefMI, AddrDispShift, Dist)) in removeRedundantAddrCalc()
538 if (Dist < 0) { in removeRedundantAddrCalc()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DASTTypeTraits.cpp66 unsigned Dist = 0; in isBaseOf() local
69 ++Dist; in isBaseOf()
72 *Distance = Dist; in isBaseOf()
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h446 Distribution &Dist);
455 bool addToDist(Distribution &Dist, const LoopData *OuterLoop,
484 Distribution &Dist);
499 void distributeIrrLoopHeaderMass(Distribution &Dist);
1263 Distribution Dist;
1287 Dist.addLocal(HeaderNode, HeaderWeightValue);
1306 Dist.addLocal(HeaderNode, MinWeight);
1308 distributeIrrLoopHeaderMass(Dist);
1699 Distribution Dist;
1702 if (!addLoopSuccessorsToDist(OuterLoop, *Loop, Dist))
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta/corpus/
H A Dyaml.meta9 generated_by: 'Dist::Zilla version 2.100991'
H A Dbareyaml.meta8 generated_by: 'Dist::Zilla version 2.100991'
H A Djson.meta12 "generated_by" : "Dist::Zilla version 2.100991",
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DCodeLayout.cpp138 const uint64_t Dist = DstAddr - (SrcAddr + SrcSize); in extTSPScore() local
139 return jumpExtTSPScore(Dist, ForwardDistance, Count, in extTSPScore()
144 const uint64_t Dist = SrcAddr + SrcSize - DstAddr; in extTSPScore() local
145 return jumpExtTSPScore(Dist, BackwardDistance, Count, in extTSPScore()
/openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/
H A DTutorial.pod209 L<Dist::Milla::Tutorial>, L<Dist::Zilla::Starter>
/openbsd-src/gnu/llvm/llvm/tools/verify-uselistorder/
H A Dverify-uselistorder.cpp403 std::uniform_int_distribution<short> Dist(10, 99); in shuffleValueUseLists() local
409 auto I = Dist(Gen); in shuffleValueUseLists()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DLoopLoadElimination.cpp123 auto *Dist = cast<SCEVConstant>( in isDependenceDistanceOfOne() local
125 const APInt &Val = Dist->getAPInt(); in isDependenceDistanceOfOne()
/openbsd-src/gnu/llvm/clang/lib/Driver/ToolChains/
H A DAMDGPU.cpp312 Distro Dist(D.getVFS(), llvm::Triple(llvm::sys::getProcessTriple())); in getInstallationPathCandidates() local
313 if (Dist.IsDebian() || Dist.IsRedhat()) { in getInstallationPathCandidates()
H A DCuda.cpp175 Distro Dist(FS, llvm::Triple(llvm::sys::getProcessTriple())); in CudaInstallationDetector() local
176 if (Dist.IsDebian() || Dist.IsUbuntu()) in CudaInstallationDetector()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp379 const SCEV *Dist = SE.getMinusSCEV(PtrSCEVB, PtrSCEVA); in areConsecutivePointers() local
380 if (C == Dist) in areConsecutivePointers()
/openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/
H A Dmetafile_data.t410 … bugtracker => { web => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker' },
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DSILoadStoreOptimizer.cpp2172 int64_t Dist = MAddr.Offset - MAddrNext.Offset; in promoteConstantOffsetToImm() local
2175 AM.BaseOffs = Dist; in promoteConstantOffsetToImm()
2177 (uint32_t)std::abs(Dist) > MaxDist) { in promoteConstantOffsetToImm()
2178 MaxDist = std::abs(Dist); in promoteConstantOffsetToImm()

12