Searched refs:NextEntry (Results 1 – 8 of 8) sorted by relevance
141 jit_code_entry* NextEntry = __jit_debug_descriptor.first_entry; in NotifyDebugger() local142 JITCodeEntry->next_entry = NextEntry; in NotifyDebugger()143 if (NextEntry) { in NotifyDebugger()144 NextEntry->prev_entry = JITCodeEntry; in NotifyDebugger()216 jit_code_entry* NextEntry = JITCodeEntry->next_entry; in deregisterObjectInternal() local218 if (NextEntry) { in deregisterObjectInternal()219 NextEntry->prev_entry = PrevEntry; in deregisterObjectInternal()222 PrevEntry->next_entry = NextEntry; in deregisterObjectInternal()226 __jit_debug_descriptor.first_entry = NextEntry; in deregisterObjectInternal()
65 jit_code_entry *NextEntry = __jit_debug_descriptor.first_entry; in appendJITDebugDescriptor() local66 E->next_entry = NextEntry; in appendJITDebugDescriptor()67 if (NextEntry) { in appendJITDebugDescriptor()68 NextEntry->prev_entry = E; in appendJITDebugDescriptor()
74 std::tie(Prev, Head, Head->NextEntry) = in ReverseStackTrace()75 std::make_tuple(Head, Head->NextEntry, Prev); in ReverseStackTrace()221 NextEntry = PrettyStackTraceHead; in PrettyStackTraceEntry()230 PrettyStackTraceHead = NextEntry; in ~PrettyStackTraceEntry()
57 PrettyStackTraceEntry *NextEntry; variable68 const PrettyStackTraceEntry *getNextEntry() const { return NextEntry; } in getNextEntry()
2929 #define BASE_LIST_FOR_EACH_SAFE(Entry, NextEntry, ListHead) \ argument2930 for(Entry = (ListHead)->ForwardLink, NextEntry = Entry->ForwardLink;\2931 Entry != (ListHead); Entry = NextEntry, NextEntry = Entry->ForwardLink)
1838 auto *NextEntry = std::next(CurEntry); in buildLocationList() local1840 while (NextEntry != DebugLoc.end()) { in buildLocationList()1850 NextEntry->getBeginSym() != NextRangeIt->second.BeginLabel || in buildLocationList()1851 CurEntry->getValues() != NextEntry->getValues()) in buildLocationList()1855 CurEntry = NextEntry; in buildLocationList()1856 NextEntry = std::next(CurEntry); in buildLocationList()
1093 const SrcMgr::SLocEntry &NextEntry = getSLocEntry(NextFID, &Invalid); in isAtEndOfImmediateMacroExpansion() local1096 if (NextEntry.isExpansion() && in isAtEndOfImmediateMacroExpansion()1097 NextEntry.getExpansion().getExpansionLocStart() == in isAtEndOfImmediateMacroExpansion()
173 BasicBlock *NextEntry = Next->getEntryBlock(); in appendable() local174 if (getExitBlock() != NextEntry) in appendable()178 for (BasicBlock *Pred : predecessors(NextEntry)) in appendable()