On 18 May 2015 at 10:55, Jun Koi <junkoi2...@gmail.com> wrote: > Hi, > > I am trying to find the definition of cpu_ldub_code() in Softmmu mode. > However, the only thing I can find is like this in include/exec/cpu_ldst.h: > > #define cpu_ldub_code(env1, p) ldub_raw(p)
Your QEMU tree is out of date -- this macro was removed in commit 9220fe54c6. > Unfortunately, this is only for Usermode (CONFIG_USER_ONLY), so > still I have no idea where cpu_ldub_code() is defined for Softmmu mode. In cpu_ldst.h we #define MEMSUFFIX _code and then include "exec/cpu_ldst_template.h" multiple times to define the accessor functions for the various widths. (For the usermode version we include "exec/cpu_ldst_useronly_template.h", for similar effect.) -- PMM