diff options
| author | Peter Crosthwaite <crosthwaitepeter@gmail.com> | 2015-06-23 19:31:15 -0700 |
|---|---|---|
| committer | Andreas Färber <afaerber@suse.de> | 2015-07-09 15:20:40 +0200 |
| commit | bbd77c180d7ff1b04a7661bb878939b2e1d23798 (patch) | |
| tree | 8d7d0be38bf6a50002dec632d521efa81b6e0e87 /exec.c | |
| parent | 6dd0f8342ddfbd8db3e3de1a17686cedbc14e9f1 (diff) | |
| download | focaccia-qemu-bbd77c180d7ff1b04a7661bb878939b2e1d23798.tar.gz focaccia-qemu-bbd77c180d7ff1b04a7661bb878939b2e1d23798.zip | |
translate-all: Change tb_flush() env argument to cpu
All of the core-code usages of this API have the cpu pointer handy so pass it in. There are only 3 architecture specific usages (2 of which are commented out) which can just use ENV_GET_CPU() locally to get the cpu pointer. The reduces core code usage of the CPU env, which brings us closer to common-obj'ing these core files. Cc: Riku Voipio <riku.voipio@iki.fi> Cc: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Eduardo Habkost <ehabkost@redhat.com> Acked-by: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com> Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'exec.c')
| -rw-r--r-- | exec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/exec.c b/exec.c index d817e5f025..b92c74d707 100644 --- a/exec.c +++ b/exec.c @@ -816,8 +816,7 @@ void cpu_single_step(CPUState *cpu, int enabled) } else { /* must flush all the translated code to avoid inconsistencies */ /* XXX: only flush what is necessary */ - CPUArchState *env = cpu->env_ptr; - tb_flush(env); + tb_flush(cpu); } } } |