1 //===-- SBInstruction.cpp ---------------------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "lldb/API/SBInstruction.h"
10 #include "SBReproducerPrivate.h"
12 #include "lldb/API/SBAddress.h"
13 #include "lldb/API/SBFrame.h"
14 #include "lldb/API/SBFile.h"
16 #include "lldb/API/SBInstruction.h"
17 #include "lldb/API/SBStream.h"
18 #include "lldb/API/SBTarget.h"
19 #include "lldb/Core/Disassembler.h"
20 #include "lldb/Core/EmulateInstruction.h"
21 #include "lldb/Core/Module.h"
22 #include "lldb/Core/StreamFile.h"
23 #include "lldb/Host/HostInfo.h"
24 #include "lldb/Target/ExecutionContext.h"
25 #include "lldb/Target/StackFrame.h"
26 #include "lldb/Target/Target.h"
27 #include "lldb/Utility/ArchSpec.h"
28 #include "lldb/Utility/DataBufferHeap.h"
29 #include "lldb/Utility/DataExtractor.h"
33 // We recently fixed a leak in one of the Instruction subclasses where the
34 // instruction will only hold a weak reference to the disassembler to avoid a
35 // cycle that was keeping both objects alive (leak) and we need the
36 // InstructionImpl class to make sure our public API behaves as users would
37 // expect. Calls in our public API allow clients to do things like:
39 // 1 lldb::SBInstruction inst;
40 // 2 inst = target.ReadInstructions(pc, 1).GetInstructionAtIndex(0)
41 // 3 if (inst.DoesBranch())
44 // There was a temporary lldb::DisassemblerSP object created in the
45 // SBInstructionList that was returned by lldb.target.ReadInstructions() that
46 // will go away after line 2 but the "inst" object should be able to still
47 // answer questions about itself. So we make sure that any SBInstruction
48 // objects that are given out have a strong reference to the disassembler and
49 // the instruction so that the object can live and successfully respond to all
51 class InstructionImpl
{
53 InstructionImpl(const lldb::DisassemblerSP
&disasm_sp
,
54 const lldb::InstructionSP
&inst_sp
)
55 : m_disasm_sp(disasm_sp
), m_inst_sp(inst_sp
) {}
57 lldb::InstructionSP
GetSP() const { return m_inst_sp
; }
59 bool IsValid() const { return (bool)m_inst_sp
; }
62 lldb::DisassemblerSP m_disasm_sp
; // Can be empty/invalid
63 lldb::InstructionSP m_inst_sp
;
67 using namespace lldb_private
;
69 SBInstruction::SBInstruction() : m_opaque_sp() {
70 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBInstruction
);
73 SBInstruction::SBInstruction(const lldb::DisassemblerSP
&disasm_sp
,
74 const lldb::InstructionSP
&inst_sp
)
75 : m_opaque_sp(new InstructionImpl(disasm_sp
, inst_sp
)) {}
77 SBInstruction::SBInstruction(const SBInstruction
&rhs
)
78 : m_opaque_sp(rhs
.m_opaque_sp
) {
79 LLDB_RECORD_CONSTRUCTOR(SBInstruction
, (const lldb::SBInstruction
&), rhs
);
82 const SBInstruction
&SBInstruction::operator=(const SBInstruction
&rhs
) {
83 LLDB_RECORD_METHOD(const lldb::SBInstruction
&,
84 SBInstruction
, operator=,(const lldb::SBInstruction
&),
88 m_opaque_sp
= rhs
.m_opaque_sp
;
89 return LLDB_RECORD_RESULT(*this);
92 SBInstruction::~SBInstruction() {}
94 bool SBInstruction::IsValid() {
95 LLDB_RECORD_METHOD_NO_ARGS(bool, SBInstruction
, IsValid
);
96 return this->operator bool();
98 SBInstruction::operator bool() const {
99 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBInstruction
, operator bool);
101 return m_opaque_sp
&& m_opaque_sp
->IsValid();
104 SBAddress
SBInstruction::GetAddress() {
105 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBAddress
, SBInstruction
, GetAddress
);
108 lldb::InstructionSP
inst_sp(GetOpaque());
109 if (inst_sp
&& inst_sp
->GetAddress().IsValid())
110 sb_addr
.SetAddress(&inst_sp
->GetAddress());
111 return LLDB_RECORD_RESULT(sb_addr
);
114 const char *SBInstruction::GetMnemonic(SBTarget target
) {
115 LLDB_RECORD_METHOD(const char *, SBInstruction
, GetMnemonic
, (lldb::SBTarget
),
118 lldb::InstructionSP
inst_sp(GetOpaque());
120 ExecutionContext exe_ctx
;
121 TargetSP
target_sp(target
.GetSP());
122 std::unique_lock
<std::recursive_mutex
> lock
;
124 lock
= std::unique_lock
<std::recursive_mutex
>(target_sp
->GetAPIMutex());
126 target_sp
->CalculateExecutionContext(exe_ctx
);
127 exe_ctx
.SetProcessSP(target_sp
->GetProcessSP());
129 return inst_sp
->GetMnemonic(&exe_ctx
);
134 const char *SBInstruction::GetOperands(SBTarget target
) {
135 LLDB_RECORD_METHOD(const char *, SBInstruction
, GetOperands
, (lldb::SBTarget
),
138 lldb::InstructionSP
inst_sp(GetOpaque());
140 ExecutionContext exe_ctx
;
141 TargetSP
target_sp(target
.GetSP());
142 std::unique_lock
<std::recursive_mutex
> lock
;
144 lock
= std::unique_lock
<std::recursive_mutex
>(target_sp
->GetAPIMutex());
146 target_sp
->CalculateExecutionContext(exe_ctx
);
147 exe_ctx
.SetProcessSP(target_sp
->GetProcessSP());
149 return inst_sp
->GetOperands(&exe_ctx
);
154 const char *SBInstruction::GetComment(SBTarget target
) {
155 LLDB_RECORD_METHOD(const char *, SBInstruction
, GetComment
, (lldb::SBTarget
),
158 lldb::InstructionSP
inst_sp(GetOpaque());
160 ExecutionContext exe_ctx
;
161 TargetSP
target_sp(target
.GetSP());
162 std::unique_lock
<std::recursive_mutex
> lock
;
164 lock
= std::unique_lock
<std::recursive_mutex
>(target_sp
->GetAPIMutex());
166 target_sp
->CalculateExecutionContext(exe_ctx
);
167 exe_ctx
.SetProcessSP(target_sp
->GetProcessSP());
169 return inst_sp
->GetComment(&exe_ctx
);
174 size_t SBInstruction::GetByteSize() {
175 LLDB_RECORD_METHOD_NO_ARGS(size_t, SBInstruction
, GetByteSize
);
177 lldb::InstructionSP
inst_sp(GetOpaque());
179 return inst_sp
->GetOpcode().GetByteSize();
183 SBData
SBInstruction::GetData(SBTarget target
) {
184 LLDB_RECORD_METHOD(lldb::SBData
, SBInstruction
, GetData
, (lldb::SBTarget
),
187 lldb::SBData sb_data
;
188 lldb::InstructionSP
inst_sp(GetOpaque());
190 DataExtractorSP
data_extractor_sp(new DataExtractor());
191 if (inst_sp
->GetData(*data_extractor_sp
)) {
192 sb_data
.SetOpaque(data_extractor_sp
);
195 return LLDB_RECORD_RESULT(sb_data
);
198 bool SBInstruction::DoesBranch() {
199 LLDB_RECORD_METHOD_NO_ARGS(bool, SBInstruction
, DoesBranch
);
201 lldb::InstructionSP
inst_sp(GetOpaque());
203 return inst_sp
->DoesBranch();
207 bool SBInstruction::HasDelaySlot() {
208 LLDB_RECORD_METHOD_NO_ARGS(bool, SBInstruction
, HasDelaySlot
);
210 lldb::InstructionSP
inst_sp(GetOpaque());
212 return inst_sp
->HasDelaySlot();
216 bool SBInstruction::CanSetBreakpoint() {
217 LLDB_RECORD_METHOD_NO_ARGS(bool, SBInstruction
, CanSetBreakpoint
);
219 lldb::InstructionSP
inst_sp(GetOpaque());
221 return inst_sp
->CanSetBreakpoint();
225 lldb::InstructionSP
SBInstruction::GetOpaque() {
227 return m_opaque_sp
->GetSP();
229 return lldb::InstructionSP();
232 void SBInstruction::SetOpaque(const lldb::DisassemblerSP
&disasm_sp
,
233 const lldb::InstructionSP
&inst_sp
) {
234 m_opaque_sp
= std::make_shared
<InstructionImpl
>(disasm_sp
, inst_sp
);
237 bool SBInstruction::GetDescription(lldb::SBStream
&s
) {
238 LLDB_RECORD_METHOD(bool, SBInstruction
, GetDescription
, (lldb::SBStream
&),
241 lldb::InstructionSP
inst_sp(GetOpaque());
244 const Address
&addr
= inst_sp
->GetAddress();
245 ModuleSP
module_sp(addr
.GetModule());
247 module_sp
->ResolveSymbolContextForAddress(addr
, eSymbolContextEverything
,
249 // Use the "ref()" instead of the "get()" accessor in case the SBStream
250 // didn't have a stream already created, one will get created...
251 FormatEntity::Entry format
;
252 FormatEntity::Parse("${addr}: ", format
);
253 inst_sp
->Dump(&s
.ref(), 0, true, false, nullptr, &sc
, nullptr, &format
, 0);
259 void SBInstruction::Print(FILE *outp
) {
260 LLDB_RECORD_METHOD(void, SBInstruction
, Print
, (FILE *), outp
);
261 FileSP out
= std::make_shared
<NativeFile
>(outp
, /*take_ownership=*/false);
265 void SBInstruction::Print(SBFile out
) {
266 LLDB_RECORD_METHOD(void, SBInstruction
, Print
, (SBFile
), out
);
267 Print(out
.m_opaque_sp
);
270 void SBInstruction::Print(FileSP out_sp
) {
271 LLDB_RECORD_METHOD(void, SBInstruction
, Print
, (FileSP
), out_sp
);
273 if (!out_sp
|| !out_sp
->IsValid())
276 lldb::InstructionSP
inst_sp(GetOpaque());
279 const Address
&addr
= inst_sp
->GetAddress();
280 ModuleSP
module_sp(addr
.GetModule());
282 module_sp
->ResolveSymbolContextForAddress(addr
, eSymbolContextEverything
,
284 StreamFile
out_stream(out_sp
);
285 FormatEntity::Entry format
;
286 FormatEntity::Parse("${addr}: ", format
);
287 inst_sp
->Dump(&out_stream
, 0, true, false, nullptr, &sc
, nullptr, &format
,
292 bool SBInstruction::EmulateWithFrame(lldb::SBFrame
&frame
,
293 uint32_t evaluate_options
) {
294 LLDB_RECORD_METHOD(bool, SBInstruction
, EmulateWithFrame
,
295 (lldb::SBFrame
&, uint32_t), frame
, evaluate_options
);
297 lldb::InstructionSP
inst_sp(GetOpaque());
299 lldb::StackFrameSP
frame_sp(frame
.GetFrameSP());
302 lldb_private::ExecutionContext exe_ctx
;
303 frame_sp
->CalculateExecutionContext(exe_ctx
);
304 lldb_private::Target
*target
= exe_ctx
.GetTargetPtr();
305 lldb_private::ArchSpec arch
= target
->GetArchitecture();
307 return inst_sp
->Emulate(
308 arch
, evaluate_options
, (void *)frame_sp
.get(),
309 &lldb_private::EmulateInstruction::ReadMemoryFrame
,
310 &lldb_private::EmulateInstruction::WriteMemoryFrame
,
311 &lldb_private::EmulateInstruction::ReadRegisterFrame
,
312 &lldb_private::EmulateInstruction::WriteRegisterFrame
);
318 bool SBInstruction::DumpEmulation(const char *triple
) {
319 LLDB_RECORD_METHOD(bool, SBInstruction
, DumpEmulation
, (const char *),
322 lldb::InstructionSP
inst_sp(GetOpaque());
323 if (inst_sp
&& triple
) {
324 return inst_sp
->DumpEmulation(HostInfo::GetAugmentedArchSpec(triple
));
329 bool SBInstruction::TestEmulation(lldb::SBStream
&output_stream
,
330 const char *test_file
) {
331 LLDB_RECORD_METHOD(bool, SBInstruction
, TestEmulation
,
332 (lldb::SBStream
&, const char *), output_stream
,
336 SetOpaque(lldb::DisassemblerSP(),
337 lldb::InstructionSP(new PseudoInstruction()));
339 lldb::InstructionSP
inst_sp(GetOpaque());
341 return inst_sp
->TestEmulation(output_stream
.get(), test_file
);
345 namespace lldb_private
{
349 void RegisterMethods
<SBInstruction
>(Registry
&R
) {
350 LLDB_REGISTER_CONSTRUCTOR(SBInstruction
, ());
351 LLDB_REGISTER_CONSTRUCTOR(SBInstruction
, (const lldb::SBInstruction
&));
352 LLDB_REGISTER_METHOD(
353 const lldb::SBInstruction
&,
354 SBInstruction
, operator=,(const lldb::SBInstruction
&));
355 LLDB_REGISTER_METHOD(bool, SBInstruction
, IsValid
, ());
356 LLDB_REGISTER_METHOD_CONST(bool, SBInstruction
, operator bool, ());
357 LLDB_REGISTER_METHOD(lldb::SBAddress
, SBInstruction
, GetAddress
, ());
358 LLDB_REGISTER_METHOD(const char *, SBInstruction
, GetMnemonic
,
360 LLDB_REGISTER_METHOD(const char *, SBInstruction
, GetOperands
,
362 LLDB_REGISTER_METHOD(const char *, SBInstruction
, GetComment
,
364 LLDB_REGISTER_METHOD(size_t, SBInstruction
, GetByteSize
, ());
365 LLDB_REGISTER_METHOD(lldb::SBData
, SBInstruction
, GetData
,
367 LLDB_REGISTER_METHOD(bool, SBInstruction
, DoesBranch
, ());
368 LLDB_REGISTER_METHOD(bool, SBInstruction
, HasDelaySlot
, ());
369 LLDB_REGISTER_METHOD(bool, SBInstruction
, CanSetBreakpoint
, ());
370 LLDB_REGISTER_METHOD(bool, SBInstruction
, GetDescription
,
372 LLDB_REGISTER_METHOD(void, SBInstruction
, Print
, (FILE *));
373 LLDB_REGISTER_METHOD(void, SBInstruction
, Print
, (SBFile
));
374 LLDB_REGISTER_METHOD(void, SBInstruction
, Print
, (FileSP
));
375 LLDB_REGISTER_METHOD(bool, SBInstruction
, EmulateWithFrame
,
376 (lldb::SBFrame
&, uint32_t));
377 LLDB_REGISTER_METHOD(bool, SBInstruction
, DumpEmulation
, (const char *));
378 LLDB_REGISTER_METHOD(bool, SBInstruction
, TestEmulation
,
379 (lldb::SBStream
&, const char *));