Home
last modified time | relevance | path

Searched refs:m_context (Results 1 – 24 of 24) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/x64/
H A DRegisterContextWindows_x64.cpp426 reg_value.SetBytes(&m_context.Xmm0, in ReadRegister()
430 reg_value.SetBytes(&m_context.Xmm1, in ReadRegister()
434 reg_value.SetBytes(&m_context.Xmm2, in ReadRegister()
438 reg_value.SetBytes(&m_context.Xmm3, in ReadRegister()
442 reg_value.SetBytes(&m_context.Xmm4, in ReadRegister()
446 reg_value.SetBytes(&m_context.Xmm5, in ReadRegister()
450 reg_value.SetBytes(&m_context.Xmm6, in ReadRegister()
454 reg_value.SetBytes(&m_context.Xmm7, in ReadRegister()
458 reg_value.SetBytes(&m_context.Xmm8, in ReadRegister()
462 reg_value.SetBytes(&m_context.Xmm9, in ReadRegister()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/arm/
H A DRegisterContextWindows_arm.cpp115 reg_value.SetUInt32(m_context.R0); in ReadRegister()
118 reg_value.SetUInt32(m_context.R1); in ReadRegister()
121 reg_value.SetUInt32(m_context.R2); in ReadRegister()
124 reg_value.SetUInt32(m_context.R3); in ReadRegister()
127 reg_value.SetUInt32(m_context.R4); in ReadRegister()
130 reg_value.SetUInt32(m_context.R5); in ReadRegister()
133 reg_value.SetUInt32(m_context.R6); in ReadRegister()
136 reg_value.SetUInt32(m_context.R7); in ReadRegister()
139 reg_value.SetUInt32(m_context.R8); in ReadRegister()
142 reg_value.SetUInt32(m_context.R9); in ReadRegister()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/
H A DRegisterContextWindows.cpp46 memcpy(data_sp->GetBytes(), &m_context, sizeof(m_context)); in ReadAllRegisterValues()
54 memcpy(&m_context, data_sp->GetBytes(), sizeof(m_context)); in WriteAllRegisterValues()
100 m_context.Dr7 |= 1ULL << shift; in AddHardwareBreakpoint()
102 (&m_context.Dr0)[slot] = address; in AddHardwareBreakpoint()
105 m_context.Dr7 &= ~(3ULL << shift); in AddHardwareBreakpoint()
109 m_context.Dr7 &= ~(3ULL << shift); in AddHardwareBreakpoint()
130 m_context.Dr7 &= ~(1ULL << shift); in RemoveHardwareBreakpoint()
144 if (m_context.Dr6 & (1ULL << i)) in GetTriggeredHardwareBreakpointSlotId()
157 memset(&m_context, 0, sizeof(m_context)); in CacheAllRegisterValues()
158 m_context.ContextFlags = kWinContextFlags; in CacheAllRegisterValues()
[all …]
H A DRegisterContextWindows.h55 CONTEXT m_context; variable
/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/x86/
H A DRegisterContextWindows_x86.cpp216 m_context.Eax = reg_value.GetAsUInt32(); in WriteRegister()
220 m_context.Ebx = reg_value.GetAsUInt32(); in WriteRegister()
224 m_context.Ecx = reg_value.GetAsUInt32(); in WriteRegister()
228 m_context.Edx = reg_value.GetAsUInt32(); in WriteRegister()
232 m_context.Edi = reg_value.GetAsUInt32(); in WriteRegister()
236 m_context.Esi = reg_value.GetAsUInt32(); in WriteRegister()
240 m_context.Ebp = reg_value.GetAsUInt32(); in WriteRegister()
244 m_context.Esp = reg_value.GetAsUInt32(); in WriteRegister()
248 m_context.Eip = reg_value.GetAsUInt32(); in WriteRegister()
252 m_context.EFlags = reg_value.GetAsUInt32(); in WriteRegister()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/arm64/
H A DRegisterContextWindows_arm64.cpp162 reg_value.SetUInt64(m_context.Fp); in ReadRegister()
165 reg_value.SetUInt64(m_context.Sp); in ReadRegister()
168 reg_value.SetUInt64(m_context.Lr); in ReadRegister()
171 reg_value.SetUInt64(m_context.Pc); in ReadRegister()
174 reg_value.SetUInt32(m_context.Cpsr); in ReadRegister()
317 reg_value.SetUInt32(m_context.Fpsr); in ReadRegister()
321 reg_value.SetUInt32(m_context.Fpcr); in ReadRegister()
376 m_context.Fp = reg_value.GetAsUInt64(); in WriteRegister()
379 m_context.Sp = reg_value.GetAsUInt64(); in WriteRegister()
382 m_context.Lr = reg_value.GetAsUInt64(); in WriteRegister()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.h31 : m_full(), m_basename(), m_context(), m_arguments(), m_qualifiers() {} in MethodName()
34 : m_full(s), m_basename(), m_context(), m_arguments(), m_qualifiers(), in MethodName()
69 llvm::StringRef m_context; // Decl context: "lldb::SBTarget" variable
H A DCPlusPlusLanguage.cpp108 m_context = llvm::StringRef(); in Clear()
194 m_context = full.substr(context_start, context_end - 1 - context_start); in TrySimplifiedParse()
204 m_context = llvm::StringRef(); in TrySimplifiedParse()
222 m_context = function.value().name.context; in Parse()
243 return m_context; in GetContext()
261 if (m_context.empty()) in GetScopeQualifiedName()
265 res += m_context; in GetScopeQualifiedName()
294 if (m_context.empty()) in ContainsPath()
297 llvm::StringRef haystack = m_context; in ContainsPath()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugInfo.cpp34 : m_dwarf(dwarf), m_context(context), m_units(), m_cu_aranges_up() {} in DWARFDebugInfo()
42 m_context.getOrLoadArangesData(); in GetCompileUnitAranges()
72 ? m_context.getOrLoadDebugTypesData() in ParseUnitsFor()
73 : m_context.getOrLoadDebugInfoData(); in ParseUnitsFor()
H A DSymbolFileDWARFDwo.cpp35 m_context.GetAsLLVM().getCUIndex(); in SymbolFileDWARFDwo()
39 if (const llvm::DWARFUnitIndex &index = m_context.GetAsLLVM().getCUIndex()) { in GetDWOCompileUnitForHash()
H A DDWARFDebugInfo.h61 lldb_private::DWARFContext &m_context; variable
H A DSymbolFileDWARF.cpp416 m_context(m_objfile_sp->GetModule()->GetSectionList(), dwo_section_list), in SymbolFileDWARF()
469 apple_types, apple_objc, m_context.getOrLoadStrData()); in InitializeObject()
483 m_context.getOrLoadStrData(), *this); in InitializeObject()
640 m_info = std::make_unique<DWARFDebugInfo>(*this, m_context); in DebugInfo()
663 if (m_context.getOrLoadRangesData().GetByteSize() > 0) in GetDebugRanges()
667 m_ranges->Extract(m_context); in GetDebugRanges()
992 if (!ParseLLVMLineTablePrologue(m_context, prologue, offset, in ParseSupportFiles()
1030 llvm::DWARFDataExtractor data = m_context.getOrLoadLineData().GetAsLLVM(); in GetTypeUnitSupportFiles()
1031 llvm::DWARFContext &ctx = m_context.GetAsLLVM(); in GetTypeUnitSupportFiles()
1130 ParseLLVMLineTable(m_context, line, offset, dwarf_cu->GetOffset()); in ParseLineTable()
[all …]
H A DSymbolFileDWARF.h295 lldb_private::DWARFContext &GetDWARFContext() { return m_context; } in GetDWARFContext()
527 lldb_private::DWARFContext m_context; variable
/llvm-project-15.0.7/lldb/source/Core/
H A DValue.cpp54 m_context(v.m_context), m_value_type(v.m_value_type), in Value()
71 m_context = rhs.m_context; in operator =()
102 Value::GetValueTypeAsCString(m_value_type), m_context, in Dump()
125 return static_cast<RegisterInfo *>(m_context); in GetRegisterInfo()
131 return static_cast<Type *>(m_context); in GetType()
603 return static_cast<Variable *>(m_context); in GetVariable()
611 m_context = nullptr; in Clear()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DValue.h92 m_context = nullptr; in ClearContext()
98 m_context = p; in SetContext()
151 void *m_context = nullptr; variable
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DCxxModuleHandler.cpp103 : m_context(context), m_error(error) {} in MissingDeclContext()
105 DeclContext *m_context; member
110 m_context->getDeclKindName(), m_error); in log()
H A DClangPersistentVariables.h100 TypeSystemClang *m_context = nullptr; member
H A DClangPersistentVariables.cpp82 return CompilerType(p.m_context, t); in GetCompilerTypeFromPersistentDecl()
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DType.h181 SymbolContextScope *GetSymbolContextScope() { return m_context; } in GetSymbolContextScope()
182 const SymbolContextScope *GetSymbolContextScope() const { return m_context; } in GetSymbolContextScope()
184 m_context = context; in SetSymbolContextScope()
224 SymbolContextScope *m_context = nullptr; variable
/llvm-project-15.0.7/lldb/source/Plugins/Instruction/MIPS64/
H A DEmulateInstructionMIPS64.h176 std::unique_ptr<llvm::MCContext> m_context; variable
H A DEmulateInstructionMIPS64.cpp166 m_context = std::make_unique<llvm::MCContext>( in EmulateInstructionMIPS64()
168 assert(m_context.get()); in EmulateInstructionMIPS64()
170 m_disasm.reset(target->createMCDisassembler(*m_subtype_info, *m_context)); in EmulateInstructionMIPS64()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DType.cpp149 m_symbol_file(symbol_file), m_context(context), in Type()
246 if (show_context && m_context != nullptr) { in Dump()
248 m_context->DumpSymbolContext(s); in Dump()
/llvm-project-15.0.7/lldb/source/Plugins/Instruction/MIPS/
H A DEmulateInstructionMIPS.h213 std::unique_ptr<llvm::MCContext> m_context; variable
H A DEmulateInstructionMIPS.cpp162 m_context = std::make_unique<llvm::MCContext>( in EmulateInstructionMIPS()
164 assert(m_context.get()); in EmulateInstructionMIPS()
166 m_disasm.reset(target->createMCDisassembler(*m_subtype_info, *m_context)); in EmulateInstructionMIPS()
180 target->createMCDisassembler(*m_alt_subtype_info, *m_context)); in EmulateInstructionMIPS()