Home
last modified time | relevance | path

Searched refs:m_sc (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp60 m_id(pc, cfa, nullptr), m_frame_code_addr(pc), m_sc(), m_flags(), in StackFrame()
74 m_sc = *sc_ptr; in StackFrame()
75 m_flags.Set(m_sc.GetResolvedMask()); in StackFrame()
87 m_frame_code_addr(pc), m_sc(), m_flags(), m_frame_base(), in StackFrame()
94 m_sc = *sc_ptr; in StackFrame()
95 m_flags.Set(m_sc.GetResolvedMask()); in StackFrame()
98 if (reg_context_sp && !m_sc.target_sp) { in StackFrame()
99 m_sc.target_sp = reg_context_sp->CalculateTarget(); in StackFrame()
100 if (m_sc.target_sp) in StackFrame()
115 m_frame_code_addr(pc_addr), m_sc(), m_flags(), m_frame_base(), in StackFrame()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DASTUtils.h145 clang::SemaConsumer *m_sc; variable
149 m_sc = llvm::dyn_cast<clang::SemaConsumer>(m_c); in ASTConsumerForwarder()
221 if (m_sc) in InitializeSema()
222 m_sc->InitializeSema(S); in InitializeSema()
227 if (m_sc) in ForgetSema()
228 m_sc->ForgetSema(); in ForgetSema()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp6782 : WindowDelegate(), m_debugger(debugger), m_sc(), m_file_sp(), in SourceFileWindowDelegate()
6787 void Update(const SymbolContext &sc) { m_sc = sc; } in Update()
6868 m_sc = frame_sp->GetSymbolContext(eSymbolContextEverything); in WindowDelegateDraw()
6869 if (m_sc.module_sp) { in WindowDelegateDraw()
6871 "%s", m_sc.module_sp->GetFileSpec().GetFilename().GetCString()); in WindowDelegateDraw()
6872 ConstString func_name = m_sc.GetFunctionName(); in WindowDelegateDraw()
6880 m_sc.Clear(true); in WindowDelegateDraw()
6889 if (m_sc.line_entry.IsValid()) { in WindowDelegateDraw()
6890 m_pc_line = m_sc.line_entry.line; in WindowDelegateDraw()
6898 m_file_sp->GetFileSpec() == m_sc.line_entry.GetFile()) { in WindowDelegateDraw()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DStackFrame.h530 SymbolContext m_sc; variable