[PATCH] do not lockdown github PRs submitted to forks of official mirror

2023-04-07 Thread lauren
From: "Lauren N. Liberda" qemu forks on github are typically the way of work on changes to be upstreamed later, such as support for new devices. currently, the workflow prevents any external contributors from submitting code changes, and blindly points them to upstream instead. Sig

Re: [Qemu-devel] Guest Code Instruction Trace

2013-12-23 Thread Lauren E Guckert
Thanks for the fast response, I really appreciate it. I implemented all of your suggestions and now it all works perfectly! On Mon, Dec 23, 2013 at 3:02 AM, Peter Maydell wrote: > On 23 December 2013 03:45, Lauren E Guckert wrote: > > IN TRANSLATE.C: > > DISA

[Qemu-devel] Guest Code Instruction Trace

2013-12-22 Thread Lauren E Guckert
st_trace64(uint64_t arg1, uint64_t arg2) { printf(PC = %016lx\t OPCODE:%08x\n", (unsigned long int)arg1,(unsigned int)arg2); } void tcg_helper_fast_trace32(uint32_t arg1, uint32_t arg2) { printf("PC = %016lx\t OPCODE = %08x\n", (unsigned long int)arg1,(unsigned int)arg2); } thanks, Lauren