qemu-commits
[Top][All Lists]
Advanced

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

[Qemu-commits] [qemu/qemu] 48e824: MAINTAINERS: Add include/exec/gen-ico


From: Peter Maydell
Subject: [Qemu-commits] [qemu/qemu] 48e824: MAINTAINERS: Add include/exec/gen-icount.h to 'Mai...
Date: Tue, 18 May 2021 03:17:07 -0700

  Branch: refs/heads/staging
  Home:   https://github.com/qemu/qemu
  Commit: 48e824e06b4fd331a384c99ff633d5bdc9584a2b
      
https://github.com/qemu/qemu/commit/48e824e06b4fd331a384c99ff633d5bdc9584a2b
  Author: Philippe Mathieu-Daudé <f4bug@amsat.org>
  Date:   2021-05-14 (Fri, 14 May 2021)

  Changed paths:
    M MAINTAINERS

  Log Message:
  -----------
  MAINTAINERS: Add include/exec/gen-icount.h to 'Main Loop' section

As the 'Main Loop' section covers softmmu/icount.c,
add "exec/gen-icount.h" there too.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20210422064128.2318616-2-f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>


  Commit: 91150447be25a12b59c8168996471af33ab10277
      
https://github.com/qemu/qemu/commit/91150447be25a12b59c8168996471af33ab10277
  Author: Philippe Mathieu-Daudé <f4bug@amsat.org>
  Date:   2021-05-14 (Fri, 14 May 2021)

  Changed paths:
    M include/exec/gen-icount.h

  Log Message:
  -----------
  exec/gen-icount.h: Add missing "exec/exec-all.h" include

When including "exec/gen-icount.h" we get:

  include/exec/gen-icount.h: In function ‘gen_tb_start’:
  include/exec/gen-icount.h:40:9: error: implicit declaration of function 
‘tb_cflags’ [-Werror=implicit-function-declaration]
     40 |     if (tb_cflags(tb) & CF_USE_ICOUNT) {
        |         ^~~~~~~~~
  include/exec/gen-icount.h:40:9: error: nested extern declaration of 
‘tb_cflags’ [-Werror=nested-externs]
  include/exec/gen-icount.h:40:25: error: ‘CF_USE_ICOUNT’ undeclared (first use 
in this function); did you mean ‘CPU_COUNT’?
     40 |     if (tb_cflags(tb) & CF_USE_ICOUNT) {
        |                         ^~~~~~~~~~~~~
        |                         CPU_COUNT

Since tb_cflags() is declared in "exec/exec-all.h", include this
header in "exec/gen-icount.h".

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20210422064128.2318616-3-f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>


  Commit: 4d87fcddb54d801c7c1c9d83d17ab0a7d10b637f
      
https://github.com/qemu/qemu/commit/4d87fcddb54d801c7c1c9d83d17ab0a7d10b637f
  Author: Matheus Ferst <matheus.ferst@eldorado.org.br>
  Date:   2021-05-14 (Fri, 14 May 2021)

  Changed paths:
    M include/tcg/tcg-op.h

  Log Message:
  -----------
  tcg: Add tcg_constant_tl

Used in ppc D/DS/X-form load/store implementation.

Signed-off-by: Matheus Ferst <matheus.ferst@eldorado.org.br>
Message-Id: <20210512185441.3619828-24-matheus.ferst@eldorado.org.br>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>


  Commit: 6c6a4a76eea900112c343ba4f9c5737e298feddf
      
https://github.com/qemu/qemu/commit/6c6a4a76eea900112c343ba4f9c5737e298feddf
  Author: Philippe Mathieu-Daudé <f4bug@amsat.org>
  Date:   2021-05-16 (Sun, 16 May 2021)

  Changed paths:
    M accel/tcg/translate-all.c

  Log Message:
  -----------
  accel/tcg: Align data dumped at end of TB

To better visualize the data dumped at the end of a TB, left-align it
(padding it with 0).  Print ".long" instead of ".quad" on 32-bit hosts.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20210515104202.241504-1-f4bug@amsat.org>
[rth: Split the qemu_log and print .long for 32-bit hosts.]
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>


  Commit: 8e22b27994dba67f3d67d2cb7cf67d7863862b67
      
https://github.com/qemu/qemu/commit/8e22b27994dba67f3d67d2cb7cf67d7863862b67
  Author: Peter Maydell <peter.maydell@linaro.org>
  Date:   2021-05-18 (Tue, 18 May 2021)

  Changed paths:
    M MAINTAINERS
    M accel/tcg/translate-all.c
    M include/exec/gen-icount.h
    M include/tcg/tcg-op.h

  Log Message:
  -----------
  Merge remote-tracking branch 'remotes/rth-gitlab/tags/pull-tcg-20210516' into 
staging

Minor MAINTAINERS update.
Tweak to includes.
Add tcg_constant_tl.
Improve constant pool dump.

# gpg: Signature made Sun 16 May 2021 15:08:42 BST
# gpg:                using RSA key 7A481E78868B4DB6A85A05C064DF38E8AF7E215F
# gpg:                issuer "richard.henderson@linaro.org"
# gpg: Good signature from "Richard Henderson <richard.henderson@linaro.org>" 
[full]
# Primary key fingerprint: 7A48 1E78 868B 4DB6 A85A  05C0 64DF 38E8 AF7E 215F

* remotes/rth-gitlab/tags/pull-tcg-20210516:
  accel/tcg: Align data dumped at end of TB
  tcg: Add tcg_constant_tl
  exec/gen-icount.h: Add missing "exec/exec-all.h" include
  MAINTAINERS: Add include/exec/gen-icount.h to 'Main Loop' section

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>


Compare: https://github.com/qemu/qemu/compare/1acbc0fdf238...8e22b27994db



reply via email to

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