Home
last modified time | relevance | path

Searched refs:Frames (Results 1 – 25 of 31) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugFrameDataSubsection.cpp28 if (auto EC = Reader.readArray(Frames, Count)) in initialize()
39 uint32_t Size = sizeof(FrameData) * Frames.size(); in calculateSerializedSize()
51 std::vector<FrameData> SortedFrames(Frames.begin(), Frames.end()); in commit()
61 Frames.push_back(Frame); in addFrameData()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugFrameDataSubsection.h36 FixedStreamArray<FrameData>::Iterator begin() const { return Frames.begin(); } in begin()
37 FixedStreamArray<FrameData>::Iterator end() const { return Frames.end(); } in end()
43 FixedStreamArray<FrameData> Frames; variable
59 void setFrames(ArrayRef<FrameData> Frames);
63 std::vector<FrameData> Frames; variable
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DMemProfRadixTree.h78 std::vector<Frame> Frames; in operator() local
85 Frames.reserve(CS.size()); in operator()
87 Frames.push_back(FrameIdToFrame(Id)); in operator()
89 return Frames; in operator()
121 std::vector<Frame> Frames; in operator() local
128 Frames.reserve(NumFrames); in operator()
141 Frames.push_back(FrameIdToFrame(Elem)); in operator()
145 return Frames; in operator()
221 : FrameIdConv(MemProfData.Frames), in IndexedCallstackIdConverter()
233 FrameIdConverter<decltype(IndexedMemProfData::Frames)> FrameIdConv;
H A DMemProfYAML.h182 : Frames(CS.Frames) {
191 CS.Frames = Frames;
201 decltype(memprof::CallSiteInfo::Frames) Frames;
211 Io.mapRequired("Frames", Keys->Frames);
H A DMemProf.h499 std::vector<Frame> Frames;
505 CallSiteInfo(std::vector<Frame> Frames) : Frames(std::move(Frames)) {}
506 CallSiteInfo(std::vector<Frame> Frames,
508 : Frames(std::move(Frames)), CalleeGuids(std::move(CalleeGuids)) {}
511 return Frames == Other.Frames && CalleeGuids == Other.CalleeGuids;
541 for (const Frame &F : CS.Frames) {
H A DIndexedMemProfData.h37 llvm::MapVector<FrameId, Frame> Frames; member
44 Frames.try_emplace(Id, F); in addFrame()
H A DMemProfReader.h93 auto It = MemProfData.Frames.find(Id); in idToFrame()
94 assert(It != MemProfData.Frames.end() && "Id not found in map."); in idToFrame()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/
H A DDIContext.h95 SmallVector<DILineInfo, 4> Frames; variable
103 assert(Index < Frames.size()); in getFrame()
104 return Frames[Index]; in getFrame()
108 assert(Index < Frames.size()); in getMutableFrame()
109 return &Frames[Index]; in getMutableFrame()
112 uint32_t getNumberOfFrames() const { return Frames.size(); } in getNumberOfFrames()
114 void addFrame(const DILineInfo &Frame) { Frames.push_back(Frame); } in addFrame()
116 void resize(unsigned i) { Frames.resize(i); } in resize()
/freebsd/contrib/llvm-project/llvm/lib/DWARFCFIChecker/
H A DDWARFCFIFunctionFrameStreamer.cpp29 auto Frames = getDwarfFrameInfos(); in updateReceiver() local
30 assert(FrameIndices.back() < Frames.size()); in updateReceiver()
33 Frames[FrameIndices.back()].Instructions.size(); in updateReceiver()
36 const MCDwarfFrameInfo *LastFrame = &Frames[FrameIndices.back()]; in updateReceiver()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemProfUse.cpp321 UndriftCallStack(CS.Frames); in undriftMemProfRecord()
439 ArrayRef<Frame> Frames; in readMemprof() member
448 return Frames.data() == Other.Frames.data() && in readMemprof()
449 Frames.size() == Other.Frames.size(); in readMemprof()
455 return computeFullStackId(Entry.Frames); in readMemprof()
477 for (auto &StackFrame : CS.Frames) { in readMemprof()
479 ArrayRef<Frame> FrameSlice = ArrayRef<Frame>(CS.Frames).drop_front(Idx++); in readMemprof()
488 assert(Idx <= CS.Frames.size() && CS.Frames[Idx - 1].Function == FuncGUID); in readMemprof()
629 if (stackFrameIncludesInlinedCallStack(CallSiteEntry.Frames, in readMemprof()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeFunctionSymbol.cpp111 std::vector<SymIndexId> Frames; in findInlineFramesByVA() local
128 Frames.insert(Frames.begin(), Id); in findInlineFramesByVA()
146 return std::make_unique<NativeEnumSymbols>(Session, std::move(Frames)); in findInlineFramesByVA()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBContext.cpp111 auto Frames = ParentFunc->findInlineFramesByVA(Address.Address); in getInliningInfoForAddress() local
112 if (!Frames || Frames->getChildCount() == 0) { in getInliningInfoForAddress()
117 while (auto Frame = Frames->getNext()) { in getInliningInfoForAddress()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp255 auto [Iter, Inserted] = MemProfData.Frames.insert({Id, Frame}); in addMemProfFrame()
288 if (Incoming.Frames.empty() && Incoming.CallStacks.empty() && in addMemProfData()
293 assert(!Incoming.Frames.empty() && !Incoming.CallStacks.empty() && in addMemProfData()
296 if (MemProfData.Frames.empty()) in addMemProfData()
297 MemProfData.Frames = std::move(Incoming.Frames); in addMemProfData()
299 for (const auto &[Id, F] : Incoming.Frames) in addMemProfData()
404 MemProfData.Frames.reserve(IPW.MemProfData.Frames.size()); in mergeRecordsFromWriter()
405 for (auto &[FrameId, Frame] : IPW.MemProfData.Frames) { in mergeRecordsFromWriter()
H A DMemProfReader.cpp493 const SmallVector<FrameId> &Frames = SymbolizedFrame[Address]; in mapRawProfileToRecords() local
495 assert(!idToFrame(Frames.back()).IsInlineFrame && in mapRawProfileToRecords()
501 for (size_t J = 0; J < Frames.size(); J++) { in mapRawProfileToRecords()
508 const GlobalValue::GUID Guid = idToFrame(Frames[J]).Function; in mapRawProfileToRecords()
509 PerFunctionCallSites[Guid].insert(&Frames); in mapRawProfileToRecords()
513 Callstack.append(Frames.begin(), Frames.end()); in mapRawProfileToRecords()
827 CallStackId CSId = AddCallStack(CallSite.Frames); in parse()
H A DIndexedMemProfData.cpp205 uint64_t FrameTableOffset = writeMemProfFrames(OS, MemProfData.Frames); in writeMemProfV2()
247 assert(MemProfData.Frames.size() == FrameHistogram.size()); in writeMemProfRadixTreeBased()
250 writeMemProfFrameArray(OS, MemProfData.Frames, FrameHistogram); in writeMemProfRadixTreeBased()
H A DMemProf.cpp337 std::vector<Frame> Frames = Callback(CS.CSId); in toMemProfRecord() local
338 Record.CallSites.emplace_back(std::move(Frames), CS.CalleeGuids); in toMemProfRecord()
H A DSampleProfWriter.cpp400 auto Frames = Context.getContextFrames(); in writeCSNameTableSection() local
401 encodeULEB128(Frames.size(), OS); in writeCSNameTableSection()
402 for (auto &Callsite : Frames) { in writeCSNameTableSection()
/freebsd/sys/dev/e1000/
H A DREADME165 Jumbo Frames
167 Jumbo Frames support is enabled by changing the Maximum Transmission Unit (MTU)
181 NOTE: The maximum MTU setting for Jumbo Frames is 16110. This value coincides
182 with the maximum Jumbo Frames size of 16132 bytes.
191 NOTE: Some Intel gigabit adapters that support Jumbo Frames have a frame size
217 NOTE: The following adapters limit Jumbo Frames sized packets to a maximum of
221 - The following adapters do not support Jumbo Frames:
238 - Jumbo Frames cannot be configured on an 82579-based Network device if
375 with Jumbo Frames.
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp215 const DebugFrameDataSubsectionRef &Frames);
217 std::vector<YAMLFrameData> Frames; member
360 IO.mapRequired("Frames", Frames); in map()
512 for (const auto &YF : Frames) { in toCodeViewSubsection()
708 const DebugFrameDataSubsectionRef &Frames) { in fromCodeViewSubsection() argument
710 for (const auto &F : Frames) { in fromCodeViewSubsection()
729 Result->Frames.push_back(YF); in fromCodeViewSubsection()
868 DebugFrameDataSubsectionRef &Frames, const StringsAndChecksumsRef &State) { in visitFrameData() argument
870 YAMLFrameDataSubsection::fromCodeViewSubsection(State.strings(), Frames); in visitFrameData()
/freebsd/crypto/openssl/doc/designs/quic-design/
H A Drx-depacketizer.md97 Taken from [RFC 9000 12.4 Frames and Frame Types]
132 | ???? | *[Extension Frames]* | - [^8] | &#10004; | | |…
173 [RFC 9000 12.4 Frames and Frame Types]: https://datatracker.ietf.org/doc/html/rfc9000#section-12.4
205 [Extension Frames]: https://datatracker.ietf.org/doc/html/rfc9000#section-19.21
H A Dtx-packetiser.md257 ### Frames subsection
259 Frames are taken from [RFC 9000 12.4 Frames and Frame Types].
698 [RFC 9000 12.4 Frames and Frame Types]: https://datatracker.ietf.org/doc/html/rfc9000#section-12.4
H A Dquic-fifm.md131 - A state, which is either `NEW` or `TX`. Frames added to the CFQ have
136 Frames in the `NEW` state participate in a priority queue (the NEW queue)
/freebsd/sys/net80211/
H A DDATAPATH_TRANSMIT.md57 * A-MPDU TX decisions, AMSDU and Atheros Fast-Frames decisions.
221 #### Atheros Fast Frames / 802.11n A-MSDU transmit
228 queued for an Atheros Fast Frames MPDU or an A-MSDU.
255 to flush out any pending A-MSDU / Atheros Fast Frames to be transmitted;
259 These calls ensure that any queued frames in Fast Frames / A-MSDU queue
H A DREADME.md121 * A-MSDU Fast Frames
/freebsd/lib/libc/net/
H A Dprotocols100 ax.25 93 AX.25 # AX.25 Frames

12