Home
last modified time | relevance | path

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

1234

/freebsd-12-stable/contrib/llvm-project/clang/lib/Rewrite/
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()
109 bool DoInsertion(unsigned FileIndex, int Delta, InsertResult *InsertRes);
141 FullDelta = IR.LHS->getFullDelta()+IR.RHS->getFullDelta()+IR.Split.Delta; in DeltaTreeInteriorNode()
173 NewFullDelta += Values[i].Delta; in RecomputeFullDeltaLocally()
184 bool DeltaTreeNode::DoInsertion(unsigned FileIndex, int Delta, in DoInsertion() argument
187 FullDelta += Delta; in DoInsertion()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
DRegisterPressure.cpp962 RegPressureDelta &Delta, in computeExcessPressureDelta() argument
965 Delta.Excess = PressureChange(); in computeExcessPressureDelta()
986 Delta.Excess = PressureChange(i); in computeExcessPressureDelta()
987 Delta.Excess.setUnitInc(PDiff); in computeExcessPressureDelta()
1003 RegPressureDelta &Delta) { in computeMaxPressureDelta() argument
1004 Delta.CriticalMax = PressureChange(); in computeMaxPressureDelta()
1005 Delta.CurrentMax = PressureChange(); in computeMaxPressureDelta()
1014 if (!Delta.CriticalMax.isValid()) { in computeMaxPressureDelta()
1021 Delta.CriticalMax = PressureChange(i); in computeMaxPressureDelta()
1022 Delta.CriticalMax.setUnitInc(PDiff); in computeMaxPressureDelta()
[all …]
DMachineFunctionPass.cpp81 int64_t Delta = static_cast<int64_t>(CountAfter) - in runOnFunction() local
91 << "; Delta: " << NV("Delta", Delta); in runOnFunction()
DInterferenceCache.h113 void addRef(int Delta) { RefCount += Delta; } in addRef() argument
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/xray/
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 …]
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-12-stable/contrib/llvm-project/llvm/lib/Analysis/
DDependenceAnalysis.cpp991 const SCEV *Delta = SE->getMinusSCEV(X, Y); in isKnownPredicate() local
994 return Delta->isZero(); in isKnownPredicate()
996 return SE->isKnownNonZero(Delta); in isKnownPredicate()
998 return SE->isKnownNonNegative(Delta); in isKnownPredicate()
1000 return SE->isKnownNonPositive(Delta); in isKnownPredicate()
1002 return SE->isKnownPositive(Delta); in isKnownPredicate()
1004 return SE->isKnownNegative(Delta); in isKnownPredicate()
1160 const SCEV *Delta = SE->getMinusSCEV(SrcConst, DstConst); in strongSIVtest() local
1161 LLVM_DEBUG(dbgs() << "\t Delta = " << *Delta); in strongSIVtest()
1162 LLVM_DEBUG(dbgs() << ", " << *Delta->getType() << "\n"); in strongSIVtest()
[all …]
DLoopPass.cpp214 int64_t Delta = static_cast<int64_t>(NewSize) - in runOnFunction() local
216 emitInstrCountChangedRemark(P, M, Delta, InstrCount, in runOnFunction()
218 InstrCount = static_cast<int64_t>(InstrCount) + Delta; in runOnFunction()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
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-12-stable/contrib/llvm-project/llvm/lib/Support/
DDeltaAlgorithm.cpp44 DeltaAlgorithm::Delta(const changeset_ty &Changes, in Delta() function in DeltaAlgorithm
66 return Delta(Changes, SplitSets); in Delta()
79 Res = Delta(*it, Sets); in Search()
95 Res = Delta(Complement, ComplementSets); in Search()
113 return Delta(Changes, Sets); in Run()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/Core/
DReplacement.cpp369 : MergeSecond(MergeSecond), Delta(D), FilePath(R.getFilePath()), in MergedReplacement()
370 Offset(R.getOffset() + (MergeSecond ? 0 : Delta)), in MergedReplacement()
372 Delta += MergeSecond ? 0 : Text.size() - Length; in MergedReplacement()
381 unsigned REnd = R.getOffset() + Delta + R.getLength(); in merge()
388 StringRef Head = TextRef.substr(0, R.getOffset() + Delta - Offset); in merge()
391 Delta += R.getReplacementText().size() - R.getLength(); in merge()
411 return Offset + Text.size() < R.getOffset() + Delta; in endsBefore()
426 int Delta; member in __anonbd8d12a50211::MergedReplacement
451 int Delta = 0; in merge() local
462 FirstI->getOffset() < SecondI->getOffset() + Delta); in merge()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/XRay/
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-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
DJITLinkGeneric.h87 uint64_t Delta = (B.getAlignmentOffset() - Addr) % B.getAlignment(); in alignToBlock() local
88 return Addr + Delta; in alignToBlock()
94 uint64_t Delta = (B.getAlignmentOffset() - PAddr) % B.getAlignment(); in alignToBlock() local
95 return P + Delta; in alignToBlock()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
DX86InsertPrefetch.cpp48 int64_t Delta; member
211 int64_t Delta = PrefInfo.Delta; in runOnMachineFunction() local
231 Delta) in runOnMachineFunction()
238 CurrentOp, CurrentOp->getOffset() + Delta, CurrentOp->getSize())); in runOnMachineFunction()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
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-12-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/
DExecutorAddress.h106 ExecutorAddress &operator+=(const ExecutorAddrDiff Delta) {
107 Addr += Delta.getValue();
111 ExecutorAddress &operator-=(const ExecutorAddrDiff Delta) {
112 Addr -= Delta.getValue();
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/orc/
Dexecutor_address.h109 ExecutorAddress &operator+=(const ExecutorAddrDiff Delta) {
110 Addr += Delta.getValue();
114 ExecutorAddress &operator-=(const ExecutorAddrDiff Delta) {
115 Addr -= Delta.getValue();
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
DRegisterPressure.h480 RegPressureDelta &Delta,
486 RegPressureDelta &Delta,
495 RegPressureDelta &Delta,
503 RegPressureDelta &Delta, in getMaxPressureDelta() argument
507 return getMaxDownwardPressureDelta(MI, Delta, CriticalPSets, in getMaxPressureDelta()
511 return getMaxUpwardPressureDelta(MI, nullptr, Delta, CriticalPSets, in getMaxPressureDelta()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldELF.cpp844 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
845 writeInt16BE(LocalAddress, applyPPClo(Delta)); in resolvePPC64Relocation()
849 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
850 writeInt16BE(LocalAddress, applyPPChi(Delta)); in resolvePPC64Relocation()
854 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
855 writeInt16BE(LocalAddress, applyPPCha(Delta)); in resolvePPC64Relocation()
881 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
882 writeInt64BE(LocalAddress, Delta); in resolvePPC64Relocation()
900 int64_t Delta = (Value + Addend) - Section.getLoadAddressWithOffset(Offset); in resolveSystemZRelocation() local
901 assert(int16_t(Delta / 2) * 2 == Delta && "R_390_PC16DBL overflow"); in resolveSystemZRelocation()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
DHexagonMachineScheduler.cpp578 RegPressureDelta &Delta, in SchedulingCost() argument
667 ResCount -= (Delta.Excess.getUnitInc()*PriorityOne); in SchedulingCost()
669 ResCount -= (Delta.CriticalMax.getUnitInc()*PriorityOne); in SchedulingCost()
672 ResCount -= (Delta.CurrentMax.getUnitInc()*PriorityTwo); in SchedulingCost()
677 (Delta.Excess.getUnitInc() || Delta.CriticalMax.getUnitInc() || in SchedulingCost()
678 Delta.CurrentMax.getUnitInc())) in SchedulingCost()
681 dbgs() << "RP " << Delta.Excess.getUnitInc() << "/" in SchedulingCost()
682 << Delta.CriticalMax.getUnitInc() << "/" in SchedulingCost()
683 << Delta.CurrentMax.getUnitInc() << ")|"; in SchedulingCost()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
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-12-stable/contrib/llvm-project/llvm/lib/MC/
DMCPseudoProbe.cpp54 int64_t Delta; in emit() local
55 if (AddrDelta->evaluateAsAbsolute(Delta, MCOS->getAssemblerPtr())) { in emit()
56 MCOS->emitSLEB128IntValue(Delta); in emit()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/MSP430/
DMSP430InstrFormats.td111 let DecoderNamespace = "Delta";
117 let DecoderNamespace = "Delta";
174 let DecoderNamespace = "Delta";
183 let DecoderNamespace = "Delta";
238 let DecoderNamespace = "Delta";
244 let DecoderNamespace = "Delta";
301 let DecoderNamespace = "Delta";
310 let DecoderNamespace = "Delta";
/freebsd-12-stable/sys/contrib/dev/acpica/compiler/
Daslcompile.c803 UINT32 Delta; in CmDumpAllEvents() local
823 Delta = (UINT32) (Event->EndTime - Event->StartTime); in CmDumpAllEvents()
825 MicroSeconds = Delta / ACPI_100NSEC_PER_USEC; in CmDumpAllEvents()
826 MilliSeconds = Delta / ACPI_100NSEC_PER_MSEC; in CmDumpAllEvents()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
DDynamicTags.def160 MIPS_DYNAMIC_TAG(MIPS_DELTA_CLASS, 0x70000017) // Delta C++ class definition.
163 MIPS_DYNAMIC_TAG(MIPS_DELTA_INSTANCE, 0x70000019) // Delta C++ class instances.
166 MIPS_DYNAMIC_TAG(MIPS_DELTA_RELOC, 0x7000001B) // Delta relocations.
169 MIPS_DYNAMIC_TAG(MIPS_DELTA_SYM, 0x7000001D) // Delta symbols that Delta
173 MIPS_DYNAMIC_TAG(MIPS_DELTA_CLASSSYM, 0x70000020) // Delta symbols that hold

1234