Home
last modified time | relevance | path

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

12

/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DTwoAddressInstructionPass.cpp153 unsigned Dist);
247 unsigned LastUse = Dist; in noUseAfterLastDef()
261 return !(LastUse > LastDef && LastUse < Dist); in noUseAfterLastDef()
500 if (!noUseAfterLastDef(RegC, Dist, LastDefC)) in isProfitableToCommute()
506 if (!noUseAfterLastDef(RegB, Dist, LastDefB)) in isProfitableToCommute()
587 Register RegA, Register RegB, unsigned Dist) { in convertInstTo3Addr() argument
622 DistanceMap.insert(std::make_pair(NewMI, Dist)); in convertInstTo3Addr()
1097 Dist)) { in tryInstructionCommute()
1427 DistanceMap[MI] = ++Dist; in processTiedPairs()
1552 unsigned Dist = 0; in runOnMachineFunction() local
[all …]
H A DLiveVariables.cpp200 unsigned Dist = DistanceMap[Def]; in FindLastPartialDef() local
201 if (Dist > LastDefDist) { in FindLastPartialDef()
204 LastDefDist = Dist; in FindLastPartialDef()
294 unsigned Dist = DistanceMap[Def]; in FindLastRefOrPartRef() local
295 if (Dist > LastPartDefDist) in FindLastRefOrPartRef()
296 LastPartDefDist = Dist; in FindLastRefOrPartRef()
300 LastRefOrPartRefDist = Dist; in FindLastRefOrPartRef()
344 if (Dist > LastPartDefDist) { in HandlePhysRegKill()
345 LastPartDefDist = Dist; in HandlePhysRegKill()
356 LastRefOrPartRefDist = Dist; in HandlePhysRegKill()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp115 Dist.normalize(); in DitheringDistributer()
116 RemWeight = Dist.Total; in DitheringDistributer()
327 Dist.addBackedge(Resolved, Weight); in addToDist()
333 Dist.addExit(Resolved, Weight); in addToDist()
356 Dist.addLocal(Resolved, Weight); in addToDist()
440 DitheringDistributer D(Dist, Mass); in distributeMass()
442 for (const Weight &W : Dist.Weights) { in distributeMass()
832 Distribution Dist; in adjustLoopHeaderMass() local
847 DitheringDistributer D(Dist, LoopMass); in adjustLoopHeaderMass()
851 for (const Weight &W : Dist.Weights) { in adjustLoopHeaderMass()
[all …]
H A DLoopAccessAnalysis.cpp1179 int Dist = Val / Size; in getPointersDiff() local
1183 if (!StrictCheck || Dist * Size == Val) in getPointersDiff()
1184 return Dist; in getPointersDiff()
1363 const SCEV &Dist, uint64_t Stride, in isSafeDependenceDistance() argument
1387 const SCEV *CastedDist = &Dist; in isSafeDependenceDistance()
1389 uint64_t DistTypeSize = DL.getTypeAllocSize(Dist.getType()); in isSafeDependenceDistance()
1396 CastedProduct = SE.getZeroExtendExpr(Product, Dist.getType()); in isSafeDependenceDistance()
1398 CastedDist = SE.getNoopOrSignExtend(&Dist, Product->getType()); in isSafeDependenceDistance()
1488 const SCEV *Dist = PSE.getSE()->getMinusSCEV(Sink, Src); in isDependent() local
1493 << *InstMap[BIdx] << ": " << *Dist << "\n"); in isDependent()
[all …]
/netbsd/external/apache2/llvm/dist/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.cpp782 int64_t Dist = EndV - StartV; in computeCount() local
783 if (Dist == 0) in computeCount()
786 bool Exact = (Dist % IVBump) == 0; in computeCount()
791 if ((Dist < 0) ^ (IVBump < 0)) in computeCount()
798 Dist = Dist > 0 ? Dist+1 : Dist-1; in computeCount()
804 if ((CmpLess && Dist < 0) || (CmpGreater && Dist > 0)) in computeCount()
808 int64_t Dist1 = (IVBump > 0) ? (Dist + (IVBump - 1)) / IVBump in computeCount()
809 : (-Dist + (-IVBump - 1)) / (-IVBump); in computeCount()
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 ()()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h440 Distribution &Dist);
484 Distribution &Dist);
499 void distributeIrrLoopHeaderMass(Distribution &Dist);
1220 Distribution Dist;
1244 Dist.addLocal(HeaderNode, HeaderWeightValue);
1263 Dist.addLocal(HeaderNode, MinWeight);
1265 distributeIrrLoopHeaderMass(Dist);
1373 Distribution Dist;
1376 if (!addLoopSuccessorsToDist(OuterLoop, *Loop, Dist))
1385 Dist, OuterLoop, Node, getNode(*SI),
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86OptimizeLEAs.cpp272 int64_t &AddrDispShift, int &Dist);
343 MachineInstr *&BestLEA, int64_t &AddrDispShift, int &Dist) { in chooseBestLEA() argument
385 Dist = DistTemp; in chooseBestLEA()
531 int Dist; in removeRedundantAddrCalc() local
532 if (!chooseBestLEA(Insns->second, MI, DefMI, AddrDispShift, Dist)) in removeRedundantAddrCalc()
541 if (Dist < 0) { in removeRedundantAddrCalc()
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DASTTypeTraits.cpp56 unsigned Dist = 0; in isBaseOf() local
59 ++Dist; in isBaseOf()
62 *Distance = Dist; in isBaseOf()
/netbsd/crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/
H A DMANIFEST1 # This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.012.
H A DMETA.yml19 generated_by: 'Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010'
H A DChanges44 the Dist::Zilla generated LICENSE file.
47 with Dist::Zilla and avoids maintenance issue of updating the tests for
/netbsd/external/apache2/llvm/dist/llvm/tools/verify-uselistorder/
H A Dverify-uselistorder.cpp406 std::uniform_int_distribution<short> Dist(10, 99); in shuffleValueUseLists() local
412 auto I = Dist(Gen); in shuffleValueUseLists()
/netbsd/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
H A DCuda.cpp172 Distro Dist(FS, llvm::Triple(llvm::sys::getProcessTriple())); in CudaInstallationDetector() local
173 if (Dist.IsDebian() || Dist.IsUbuntu()) in CudaInstallationDetector()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLoopLoadElimination.cpp125 auto *Dist = cast<SCEVConstant>( in isDependenceDistanceOfOne() local
127 const APInt &Val = Dist->getAPInt(); in isDependenceDistanceOfOne()
/netbsd/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/freescale/
H A Dimx8qm.dtsi114 reg = <0x0 0x51a00000 0 0x10000>, /* GIC Dist */
H A Dimx8qxp.dtsi125 reg = <0x0 0x51a00000 0 0x10000>, /* GIC Dist */
/netbsd/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/amazon/
H A Dalpine-v2.dtsi118 reg = <0x0 0xf0200000 0x0 0x10000>, /* GIC Dist */
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DSILoadStoreOptimizer.cpp1926 int64_t Dist = MAddr.Offset - MAddrNext.Offset; in promoteConstantOffsetToImm() local
1929 AM.BaseOffs = Dist; in promoteConstantOffsetToImm()
1931 (uint32_t)std::abs(Dist) > MaxDist) { in promoteConstantOffsetToImm()
1932 MaxDist = std::abs(Dist); in promoteConstantOffsetToImm()
/netbsd/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/microchip/
H A Dsparx5.dtsi114 reg = <0x6 0x00300000 0x10000>, /* GIC Dist */
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp377 const SCEV *Dist = SE.getMinusSCEV(PtrSCEVB, PtrSCEVA); in areConsecutivePointers() local
378 if (C == Dist) in areConsecutivePointers()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.cpp4099 unsigned &DefIdx, unsigned &Dist) { in getBundledDefMI() argument
4100 Dist = 0; in getBundledDefMI()
4112 ++Dist; in getBundledDefMI()
4122 unsigned &UseIdx, unsigned &Dist) { in getBundledUseMI() argument
4123 Dist = 0; in getBundledUseMI()
4136 ++Dist; in getBundledUseMI()
4141 Dist = 0; in getBundledUseMI()
/netbsd/external/gpl3/gdb/dist/zlib/doc/
H A Drfc1951.txt642 Code Bits Dist Code Bits Dist Code Bits Distance
/netbsd/external/gpl3/binutils/dist/zlib/doc/
H A Drfc1951.txt642 Code Bits Dist Code Bits Dist Code Bits Distance

12