Searched refs:Entry (Results 251 - 275 of 500) sorted by relevance

<<11121314151617181920

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUPALMetadata.cpp538 auto Entry = RegInfoTable; local
539 for (; Entry->Num && Entry->Num != RegNum; ++Entry)
541 return Entry->Name;
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DParser.cpp554 for (const auto &Entry : *NamedValues) {
556 if (Entry.getValue().isConvertibleTo(AcceptedTypes, &Specificity)) {
558 (Entry.getValue().getTypeAsString() + " " + Entry.getKey()).str();
559 Result.emplace_back(Entry.getKey(), Decl, Specificity);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp784 auto PrintGuardFlags = [](raw_ostream &OS, const uint8_t *Entry) {
785 uint8_t Flags = *reinterpret_cast<const uint8_t *>(Entry + 4);
1126 for (const auto &Entry : LineInfo) {
1129 printFileNameForOffset("Filename", Entry.NameIndex);
1131 for (const auto &Line : Entry.LineNumbers) {
1151 W.printNumber("ColStart", Entry.Columns[ColumnIndex].StartColumn);
1152 W.printNumber("ColEnd", Entry.Columns[ColumnIndex].EndColumn);
1753 DictScope Import(W, "Entry");
1793 auto Entry = unwrapOrError(Obj->getFileName(), RSF.getTableEntry(Table, i)); local
1794 if (Entry
1820 auto Entry = unwrapOrError(Obj->getFileName(), RSF.getTableEntry(Table, i)); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DPrologEpilogInserter.cpp472 MachineBasicBlock *Entry = &MF.front(); local
476 Save = Entry;
478 if (Entry != Save) {
479 WorkList.push_back(Entry);
480 Visited.insert(Entry);
911 std::pair<int, int64_t> Entry = MFI.getLocalFrameObjectMap(i); local
912 int64_t FIOffset = (StackGrowsDown ? -Offset : Offset) + Entry.second;
913 LLVM_DEBUG(dbgs() << "alloc FI(" << Entry.first << ") at SP[" << FIOffset
915 MFI.setObjectOffset(Entry.first, FIOffset);
H A DShrinkWrap.cpp137 /// Frequency of the Entry block.
149 /// Entry block.
150 const MachineBasicBlock *Entry; member in class:__anon1825::ShrinkWrap
203 Entry = &MF.front();
212 bool ArePointsInteresting() const { return Save != Entry && Save && Restore; }
336 LLVM_DEBUG(dbgs() << "Found a block that is not reachable from Entry\n");
377 // 2. all path to Restore needs to go through Save from Entry.
539 LLVM_DEBUG(dbgs() << "\n ** Results **\nFrequency of the Entry: " << EntryFreq
H A DExecutionDomainFix.cpp21 const auto &Entry = AliasMap[Reg];
22 return make_range(Entry.begin(), Entry.end());
H A DLocalStackSlotAllocation.cpp341 MachineBasicBlock *Entry = &Fn.front(); local
423 // MachineBasicBlock::iterator InsertionPt = Entry->begin();
424 TRI->materializeFrameBaseRegister(Entry, BaseReg, FrameIdx,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp1033 const FileNameEntry &Entry = Prologue.getFileNameEntry(FileIndex); local
1034 if (Optional<const char *> source = Entry.Source.getAsCString())
1052 const FileNameEntry &Entry = getFileNameEntry(FileIndex); local
1053 Optional<const char *> Name = Entry.Name.getAsCString();
1065 // Be defensive about the contents of Entry.
1067 if (Entry.DirIdx < IncludeDirectories.size())
1068 IncludeDir = IncludeDirectories[Entry.DirIdx].getAsCString().getValue();
1070 if (0 < Entry.DirIdx && Entry.DirIdx <= IncludeDirectories.size())
1072 IncludeDirectories[Entry
[all...]
H A DDWARFDebugFrame.cpp546 if (auto *Entry = getEntryAtOffset(*Offset))
547 Entry->dump(OS, MRI, IsEH);
552 for (const auto &Entry : Entries)
553 Entry->dump(OS, MRI, IsEH);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitstream/
H A DBitstreamReader.h444 BitstreamEntry Entry = MaybeEntry.get();
446 if (Entry.Kind != BitstreamEntry::SubBlock)
447 return Entry;
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangOpenCLBuiltinEmitter.cpp126 // \param Candidate (in) Entry in the SignatureListMap to check.
660 auto Entry = ImageTypesMap.find(IT->getValueAsString("Name")); local
661 if (Entry == ImageTypesMap.end()) {
667 Entry->second.push_back(IT);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DInputFile.cpp195 for (const auto &Entry : SC.checksums()) {
196 auto S = SC.strings().getString(Entry.FileNameOffset);
199 ChecksumsByFile[*S] = Entry;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64SpeculationHardening.cpp684 for (auto Entry : EntryBlocks)
686 *Entry, Entry->SkipPHIsLabelsAndDebug(Entry->begin()));
H A DAArch64TargetTransformInfo.cpp397 if (const auto *Entry = ConvertCostTableLookup(ConversionTbl, ISD,
400 return Entry->Cost;
620 if (const auto *Entry = ConvertCostTableLookup(VectorSelectTbl, ISD,
623 return Entry->Cost;
950 if (const auto *Entry = CostTableLookup(CostTblNoPairwise, ISD, MTy))
951 return LT.first * Entry->Cost;
1002 if (const auto *Entry = CostTableLookup(ShuffleTbl, Kind, LT.second))
1003 return LT.first * Entry->Cost;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DModule.cpp499 auto &Entry = *ComdatSymTab.insert(std::make_pair(Name, Comdat())).first;
500 Entry.second.Name = &Entry;
501 return &Entry.second;
H A DConstants.cpp1418 std::unique_ptr<ConstantAggregateZero> &Entry = local
1420 if (!Entry)
1421 Entry.reset(new ConstantAggregateZero(Ty));
1423 return Entry.get();
1501 std::unique_ptr<ConstantPointerNull> &Entry = local
1503 if (!Entry)
1504 Entry.reset(new ConstantPointerNull(Ty));
1506 return Entry.get();
1515 std::unique_ptr<UndefValue> &Entry = Ty->getContext().pImpl->UVConstants[Ty]; local
1516 if (!Entry)
2571 ConstantDataSequential **Entry = &Slot.second; local
2596 ConstantDataSequential **Entry = &Slot->getValue(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DBlock.h44 typedef RangeList::Entry Range;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_fdr_logging.cpp496 XRayEntryType Entry) XRAY_NEVER_INSTRUMENT {
508 switch (Entry) {
525 void fdrLoggingHandleArg1(int32_t FuncId, XRayEntryType Entry,
538 switch (Entry) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandCompletions.cpp173 auto &Entry = *Iter; local
174 llvm::ErrorOr<llvm::vfs::Status> Status = fs.GetStatus(Entry.path());
179 auto Name = path::filename(Entry.path());
190 FileSpec symlink_filespec(Entry.path());
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp369 for (const ImportedSymbolRef &Entry : DirRef.imported_symbols()) {
371 if (Entry.isOrdinal(IsOrdinal))
375 if (Entry.getOrdinal(Ordinal))
381 if (Entry.getHintNameRVA(HintNameRVA))
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DX86FoldTablesEmitter.cpp648 for (const ManualMapEntry &Entry : ManualMapSet) {
649 Record *RegInstIter = Records.getDef(Entry.RegInstStr);
650 Record *MemInstIter = Records.getDef(Entry.MemInstStr);
653 &(Target.getInstruction(MemInstIter)), Entry.Strategy);
H A DInstrInfoEmitter.cpp299 for (const auto &Entry : OperandMap) {
300 const std::map<unsigned, unsigned> &OpList = Entry.first;
313 for (const auto &Entry : OperandMap) {
314 for (const std::string &Name : Entry.second)
/freebsd-11-stable/stand/i386/pxeldr/
H A Dpxeldr.S270 pushl MEM_ARG_BTX-MEM_BTX_CLIENT+MEM_ARG_SIZE # Entry point of
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.h203 bool AddSubClass(RecordsEntry &Entry, SubClassReference &SubClass);
267 bool ApplyLetStack(RecordsEntry &Entry);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DCOFF.h1165 ImportedSymbolRef(const import_lookup_table_entry32 *Entry, uint32_t I, argument
1167 : Entry32(Entry), Entry64(nullptr), Index(I), OwningObject(Owner) {}
1168 ImportedSymbolRef(const import_lookup_table_entry64 *Entry, uint32_t I, argument
1170 : Entry32(nullptr), Entry64(Entry), Index(I), OwningObject(Owner) {}
1214 getEntryNameString(const coff_resource_dir_entry &Entry);
1216 getEntrySubDir(const coff_resource_dir_entry &Entry);
1218 getEntryData(const coff_resource_dir_entry &Entry);
1223 Expected<StringRef> getContents(const coff_resource_data_entry &Entry);

Completed in 191 milliseconds

<<11121314151617181920