diff options
| author | Sergey Fedorov | 2016-05-03 13:04:22 +0200 |
|---|---|---|
| committer | Richard Henderson | 2016-05-13 02:06:42 +0200 |
| commit | 3213525f8ab48742db09dab18cb9ae6f36a6c921 (patch) | |
| tree | f8fa580b2b4823f54da9c3b1d6cc70feb989cb1f /include | |
| parent | cpu-exec: Move TB chaining into tb_find_fast() (diff) | |
| download | qemu-3213525f8ab48742db09dab18cb9ae6f36a6c921.tar.gz qemu-3213525f8ab48742db09dab18cb9ae6f36a6c921.tar.xz qemu-3213525f8ab48742db09dab18cb9ae6f36a6c921.zip | |
tcg: Remove needless CPUState::current_tb
This field was used for telling cpu_interrupt() to unlink a chain of TBs
being executed when it worked that way. Now, cpu_interrupt() don't do
this anymore. So we don't need this field anymore.
Signed-off-by: Sergey Fedorov <serge.fdrv@gmail.com>
Signed-off-by: Sergey Fedorov <sergey.fedorov@linaro.org>
Message-Id: <1462273462-14036-1-git-send-email-sergey.fedorov@linaro.org>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'include')
| -rw-r--r-- | include/qom/cpu.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/qom/cpu.h b/include/qom/cpu.h index c1ae24d1fc..4349c465c5 100644 --- a/include/qom/cpu.h +++ b/include/qom/cpu.h @@ -253,7 +253,6 @@ struct kvm_run; * @as: Pointer to the first AddressSpace, for the convenience of targets which * only have a single AddressSpace * @env_ptr: Pointer to subclass-specific CPUArchState field. - * @current_tb: Currently executing TB. * @gdb_regs: Additional GDB registers. * @gdb_num_regs: Number of total registers accessible to GDB. * @gdb_num_g_regs: Number of registers in GDB 'g' packets. @@ -305,7 +304,6 @@ struct CPUState { MemoryRegion *memory; void *env_ptr; /* CPUArchState */ - struct TranslationBlock *current_tb; struct TranslationBlock *tb_jmp_cache[TB_JMP_CACHE_SIZE]; struct GDBRegisterState *gdb_regs; int gdb_num_regs; |
