Re: [lldb-dev] LLDB's disassemble function

2020-07-31 Thread Greg Clayton via lldb-dev
> On Jul 30, 2020, at 8:07 PM, Rui Hong via lldb-dev > wrote: > > Hi LLDB devs, > > I have almost finished porting LLDB to my architecture, now LLDB communicates > well with my GDB stub of my simulator and can do debugging actions like > breakpoint, continue, step, reading memory, reading r

Re: [lldb-dev] LLDB's disassemble function

2020-07-31 Thread Ted Woodward via lldb-dev
Hi Rui, Disassembler::Disassemble calls ParseInstructions with prefer_file_cache set to false. Try setting prefer_file_cache to true. Ted From: lldb-dev On Behalf Of Rui Hong via lldb-dev Sent: Thursday, July 30, 2020 10:08 PM To: lldb-dev Subject: [EXT] [lldb-dev] LLDB's disass

[lldb-dev] LLDB's disassemble function

2020-07-30 Thread Rui Hong via lldb-dev
Hi LLDB devs, I have almost finished porting LLDB to my architecture, now LLDB communicates well with my GDB stub of my simulator and can do debugging actions like breakpoint, continue, step, reading memory, reading registers and so on. Thanks to all of your kind advice~ Now I consider addin