Hi! On Tue, May 31, 2022 at 04:59:36PM +1000, Michael Ellerman wrote: > More problematically it doesn't compile at all with GCC 12, due to the > fact that it returns the char buffer declared inside the macro:
It returns a pointer to a buffer on stack. It is not valid C to access that buffer after the function has returned (and indeed it does not work, in general). > A simpler solution is to just print the value as an unsigned long. For > normal instructions the output is identical. For prefixed instructions > the value is printed as a single 64-bit quantity, whereas previously the > low half was printed first. But that is good enough for debug output, > especially as prefixed instructions will be rare in practice. Prefixed insns might be somewhat rare currently, but it will not stay that way. It is not hard to fix the problem here? The only tricky part is that ppc_inst_as_ulong swaps the two halves for LE, for as far as I can see no reason at all :-( If it didn't it would be easy to detect prefixed insns (because they then are guaranteed to be > 0xffffffff), and it is easy to print them with a space between the two opcodes, with a utility function: void print_insn_bytes_nicely(unsigned long insn) { if (insn > 0xffffffff) printf("%08x ", insn >> 32); printf("%08x", insn & 0xffffffff); } or something like that. Segher