| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | TwoAddressInstructionPass.cpp | 153 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() 592 Register RegA, Register RegB, unsigned Dist) { in convertInstTo3Addr() argument 627 DistanceMap.insert(std::make_pair(NewMI, Dist)); in convertInstTo3Addr() 1102 Dist)) { in tryInstructionCommute() 1432 DistanceMap[MI] = ++Dist; in processTiedPairs() 1557 unsigned Dist = 0; in runOnMachineFunction() local [all …]
|
| H A D | LiveVariables.cpp | 200 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 …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | BlockFrequencyInfoImpl.cpp | 129 Dist.normalize(); in DitheringDistributer() 130 RemWeight = Dist.Total; in DitheringDistributer() 341 Dist.addBackedge(Resolved, Weight); in addToDist() 347 Dist.addExit(Resolved, Weight); in addToDist() 370 Dist.addLocal(Resolved, Weight); in addToDist() 454 DitheringDistributer D(Dist, Mass); in distributeMass() 456 for (const Weight &W : Dist.Weights) { in distributeMass() 846 Distribution Dist; in adjustLoopHeaderMass() local 861 DitheringDistributer D(Dist, LoopMass); in adjustLoopHeaderMass() 865 for (const Weight &W : Dist.Weights) { in adjustLoopHeaderMass() [all …]
|
| H A D | LoopAccessAnalysis.cpp | 1196 int Dist = Val / Size; in getPointersDiff() local 1200 if (!StrictCheck || Dist * Size == Val) in getPointersDiff() 1201 return Dist; in getPointersDiff() 1406 const SCEV *CastedDist = &Dist; in isSafeDependenceDistance() 1408 uint64_t DistTypeSize = DL.getTypeAllocSize(Dist.getType()); in isSafeDependenceDistance() 1415 CastedProduct = SE.getZeroExtendExpr(Product, Dist.getType()); in isSafeDependenceDistance() 1417 CastedDist = SE.getNoopOrSignExtend(&Dist, Product->getType()); in isSafeDependenceDistance() 1507 const SCEV *Dist = PSE.getSE()->getMinusSCEV(Sink, Src); in isDependent() local 1512 << *InstMap[BIdx] << ": " << *Dist << "\n"); in isDependent() 1527 const SCEVConstant *C = dyn_cast<SCEVConstant>(Dist); in isDependent() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | BitTracker.h | 75 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 D | HexagonHardwareLoops.cpp | 782 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 D | BitTracker.cpp | 782 auto F = Dist.find(MI); in operator ()() 783 if (F != Dist.end()) in operator ()() 788 Dist.insert(std::make_pair(MI, D)); in operator ()()
|
| H A D | HexagonLoopIdiomRecognition.cpp | 2227 Value *Dist = Builder.CreateSub(LowA, HighA); in processCopyingStore() local 2228 Value *CmpD = Builder.CreateICmpSLE(NumBytes, Dist); in processCopyingStore()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86OptimizeLEAs.cpp | 272 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()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTTypeTraits.cpp | 56 unsigned Dist = 0; in isBaseOf() local 59 ++Dist; in isBaseOf() 62 *Distance = Dist; in isBaseOf()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | BlockFrequencyInfoImpl.h | 446 Distribution &Dist); 484 Distribution &Dist); 499 void distributeIrrLoopHeaderMass(Distribution &Dist); 1263 Distribution Dist; 1287 Dist.addLocal(HeaderNode, HeaderWeightValue); 1306 Dist.addLocal(HeaderNode, MinWeight); 1308 distributeIrrLoopHeaderMass(Dist); 1704 Distribution Dist; 1707 if (!addLoopSuccessorsToDist(OuterLoop, *Loop, Dist)) 1716 Dist, OuterLoop, Node, getNode(*SI), [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
| H A D | Cuda.cpp | 172 Distro Dist(FS, llvm::Triple(llvm::sys::getProcessTriple())); in CudaInstallationDetector() local 173 if (Dist.IsDebian() || Dist.IsUbuntu()) in CudaInstallationDetector()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LoopLoadElimination.cpp | 124 auto *Dist = cast<SCEVConstant>( in isDependenceDistanceOfOne() local 126 const APInt &Val = Dist->getAPInt(); in isDependenceDistanceOfOne()
|
| /freebsd-13.1/sys/contrib/device-tree/src/arm64/microchip/ |
| H A D | sparx5.dtsi | 112 reg = <0x6 0x00300000 0x10000>, /* GIC Dist */
|
| /freebsd-13.1/sys/contrib/device-tree/src/arm64/amazon/ |
| H A D | alpine-v2.dtsi | 118 reg = <0x0 0xf0200000 0x0 0x10000>, /* GIC Dist */
|
| /freebsd-13.1/sys/contrib/device-tree/src/arm64/al/ |
| H A D | alpine-v2.dtsi | 118 reg = <0x0 0xf0200000 0x0 0x10000>, /* GIC Dist */
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SILoadStoreOptimizer.cpp | 1926 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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | LoadStoreVectorizer.cpp | 377 const SCEV *Dist = SE.getMinusSCEV(PtrSCEVB, PtrSCEVA); in areConsecutivePointers() local 378 if (C == Dist) in areConsecutivePointers()
|
| /freebsd-13.1/sys/contrib/device-tree/src/arm64/freescale/ |
| H A D | imx8qxp.dtsi | 124 reg = <0x0 0x51a00000 0 0x10000>, /* GIC Dist */
|
| H A D | fsl-ls1088a.dtsi | 115 reg = <0x0 0x06000000 0 0x10000>, /* GIC Dist */
|
| H A D | fsl-ls208xa.dtsi | 50 reg = <0x0 0x06000000 0 0x10000>, /* GIC Dist */
|
| H A D | imx8mm.dtsi | 958 reg = <0x38800000 0x10000>, /* GIC Dist */
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMBaseInstrInfo.cpp | 4089 unsigned &DefIdx, unsigned &Dist) { in getBundledDefMI() argument 4090 Dist = 0; in getBundledDefMI() 4102 ++Dist; in getBundledDefMI() 4112 unsigned &UseIdx, unsigned &Dist) { in getBundledUseMI() argument 4113 Dist = 0; in getBundledUseMI() 4126 ++Dist; in getBundledUseMI() 4131 Dist = 0; in getBundledUseMI()
|
| /freebsd-13.1/sys/contrib/zlib/doc/ |
| H A D | rfc1951.txt | 642 Code Bits Dist Code Bits Dist Code Bits Distance
|
| /freebsd-13.1/sys/contrib/device-tree/src/arm64/apm/ |
| H A D | apm-shadowcat.dtsi | 120 reg = <0x0 0x78090000 0x0 0x10000>, /* GIC Dist */
|