|
@@ -106,3 +106,16 @@ def read_u64(buffer):
|
|
|
return read_u32(buffer[0:4]) + (read_u32(buffer[4:8]) << 32)
|
|
|
else:
|
|
|
return read_u32(buffer[4:8]) + (read_u32(buffer[0:4]) << 32)
|
|
|
+
|
|
|
+
|
|
|
+target_arch = None
|
|
|
+
|
|
|
+
|
|
|
+def is_target_arch(arch):
|
|
|
+ if hasattr(gdb.Frame, 'architecture'):
|
|
|
+ return arch in gdb.newest_frame().architecture().name()
|
|
|
+ else:
|
|
|
+ global target_arch
|
|
|
+ if target_arch is None:
|
|
|
+ target_arch = gdb.execute("show architecture", to_string=True)
|
|
|
+ return arch in target_arch
|