Home
last modified time | relevance | path

Searched refs:Delta (Results 1 – 25 of 110) sorted by relevance

12345

/freebsd/contrib/llvm-project/clang/lib/Rewrite/
H A DDeltaTree.cpp43 int Delta; member
46 SourceDelta Delta; in get() local
47 Delta.FileLoc = Loc; in get()
48 Delta.Delta = D; in get()
49 return Delta; in get()
173 NewFullDelta += Values[i].Delta; in RecomputeFullDeltaLocally()
187 FullDelta += Delta; in DoInsertion()
201 Values[i].Delta += Delta; in DoInsertion()
368 FullDelta += IVal.Delta; in VerifyTree()
425 Result += Val.Delta; in getDeltaAt()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DDivisionByConstantInfo.cpp27 APInt Delta; in get() local
55 Delta = AD; in get()
56 Delta -= R2; in get()
57 } while (Q1.ult(Delta) || (Q1 == Delta && R1.isZero())); in get()
79 APInt Delta; in get() local
128 Delta = D; in get()
129 --Delta; in get()
130 Delta -= R2; in get()
132 (Q1.ult(Delta) || (Q1 == Delta && R1.isZero()))); in get()
H A DDeltaAlgorithm.cpp43 DeltaAlgorithm::Delta(const changeset_ty &Changes, in Delta() function in DeltaAlgorithm
64 return Delta(Changes, SplitSets); in Delta()
77 Res = Delta(*it, Sets); in Search()
93 Res = Delta(Complement, ComplementSets); in Search()
111 return Delta(Changes, Sets); in Run()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegisterPressure.cpp962 Delta.Excess = PressureChange(); in computeExcessPressureDelta()
983 Delta.Excess = PressureChange(i); in computeExcessPressureDelta()
984 Delta.Excess.setUnitInc(PDiff); in computeExcessPressureDelta()
1001 Delta.CriticalMax = PressureChange(); in computeMaxPressureDelta()
1002 Delta.CurrentMax = PressureChange(); in computeMaxPressureDelta()
1011 if (!Delta.CriticalMax.isValid()) { in computeMaxPressureDelta()
1122 if (Delta != Delta2) { in getMaxUpwardPressureDelta()
1126 if (Delta.Excess.isValid()) in getMaxUpwardPressureDelta()
1129 if (Delta.CriticalMax.isValid()) in getMaxUpwardPressureDelta()
1132 if (Delta.CurrentMax.isValid()) in getMaxUpwardPressureDelta()
[all …]
H A DVLIWMachineScheduler.cpp598 RegPressureDelta &Delta, in SchedulingCost() argument
687 ResCount -= (Delta.Excess.getUnitInc() * PriorityOne); in SchedulingCost()
689 ResCount -= (Delta.CriticalMax.getUnitInc() * PriorityOne); in SchedulingCost()
692 ResCount -= (Delta.CurrentMax.getUnitInc() * PriorityTwo); in SchedulingCost()
697 (Delta.Excess.getUnitInc() || Delta.CriticalMax.getUnitInc() || in SchedulingCost()
698 Delta.CurrentMax.getUnitInc())) in SchedulingCost()
701 dbgs() << "RP " << Delta.Excess.getUnitInc() << "/" in SchedulingCost()
702 << Delta.CriticalMax.getUnitInc() << "/" in SchedulingCost()
703 << Delta.CurrentMax.getUnitInc() << ")|"; in SchedulingCost()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A Daarch64.h500 int64_t Delta = E.getTarget().getAddress() - FixupAddress; in applyFixup() local
501 if (Delta & 0x3) in applyFixup()
504 if (Delta < -(1 << 20) || Delta > ((1 << 20) - 1)) in applyFixup()
516 int64_t Delta = E.getTarget().getAddress() + E.getAddend() - FixupAddress; in applyFixup() local
517 if (!isInt<21>(Delta)) in applyFixup()
519 auto UDelta = static_cast<uint32_t>(Delta); in applyFixup()
532 int64_t Delta = E.getTarget().getAddress() + E.getAddend() - FixupAddress; in applyFixup() local
533 if (Delta & 0x3) in applyFixup()
536 if (!isInt<16>(Delta)) in applyFixup()
550 if (Delta & 0x3) in applyFixup()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_fdr_controller.h261 auto Delta = TSC - LatestTSC; in functionEnter() local
265 mask(FuncId), Delta); in functionEnter()
287 auto Delta = TSC - LatestTSC; in functionTailExit() local
290 mask(FuncId), Delta); in functionTailExit()
300 auto Delta = TSC - LatestTSC; in functionEnterArg() local
307 mask(FuncId), Delta, Arg); in functionEnterArg()
325 auto Delta = TSC - LatestTSC; in functionExit() local
330 Delta); in functionExit()
340 auto Delta = TSC - LatestTSC; in customEvent() local
344 return W.writeCustomEvent(Delta, Event, EventSize); in customEvent()
[all …]
H A Dxray_fdr_log_writer.h129 bool writeFunction(FunctionRecordKind Kind, int32_t FuncId, int32_t Delta) {
134 R.TSCDelta = Delta;
140 int32_t Delta, uint64_t Arg) {
149 R.TSCDelta = Delta;
167 bool writeCustomEvent(int32_t Delta, const void *Event, int32_t EventSize) {
175 EventSize, Delta);
192 bool writeTypedEvent(int32_t Delta, uint16_t EventType, const void *Event,
198 EventSize, Delta, EventType);
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DLineTable.cpp25 int64_t Delta; member
27 DeltaInfo(int64_t D, uint32_t C) : Delta(D), Count(C) {} in DeltaInfo()
30 inline bool operator<(const DeltaInfo &LHS, int64_t Delta) { in operator <() argument
31 return LHS.Delta < Delta; in operator <()
146 if (Pos != End && Pos->Delta == LineDelta) in encode()
168 const int64_t FirstDelta = DeltaInfos[I].Delta; in encode()
172 auto LineRange = DeltaInfos[J].Delta - FirstDelta; in encode()
183 MinLineDelta = DeltaInfos[BestIndex].Delta; in encode()
184 MaxLineDelta = DeltaInfos[BestEndIndex].Delta; in encode()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp1079 return Delta->isZero(); in isKnownPredicate()
1254 SE->isKnownNonNegative(Delta) ? Delta : SE->getNegativeSCEV(Delta); in strongSIVtest()
1381 if (Delta->isZero()) { in weakCrossingSIVtest()
1401 Delta = SE->getNegativeSCEV(Delta); in weakCrossingSIVtest()
1407 SE->getSMaxExpr(SE->getZero(Delta->getType()), Delta), in weakCrossingSIVtest()
1514 R = Delta.srem(G); in findGCD()
1517 Q = Delta.sdiv(G); in findGCD()
1777 NewConstraint.setLine(SE->getZero(Delta->getType()), DstCoeff, Delta, in weakZeroSrcSIVtest()
1795 SE->isKnownNegative(ConstCoeff) ? SE->getNegativeSCEV(Delta) : Delta; in weakZeroSrcSIVtest()
1886 NewConstraint.setLine(SrcCoeff, SE->getZero(Delta->getType()), Delta, in weakZeroDstSIVtest()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/gpio/
H A Ddelta,tn48m-gpio.yaml7 title: Delta Networks TN48M CPLD GPIO controller
13 This module is part of the Delta TN48M multi-function device. For more
16 Delta TN48M has an onboard Lattice CPLD that is used as an GPIO expander.
/freebsd/contrib/llvm-project/clang/lib/Tooling/Core/
H A DReplacement.cpp370 : MergeSecond(MergeSecond), Delta(D), FilePath(R.getFilePath()), in MergedReplacement()
371 Offset(R.getOffset() + (MergeSecond ? 0 : Delta)), in MergedReplacement()
373 Delta += MergeSecond ? 0 : Text.size() - Length; in MergedReplacement()
382 unsigned REnd = R.getOffset() + Delta + R.getLength(); in merge()
389 StringRef Head = TextRef.substr(0, R.getOffset() + Delta - Offset); in merge()
392 Delta += R.getReplacementText().size() - R.getLength(); in merge()
412 return Offset + Text.size() < R.getOffset() + Delta; in endsBefore()
427 int Delta; member in __anon02852d550211::MergedReplacement
452 int Delta = 0; in merge() local
465 Delta); in merge()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/XRay/
H A DFDRRecords.h237 int32_t Delta = 0; variable
249 Size(S), Delta(D), Data(std::move(P)) {} in CustomEventRecordV5()
252 int32_t delta() const { return Delta; } in delta()
264 int32_t Delta = 0; variable
277 Size(S), Delta(D), Data(std::move(P)) {} in TypedEventRecord()
280 int32_t delta() const { return Delta; } in delta()
375 uint32_t Delta = 0; variable
384 : Record(RecordKind::RK_Function), Kind(K), FuncId(F), Delta(D) {} in FunctionRecord()
390 uint32_t delta() const { return Delta; } in delta()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InsertPrefetch.cpp50 int64_t Delta; member
219 int64_t Delta = PrefInfo.Delta; in runOnMachineFunction() local
239 Delta) in runOnMachineFunction()
246 CurrentOp, CurrentOp->getOffset() + Delta, CurrentOp->getSize())); in runOnMachineFunction()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
H A DReductionRules.h108 RawMatrix Delta(YLen, ZLen); in applyR2()
119 Delta[i][j] = Min; in applyR2()
132 YZEId = G.addEdge(YNId, ZNId, Delta); in applyR2()
136 G.updateEdgeCosts(YZEId, Delta + YZECosts); in applyR2()
138 G.updateEdgeCosts(YZEId, Delta.transpose() + YZECosts); in applyR2()
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFPreserveStaticOffset.cpp277 static GetElementPtrInst *reconstructGEP(CallInst *Call, int Delta) { in reconstructGEP() argument
279 Indices.append(Call->data_operands_begin() + 6 + Delta, in reconstructGEP()
281 Type *GEPPointeeType = Call->getParamElementType(Delta); in reconstructGEP()
283 GetElementPtrInst::Create(GEPPointeeType, Call->getOperand(Delta), in reconstructGEP()
285 GEP->setIsInBounds(getOperandAsUnsigned(Call, 5 + Delta)); in reconstructGEP()
291 int Delta) { in reconstructCommon() argument
292 Insn->setVolatile(getOperandAsUnsigned(Call, 1 + Delta)); in reconstructCommon()
293 Insn->setOrdering((AtomicOrdering)getOperandAsUnsigned(Call, 2 + Delta)); in reconstructCommon()
294 Insn->setSyncScopeID(getOperandAsUnsigned(Call, 3 + Delta)); in reconstructCommon()
295 unsigned AlignShiftValue = getOperandAsUnsigned(Call, 4 + Delta); in reconstructCommon()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRegisterPressure.h481 RegPressureDelta &Delta,
487 RegPressureDelta &Delta,
496 RegPressureDelta &Delta,
504 RegPressureDelta &Delta, in getMaxPressureDelta() argument
508 return getMaxDownwardPressureDelta(MI, Delta, CriticalPSets, in getMaxPressureDelta()
512 return getMaxUpwardPressureDelta(MI, nullptr, Delta, CriticalPSets, in getMaxPressureDelta()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DELF_riscv.cpp624 uint32_t Delta = 0; in relaxBlock() local
654 Delta += Remove; in relaxBlock()
655 if (Delta != Cur) { in relaxBlock()
656 Cur = Delta; in relaxBlock()
665 A.Sym->setOffset(A.Offset - Delta); in relaxBlock()
685 uint32_t Delta = 0; in finalizeBlockRelax() local
690 uint32_t Remove = Aux.RelocDeltas[I] - Delta; in finalizeBlockRelax()
691 Delta = Aux.RelocDeltas[I]; in finalizeBlockRelax()
738 Delta = 0; in finalizeBlockRelax()
741 E.setOffset(E.getOffset() - Delta); in finalizeBlockRelax()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeInlineSiteSymbol.cpp112 auto UpdateCodeOffset = [&](uint32_t Delta) { in getLineOffset() argument
116 CodeOffsetEnd = *CodeOffsetBase + Delta; in getLineOffset()
118 auto UpdateLineOffset = [&](int32_t Delta) { in getLineOffset() argument
119 LineOffset += Delta; in getLineOffset()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonMachineScheduler.cpp47 RegPressureDelta &Delta, in SchedulingCost() argument
50 ConvergingVLIWScheduler::SchedulingCost(Q, SU, Candidate, Delta, verbose); in SchedulingCost()
/freebsd/sys/contrib/device-tree/Bindings/reset/
H A Ddelta,tn48m-reset.yaml7 title: Delta Networks TN48M CPLD reset controller
13 This module is part of the Delta TN48M multi-function device. For more
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/
H A Dexecutor_address.h140 ExecutorAddr &operator+=(const ExecutorAddrDiff Delta) {
141 Addr += Delta;
145 ExecutorAddr &operator-=(const ExecutorAddrDiff Delta) {
146 Addr -= Delta;
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFX86_64.h50 void write32BitOffset(uint8_t *Target, int64_t Addend, uint64_t Delta) { in write32BitOffset() argument
51 uint64_t Result = Addend + Delta; in write32BitOffset()
102 uint64_t Delta = 4 + (RE.RelType - COFF::IMAGE_REL_AMD64_REL32); in resolveRelocation() local
103 Value -= FinalAddress + Delta; in resolveRelocation()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp885 writeInt16BE(LocalAddress, applyPPClo(Delta)); in resolvePPC64Relocation()
922 writeInt64BE(LocalAddress, Delta); in resolvePPC64Relocation()
941 assert(int16_t(Delta / 2) * 2 == Delta && "R_390_PC16DBL overflow"); in resolveSystemZRelocation()
942 writeInt16BE(LocalAddress, Delta / 2); in resolveSystemZRelocation()
948 assert(int32_t(Delta / 2) * 2 == Delta && "R_390_PC32DBL overflow"); in resolveSystemZRelocation()
949 writeInt32BE(LocalAddress, Delta / 2); in resolveSystemZRelocation()
954 assert(int16_t(Delta) == Delta && "R_390_PC16 overflow"); in resolveSystemZRelocation()
955 writeInt16BE(LocalAddress, Delta); in resolveSystemZRelocation()
960 assert(int32_t(Delta) == Delta && "R_390_PC32 overflow"); in resolveSystemZRelocation()
961 writeInt32BE(LocalAddress, Delta); in resolveSystemZRelocation()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Demangle/
H A DRustDemangle.cpp1137 auto Adapt = [&](size_t Delta, size_t NumPoints) { in decodePunycode() argument
1138 Delta /= Damp; in decodePunycode()
1139 Delta += Delta / NumPoints; in decodePunycode()
1143 while (Delta > (Base - TMin) * TMax / 2) { in decodePunycode()
1144 Delta /= Base - TMin; in decodePunycode()
1147 return K + (((Base - TMin + 1) * Delta) / (Delta + Skew)); in decodePunycode()

12345