Searched refs:Entry (Results 101 - 125 of 500) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDIEHash.cpp136 const DIE &Entry, StringRef Name) {
144 if (const DIE *Parent = Entry.getParent())
175 const DIE &Entry) {
191 StringRef Name = getDIEStringAttr(Entry, dwarf::DW_AT_name);
193 hashShallowTypeReference(Attribute, Entry, Name);
198 unsigned &DieNumber = Numbering[&Entry];
212 computeHash(Entry);
227 for (const auto &Entry : Locs.getEntries(Locs.getList(LocList.getValue())))
228 DD.emitDebugLocEntry(Streamer, Entry, nullptr);
135 hashShallowTypeReference(dwarf::Attribute Attribute, const DIE &Entry, StringRef Name) argument
174 hashDIEEntry(dwarf::Attribute Attribute, dwarf::Tag Tag, const DIE &Entry) argument
H A DAddressPool.cpp72 for (const MCExpr *Entry : Entries)
73 Asm.OutStreamer->EmitValue(Entry, Asm.getDataLayout().getPointerSize());
H A DDebugLocStream.h27 /// variable/inlined-at pair, and an \a Entry for each \a DebugLocEntry.
40 struct Entry { struct in class:llvm::DebugLocStream
49 SmallVector<Entry, 32> Entries;
110 ArrayRef<Entry> getEntries(const List &L) const {
116 ArrayRef<char> getBytes(const Entry &E) const {
121 ArrayRef<std::string> getComments(const Entry &E) const {
133 size_t getIndex(const Entry &E) const {
H A DDebugHandlerBase.cpp243 [&](DbgValueHistoryMap::Entry Pred) {
260 for (const auto &Entry : Entries) {
261 if (Entry.isDbgValue())
262 requestLabelBeforeInsn(Entry.getInstr());
264 requestLabelAfterInsn(Entry.getInstr());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFYAML.cpp77 DWARFYAML::PubEntry &Entry) {
78 IO.mapRequired("DieOffset", Entry.DieOffset);
80 IO.mapRequired("Descriptor", Entry.Descriptor);
81 IO.mapRequired("Name", Entry.Name);
108 void MappingTraits<DWARFYAML::Entry>::mapping(IO &IO, DWARFYAML::Entry &Entry) { argument
109 IO.mapRequired("AbbrCode", Entry.AbbrCode);
110 IO.mapRequired("Values", Entry.Values);
76 mapping(IO &IO, DWARFYAML::PubEntry &Entry) argument
H A DMinidumpEmitter.cpp139 Range.Entry.Memory = layout(File, Range.Content);
143 M.Entry.ModuleNameRVA = File.allocateString(M.Name);
145 M.Entry.CvRecord = layout(File, M.CvRecord);
146 M.Entry.MiscRecord = layout(File, M.MiscRecord);
150 T.Entry.Stack.Memory = layout(File, T.Stack);
151 T.Entry.Context = layout(File, T.Context);
160 File.allocateObject(E.Entry);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningFilesystem.cpp154 if (const CachedFileSystemEntry *Entry = getCachedEntry(Filename)) {
155 return Entry;
237 createFile(const CachedFileSystemEntry *Entry, argument
239 if (Entry->isDirectory())
242 llvm::ErrorOr<StringRef> Contents = Entry->getContents();
246 llvm::MemoryBuffer::getMemBuffer(*Contents, Entry->getName(),
248 *Entry->getStatus());
249 if (!Entry->getPPSkippedRangeMapping().empty() && PPSkipMappings)
251 &Entry->getPPSkippedRangeMapping();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNamedStreamMap.cpp110 for (const auto &Entry : OffsetIndexMap) {
111 StringRef Stream(NamesBuffer.data() + Entry.first);
112 Result.try_emplace(Stream, Entry.second);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSyntheticCountsPropagation.cpp140 for (auto Entry : Counts) {
141 Entry.first->setEntryCount(ProfileCount(
142 Entry.second.template toInt<uint64_t>(), Function::PCT_Synthetic));
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLoc.h78 virtual void dumpRawEntry(const DWARFLocationEntry &Entry, raw_ostream &OS,
115 void dumpRawEntry(const DWARFLocationEntry &Entry, raw_ostream &OS,
135 void dumpRawEntry(const DWARFLocationEntry &Entry, raw_ostream &OS,
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DSourceManager.h121 /// Can be different from 'Entry' if we overridden the contents of one file
652 /// Positive FileIDs are indexes into this table. Entry 0 indicates an invalid
987 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &MyInvalid); local
988 if (MyInvalid || !Entry.isFile()) {
995 return Entry.getFile().getContentCache()->getBuffer(Diag, getFileManager(),
1002 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &MyInvalid); local
1003 if (MyInvalid || !Entry.isFile()) {
1010 return Entry.getFile().getContentCache()->getBuffer(
1017 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &MyInvalid); local
1018 if (MyInvalid || !Entry
1030 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
1060 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
1072 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
1111 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
1123 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
1135 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
1225 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
[all...]
H A DIdentifierTable.h116 llvm::StringMapEntry<IdentifierInfo *> *Entry = nullptr; variable
149 const char *getNameStart() const { return Entry->getKeyData(); }
152 unsigned getLength() const { return Entry->getKeyLength(); }
530 auto &Entry = *HashTable.insert(std::make_pair(Name, nullptr)).first; local
532 IdentifierInfo *&II = Entry.second;
548 II->Entry = &Entry;
567 auto &Entry = *HashTable.insert(std::make_pair(Name, nullptr)).first; local
569 IdentifierInfo *&II = Entry.second;
579 II->Entry
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDwp.h47 std::map<uint64_t, const llvm::DWARFUnitIndex::Entry *> m_debug_cu_index_map;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileWrapper.cpp125 struct dirent* Entry; local
126 while (0 != (Entry = readdir(ProcDir))) {
127 if (Entry->d_type == DT_DIR) {
130 raw_svector_ostream(CmdLineFName) << "/proc/" << Entry->d_name
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfWriter.cpp80 [=](const auto &Entry) -> bool { return Entry.Type == Type; });
88 auto &Entry = getEntryInLayout(Type); local
90 if (hasSecFlag(Entry, SecFlagCompress))
119 auto Entry = getEntryInLayout(Type); local
120 if (hasSecFlag(Entry, SecFlagCompress)) {
125 SecHdrTable.push_back({Type, Entry.Flags, SectionStart - FileStart,
392 for (auto &Entry : SectionHdrLayout)
393 addSecFlags(Entry, SecFlagCompress);
402 for (auto &Entry
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLoopTraversal.cpp28 MachineBasicBlock *Entry = &*MF.begin(); local
29 ReversePostOrderTraversal<MachineBasicBlock *> RPOT(Entry);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DRegisterFile.h80 // one entry. Entry at index #0 is reserved. That entry describes a register
168 void allocatePhysRegs(const RegisterRenamingInfo &Entry,
173 void freePhysRegs(const RegisterRenamingInfo &Entry,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugMacro.cpp21 for (const Entry &E : Macros) {
68 Entry &E = M->back();
/freebsd-11-stable/lib/libc/net/
H A Dnsparser.y72 : Entry
73 | Lines Entry
76 Entry
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64SelectionDAGInfo.cpp37 TargetLowering::ArgListEntry Entry; local
38 Entry.Node = Dst;
39 Entry.Ty = IntPtrTy;
40 Args.push_back(Entry);
41 Entry.Node = Size;
42 Args.push_back(Entry);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DCFGMST.h101 const BasicBlock *Entry = &(F.getEntryBlock()); local
108 EntryIncoming = &addEdge(nullptr, Entry, EntryWeight);
109 LLVM_DEBUG(dbgs() << " Edge: from fake node to " << Entry->getName()
113 if (succ_empty(Entry)) {
114 addEdge(Entry, nullptr, EntryWeight);
144 if (&*BB == Entry) {
171 // Entry/exit edge adjustment heurisitic:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp737 std::pair<TableId, TableId> &Entry = ExpandedIntegers[getTableId(Op)]; local
738 assert((Entry.first != 0) && "Operand isn't expanded");
739 Lo = getSDValue(Entry.first);
740 Hi = getSDValue(Entry.second);
766 std::pair<TableId, TableId> &Entry = ExpandedIntegers[getTableId(Op)]; local
767 assert((Entry.first == 0) && "Node already expanded");
768 Entry.first = getTableId(Lo);
769 Entry.second = getTableId(Hi);
774 std::pair<TableId, TableId> &Entry = ExpandedFloats[getTableId(Op)]; local
775 assert((Entry
790 std::pair<TableId, TableId> &Entry = ExpandedFloats[getTableId(Op)]; local
798 std::pair<TableId, TableId> &Entry = SplitVectors[getTableId(Op)]; local
818 std::pair<TableId, TableId> &Entry = SplitVectors[getTableId(Op)]; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcherEmitter.cpp103 unsigned &Entry = NodePredicateMap[TP]; local
104 if (Entry == 0) {
111 Entry = NodePredicatesWithOperands.size();
114 Entry = NodePredicates.size();
118 Entry = NodePredicateMap[SameCodePreds.front()];
119 assert(Entry != 0);
128 return Entry-1;
132 unsigned &Entry = PatternPredicateMap[PredName]; local
133 if (Entry == 0) {
135 Entry
140 unsigned &Entry = ComplexPatternMap[&P]; local
149 unsigned &Entry = NodeXFormMap[Rec]; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/
H A DTruncInstCombine.cpp295 Info Entry = InstInfoMap.lookup(I); local
296 assert(Entry.NewValue);
297 return Entry.NewValue;
333 auto Entry = find(Worklist, I); local
334 if (Entry != Worklist.end()) {
336 *Entry = NewCI;
338 Worklist.erase(Entry);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h95 struct Entry { struct in namespace:llvm::DWARFYAML
106 std::vector<Entry> Entries;
171 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::DWARFYAML::Entry)
200 static void mapping(IO &IO, DWARFYAML::PubEntry &Entry);
211 template <> struct MappingTraits<DWARFYAML::Entry> {
212 static void mapping(IO &IO, DWARFYAML::Entry &Entry);

Completed in 396 milliseconds

1234567891011>>