qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH v3 18/27] target/arm: Restrict semi-hosting to T


From: Philippe Mathieu-Daudé
Subject: Re: [Qemu-devel] [PATCH v3 18/27] target/arm: Restrict semi-hosting to TCG
Date: Mon, 1 Jul 2019 17:38:40 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.7.0

On 7/1/19 5:25 PM, Peter Maydell wrote:
> On Mon, 1 Jul 2019 at 14:26, Philippe Mathieu-Daudé <address@hidden> wrote:
>>
>> Per Peter Maydell:
>>
>>   Semihosting hooks either SVC or HLT instructions, and inside KVM
>>   both of those go to EL1, ie to the guest, and can't be trapped to
>>   KVM.
>>
>> Let check_for_semihosting() return False when not running on TCG.
>>
>> Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
>> ---
>> v3: inline call to g_assert_not_reached if !TCG
>> ---
>>  target/arm/Makefile.objs | 2 +-
>>  target/arm/cpu.h         | 7 +++++++
>>  target/arm/helper.c      | 4 +++-
>>  3 files changed, 11 insertions(+), 2 deletions(-)
> 
>> diff --git a/target/arm/helper.c b/target/arm/helper.c
>> index 49a0f05cd1..1b4da7aa45 100644
>> --- a/target/arm/helper.c
>> +++ b/target/arm/helper.c
>> @@ -20,7 +20,6 @@
>>  #include "qemu/qemu-print.h"
>>  #include "exec/exec-all.h"
>>  #include "exec/cpu_ldst.h"
>> -#include "arm_ldst.h"
>>  #include <zlib.h> /* For crc32 */
>>  #include "hw/semihosting/semihost.h"
>>  #include "sysemu/cpus.h"
>> @@ -29,6 +28,9 @@
>>  #include "qapi/qapi-commands-target.h"
>>  #include "qapi/error.h"
>>  #include "qemu/guest-random.h"
>> +#ifdef CONFIG_TCG
>> +#include "arm_ldst.h"
>> +#endif
> 
> Should this ifdeffing of the arm_ldst.h include have gone in
> another patch? It doesn't seem related to the change described
> in the commit message.

Surely patch 22 "Move M profile routines to m_helper.c"



reply via email to

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