* [PATCH] Make TARGET_PAGE_MASK typed as target_ulong
@ 2024-06-14 19:29 Roman Kiryanov
2024-06-15 23:59 ` Richard Henderson
0 siblings, 1 reply; 4+ messages in thread
From: Roman Kiryanov @ 2024-06-14 19:29 UTC (permalink / raw)
To: qemu-devel; +Cc: jansene, Roman Kiryanov
this fixes the build warnings like
accel/tcg/cputlb.c:416:13: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
mask &= TARGET_PAGE_MASK | TLB_INVALID_MASK;
^~~~~~~~~~~~~~~~
include/exec/cpu-all.h:169:45: note: expanded from macro 'TARGET_PAGE_MASK'
~~~~~~~~~~~~~~~ ^
also this fixes the inconsitency in the return
type of qemu_target_page_mask (int could be
shorter than target_long).
Signed-off-by: Roman Kiryanov <rkir@google.com>
---
include/exec/cpu-all.h | 4 ++--
include/exec/target_page.h | 2 +-
page-target.c | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/include/exec/cpu-all.h b/include/exec/cpu-all.h
index 6f09b86e7f..238a847eca 100644
--- a/include/exec/cpu-all.h
+++ b/include/exec/cpu-all.h
@@ -152,8 +152,8 @@ extern const TargetPageBits target_page;
# define TARGET_PAGE_SIZE (-(int)TARGET_PAGE_MASK)
#else
# define TARGET_PAGE_BITS_MIN TARGET_PAGE_BITS
-# define TARGET_PAGE_SIZE (1 << TARGET_PAGE_BITS)
-# define TARGET_PAGE_MASK ((target_long)-1 << TARGET_PAGE_BITS)
+# define TARGET_PAGE_SIZE ((target_ulong)1 << TARGET_PAGE_BITS)
+# define TARGET_PAGE_MASK ((target_ulong)-1 << TARGET_PAGE_BITS)
#endif
#define TARGET_PAGE_ALIGN(addr) ROUND_UP((addr), TARGET_PAGE_SIZE)
diff --git a/include/exec/target_page.h b/include/exec/target_page.h
index 98ffbb5c23..57d60f2b06 100644
--- a/include/exec/target_page.h
+++ b/include/exec/target_page.h
@@ -15,7 +15,7 @@
#define EXEC_TARGET_PAGE_H
size_t qemu_target_page_size(void);
-int qemu_target_page_mask(void);
+target_ulong qemu_target_page_mask(void);
int qemu_target_page_bits(void);
int qemu_target_page_bits_min(void);
diff --git a/page-target.c b/page-target.c
index 82211c8593..7176c29555 100644
--- a/page-target.c
+++ b/page-target.c
@@ -17,7 +17,7 @@ size_t qemu_target_page_size(void)
return TARGET_PAGE_SIZE;
}
-int qemu_target_page_mask(void)
+target_ulong qemu_target_page_mask(void)
{
return TARGET_PAGE_MASK;
}
--
2.45.2.627.g7a2c4fd464-goog
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] Make TARGET_PAGE_MASK typed as target_ulong
2024-06-14 19:29 [PATCH] Make TARGET_PAGE_MASK typed as target_ulong Roman Kiryanov
@ 2024-06-15 23:59 ` Richard Henderson
2024-06-16 17:40 ` Roman Kiryanov
0 siblings, 1 reply; 4+ messages in thread
From: Richard Henderson @ 2024-06-15 23:59 UTC (permalink / raw)
To: Roman Kiryanov, qemu-devel; +Cc: jansene
On 6/14/24 12:29, Roman Kiryanov wrote:
> this fixes the build warnings like
>
> accel/tcg/cputlb.c:416:13: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
> mask &= TARGET_PAGE_MASK | TLB_INVALID_MASK;
> ^~~~~~~~~~~~~~~~
> include/exec/cpu-all.h:169:45: note: expanded from macro 'TARGET_PAGE_MASK'
> ~~~~~~~~~~~~~~~ ^
>
> also this fixes the inconsitency in the return
> type of qemu_target_page_mask (int could be
> shorter than target_long).
>
> Signed-off-by: Roman Kiryanov <rkir@google.com>
No, this will cause failures, because we need this value to sign-extend to when the
context includes {u}int64_t, and target_ulong is uint32_t.
What options are you using, because this warning should not be generated with -fwrapv.
r~
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Make TARGET_PAGE_MASK typed as target_ulong
2024-06-15 23:59 ` Richard Henderson
@ 2024-06-16 17:40 ` Roman Kiryanov
2024-06-16 18:10 ` Richard Henderson
0 siblings, 1 reply; 4+ messages in thread
From: Roman Kiryanov @ 2024-06-16 17:40 UTC (permalink / raw)
To: Richard Henderson; +Cc: qemu-devel, jansene, JP Cottin
Hi Richard,
thank you for looking into this.
> No, this will cause failures, because we need this value to sign-extend to when the
> context includes {u}int64_t, and target_ulong is uint32_t.
I did not expect this, good catch. I see QEMU uses size_t as the
return type in qemu_target_page_size which returns TARGET_PAGE_SIZE.
Maybe use size_t for TARGET_PAGE_MASK everywhere (including
qemu_target_page_mask) as well?
> What options are you using, because this warning should not be generated with -fwrapv.
Good point, I think we missed this option.
Regards,
Roman.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Make TARGET_PAGE_MASK typed as target_ulong
2024-06-16 17:40 ` Roman Kiryanov
@ 2024-06-16 18:10 ` Richard Henderson
0 siblings, 0 replies; 4+ messages in thread
From: Richard Henderson @ 2024-06-16 18:10 UTC (permalink / raw)
To: Roman Kiryanov; +Cc: qemu-devel, jansene, JP Cottin
On 6/16/24 10:40, Roman Kiryanov wrote:
> Hi Richard,
>
> thank you for looking into this.
>
>> No, this will cause failures, because we need this value to sign-extend to when the
>> context includes {u}int64_t, and target_ulong is uint32_t.
>
> I did not expect this, good catch. I see QEMU uses size_t as the
> return type in qemu_target_page_size which returns TARGET_PAGE_SIZE.
> Maybe use size_t for TARGET_PAGE_MASK everywhere (including
> qemu_target_page_mask) as well?
No, because size_t != uint64_t.
We still support 32-bit hosts.
r~
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-06-16 18:11 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-14 19:29 [PATCH] Make TARGET_PAGE_MASK typed as target_ulong Roman Kiryanov
2024-06-15 23:59 ` Richard Henderson
2024-06-16 17:40 ` Roman Kiryanov
2024-06-16 18:10 ` Richard Henderson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).