forked from OSchip/llvm-project
Use target DisplaySource if available so we can get mixed source and assembly.
This fixes "disassemble -m -n __printf". llvm-svn: 185845
This commit is contained in:
parent
ce1960f936
commit
4b2967ff9f
|
@ -402,6 +402,9 @@ Disassembler::PrintInstructions
|
|||
ExecutionContextScope *exe_scope = exe_ctx.GetBestExecutionContextScope();
|
||||
StackFrame *frame = exe_ctx.GetFramePtr();
|
||||
|
||||
TargetSP target_sp (exe_ctx.GetTargetSP());
|
||||
SourceManager &source_manager = target_sp ? target_sp->GetSourceManager() : debugger.GetSourceManager();
|
||||
|
||||
if (frame)
|
||||
pc_addr_ptr = &frame->GetFrameCodeAddress();
|
||||
const uint32_t scope = eSymbolContextLineEntry | eSymbolContextFunction | eSymbolContextSymbol;
|
||||
|
@ -438,12 +441,12 @@ Disassembler::PrintInstructions
|
|||
|
||||
if (sc.comp_unit && sc.line_entry.IsValid())
|
||||
{
|
||||
debugger.GetSourceManager().DisplaySourceLinesWithLineNumbers (sc.line_entry.file,
|
||||
sc.line_entry.line,
|
||||
num_mixed_context_lines,
|
||||
num_mixed_context_lines,
|
||||
((inst_is_at_pc && (options & eOptionMarkPCSourceLine)) ? "->" : ""),
|
||||
&strm);
|
||||
source_manager.DisplaySourceLinesWithLineNumbers (sc.line_entry.file,
|
||||
sc.line_entry.line,
|
||||
num_mixed_context_lines,
|
||||
num_mixed_context_lines,
|
||||
((inst_is_at_pc && (options & eOptionMarkPCSourceLine)) ? "->" : ""),
|
||||
&strm);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue