On 18/06/2015 07:17, Pavel Dovgaluk wrote: >>> > > >>> > > static inline RES_TYPE >>> > > -glue(glue(cpu_ld, USUFFIX), MEMSUFFIX)(CPUArchState *env, target_ulong >>> > > ptr) >>> > > +glue(glue(glue(cpu_ld, USUFFIX), MEMSUFFIX), _ra)(CPUArchState *env, >>> > > + target_ulong ptr, >>> > > + uintptr_t retaddr) >> > >> > Would it make sense to call these helper_cpu_ld##USUFFIX##MEMSUFFIX? > I don't want to use 'helper' prefix, because helper functions are > usually called directly from TB.
True, but in the end these have the same functionality as helpers, just they're indirectly called from other helpers. Paolo