Re: [Qemu-devel] [PATCH v4] target-ppc: Introduce unrealizefn for PowerPCCPU

2013-06-20 Thread Alexander Graf
On 09.06.2013, at 22:11, Andreas Färber wrote: > Use it to clean up the opcode table, resolving a former TODO from Jocelyn. > Also switch from malloc() to g_malloc(). > > Signed-off-by: Andreas Färber Thanks, applied to ppc-next. Alex

[Qemu-devel] [PATCH v4] target-ppc: Introduce unrealizefn for PowerPCCPU

2013-06-09 Thread Andreas Färber
Use it to clean up the opcode table, resolving a former TODO from Jocelyn. Also switch from malloc() to g_malloc(). Signed-off-by: Andreas Färber --- v3 -> v4: * Introduced PPC_CPU_OPCODES_LEN constant to avoid magic 0x40 (requested by Alex). From "QOM'ify Power Architecture CPU" v2: * Impl