Searched refs:Entry (Results 276 - 300 of 500) sorted by relevance

<<11121314151617181920

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.h175 void addDIEEntry(DIE &Die, dwarf::Attribute Attribute, DIE &Entry);
178 void addDIEEntry(DIE &Die, dwarf::Attribute Attribute, DIEEntry Entry);
H A DDIE.cpp640 AP->OutStreamer->EmitIntValue(Entry->getOffset(), SizeOf(AP, Form));
644 AP->EmitULEB128(Entry->getOffset());
649 unsigned Addr = Entry->getDebugSectionOffset();
651 Entry->getUnit()->getCrossSectionRelativeBaseAddress()) {
675 return getULEB128Size(Entry->getOffset());
694 O << format("Die: 0x%lx", (long)(intptr_t)&Entry);
H A DDwarfDebug.cpp1402 // See the definition of DbgValueHistoryMap::Entry for an explanation of the
1626 for (auto &Entry : Entries)
1627 Entry.finalize(*Asm, List, BT, TheCU);
2177 const DebugLocStream::Entry &Entry,
2179 auto &&Comments = DebugLocs.getComments(Entry);
2189 DWARFDataExtractor Data(StringRef(DebugLocs.getBytes(Entry).data(),
2190 DebugLocs.getBytes(Entry).size()),
2274 DebugLocStream::EntryBuilder Entry(List, Begin, End);
2275 BufferByteStreamer Streamer = Entry
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-link/
H A Dllvm-link.cpp263 auto &Entry = ImportList[FileName]; local
264 Entry.insert(F->getGUID());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp246 for (const WasmYAML::ComdatEntry &Entry : C.Entries) {
247 writeUint8(SubSection.getStream(), Entry.Kind);
248 encodeULEB128(Entry.Index, SubSection.getStream());
288 for (auto &Entry : *Field.second) {
289 writeStringRef(Entry.Name, OS);
290 writeStringRef(Entry.Version, OS);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DELF.h124 Expected<const T *> getEntry(uint32_t Section, uint32_t Entry) const;
126 Expected<const T *> getEntry(const Elf_Shdr *Section, uint32_t Entry) const;
561 uint32_t Entry) const {
565 return getEntry<T>(*SecOrErr, Entry);
571 uint32_t Entry) const {
576 size_t Pos = Section->sh_offset + Entry * sizeof(T);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DGVNHoist.cpp229 auto Entry = std::make_pair(V, InvalidVN); local
232 VNtoCallsScalars[Entry].push_back(Call);
234 VNtoCallsLoads[Entry].push_back(Call);
236 VNtoCallsStores[Entry].push_back(Call);
744 for (const auto &Entry : Map) {
745 Ranks.push_back(Entry.first);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp895 ArgListEntry Entry; local
896 Entry.Val = V;
897 Entry.Ty = V->getType();
898 Entry.setAttributes(&CS, ArgI);
899 Args.push_back(Entry);
1137 ArgListEntry Entry; local
1138 Entry.Val = V;
1139 Entry.Ty = V->getType();
1140 Entry.setAttributes(&CS, ArgI);
1141 Args.push_back(Entry);
1270 ArgListEntry Entry; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DPath.inc636 struct passwd *Entry = nullptr;
638 Entry = ::getpwnam(User.c_str());
640 if (!Entry) {
647 Path.append(Entry->pw_dir, Entry->pw_dir + strlen(Entry->pw_dir));
863 static file_type direntType(dirent* Entry) {
870 return typeForMode(DTTOIF(Entry->d_type));
1063 static std::error_code remove_directories_impl(const T &Entry,
1066 directory_iterator Begin(Entry, E
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMachObjectWriter.cpp319 for (MachSymbolData &Entry : *SymbolData)
320 if (Entry.Symbol == &Sym)
321 return &Entry;
623 for (MachSymbolData &Entry : *SymbolData)
624 Entry.Symbol->setIndex(Index++);
1037 for (MachSymbolData &Entry : *SymbolData)
1038 writeNlist(Entry, Layout);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp319 const FormatEntity::Entry *Debugger::GetDisassemblyFormat() const {
324 const FormatEntity::Entry *Debugger::GetFrameFormat() const {
329 const FormatEntity::Entry *Debugger::GetFrameFormatUnique() const {
362 const FormatEntity::Entry *Debugger::GetThreadFormat() const {
367 const FormatEntity::Entry *Debugger::GetThreadStopFormat() const {
1105 bool Debugger::FormatDisassemblerAddress(const FormatEntity::Entry *format,
1110 FormatEntity::Entry format_entry;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DObject.cpp1117 Obj->Entry = 0x0;
1217 Obj->Entry = checkedGetHex<uint32_t>(R.HexData);
1218 assert(Obj->Entry <= 0xFFFFFU);
1630 Obj.Entry = Ehdr.e_entry;
1715 Ehdr.e_entry = Obj.Entry;
2296 if (Obj.Entry == 0)
2299 if (Obj.Entry <= 0xFFFFFU) {
2300 Data[0] = ((Obj.Entry & 0xF0000U) >> 12) & 0xFF;
2301 support::endian::write(&Data[2], static_cast<uint16_t>(Obj.Entry),
2305 support::endian::write(Data, static_cast<uint32_t>(Obj.Entry),
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp251 auto Entry = SM.getFileEntryForID(SpellingFile); local
252 if (!Entry)
256 Mapping.push_back(CVM.getFileID(Entry));
1358 for (const auto &Entry : FileEntries) {
1359 auto I = Entry.second;
1360 FilenameStrs[I] = normalizeFilename(Entry.first->getName());
1382 for (const auto &Entry : FileEntries) {
1383 auto I = Entry.second;
1384 FilenameStrs[I] = normalizeFilename(Entry.first->getName());
H A DCodeGenTypes.cpp717 llvm::StructType *&Entry = RecordDeclTypes[Key]; local
720 if (!Entry) {
721 Entry = llvm::StructType::create(getLLVMContext());
722 addRecordTypeName(RD, Entry, "");
724 llvm::StructType *Ty = Entry;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DPPMacroExpansion.cpp447 for (const IncludeStackInfo &Entry : llvm::reverse(IncludeMacroStack)) {
448 if (Entry.TheLexer)
449 Val = Entry.TheLexer->isNextPPTokenLParen();
451 Val = Entry.TheTokenLexer->isNextTokenLParen();
457 if (Entry.ThePPLexer)
1458 for (const auto &Entry : MacroPrefixMap)
1459 if (Path.startswith(Entry.first)) {
1460 Path = (Twine(Entry.second) + Path.substr(Entry.first.size())).str();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroSplit.cpp567 auto *Entry = cast<BasicBlock>(VMap[Shape.AllocaSpillBlock]); local
568 Entry->setName("entry" + Suffix);
569 Entry->moveBefore(&NewF->getEntryBlock());
570 Entry->getTerminator()->eraseFromParent();
575 assert(Entry->hasOneUse());
576 auto BranchToEntry = cast<BranchInst>(Entry->user_back());
582 // TODO: move any allocas into Entry that weren't moved into the frame.
586 Builder.SetInsertPoint(Entry);
1443 auto *Entry = BasicBlock::Create(C, "entry", DevirtFn); local
1444 ReturnInst::Create(C, Entry);
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp119 VMRangeToFileOffset::Entry range_entry(addr, header.p_memsz, file_range);
125 VMRangeToFileOffset::Entry *last_entry = m_core_aranges.Back();
143 VMRangeToPermissions::Entry(addr, header.p_memsz, permissions));
294 const VMRangeToPermissions::Entry *permission_entry =
339 const VMRangeToFileOffset::Entry *address_range =
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCallAndReturn.cpp45 const CFGBlock *Entry = CE.getEntry(); local
48 assert(Entry->empty());
49 assert(Entry->succ_size() == 1);
52 const CFGBlock *Succ = *(Entry->succ_begin());
55 BlockEdge Loc(Entry, Succ, calleeCtx);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp850 for (const auto &Entry : YamlJTI.Entries) {
852 for (const auto &MBBSource : Entry.Blocks) {
859 if (!PFS.JumpTableSlots.insert(std::make_pair(Entry.ID.Value, Index))
861 return error(Entry.ID.SourceRange.Start,
863 Twine(Entry.ID.Value) + "'");
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnit.cpp71 const DWARFUnitIndex::Entry *IndexEntry)
142 DWARFUnitVector::getUnitForIndexEntry(const DWARFUnitIndex::Entry &E) {
260 const DWARFUnitIndex::Entry *Entry) {
263 IndexEntry = Entry;
255 extract(DWARFContext &Context, const DWARFDataExtractor &debug_info, uint64_t *offset_ptr, DWARFSectionKind SectionKind, const DWARFUnitIndex *Index, const DWARFUnitIndex::Entry *Entry) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRPrinter.cpp530 yaml::MachineJumpTable::Entry Entry; local
531 Entry.ID = ID++;
535 Entry.Blocks.push_back(StrOS.str());
538 YamlJTI.Entries.push_back(Entry);
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenInstruction.cpp692 Record *&Entry = NameClass[Result->getArgNameStr(i)]; local
693 if (Entry && Entry != ADI->getDef())
695 " is both " + Entry->getName() + " and " +
697 Entry = ADI->getDef();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCFrameLowering.cpp223 for (const auto &Entry : CSI) {
224 unsigned Reg = Entry.getReg();
225 int FI = Entry.getFrameIdx();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DArchiveWriter.cpp452 for (auto &Entry : FilenameCount)
453 Entry.second = Entry.second > 1 ? 1 : 0;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp100 for (auto &Entry : CacheIter->second) {
101 if (Entry.size() >= Size) {
102 Buffer = Entry.slice(0, Size);

Completed in 421 milliseconds

<<11121314151617181920