Searched refs:Entries (Results 26 - 50 of 136) sorted by relevance

123456

/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugPubTable.h63 std::vector<Entry> Entries; member in struct:llvm::DWARFDebugPubTable::Set
H A DDWARFListTable.h43 ListEntries Entries; member in class:llvm::DWARFListType
46 const ListEntries &getEntries() const { return Entries; }
47 bool empty() const { return Entries.empty(); }
48 void clear() { Entries.clear(); }
236 Entries.clear();
241 Entries.push_back(Entry);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFixIrreducibleControlFlow.cpp69 static BlockVector getSortedEntries(const BlockSet &Entries) { argument
70 BlockVector SortedEntries(Entries.begin(), Entries.end());
244 void makeSingleEntryLoop(BlockSet &Entries, BlockSet &Blocks,
339 BlockSet &Entries, BlockSet &Blocks, MachineFunction &MF,
341 assert(Entries.size() >= 2);
344 BlockVector SortedEntries = getSortedEntries(Entries);
406 if (!Entries.count(Entry))
422 if (Entries.count(Entry) && Pred->isLayoutSuccessor(Entry))
435 if (!Entries
338 makeSingleEntryLoop( BlockSet &Entries, BlockSet &Blocks, MachineFunction &MF, const ReachabilityGraph &Graph) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DInterferenceCache.cpp60 Entries[i].clear(mf, indexes, lis);
65 if (E < CacheEntries && Entries[E].getPhysReg() == PhysReg) {
66 if (!Entries[E].valid(LIUArray, TRI))
67 Entries[E].revalidate(LIUArray, TRI);
68 return &Entries[E];
76 if (Entries[E].hasRefs()) {
81 Entries[E].reset(PhysReg, LIUArray, TRI, MF);
83 return &Entries[E];
/netbsd-current/external/apache2/llvm/dist/llvm/tools/dsymutil/
H A DDebugMap.cpp61 std::vector<Entry> Entries;
62 Entries.reserve(Symbols.getNumItems());
64 Entries.push_back(std::make_pair(Sym.getKey(), Sym.getValue()));
65 llvm::sort(Entries, [](const Entry &LHS, const Entry &RHS) {
68 for (const auto &Sym : Entries) {
160 std::vector<dsymutil::DebugMapObject::YAMLSymbolMapping> Entries; member in struct:llvm::yaml::MappingTraits::YamlDMO
176 io.mapRequired("symbols", Norm->Entries);
229 Entries.reserve(Obj.Symbols.size());
231 Entries.push_back(
280 for (auto &Entry : Entries) {
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DSearchableTableEmitter.cpp50 std::vector<std::unique_ptr<Entry>> Entries; member in struct:__anon3315::GenericEnum
78 std::vector<Record *> Entries; member in struct:__anon3315::GenericTable
300 for (const auto &Entry : Enum.Entries)
323 IndexRows = Table.Entries;
336 std::vector<std::pair<Record *, unsigned>> Entries; local
337 Entries.reserve(Table.Entries.size());
338 for (unsigned i = 0; i < Table.Entries.size(); ++i)
339 Entries.emplace_back(Table.Entries[
[all...]
H A DSequenceToOffsetTable.h110 // Entries in the final table, or 0 before layout was called.
111 unsigned Entries; member in class:llvm::SequenceToOffsetTable
119 SequenceToOffsetTable() : Entries(0) {}
124 assert(Entries == 0 && "Cannot call add() after layout()");
142 assert((empty() || Entries) && "Call layout() before size()");
143 return Entries;
148 assert(Entries == 0 && "Can only call layout() once");
152 I->second = Entries;
154 Entries += I->first.size() + 1;
160 assert(Entries
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DTimeProfiler.cpp95 assert((Entries.empty() ||
97 Entries.back().getFlameGraphStartUs(StartTime) +
98 Entries.back().getFlameGraphDurUs())) &&
106 Entries.emplace_back(E);
157 for (const Entry &E : Entries)
160 for (const Entry &E : TTP->Entries)
250 SmallVector<Entry, 128> Entries; member in struct:llvm::TimeTraceProfiler
H A DSpecialCaseList.cpp191 auto &Entry = Sections[SectionsMap[Section]].Entries[Prefix][Category];
215 inSectionBlame(SectionIter.Entries, Prefix, Query, Category);
222 unsigned SpecialCaseList::inSectionBlame(const SectionEntries &Entries, argument
225 SectionEntries::const_iterator I = Entries.find(Prefix);
226 if (I == Entries.end()) return 0;
H A DYAMLTraits.cpp220 return SQ->Entries.size();
241 CurrentNode = SQ->Entries[Index].get();
258 CurrentNode = SQ->Entries[index].get();
303 BitValuesUsed.insert(BitValuesUsed.begin(), SQ->Entries.size(), false);
316 for (auto &N : SQ->Entries) {
337 assert(BitValuesUsed.size() == SQ->Entries.size());
338 for (unsigned i = 0; i < SQ->Entries.size(); ++i) {
340 setError(SQ->Entries[i].get(), "unknown bit value");
417 SQHNode->Entries.push_back(std::move(Entry));
/netbsd-current/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCSchedule.cpp154 MCSchedModel::getForwardingDelayCycles(ArrayRef<MCReadAdvanceEntry> Entries, argument
156 if (Entries.empty())
160 for (const MCReadAdvanceEntry &E : Entries) {
/netbsd-current/external/apache2/llvm/dist/clang/lib/Frontend/
H A DLogDiagnosticPrinter.cpp83 if (Entries.empty())
103 for (auto &DE : Entries)
163 Entries.push_back(DE);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h314 Optional<std::vector<BBAddrMapEntry>> Entries; member in struct:llvm::ELFYAML::BBAddrMapSection
319 return {{"Entries", Entries.hasValue()}};
328 Optional<std::vector<StackSizeEntry>> Entries; member in struct:llvm::ELFYAML::StackSizesSection
333 return {{"Entries", Entries.hasValue()}};
346 Optional<std::vector<DynamicEntry>> Entries; member in struct:llvm::ELFYAML::DynamicSection
351 return {{"Entries", Entries.hasValue()}};
528 Optional<std::vector<CallGraphEntry>> Entries; member in struct:llvm::ELFYAML::CallGraphProfileSection
542 Optional<std::vector<uint16_t>> Entries; member in struct:llvm::ELFYAML::SymverSection
562 Optional<std::vector<VerdefEntry>> Entries; member in struct:llvm::ELFYAML::VerdefSection
612 Optional<std::vector<llvm::yaml::Hex64>> Entries; member in struct:llvm::ELFYAML::RelrSection
626 Optional<std::vector<uint32_t>> Entries; member in struct:llvm::ELFYAML::SymtabShndxSection
645 Optional<std::vector<ARMIndexTableEntry>> Entries; member in struct:llvm::ELFYAML::ARMIndexTableSection
[all...]
H A DMinidumpYAML.h64 std::vector<entry_type> Entries;
66 explicit ListStream(std::vector<entry_type> Entries = {})
67 : Stream(EntryT::Kind, EntryT::Type), Entries(std::move(Entries)) {}
/netbsd-current/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugPubTable.cpp72 NewSet.Entries.push_back(
106 for (const Entry &E : S.Entries) {
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DSpecialCaseList.h140 SectionEntries Entries; member in struct:llvm::SpecialCaseList::Section
151 unsigned inSectionBlame(const SectionEntries &Entries, StringRef Prefix,
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/xray/
H A Dxray_init.cc87 XRayInstrMap.Entries = __stop_xray_instr_map - __start_xray_instr_map;
H A Dxray_interface.cc254 if (InstrMap.Entries == 0)
269 auto MaxSled = InstrMap.Sleds[InstrMap.Entries - 1];
270 for (std::size_t I = 0; I < InstrMap.Entries; I++) {
296 for (std::size_t I = 0; I < InstrMap.Entries; ++I) {
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DConstantPools.h45 EntryVecTy Entries;
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Frontend/
H A DLogDiagnosticPrinter.h59 SmallVector<DiagEntry, 8> Entries; member in class:clang::LogDiagnosticPrinter
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DPartialInlining.cpp154 // in Entries and one return block.
155 unsigned getNumInlinedBlocks() const { return Entries.size() + 1; }
159 SmallVector<BasicBlock *, 4> Entries; member in struct:__anon2855::FunctionOutliningInfo
167 // The set of blocks in Entries that that are predecessors to ReturnBlock
626 OutliningInfo->Entries.push_back(CurrEntry);
639 OutliningInfo->Entries.push_back(CurrEntry);
649 assert(OutliningInfo->Entries[0] == &F.front() &&
650 "Function Entry must be the first in Entries vector");
651 DenseSet<BasicBlock *> Entries; local
652 for (BasicBlock *E : OutliningInfo->Entries)
[all...]
/netbsd-current/external/gpl2/grep/dist/
H A DMakefile.am43 if grep "^/$$f/" CVS/Entries > /dev/null; then \
H A DMakefile.cvs39 if grep "^/$$f/" CVS/Entries > /dev/null; then \
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/CodeGen/
H A DSwiftCallingConv.h53 SmallVector<StorageEntry, 4> Entries; member in class:clang::CodeGen::swiftcall::SwiftAggLowering
75 return Entries.empty();
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DSourceManagerInternals.h128 void AddEntry(FileID FID, const std::vector<LineEntry> &Entries);

Completed in 301 milliseconds

123456