3

摘要:我收到消息:

AddressSanitizer debugger support is active. Memory error breakpoint has been installed and you can now use it in the 'memory history' command.

什么是“ memory history”命令,我该如何使用它?

细节:

  • 我有一些代码有内存警告,导致崩溃。
  • 我通过“编辑方案”>“运行”>“启用地址清理器”打开了地址清理器。
  • 打开它并再次运行相同的代码后,崩溃不再发生,但出现了消息。

这是什么意思,内存历史命令到底是什么?我该如何使用它?我已经搜索过,但我没有找到任何可以回答我的问题的东西。

4

1 回答 1

5

在 Address Sanitizer 下运行可以让您查看对象是如何分配的。该memory history命令需要一个指针/地址,它将显示该对象是如何分配的(分配的历史堆栈跟踪):

(lldb) po self
<MasterViewController: 0x61800000e080>

(lldb) memory history 0x61800000e080
  thread ... name = 'Memory allocated at'
    frame #0: 0x00000001051bba97 libclang_rt.asan_iossim_dynamic.dylib`wrap_calloc + 199
    frame #1: 0x00000001064362fd libobjc.A.dylib`class_createInstance + 84
    frame #2: 0x0000000106440dc7 libobjc.A.dylib`_objc_rootAlloc + 41
    frame #3: 0x00000001072d6d25 UIKit`-[UIClassSwapper initWithCoder:] + 175
    frame #4: 0x00000001074c731b UIKit`UINibDecoderDecodeObjectForValue + 683
    ...

它甚至适用于已经释放的对象,它还显示释放回溯!当您意外访问已释放的对象时,这非常有用。

于 2016-04-01T13:41:47.713 回答