Searched refs:Entry (Results 126 - 150 of 500) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DTimeProfiler.cpp35 struct Entry { struct in namespace:llvm
41 Entry(TimePointType &&S, TimePointType &&E, std::string &&N, std::string &&Dt) function in struct:llvm::Entry
95 if (std::find_if(++Stack.rbegin(), Stack.rend(), [&](const Entry &Val) {
181 SmallVector<Entry, 16> Stack;
182 SmallVector<Entry, 128> Entries;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCContext.cpp301 MCSectionMachO *&Entry = MachOUniquingMap[Name]; local
302 if (Entry)
303 return Entry;
310 return Entry = new (MachOAllocator.Allocate()) MCSectionMachO(
409 auto &Entry = *IterBool.first; local
411 return Entry.second;
413 StringRef CachedName = Entry.first.SectionName;
425 Entry.second = Result;
518 auto &Entry = *IterBool.first; local
520 return Entry
548 auto &Entry = *IterBool.first; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DVirtualFileSystem.h578 class Entry { class in class:llvm::vfs::RedirectingFileSystem
583 Entry(EntryKind K, StringRef Name) : Kind(K), Name(Name) {} function in class:llvm::vfs::RedirectingFileSystem::Entry
584 virtual ~Entry() = default;
590 class RedirectingDirectoryEntry : public Entry {
591 std::vector<std::unique_ptr<Entry>> Contents;
596 std::vector<std::unique_ptr<Entry>> Contents,
598 : Entry(EK_Directory, Name), Contents(std::move(Contents)),
601 : Entry(EK_Directory, Name), S(std::move(S)) {}
605 void addContent(std::unique_ptr<Entry> Content) {
609 Entry *getLastConten
[all...]
H A DRegistry.h115 entry Entry; member in class:llvm::Registry::Add
122 : Entry(Name, Desc, CtorFn), Node(Entry) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DAliasSetTracker.cpp136 void AliasSet::addPointer(AliasSetTracker &AST, PointerRec &Entry, argument
139 assert(!Entry.hasAliasSet() && "Entry already in set!");
148 MemoryLocation(Entry.getValue(), Size, AAInfo));
158 Entry.setAliasSet(this);
159 Entry.updateSizeAndAAInfo(Size, AAInfo);
164 *PtrListEnd = &Entry;
165 PtrListEnd = Entry.setPrevInList(PtrListEnd);
167 // Entry points to alias set.
359 AliasSet::PointerRec &Entry local
594 AliasSet::PointerRec &Entry = getEntryFor(To); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DX86EVEX2VEXTablesEmitter.cpp32 typedef std::pair<const CodeGenInstruction *, const CodeGenInstruction *> Entry; typedef in class:__anon2941::X86EVEX2VEXTablesEmitter
35 std::vector<Entry> EVEX2VEX128;
36 std::vector<Entry> EVEX2VEX256;
47 void printTable(const std::vector<Entry> &Table, raw_ostream &OS);
50 void X86EVEX2VEXTablesEmitter::printTable(const std::vector<Entry> &Table,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp319 SEHUnwindMapEntry Entry; local
320 Entry.ToState = ParentState;
321 Entry.IsFinally = false;
322 Entry.Filter = Filter;
323 Entry.Handler = Handler;
324 FuncInfo.SEHUnwindMap.push_back(Entry);
330 SEHUnwindMapEntry Entry; local
331 Entry.ToState = ParentState;
332 Entry.IsFinally = true;
333 Entry
468 ClrEHUnwindMapEntry Entry; local
[all...]
H A DGCMetadata.cpp153 for (auto& Entry : GCRegistry::entries()) {
154 if (Name == Entry.getName()) {
155 std::unique_ptr<GCStrategy> S = Entry.instantiate();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp174 using Entry = std::pair<const Use *, unsigned>;
175 SmallVector<Entry, 64> List;
186 llvm::sort(List, [&](const Entry &L, const Entry &R) {
228 [](const Entry &L, const Entry &R) { return L.second < R.second; }))
583 auto &Entry = MD.second;
586 if (!Entry.F)
590 Entry.F = 0;
594 if (Entry
666 MDIndex &Entry = Insertion.first->second; local
922 unsigned &Entry = AttributeListMap[PAL]; local
935 unsigned &Entry = AttributeGroupMap[Pair]; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBStringTableBuilder.cpp127 auto Entry = StringsToBuckets.lower_bound(NumStrings); local
128 assert(Entry != StringsToBuckets.end());
129 return Entry->second;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DTestModuleFileExtension.cpp55 llvm::BitstreamEntry Entry = MaybeEntry.get(); local
57 switch (Entry.Kind) {
70 Stream.readRecord(Entry.ID, Record, &Blob);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineRegionInfo.h51 inline MachineRegionNode(MachineRegion *Parent, MachineBasicBlock *Entry, argument
53 : RegionNodeBase<RegionTraits<MachineFunction>>(Parent, Entry,
63 MachineRegion(MachineBasicBlock *Entry, MachineBasicBlock *Exit,
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DSchedulerStatistics.cpp110 for (const std::pair<const unsigned, unsigned> &Entry : IssueWidthPerCycle) {
111 unsigned NumIssued = Entry.first;
115 unsigned IPC = Entry.second;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfReader.cpp608 for (auto &Entry : SecHdrTable) {
610 if (!Entry.Size)
613 const uint8_t *SecStart = BufStart + Entry.Offset;
614 uint64_t SecSize = Entry.Size;
620 bool isCompressed = hasSecFlag(Entry, SecFlagCompress);
631 if (std::error_code EC = readOneSection(SecStart, SecSize, Entry.Type))
638 Data = BufStart + Entry.Offset;
723 SecHdrTableEntry Entry; local
727 Entry.Type = static_cast<SecType>(*Type);
732 Entry
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DDebugger.h105 static bool FormatDisassemblerAddress(const FormatEntity::Entry *format,
241 const FormatEntity::Entry *GetDisassemblyFormat() const;
243 const FormatEntity::Entry *GetFrameFormat() const;
245 const FormatEntity::Entry *GetFrameFormatUnique() const;
247 const FormatEntity::Entry *GetThreadFormat() const;
249 const FormatEntity::Entry *GetThreadStopFormat() const;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugStringTableSubsection.cpp91 for (const auto &Entry : IdToString)
92 Result.push_back(Entry.first);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDebugNamesDWARFIndex.h69 llvm::Optional<DIERef> ToDIERef(const DebugNames::Entry &entry);
70 void Append(const DebugNames::Entry &entry, DIEArray &offsets);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DCOFFObjectFile.cpp1337 auto *Entry = reinterpret_cast<ulittle32_t *>(IntPtr); local
1338 while (*Entry++)
1341 auto *Entry = reinterpret_cast<ulittle64_t *>(IntPtr); local
1342 while (*Entry++)
1654 auto *Entry = reinterpret_cast<const coff_base_reloc_block_entry *>(Header + 1); local
1655 Type = Entry[Index].getType();
1660 auto *Entry = reinterpret_cast<const coff_base_reloc_block_entry *>(Header + 1); local
1661 Result = Header->PageRVA + Entry[Index].getOffset();
1684 ResourceSectionRef::getEntryNameString(const coff_resource_dir_entry &Entry) { argument
1685 return getDirStringAtOffset(Entry
1701 const coff_resource_dir_entry *Entry = nullptr; local
1712 const coff_resource_data_entry *Entry = nullptr; local
1722 getEntrySubDir(const coff_resource_dir_entry &Entry) argument
1728 getEntryData(const coff_resource_dir_entry &Entry) argument
1781 getContents(const coff_resource_data_entry &Entry) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyAsmPrinter.cpp244 FeatureEntry Entry; local
245 Entry.Prefix = 0;
246 Entry.Name = KV.Key;
250 Entry.Prefix = I->getZExtValue();
253 if (Entry.Prefix != wasm::WASM_FEATURE_PREFIX_USED &&
254 Entry.Prefix != wasm::WASM_FEATURE_PREFIX_REQUIRED &&
255 Entry.Prefix != wasm::WASM_FEATURE_PREFIX_DISALLOWED)
258 EmittedFeatures.push_back(Entry);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp187 assert(Entry != Inst->getParent() && "PHI or landing pad in entry block!");
196 assert(Entry != IDom->getBlock() && "eh pad in entry block");
207 BasicBlock *Entry,
209 assert(!BBs.count(Entry) && "Assume Entry is not in BBs");
214 // in the dominator tree from Entry to 'BB'.
221 // Walk up the dominator tree until Entry or another BB in BBs
228 if (Node == Entry || Candidates.count(Node)) {
233 "Entry doens't dominate current Node");
250 Orders.push_back(Entry);
206 findBestInsertionSet(DominatorTree &DT, BlockFrequencyInfo &BFI, BasicBlock *Entry, SetVector<BasicBlock *> &BBs) argument
932 runImpl(Function &Fn, TargetTransformInfo &TTI, DominatorTree &DT, BlockFrequencyInfo *BFI, BasicBlock &Entry, ProfileSummaryInfo *PSI) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
H A DDependencyScanningFilesystem.h160 void setCachedEntry(StringRef Filename, const CachedFileSystemEntry *Entry) { argument
161 bool IsInserted = Cache.try_emplace(Filename, Entry).second;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Core/
H A DReplacement.cpp70 auto Entry = SM.getFileManager().getFile(FilePath); local
71 if (!Entry)
74 FileID ID = SM.getOrCreateFileID(*Entry, SrcMgr::C_User);
125 const FileEntry *Entry = Sources.getFileEntryForID(DecomposedLocation.first); local
126 this->FilePath = Entry ? Entry->getName() : InvalidLocation;
616 for (const auto &Entry : FileToReplaces) {
617 auto FE = FileMgr.getFile(Entry.first);
619 llvm::errs() << "File path " << Entry.first << " is invalid.\n";
621 Result[Entry
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DEHStreamer.cpp510 unsigned Entry = 0; local
526 Asm->OutStreamer->AddComment(">> Call Site " + Twine(++Entry) + " <<");
563 int Entry = 0; local
570 Asm->OutStreamer->AddComment(">> Action Record " + Twine(++Entry) + " <<");
597 unsigned NextAction = Entry + (Action.NextAction + 1) / 2;
620 int Entry = 0; local
625 Entry = TypeInfos.size();
631 Asm->OutStreamer->AddComment("TypeInfo " + Twine(Entry--));
641 Entry = 0;
647 --Entry;
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp1308 for (const llvm::object::ExportEntry &Entry : MachO->exports(Err)) {
1313 if (S.Address == Entry.address() + BaseSegmentAddress &&
1314 S.Name == Entry.name()) {
1321 S.Address = Entry.address() + BaseSegmentAddress;
1324 S.Name = Entry.name();
1336 uint64_t EFlags = Entry.flags();
1354 S.Address = Entry.other() + BaseSegmentAddress;
1361 S.Address = Entry.address() + BaseSegmentAddress;
1379 } else if (Entry.name() == "__mh_execute_header" &&
1397 EOS << Entry
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRTDyldMemoryManager.cpp80 static const char *processFDE(const char *Entry, bool isDeregister) { argument
81 const char *P = Entry;
87 __deregister_frame(const_cast<char *>(Entry));
89 __register_frame(const_cast<char *>(Entry));

Completed in 504 milliseconds

1234567891011>>