[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH 18/20] tcg: Save insn data and use it in cpu_res
From: |
Richard Henderson |
Subject: |
Re: [Qemu-devel] [PATCH 18/20] tcg: Save insn data and use it in cpu_restore_state_from_tb |
Date: |
Tue, 15 Sep 2015 13:08:30 -0700 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 |
On 09/10/2015 06:49 AM, Peter Maydell wrote:
>> + tcg_debug_assert(num_insns >= 0);
>
> This is claiming that every TB will have at least one insn_start,
> right? I think that most targets will violate that in the breakpoint
> case, because the "if we have a bp for this insn then generate a
> debug insn and break out of the loop" code is before the call
> to tcg_gen_insn_start().
>
> We should probably assert that num_insns < TCG_MAX_INSNS while
> we're here.
True. I wonder if we shouldn't fix bp placement while I'm at it. And the
assertion should really be num_insns == tb->icount.
>> +static target_long decode_sleb128(uint8_t **pp)
>> +{
>> + uint8_t *p = *pp;
>> + target_long val = 0;
>> + int byte, shift = 0;
>> +
>> + do {
>> + byte = *p++;
>> + val |= (target_ulong)(byte & 0x7f) << shift;
>> + shift += 7;
>> + } while (byte & 0x80);
>> + if (shift < TARGET_LONG_BITS && (byte & 0x40)) {
>> + val |= -(target_ulong)1 << shift;
>> + }
>> +
>> + *pp = p;
>> + return val;
>> +}
>
> Are the encode/decode sleb128 functions known-good ones
> borrowed from somewhere else?
Yes, from libgcc.
> (PS: checkpatch complains about missing braces.)
Ho hum...
>> +static int encode_search(TranslationBlock *tb, uint8_t *block)
>> +{
>
> I think this function would benefit from a brief comment
> describing the compressed format we're creating here.
Yes.
>> gen_code_size = tcg_gen_code(&tcg_ctx, gen_code_buf);
>> + search_size = encode_search(tb, (void *)gen_code_buf + gen_code_size);
>
> Now we're putting the encoded search info in the codegen buffer,
> don't we need to adjust the calculation of code_gen_buffer_max_size
> to avoid falling off the end if the last TB in the buffer has a very
> large set of generated TCG code and also a big encoded search buffer?
Dunno. It's not that we've ever checked for this before; I'm not sure what
factor I would actually apply.
> It would also be nice to assert if we do fall off the end of the
> buffer somehow.
Given that we generally use a very large mmap to allocate it, perhaps simply
adding a guard page would be best.
> How much extra space does the encoded search typically take (as a
> % of the gen_code_size, say)?
Dunno; I'll have to have a look at that. Probably easiest to just enhance info
jit...
r~
- [Qemu-devel] [PATCH 12/20] target-sparc: Remove gen_opc_jump_pc, (continued)
- [Qemu-devel] [PATCH 12/20] target-sparc: Remove gen_opc_jump_pc, Richard Henderson, 2015/09/02
- [Qemu-devel] [PATCH 13/20] target-sparc: Add npc state to insn_start, Richard Henderson, 2015/09/02
- [Qemu-devel] [PATCH 14/20] tcg: Merge cpu_gen_code into tb_gen_code, Richard Henderson, 2015/09/02
- [Qemu-devel] [PATCH 15/20] target-*: Drop cpu_gen_code define, Richard Henderson, 2015/09/02
- [Qemu-devel] [PATCH 16/20] tcg: Add TCG_MAX_INSNS, Richard Henderson, 2015/09/02
- [Qemu-devel] [PATCH 18/20] tcg: Save insn data and use it in cpu_restore_state_from_tb, Richard Henderson, 2015/09/02
- Re: [Qemu-devel] [PATCH 18/20] tcg: Save insn data and use it in cpu_restore_state_from_tb,
Richard Henderson <=
[Qemu-devel] [PATCH 20/20] tcg: Remove tcg_gen_code_search_pc, Richard Henderson, 2015/09/02
[Qemu-devel] [PATCH 17/20] tcg: Pass data argument to restore_state_to_opc, Richard Henderson, 2015/09/02
[Qemu-devel] [PATCH 19/20] tcg: Remove gen_intermediate_code_pc, Richard Henderson, 2015/09/02
Re: [Qemu-devel] [RFC 00/20] Do away with TB retranslation, Max Filippov, 2015/09/02