Home
last modified time | relevance | path

Searched refs:NextEntry (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/
H A DGDBRegistrationListener.cpp142 jit_code_entry* NextEntry = __jit_debug_descriptor.first_entry; in NotifyDebugger() local
143 JITCodeEntry->next_entry = NextEntry; in NotifyDebugger()
144 if (NextEntry) { in NotifyDebugger()
145 NextEntry->prev_entry = JITCodeEntry; in NotifyDebugger()
217 jit_code_entry* NextEntry = JITCodeEntry->next_entry; in deregisterObjectInternal() local
219 if (NextEntry) { in deregisterObjectInternal()
220 NextEntry->prev_entry = PrevEntry; in deregisterObjectInternal()
223 PrevEntry->next_entry = NextEntry; in deregisterObjectInternal()
227 __jit_debug_descriptor.first_entry = NextEntry; in deregisterObjectInternal()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DJITLoaderGDB.cpp89 jit_code_entry *NextEntry = __jit_debug_descriptor.first_entry; in registerJITLoaderGDBImpl() local
90 E->next_entry = NextEntry; in registerJITLoaderGDBImpl()
91 if (NextEntry) { in registerJITLoaderGDBImpl()
92 NextEntry->prev_entry = E; in registerJITLoaderGDBImpl()
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DPrettyStackTrace.cpp75 std::tie(Prev, Head, Head->NextEntry) = in ReverseStackTrace()
76 std::make_tuple(Head, Head->NextEntry, Prev); in ReverseStackTrace()
222 NextEntry = PrettyStackTraceHead; in PrettyStackTraceEntry()
231 PrettyStackTraceHead = NextEntry; in ~PrettyStackTraceEntry()
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DPrettyStackTrace.h55 PrettyStackTraceEntry *NextEntry; variable
66 const PrettyStackTraceEntry *getNextEntry() const { return NextEntry; } in getNextEntry()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp1812 auto *NextEntry = std::next(CurEntry); in buildLocationList() local
1813 while (NextEntry != DebugLoc.end()) { in buildLocationList()
1823 NextEntry->getBeginSym() != RangeMBB->getNextNode()->getSymbol() || in buildLocationList()
1824 CurEntry->getValues() != NextEntry->getValues()) in buildLocationList()
1827 CurEntry = NextEntry; in buildLocationList()
1828 NextEntry = std::next(CurEntry); in buildLocationList()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DControlHeightReduction.cpp174 BasicBlock *NextEntry = Next->getEntryBlock(); in appendable() local
175 if (getExitBlock() != NextEntry) in appendable()
179 for (BasicBlock *Pred : predecessors(NextEntry)) in appendable()
/openbsd-src/gnu/llvm/clang/lib/Basic/
H A DSourceManager.cpp1138 const SrcMgr::SLocEntry &NextEntry = getSLocEntry(NextFID, &Invalid); in isAtEndOfImmediateMacroExpansion() local
1141 if (NextEntry.isExpansion() && in isAtEndOfImmediateMacroExpansion()
1142 NextEntry.getExpansion().getExpansionLocStart() == in isAtEndOfImmediateMacroExpansion()