qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v3 12/16] tcg-s390: Define TCG_TARGET_INSN_UNIT_


From: Richard Henderson
Subject: Re: [Qemu-devel] [PATCH v3 12/16] tcg-s390: Define TCG_TARGET_INSN_UNIT_SIZE
Date: Mon, 12 May 2014 10:05:13 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0

On 05/09/2014 06:35 AM, Peter Maydell wrote:
> On 28 April 2014 20:28, Richard Henderson <address@hidden> wrote:
>> And use tcg pointer differencing functions as appropriate.
>>
>> Signed-off-by: Richard Henderson <address@hidden>
>> ---
>>  tcg/s390/tcg-target.c | 91 
>> ++++++++++++++++++++++++---------------------------
>>  tcg/s390/tcg-target.h |  2 ++
>>  2 files changed, 45 insertions(+), 48 deletions(-)
>>
>> diff --git a/tcg/s390/tcg-target.c b/tcg/s390/tcg-target.c
>> index 1d912a7..ae1be1c 100644
>> --- a/tcg/s390/tcg-target.c
>> +++ b/tcg/s390/tcg-target.c
>> @@ -320,7 +320,7 @@ static const uint8_t tcg_cond_to_ltr_cond[] = {
>>  #ifdef CONFIG_SOFTMMU
>>  /* helper signature: helper_ld_mmu(CPUState *env, target_ulong addr,
>>     int mmu_idx) */
>> -static const void * const qemu_ld_helpers[4] = {
>> +static void * const qemu_ld_helpers[4] = {
>>      helper_ldb_mmu,
>>      helper_ldw_mmu,
>>      helper_ldl_mmu,
>> @@ -329,7 +329,7 @@ static const void * const qemu_ld_helpers[4] = {
>>
>>  /* helper signature: helper_st_mmu(CPUState *env, target_ulong addr,
>>     uintxx_t val, int mmu_idx) */
>> -static const void * const qemu_st_helpers[4] = {
>> +static void * const qemu_st_helpers[4] = {
>>      helper_stb_mmu,
>>      helper_stw_mmu,
>>      helper_stl_mmu,
> 
> Why do these lose the 'const' ?

Because "const void *" has a conversion warning to
non-const "tcg_type_unit *".  One would have to carry
the const all the way through all of the relocation
routines to solve it.

You had the exact same question about the ppc patch.


r~




reply via email to

[Prev in Thread] Current Thread [Next in Thread]