diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2015-02-17 16:46:58 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-17 17:34:53 -0500 |
commit | 7f994963745b9cea89a2816dae7cc3a1fc01adcc (patch) | |
tree | 8f100eb57664208e2f1d42fe3a35e605f9fe3cd7 /scripts/gdb | |
parent | 7b599ef535a7faef53034fb7fb150b61057efe28 (diff) |
scripts/gdb: add get_target_endianness helper
Parse the target endianness from the output of "show endian" and cache the
result to return it via the new helper get_target_endiannes. We will need
it for reading integers from buffers that contain target memory.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Jason Wessel <jason.wessel@windriver.com>
Cc: Andi Kleen <andi@firstfloor.org>
Cc: Ben Widawsky <ben@bwidawsk.net>
Cc: Borislav Petkov <bp@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts/gdb')
-rw-r--r-- | scripts/gdb/linux/utils.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/scripts/gdb/linux/utils.py b/scripts/gdb/linux/utils.py index c9d705b62bfe..10a227bdb621 100644 --- a/scripts/gdb/linux/utils.py +++ b/scripts/gdb/linux/utils.py | |||
@@ -67,3 +67,21 @@ Note that TYPE and ELEMENT have to be quoted as strings.""" | |||
67 | elementname.string()) | 67 | elementname.string()) |
68 | 68 | ||
69 | ContainerOf() | 69 | ContainerOf() |
70 | |||
71 | |||
72 | BIG_ENDIAN = 0 | ||
73 | LITTLE_ENDIAN = 1 | ||
74 | target_endianness = None | ||
75 | |||
76 | |||
77 | def get_target_endianness(): | ||
78 | global target_endianness | ||
79 | if target_endianness is None: | ||
80 | endian = gdb.execute("show endian", to_string=True) | ||
81 | if "little endian" in endian: | ||
82 | target_endianness = LITTLE_ENDIAN | ||
83 | elif "big endian" in endian: | ||
84 | target_endianness = BIG_ENDIAN | ||
85 | else: | ||
86 | raise gdb.GdgError("unknown endianness '{0}'".format(endian)) | ||
87 | return target_endianness | ||