Searched refs:Entries (Results 1 - 25 of 136) sorted by relevance

123456

/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocStream.cpp16 if (Lists.back().EntryOffset == Entries.size()) {
28 if (Entries.back().ByteOffset != DWARFBytes.size())
32 Comments.erase(Comments.begin() + Entries.back().CommentOffset,
34 Entries.pop_back();
36 assert(Lists.back().EntryOffset <= Entries.size() &&
H A DDebugLocStream.h49 SmallVector<Entry, 32> Entries; member in class:llvm::DebugLocStream
82 Lists.emplace_back(CU, Entries.size());
99 Entries.push_back({BeginSym, EndSym, DWARFBytes.size(), Comments.size()});
112 return makeArrayRef(Entries)
119 .slice(Entries[EI].ByteOffset, getNumBytes(EI));
124 .slice(Entries[EI].CommentOffset, getNumComments(EI));
134 assert(&Entries.front() <= &E && &E <= &Entries.back() &&
136 return &E - &Entries.front();
140 return Entries
[all...]
H A DDwarfStringPool.cpp84 SmallVector<const StringMapEntry<EntryTy> *, 64> Entries; local
85 Entries.reserve(Pool.size());
88 Entries.push_back(&E);
90 llvm::sort(Entries, [](const StringMapEntry<EntryTy> *A,
95 for (const auto &Entry : Entries) {
114 Entries.resize(NumIndexedStrings);
117 Entries[Entry.getValue().Index] = &Entry;
122 for (const auto &Entry : Entries)
H A DAddressPool.cpp59 SmallVector<const MCExpr *, 64> Entries(Pool.size());
62 Entries[I.second.Number] =
67 for (const MCExpr *Entry : Entries)
H A DDebugHandlerBase.cpp275 const auto &Entries = I.second; local
276 if (Entries.empty())
299 Entries.front().getInstr()->getDebugVariable();
302 Entries.front().getInstr()->getParent()->sameSection(&MF->front())) {
303 if (!IsDescribedByReg(Entries.front().getInstr()))
304 LabelsBeforeInsn[Entries.front().getInstr()] = Asm->getFunctionBegin();
305 if (Entries.front().getInstr()->getDebugExpression()->isFragment()) {
307 for (auto I = Entries.begin(); I != Entries.end(); ++I) {
311 if (std::any_of(Entries
[all...]
H A DDbgEntityHistoryCalculator.cpp77 auto &Entries = VarEntries[Var]; local
78 if (!Entries.empty() && Entries.back().isDbgValue() &&
79 !Entries.back().isClosed() &&
80 Entries.back().getInstr()->isIdenticalTo(MI)) {
82 << "\t" << Entries.back().getInstr() << "\t" << MI
86 Entries.emplace_back(&MI, Entry::DbgValue);
87 NewIndex = Entries.size() - 1;
93 auto &Entries = VarEntries[Var]; local
96 if (Entries
563 const Entries &Entries = VarRangePair.second; local
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DSwiftCallingConv.cpp279 if (Entries.empty() || Entries.back().End <= begin) {
280 Entries.push_back({begin, end, type});
285 // TODO: do a binary search if Entries is big enough for it to matter.
286 size_t index = Entries.size() - 1;
288 if (Entries[index - 1].End <= begin) break;
294 if (Entries[index].Begin >= end) {
298 Entries.insert(Entries.begin() + index, {begin, end, type});
307 if (Entries[inde
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/MCA/HardwareUnits/
H A DRetireControlUnit.cpp45 unsigned Entries = normalizeQuantity(Inst.getNumMicroOps()); local
46 assert((AvailableEntries >= Entries) && "Reorder Buffer unavailable!");
49 Queue[NextAvailableSlotIdx] = {IR, Entries, false};
50 NextAvailableSlotIdx += std::max(1U, Entries);
54 AvailableEntries -= Entries;
97 dbgs() << "Retire Unit: { Total ROB Entries =" << NumROBEntries
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyCFGSort.cpp224 SmallVector<Entry, 4> Entries; local
232 Entries.push_back(Entry(R));
236 for (Entry &E : Entries)
240 while (!Entries.empty() && Entries.back().NumBlocksLeft == 0)
241 Entries.pop_back();
266 for (Entry &E : Entries) {
287 if (!Entries.empty() &&
288 !MDT.dominates(Entries.back().TheRegion->getHeader(), Next)) {
289 Entries
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DDebugInlineeLinesSubsection.cpp71 Size += Entries.size() * sizeof(InlineeSourceLineHeader);
74 Size += Entries.size() * sizeof(uint32_t);
91 for (const auto &E : Entries) {
110 auto &Entry = Entries.back();
120 Entries.emplace_back();
121 auto &Entry = Entries.back();
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DDbgEntityHistoryCalculator.h96 using Entries = SmallVector<Entry, 4>;
98 using EntriesMap = MapVector<InlinedEntity, Entries>;
109 auto &Entries = VarEntries[Var]; local
110 return Entries[Index];
115 bool hasNonEmptyLocation(const Entries &Entries) const;
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugRangeList.h64 std::vector<RangeListEntry> Entries; member in class:llvm::DWARFDebugRangeList
72 const std::vector<RangeListEntry> &getEntries() { return Entries; }
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DSanitizerSpecialCaseList.h52 : Mask(SM), Entries(E){};
55 SectionEntries &Entries; member in struct:clang::SanitizerSpecialCaseList::SanitizerSection
/netbsd-current/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugRangeList.cpp22 Entries.clear();
55 Entries.push_back(Entry);
61 for (const RangeListEntry &RLE : Entries) {
76 for (const RangeListEntry &RLE : Entries) {
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_interceptors_ioctl_netbsd.inc45 /* Entries from file: altq/altq_afmap.h */
50 /* Entries from file: altq/altq.h */
54 /* Entries from file: altq/altq_blue.h */
59 /* Entries from file: altq/altq_cbq.h */
66 /* Entries from file: altq/altq_cdnr.h */
80 /* Entries from file: altq/altq_fifoq.h */
83 /* Entries from file: altq/altq_hfsc.h */
87 /* Entries from file: altq/altq_jobs.h */
95 /* Entries from file: altq/altq_priq.h */
104 /* Entries fro
[all...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_interceptors_ioctl_netbsd.inc46 /* Entries from file: altq/altq_afmap.h */
51 /* Entries from file: altq/altq.h */
55 /* Entries from file: altq/altq_blue.h */
60 /* Entries from file: altq/altq_cbq.h */
67 /* Entries from file: altq/altq_cdnr.h */
81 /* Entries from file: altq/altq_fifoq.h */
84 /* Entries from file: altq/altq_hfsc.h */
88 /* Entries from file: altq/altq_jobs.h */
96 /* Entries from file: altq/altq_priq.h */
105 /* Entries fro
[all...]
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_interceptors_ioctl_netbsd.inc45 /* Entries from file: altq/altq_afmap.h */
50 /* Entries from file: altq/altq.h */
54 /* Entries from file: altq/altq_blue.h */
59 /* Entries from file: altq/altq_cbq.h */
66 /* Entries from file: altq/altq_cdnr.h */
80 /* Entries from file: altq/altq_fifoq.h */
83 /* Entries from file: altq/altq_hfsc.h */
87 /* Entries from file: altq/altq_jobs.h */
95 /* Entries from file: altq/altq_priq.h */
104 /* Entries fro
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/MC/
H A DConstantPools.cpp27 if (Entries.empty())
30 for (const ConstantPoolEntry &Entry : Entries) {
36 Entries.clear();
50 Entries.push_back(ConstantPoolEntry(CPEntryLabel, Value, Size, Loc));
57 bool ConstantPool::empty() { return Entries.empty(); }
/netbsd-current/sys/external/bsd/acpica/dist/common/
H A Ddmtbdump.c277 UINT32 Entries; local
289 Entries = (Table->Length - sizeof (ACPI_TABLE_HEADER)) / sizeof (UINT32);
291 for (i = 0; i < Entries; i++)
317 UINT32 Entries; local
329 Entries = (Table->Length - sizeof (ACPI_TABLE_HEADER)) / sizeof (UINT64);
331 for (i = 0; i < Entries; i++)
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Instrumentation/
H A DAddressSanitizer.h56 auto Pos = Entries.find(G);
57 return (Pos != Entries.end()) ? Pos->second : Entry();
72 DenseMap<GlobalVariable *, Entry> Entries; member in class:llvm::GlobalsMetadata
/netbsd-current/external/apache2/llvm/dist/clang/lib/Basic/
H A DSanitizerSpecialCaseList.cpp52 SanitizerSections.emplace_back(Mask, S.Entries);
61 SpecialCaseList::inSectionBlame(S.Entries, Prefix, Query, Category))
/netbsd-current/external/bsd/openldap/dist/tests/scripts/
H A Dmonitor_data.sh40 cn=Entries,cn=Statistics,cn=Monitor
/netbsd-current/crypto/external/bsd/openssl/dist/providers/
H A Dencoders.inc47 * Entries for human text "encoders"
70 * Entries for key type specific output formats. The structure name on these
121 * Entries for the output formats MSBLOB and PVK
131 * Entries for encrypted PKCS#8 (EncryptedPrivateKeyInfo), unencrypted PKCS#8
223 * Entries for key type specific output formats. These are exactly the
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugInlineeLinesSubsection.h111 std::vector<Entry>::const_iterator begin() const { return Entries.begin(); }
112 std::vector<Entry>::const_iterator end() const { return Entries.end(); }
118 std::vector<Entry> Entries; member in class:llvm::codeview::final
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/xray/
H A Dxray_interface_internal.h55 size_t Entries; member in struct:__xray::XRaySledMap

Completed in 467 milliseconds

123456