hilda 1.4.0__py3-none-any.whl → 1.4.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hilda/_version.py +2 -2
- hilda/ui/views.py +4 -2
- {hilda-1.4.0.dist-info → hilda-1.4.1.dist-info}/METADATA +1 -1
- {hilda-1.4.0.dist-info → hilda-1.4.1.dist-info}/RECORD +8 -8
- {hilda-1.4.0.dist-info → hilda-1.4.1.dist-info}/WHEEL +1 -1
- {hilda-1.4.0.dist-info → hilda-1.4.1.dist-info}/LICENSE +0 -0
- {hilda-1.4.0.dist-info → hilda-1.4.1.dist-info}/entry_points.txt +0 -0
- {hilda-1.4.0.dist-info → hilda-1.4.1.dist-info}/top_level.txt +0 -0
hilda/_version.py
CHANGED
hilda/ui/views.py
CHANGED
|
@@ -179,11 +179,13 @@ class DisassemblyView(View):
|
|
|
179
179
|
fmt_parts = []
|
|
180
180
|
for inst in disass:
|
|
181
181
|
load_addr = inst.addr.GetLoadAddress(self.hilda.target)
|
|
182
|
+
file_addr = inst.addr.GetFileAddress()
|
|
182
183
|
base_name = style(inst.addr.module.file.basename, self.color_scheme.basename)
|
|
183
|
-
|
|
184
|
+
load_addr = style(hex(load_addr), fg=self.color_scheme.address)
|
|
185
|
+
file_addr = style(hex(file_addr), fg=self.color_scheme.address)
|
|
184
186
|
mnemonic = style(inst.GetMnemonic(self.hilda.target), fg=self.color_scheme.mnemonic)
|
|
185
187
|
operands = style(inst.GetOperands(self.hilda.target), fg=self.color_scheme.operands)
|
|
186
|
-
fmt = f'{base_name}[{
|
|
188
|
+
fmt = f'{base_name}[{load_addr}][{file_addr}]: {mnemonic} {operands}'
|
|
187
189
|
if load_addr == self.hilda.frame.pc:
|
|
188
190
|
fmt += f'{"<-- $pc":^50}'
|
|
189
191
|
fmt_parts.append(fmt)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: hilda
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.1
|
|
4
4
|
Summary: LLDB wrapped and empowered by iPython's features
|
|
5
5
|
Author-email: doronz88 <doron88@gmail.com>, matan <matan1008@gmail.com>, netanel cohen <netanelc305@protonmail.com>
|
|
6
6
|
Maintainer-email: doronz88 <doron88@gmail.com>, matan <matan1008@gmail.com>, netanel cohen <netanelc305@protonmail.com>
|
|
@@ -3,7 +3,7 @@ gifs/ui.png,sha256=iaRwNZ9qVWUkUe2TJb_6VPsTu--7HrElA2duWiyZ-Oc,131
|
|
|
3
3
|
gifs/xpc_print_message.gif,sha256=i5S8Y9bJm9n-NtOipFTAC8_jUR4uZCM4sOap_ccJX0k,939935
|
|
4
4
|
hilda/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
hilda/__main__.py,sha256=TcX1OCjb1jBnD9cU9Kgidle_OjTv4btagSUIUAChiXU,58
|
|
6
|
-
hilda/_version.py,sha256=
|
|
6
|
+
hilda/_version.py,sha256=oFZsPxoSsCY6D2DiWMSueNvMDRRQN5ssWrPdQtlLJ_o,411
|
|
7
7
|
hilda/common.py,sha256=fxlVTyRP2AmKCnE6FdgnGJVoG-OBq7Tw6TrBQ_xgszI,194
|
|
8
8
|
hilda/exceptions.py,sha256=K1mKQe4ules8-c8BT1Z9sna0e1Fv3POF2qEX-WXNKDY,1818
|
|
9
9
|
hilda/hilda_ascii_art.html,sha256=-9YCjAKdGbjtdd6uoKrxkkcJq7j16r4dGka2bZ27b4o,120119
|
|
@@ -40,10 +40,10 @@ hilda/snippets/macho/macho.py,sha256=X4NQZkO7VCcIMNuPs25ukiBrHM5Kj3UPMJzzeILfuyg
|
|
|
40
40
|
hilda/snippets/macho/macho_load_commands.py,sha256=wGiw4-kgsVVvcOae9HlFNIE23praldGfZshwlwuSD1c,10740
|
|
41
41
|
hilda/ui/colors.json,sha256=f-ITquY3IInQreviTy23JfmxfJrGM1_MivACf1GKGqM,262
|
|
42
42
|
hilda/ui/ui_manager.py,sha256=BmzI1sBx0PYCQDlB9Al7wsTEAMJxaJ7NW0DS4C7g5-0,2265
|
|
43
|
-
hilda/ui/views.py,sha256=
|
|
44
|
-
hilda-1.4.
|
|
45
|
-
hilda-1.4.
|
|
46
|
-
hilda-1.4.
|
|
47
|
-
hilda-1.4.
|
|
48
|
-
hilda-1.4.
|
|
49
|
-
hilda-1.4.
|
|
43
|
+
hilda/ui/views.py,sha256=1u_eZzw7wAEP1bm_-9nkqgGhMSX__woiUuoBgnsAKVM,7843
|
|
44
|
+
hilda-1.4.1.dist-info/LICENSE,sha256=M-LVJ0AFAYB82eueyl8brh-QLPe-iLNVgbCi79-3TDo,1078
|
|
45
|
+
hilda-1.4.1.dist-info/METADATA,sha256=frdPAvnqgbdAlUClcJ5diwrrpQ6Kz8Eb9FabYvRCdgg,22399
|
|
46
|
+
hilda-1.4.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
47
|
+
hilda-1.4.1.dist-info/entry_points.txt,sha256=9n3O3j6V3XnVR_GcFqCWNgRAbalfukTSW2WvghsLVmA,46
|
|
48
|
+
hilda-1.4.1.dist-info/top_level.txt,sha256=TVD7l1WkE1noT866YqPFhiQnjYCYZM5Xz54v_3EYpnI,11
|
|
49
|
+
hilda-1.4.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|