aboutsummaryrefslogtreecommitdiff
path: root/gdbstub
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2023-03-02 18:57:44 -0800
committerAlex Bennée <alex.bennee@linaro.org>2023-03-07 17:06:36 +0000
commit1678ea040e5d4a4cd613a4af18d776fb2397f0a8 (patch)
treeedf4a677065d5cb99cef4c4c1f1a51eba1f1681d /gdbstub
parent548c96095dae2af37c4145ff11f0d010c43e2be2 (diff)
downloadqemu-1678ea040e5d4a4cd613a4af18d776fb2397f0a8.zip
qemu-1678ea040e5d4a4cd613a4af18d776fb2397f0a8.tar.gz
qemu-1678ea040e5d4a4cd613a4af18d776fb2397f0a8.tar.bz2
gdbstub: move fromhex/tohex routines to internals
These will be needed from multiple places in the code. They are declared as inline so move to the header and fix up to modern coding style. The only other place that messes with hex stuff at the moment is the URI handling in utils but that would be more code churn so leave for now. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20230302190846.2593720-9-alex.bennee@linaro.org> Message-Id: <20230303025805.625589-9-richard.henderson@linaro.org>
Diffstat (limited to 'gdbstub')
-rw-r--r--gdbstub/gdbstub.c20
-rw-r--r--gdbstub/internals.h27
2 files changed, 27 insertions, 20 deletions
diff --git a/gdbstub/gdbstub.c b/gdbstub/gdbstub.c
index abb1777..ba46ed7 100644
--- a/gdbstub/gdbstub.c
+++ b/gdbstub/gdbstub.c
@@ -546,26 +546,6 @@ static void put_buffer(const uint8_t *buf, int len)
#endif
}
-static inline int fromhex(int v)
-{
- if (v >= '0' && v <= '9')
- return v - '0';
- else if (v >= 'A' && v <= 'F')
- return v - 'A' + 10;
- else if (v >= 'a' && v <= 'f')
- return v - 'a' + 10;
- else
- return 0;
-}
-
-static inline int tohex(int v)
-{
- if (v < 10)
- return v + '0';
- else
- return v - 10 + 'a';
-}
-
/* writes 2*len+1 bytes in buf */
static void memtohex(GString *buf, const uint8_t *mem, int len)
{
diff --git a/gdbstub/internals.h b/gdbstub/internals.h
index 32daaf7..b4620f9 100644
--- a/gdbstub/internals.h
+++ b/gdbstub/internals.h
@@ -57,6 +57,33 @@ typedef struct GDBState {
int supported_sstep_flags;
} GDBState;
+
+/*
+ * Inline utility function, convert from int to hex and back
+ */
+
+static inline int fromhex(int v)
+{
+ if (v >= '0' && v <= '9') {
+ return v - '0';
+ } else if (v >= 'A' && v <= 'F') {
+ return v - 'A' + 10;
+ } else if (v >= 'a' && v <= 'f') {
+ return v - 'a' + 10;
+ } else {
+ return 0;
+ }
+}
+
+static inline int tohex(int v)
+{
+ if (v < 10) {
+ return v + '0';
+ } else {
+ return v - 10 + 'a';
+ }
+}
+
/*
* Break/Watch point support - there is an implementation for softmmu
* and user mode.