~ubuntu-branches/ubuntu/vivid/qemu/vivid

« back to all changes in this revision

Viewing changes to tcg/tcg.h

  • Committer: Package Import Robot
  • Author(s): dann frazier
  • Date: 2014-02-11 15:41:53 UTC
  • Revision ID: package-import@ubuntu.com-20140211154153-2d001tf0ium08u81
Tags: 1.7.0+dfsg-3ubuntu2
* Backport changes to enable qemu-user-static support for aarch64
* debian/control: add ppc64el to Architectures
* debian/rules: only install qemu-system-aarch64 on arm64.
  Fixes a FTBFS  when built twice in a row on non-arm64 due to a stale
  debian/qemu-system-aarch64 directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
324
324
 
325
325
#define TCGV_EQUAL_I32(a, b) (GET_TCGV_I32(a) == GET_TCGV_I32(b))
326
326
#define TCGV_EQUAL_I64(a, b) (GET_TCGV_I64(a) == GET_TCGV_I64(b))
 
327
#define TCGV_EQUAL_PTR(a, b) (GET_TCGV_PTR(a) == GET_TCGV_PTR(b))
327
328
 
328
329
/* Dummy definition to avoid compiler warnings.  */
329
330
#define TCGV_UNUSED_I32(x) x = MAKE_TCGV_I32(-1)
330
331
#define TCGV_UNUSED_I64(x) x = MAKE_TCGV_I64(-1)
 
332
#define TCGV_UNUSED_PTR(x) x = MAKE_TCGV_PTR(-1)
331
333
 
332
334
#define TCGV_IS_UNUSED_I32(x) (GET_TCGV_I32(x) == -1)
333
335
#define TCGV_IS_UNUSED_I64(x) (GET_TCGV_I64(x) == -1)
 
336
#define TCGV_IS_UNUSED_PTR(x) (GET_TCGV_PTR(x) == -1)
334
337
 
335
338
/* call flags */
336
339
/* Helper does not read globals (either directly or through an exception). It