@rtype: str @return: Label that points to the instruction currently being executed.
(self)
| 976 | return Base + address |
| 977 | |
| 978 | def get_label_at_pc(self): |
| 979 | """ |
| 980 | @rtype: str |
| 981 | @return: Label that points to the instruction currently being executed. |
| 982 | """ |
| 983 | return self.get_process().get_label_at_address(self.get_pc()) |
| 984 | |
| 985 | def get_seh_chain_pointer(self): |
| 986 | """ |
nothing calls this directly
no test coverage detected