qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [RFC] target-arm: provide skeleton for a64 insn decodin


From: Richard Henderson
Subject: Re: [Qemu-devel] [RFC] target-arm: provide skeleton for a64 insn decoding
Date: Tue, 12 Nov 2013 05:25:11 +1000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.1.0

On 11/12/2013 01:13 AM, Claudio Fontana wrote:
> +/* C3.2 Branches, exception generating and system instructions */
> +static void disas_b_exc_sys(DisasContext *s, uint32_t insn)
> +{
> +    switch (extract32(insn, 25, 7)) {
> +    case 0x0a: case 0x4a: /* Unconditional branch (immediate) */
> +        disas_uncond_b_imm(s, insn);
> +        break;

Bit 25 is "-" for unconditional branch, so this entry should be

 0x0a, 0x0b, 0x4a, 0x4b

All of the other decodings look good.


r~



reply via email to

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