Address sanitizer "container-overflow" bug or false positive in vector<>::push_back()?

I've been trying to run with Xcode 7's address sanitizer, and I'm having trouble understanding the problem flagged here. It looks to me like a problem inside of the newly annotated `vector::__swap_out_circular_buffer` at the end of a `push_back` operation.


It's dying inside the allocation on line 4 just after `__annotate_delete()`.

vector<_Tp, _Allocator>::__swap_out_circular_buffer(__split_buffer<value_type, allocator_type&>& __v)
{
    __annotate_delete();
    __alloc_traits::__construct_backward(this->__alloc(), this->__begin_, this->__end_, __v.__begin_);
    _VSTD::swap(this->__begin_, __v.__begin_);
    _VSTD::swap(this->__end_, __v.__end_);
    _VSTD::swap(this->__end_cap(), __v.__end_cap());
    __v.__first_ = __v.__begin_;
    __annotate_new(size());
    __invalidate_all_iterators();
}


Here's the full error report.


AddressSanitizer debugger support is active. Memory error breakpoint has been installed and you can now use the 'memory history' command.
=================================================================
==39108==ERROR: AddressSanitizer: container-overflow on address 0x0001683171e8 at pc 0x00010672c864 bp 0x00016647f8b0 sp 0x00016647f050
READ of size 24 at 0x0001683171e8 thread T26
    #0 0x10672c863 in __asan_memcpy (/private/var/mobile/Containers/Bundle/Application/155F0028-0EF7-4453-B208-C9F08E939676/talkodev-e.app/Frameworks/libclang_rt.asan_ios_dynamic.dylib+0x34863)
    #1 0x10215b0ef in std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >::__swap_out_circular_buffer(std::__1::__split_buffer<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&>&) (/private/var/mobile/Containers/Bundle/Application/155F0028-0EF7-4453-B208-C9F08E939676/talkodev-e.app/talkodev-e+0x1020ff0ef)
    #2 0x10215a0b3 in void std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >::__push_back_slow_path<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&) (/private/var/mobile/Containers/Bundle/Application/155F0028-0EF7-4453-B208-C9F08E939676/talkodev-e.app/talkodev-e+0x1020fe0b3)
    #3 0x10294123b in <redacted>
    #16 0x193e1bdc7 in <redacted> (/usr/lib/system/libsystem_pthread.dylib+0x3dc7)
    #17 0x193e1bd23 in _pthread_start (/usr/lib/system/libsystem_pthread.dylib+0x3d23)
    #18 0x193e18ef7 in thread_start (/usr/lib/system/libsystem_pthread.dylib+0xef7)


0x0001683171e8 is located 72 bytes inside of 96-byte region [0x0001683171a0,0x000168317200)
allocated by thread T26 here:
    #0 0x106735d83 in wrap__Znwm (/private/var/mobile/Containers/Bundle/Application/155F0028-0EF7-4453-B208-C9F08E939676/talkodev-e.app/Frameworks/libclang_rt.asan_ios_dynamic.dylib+0x3dd83)
    #1 0x10251e2bb in std::__1::__split_buffer<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&>::__split_buffer(unsigned long, unsigned long, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&) (/private/var/mobile/Containers/Bundle/Application/155F0028-0EF7-4453-B208-C9F08E939676/talkodev-e.app/talkodev-e+0x1024c22bb)
    #2 0x10251ddaf in std::__1::__split_buffer<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&>::__split_buffer(unsigned long, unsigned long, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&) (/private/var/mobile/Containers/Bundle/Application/155F0028-0EF7-4453-B208-C9F08E939676/talkodev-e.app/talkodev-e+0x1024c1daf)
    #3 0x102159e6b in  <redacted>
    #17 0x193e1bdc7 in <redacted> (/usr/lib/system/libsystem_pthread.dylib+0x3dc7)
    #18 0x193e1bd23 in _pthread_start (/usr/lib/system/libsystem_pthread.dylib+0x3d23)
    #19 0x193e18ef7 in thread_start (/usr/lib/system/libsystem_pthread.dylib+0xef7)


Thread T26 created by T17 here:
    #0 0x10672bb83 in wrap_pthread_create (/private/var/mobile/Containers/Bundle/Application/155F0028-0EF7-4453-B208-C9F08E939676/talkodev-e.app/Frameworks/libclang_rt.asan_ios_dynamic.dylib+0x33b83)
    #1 0x102922497 in <redacted>
    #10 0x193e1bdc7 in <redacted> (/usr/lib/system/libsystem_pthread.dylib+0x3dc7)
    #11 0x193e1bd23 in _pthread_start (/usr/lib/system/libsystem_pthread.dylib+0x3d23)
    #12 0x193e18ef7 in thread_start (/usr/lib/system/libsystem_pthread.dylib+0xef7)


Thread T17 created by T0 here:
    #0 0x10672bb83 in wrap_pthread_create (/private/var/mobile/Containers/Bundle/Application/155F0028-0EF7-4453-B208-C9F08E939676/talkodev-e.app/Frameworks/libclang_rt.asan_ios_dynamic.dylib+0x33b83)
    #1 0x102922497 in  <redacted>
    #9 0x18686f18f in <redacted> (/System/Library/Frameworks/UIKit.framework/UIKit+0x8318f)
    #10 0x186a86853 in <redacted> (/System/Library/Frameworks/UIKit.framework/UIKit+0x29a853)
    #11 0x186a89207 in <redacted> (/System/Library/Frameworks/UIKit.framework/UIKit+0x29d207)
    #12 0x186a87777 in <redacted> (/System/Library/Frameworks/UIKit.framework/UIKit+0x29b777)
    #13 0x18a5c53c7 in <redacted> (/System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices+0x193c7)
    #14 0x181d7427b in <redacted> (/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation+0xe027b)
    #15 0x181d73383 in <redacted> (/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation+0xdf383)
    #16 0x181d719a7 in <redacted> (/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation+0xdd9a7)
    #17 0x181c9d2d3 in CFRunLoopRunSpecific (/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation+0x92d3)
    #18 0x18686843b in <redacted> (/System/Library/Frameworks/UIKit.framework/UIKit+0x7c43b)
    #19 0x186862fab in UIApplicationMain (/System/Library/Frameworks/UIKit.framework/UIKit+0x76fab)
    #20 0x100194a8f in main (/private/var/mobile/Containers/Bundle/Application/155F0028-0EF7-4453-B208-C9F08E939676/talkodev-e.app/talkodev-e+0x100138a8f)
    #21 0x193c66a07 in <redacted> (/usr/lib/system/libdyld.dylib+0x2a07)


SUMMARY: AddressSanitizer: container-overflow ??:0 __asan_memcpy
Shadow bytes around the buggy address:
  0x00014d262de0: fa fa fa fa fd fd fd fd fd fd fd fd fd fd fd fd
  0x00014d262df0: fa fa fa fa fd fd fd fd fd fd fd fd fd fd fd fd
  0x00014d262e00: fa fa fa fa fd fd fd fd fd fd fd fd fd fd fd fd
  0x00014d262e10: fa fa fa fa fd fd fd fd fd fd fd fd fd fd fd fd
  0x00014d262e20: fa fa fa fa fd fd fd fd fd fd fd fd fd fd fd fd
=>0x00014d262e30: fa fa fa fa 00 00 00 00 00 00 00 00 00[fc]fc fc
  0x00014d262e40: fa fa fa fa 00 00 00 00 00 00 00 00 00 00 00 fa
  0x00014d262e50: fa fa fa fa 00 00 00 00 00 00 00 00 00 00 00 fa
  0x00014d262e60: fa fa fa fa 00 00 00 00 00 00 00 00 00 00 00 fa
  0x00014d262e70: fa fa fa fa 00 00 00 00 00 00 00 00 00 00 00 fa
  0x00014d262e80: fa fa fa fa 00 00 00 00 00 00 00 00 00 00 00 fa
Shadow byte legend (one shadow byte represents 8 application bytes):
  Addressable:           00
  Partially addressable: 01 02 03 04 05 06 07
  Heap left redzone:       fa
  Heap right redzone:      fb
  Freed heap region:       fd
  Stack left redzone:      f1
  Stack mid redzone:       f2
  Stack right redzone:     f3
  Stack partial redzone:   f4
  Stack after return:      f5
  Stack use after scope:   f8
  Global redzone:          f9
  Global init order:       f6
  Poisoned by user:        f7
  Container overflow:      fc
  Array cookie:            ac
  Intra object redzone:    bb
  ASan internal:           fe
  Left alloca redzone:     ca
  Right alloca redzone:    cb
==39108==ABORTING
Warning: hit breakpoint while running function, skipping commands and conditions to prevent recursion.AddressSanitizer report breakpoint hit. Use 'thread info -s' to get extended information about the report.
(lldb)

Please, file a bug report, ideally, with instructions on how we can reproduce this.

I was having a similar problem with the std::vector(size_type size) constructor getting a false heap overflow.

Unfortunately in a small test application, the problem didn't occur, so I can't send in a report to Apple.


To work around the problem, I set the optimization level to 1 by passing "-O1" to the compiler. I noticed this in a lot of ASan examples. When I did this, the false overflow reports with std::vector went away.

Hmm, I have a similar issue I cannot get rid of even when setting opti-level to -01. This problem gets triggered pretty early in my app's code rendering ASAN rather useless... bummer.


=================================================================

==6125==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x00011153a191 at pc 0x000100361830 bp 0x000114f82d20 sp 0x000114f824b0

READ of size 4 at 0x00011153a191 thread T55

#0 0x10036182f in wrap_memcpy (/private/var/mobile/Containers/Bundle/Application/3CFC02D5-E600-4990-B8E0-BD41E16A710D/Lokate.app/Frameworks/libclang_rt.asan_ios_dynamic.dylib+0x3582f)

#1 0x180f0b3a3 in agxuEmitRenderPipelineState (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0x373a3)

#2 0x180f05c6f in glrAGXRenderVertexArray(GLDContextRec*, unsigned int, unsigned int, int, int, unsigned int, void const*, int, void const*) (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0x31c6f)

#3 0x1864e8e57 in <redacted> (/System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine+0x64e57)

#4 0x190f4fb23 in <redacted> (/System/Library/PrivateFrameworks/VectorKit.framework/VectorKit+0x40fb23)

#5 0x190f430a3 in <redacted> (/System/Library/PrivateFrameworks/VectorKit.framework/VectorKit+0x4030a3)

#6 0x190f41617 in <redacted> (/System/Library/PrivateFrameworks/VectorKit.framework/VectorKit+0x401617)

#7 0x190f423f3 in <redacted> (/System/Library/PrivateFrameworks/VectorKit.framework/VectorKit+0x4023f3)

#8 0x190f420f3 in <redacted> (/System/Library/PrivateFrameworks/VectorKit.framework/VectorKit+0x4020f3)

#9 0x100367b4b in __wrap_dispatch_async_block_invoke (/private/var/mobile/Containers/Bundle/Application/3CFC02D5-E600-4990-B8E0-BD41E16A710D/Lokate.app/Frameworks/libclang_rt.asan_ios_dynamic.dylib+0x3bb4b)

#10 0x101050fd3 in _dispatch_call_block_and_release (/usr/lib/system/introspection/libdispatch.dylib+0xfd3)

#11 0x101050f93 in _dispatch_client_callout (/usr/lib/system/introspection/libdispatch.dylib+0xf93)

#12 0x10105bdb7 in _dispatch_queue_drain (/usr/lib/system/introspection/libdispatch.dylib+0xbdb7)

#13 0x1010542c3 in _dispatch_queue_invoke (/usr/lib/system/introspection/libdispatch.dylib+0x42c3)

#14 0x10105e5d3 in _dispatch_root_queue_drain (/usr/lib/system/introspection/libdispatch.dylib+0xe5d3)

#15 0x10105e207 in _dispatch_worker_thread (/usr/lib/system/introspection/libdispatch.dylib+0xe207)

#16 0x194d13db7 in <redacted> (/usr/lib/system/libsystem_pthread.dylib+0x3db7)

#17 0x194d13d13 in _pthread_start (/usr/lib/system/libsystem_pthread.dylib+0x3d13)

#18 0x194d10ee7 in thread_start (/usr/lib/system/libsystem_pthread.dylib+0xee7)

0x00011153a191 is located 0 bytes to the right of 1-byte region [0x00011153a190,0x00011153a191)

allocated by thread T55 here:

#0 0x1003690bf in __asan_mz_malloc (/private/var/mobile/Containers/Bundle/Application/3CFC02D5-E600-4990-B8E0-BD41E16A710D/Lokate.app/Frameworks/libclang_rt.asan_ios_dynamic.dylib+0x3d0bf)

#1 0x194ca13e3 in malloc_zone_malloc (/usr/lib/system/libsystem_malloc.dylib+0x13e3)

#2 0x180ed99bf in G4P::FragmentPDSVaryingLoadsHAL::FragmentPDSVaryingLoadsHAL(flatbuffers::Vector<flatbuffers::Offset<AGCCodeGenerator::FragmentShaderIteration> > const*) (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0x59bf)

#3 0x180f4852f in AGXHalFragmentShader::AGXHalFragmentShader(AGXUserFragmentShaderKey const*, AGCDeserializedReply&) (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0x7452f)

#4 0x180f1109b in agxuHalEmitFramebufferWriteConstants(AGXContextRec*, AGXHalEndOfTileProgram*, AGX3DCommandRec*, AGXMSAADiscardInfo*, AGXResourceDescriptor const&, bool, bool, bool) (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0x3d09b)

#5 0x1882a6d53 in CompilerFSCache::GetElement(unsigned char*, void (void const*, unsigned long) block_pointer) (/System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection+0x2d53)

#6 0x101050f93 in _dispatch_client_callout (/usr/lib/system/introspection/libdispatch.dylib+0xf93)

#7 0x10105b08b in _dispatch_barrier_sync_f_invoke (/usr/lib/system/introspection/libdispatch.dylib+0xb08b)

#8 0x1882a6bbf in CompilerFSCache::GetElement(unsigned char*, void (void const*, unsigned long) block_pointer) (/System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection+0x2bbf)

#9 0x1882a62b7 in XPCCompilerConnection::BuildRequest(NSObject<OS_dispatch_data>*, NSObject<OS_dispatch_data>*, void (void const*, unsigned long) block_pointer) (/System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection+0x22b7)

#10 0x101050f93 in _dispatch_client_callout (/usr/lib/system/introspection/libdispatch.dylib+0xf93)

#11 0x10105b08b in _dispatch_barrier_sync_f_invoke (/usr/lib/system/introspection/libdispatch.dylib+0xb08b)

#12 0x1882a6247 in XPCCompilerConnection::BuildRequest(NSObject<OS_dispatch_data>*, NSObject<OS_dispatch_data>*, void (void const*, unsigned long) block_pointer) (/System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection+0x2247)

#13 0x180f11eab in AGXHalShaderFactoryT<AGXUserFragmentShaderKey, AGXHalFragmentShader>::create(AGXUserFragmentShaderKey const*) (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0x3deab)

#14 0x180f45163 in glrReleaseVendCtxPipeProg (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0x71163)

#15 0x180f4481f in AGXFragmentShader::getCompiledVariant(AGXContextRec*, _AGCFragmentContextStateGL const*, _AGCSamplerPCFStates const*, _AGCDrawBufferState const*, unsigned int&) (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0x7081f)

#16 0x180f44d1f in glrUpdateCtxSysFragmentProgram (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0x70d1f)

#17 0x180ee2b43 in gpusLoadCurrentPipelinePrograms (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0xeb43)

#18 0x180f0a80f in gldUpdateDispatch (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0x3680f)

#19 0x18650f9c7 in <redacted> (/System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine+0x8b9c7)

#20 0x1864e8d97 in <redacted> (/System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine+0x64d97)

#21 0x190f4fb23 in <redacted> (/System/Library/PrivateFrameworks/VectorKit.framework/VectorKit+0x40fb23)

#22 0x190f430a3 in <redacted> (/System/Library/PrivateFrameworks/VectorKit.framework/VectorKit+0x4030a3)

#23 0x190f41617 in <redacted> (/System/Library/PrivateFrameworks/VectorKit.framework/VectorKit+0x401617)

#24 0x190f423f3 in <redacted> (/System/Library/PrivateFrameworks/VectorKit.framework/VectorKit+0x4023f3)

#25 0x190f420f3 in <redacted> (/System/Library/PrivateFrameworks/VectorKit.framework/VectorKit+0x4020f3)

#26 0x100367b4b in __wrap_dispatch_async_block_invoke (/private/var/mobile/Containers/Bundle/Application/3CFC02D5-E600-4990-B8E0-BD41E16A710D/Lokate.app/Frameworks/libclang_rt.asan_ios_dynamic.dylib+0x3bb4b)

#27 0x101050fd3 in _dispatch_call_block_and_release (/usr/lib/system/introspection/libdispatch.dylib+0xfd3)

#28 0x101050f93 in _dispatch_client_callout (/usr/lib/system/introspection/libdispatch.dylib+0xf93)

#29 0x10105bdb7 in _dispatch_queue_drain (/usr/lib/system/introspection/libdispatch.dylib+0xbdb7)

Thread T55 created by T0 here:

#0 0x10035fb6b in wrap_pthread_create (/private/var/mobile/Containers/Bundle/Application/3CFC02D5-E600-4990-B8E0-BD41E16A710D/Lokate.app/Frameworks/libclang_rt.asan_ios_dynamic.dylib+0x33b6b)

#1 0x10105e01f in _dispatch_queue_wakeup_global_slow (/usr/lib/system/introspection/libdispatch.dylib+0xe01f)

#2 0x10105b99f in _dispatch_root_queue_probe (/usr/lib/system/introspection/libdispatch.dylib+0xb99f)

#3 0x10105d4e3 in _dispatch_queue_wakeup_with_qos_slow (/usr/lib/system/introspection/libdispatch.dylib+0xd4e3)

#4 0x10105d8e7 in _dispatch_queue_wakeup_with_qos_slow (/usr/lib/system/introspection/libdispatch.dylib+0xd8e7)

#5 0x10105ace7 in _dispatch_barrier_sync_f_slow (/usr/lib/system/introspection/libdispatch.dylib+0xace7)

#6 0x190f41cdf in <redacted> (/System/Library/PrivateFrameworks/VectorKit.framework/VectorKit+0x401cdf)

#7 0x190f567ff in <redacted> (/System/Library/PrivateFrameworks/VectorKit.framework/VectorKit+0x4167ff)

#8 0x186bee237 in <redacted> (/System/Library/Frameworks/QuartzCore.framework/QuartzCore+0x5e237)

#9 0x186bee0cf in <redacted> (/System/Library/Frameworks/QuartzCore.framework/QuartzCore+0x5e0cf)

#10 0x18399946f in IODispatchCalloutFromCFMessage (/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit+0x546f)

#11 0x18278ab0f in <redacted> (/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation+0xcab0f)

#12 0x18279f79f in <redacted> (/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation+0xdf79f)

#13 0x18279f6ff in <redacted> (/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation+0xdf6ff)

#14 0x18279d67f in <redacted> (/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation+0xdd67f)

#15 0x1826c8f73 in CFRunLoopRunSpecific (/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation+0x8f73)

#16 0x18c1236fb in GSEventRunModal (/System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices+0xb6fb)

#17 0x1872cad93 in UIApplicationMain (/System/Library/Frameworks/UIKit.framework/UIKit+0x76d93)

#18 0x10010ad73 in main (/private/var/mobile/Containers/Bundle/Application/3CFC02D5-E600-4990-B8E0-BD41E16A710D/Lokate.app/Lokate+0x10003ad73)

#19 0x194b5ea07 in <redacted> (/usr/lib/system/libdyld.dylib+0x2a07)

SUMMARY: AddressSanitizer: heap-buffer-overflow ??:0 wrap_memcpy

Shadow bytes around the buggy address:

0x0001424a73e0: fa fa fa fa fa fa 00 fa fa fa 00 00 fa fa 00 00

0x0001424a73f0: fa fa 00 00 fa fa fd fd fa fa 00 00 fa fa 00 00

0x0001424a7400: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa

0x0001424a7410: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa

0x0001424a7420: fa fa fa fa fa fa fa fa fa fa 00 fa fa fa 00 00

=>0x0001424a7430: fa fa[01]fa fa fa 00 04 fa fa 01 fa fa fa 01 fa

0x0001424a7440: fa fa 01 fa fa fa 02 fa fa fa 00 fa fa fa 00 00

0x0001424a7450: fa fa 00 fa fa fa 00 00 fa fa 00 00 fa fa 00 04

0x0001424a7460: fa fa 01 fa fa fa 01 fa fa fa 01 fa fa fa 00 00

0x0001424a7470: fa fa 04 fa fa fa fd fa fa fa fd fd fa fa fd fd

0x0001424a7480: fa fa fd fa fa fa 00 fa fa fa 00 00 fa fa 00 03

Shadow byte legend (one shadow byte represents 8 application bytes):

Addressable: 00

Partially addressable: 01 02 03 04 05 06 07

Heap left redzone: fa

Heap right redzone: fb

Freed heap region: fd

Stack left redzone: f1

Stack mid redzone: f2

Stack right redzone: f3

Stack partial redzone: f4

Stack after return: f5

Stack use after scope: f8

Global redzone: f9

Global init order: f6

Poisoned by user: f7

Container overflow: fc

Array cookie: ac

Intra object redzone: bb

ASan internal: fe

Left alloca redzone: ca

Right alloca redzone: cb

==6125==ABORTING

yohst,


The problem you are reporting is unrelated. It's an overflow in memcpy. If your code does not call memcpy, please report the problem to the owners of the framework you are calling. Until the bug is fixed, you can work around this issue by suppressing errors coming from external libraries:

http://clang.llvm.org/docs/AddressSanitizer.html#suppressing-reports-in-external-libraries

I have the same error as yohost:



==5902==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x000105d8c3d1 at pc 0x000102905830 bp 0x00010dc6a970 sp 0x00010dc6a100

READ of size 4 at 0x000105d8c3d1 thread T48

#0 0x10290582f in wrap_memcpy (/private/var/mobile/Containers/Bundle/Application/2D58A33E-9FDC-464D-984C-2CD31CD6D873/MyApp.app/Frameworks/libclang_rt.asan_ios_dynamic.dylib+0x3582f)

#1 0x185c03023 in agxuEmitRenderPipelineState (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0x23023)

#2 0x185c0c983 in agxuBeginPrimitiveBuffer(AGXContextRec*, unsigned int, int*) (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0x2c983)

#3 0x18af819c3 in <redacted> (/System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine+0x9d9c3)

#4 0x18af42e63 in <redacted> (/System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine+0x5ee63)

#5 0x18b5d0e1f in <redacted> (/System/Library/Frameworks/QuartzCore.framework/QuartzCore+0x20e1f)

#6 0x18b5dd213 in <redacted> (/System/Library/Frameworks/QuartzCore.framework/QuartzCore+0x2d213)

#7 0x18b5cf827 in <redacted> (/System/Library/Frameworks/QuartzCore.framework/QuartzCore+0x1f827)

#8 0x18b5cf577 in <redacted> (/System/Library/Frameworks/QuartzCore.framework/QuartzCore+0x1f577)

#9 0x18b5ce353 in <redacted> (/System/Library/Frameworks/QuartzCore.framework/QuartzCore+0x1e353)

#10 0x18b5ccb93 in <redacted> (/System/Library/Frameworks/QuartzCore.framework/QuartzCore+0x1cb93)

#11 0x10290b097 in asan_dispatch_call_block_and_release (/private/var/mobile/Containers/Bundle/Application/2D58A33E-9FDC-464D-984C-2CD31CD6D873/MyApp.app/Frameworks/libclang_rt.asan_ios_dynamic.dylib+0x3b097)

#12 0x1035e4def in _dispatch_client_callout (/usr/lib/system/introspection/libdispatch.dylib+0xdef)

#13 0x1035ef853 in _dispatch_queue_drain (/usr/lib/system/introspection/libdispatch.dylib+0xb853)

#14 0x1035e811f in _dispatch_queue_invoke (/usr/lib/system/introspection/libdispatch.dylib+0x411f)

#15 0x1035f175b in _dispatch_root_queue_drain (/usr/lib/system/introspection/libdispatch.dylib+0xd75b)

#16 0x1035f2f17 in _dispatch_worker_thread3 (/usr/lib/system/introspection/libdispatch.dylib+0xef17)

#17 0x1987d52e3 in _pthread_wqthread (/usr/lib/system/libsystem_pthread.dylib+0x12e3)

#18 0x1987d4fa7 in start_wqthread (/usr/lib/system/libsystem_pthread.dylib+0xfa7)


0x000105d8c3d1 is located 0 bytes to the right of 1-byte region [0x000105d8c3d0,0x000105d8c3d1)

allocated by thread T48 here:

#0 0x10290d0bf in __asan_mz_malloc (/private/var/mobile/Containers/Bundle/Application/2D58A33E-9FDC-464D-984C-2CD31CD6D873/MyApp.app/Frameworks/libclang_rt.asan_ios_dynamic.dylib+0x3d0bf)

#1 0x1987653e3 in malloc_zone_malloc (/usr/lib/system/libsystem_malloc.dylib+0x13e3)

#2 0x185c503cf in G4G::FragmentPDSVaryingLoadsHAL::FragmentPDSVaryingLoadsHAL(google::protobuf::RepeatedPtrField<AGCShaderIteration> const*) (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0x703cf)

#3 0x185c42357 in AGXHalFragmentShader::AGXHalFragmentShader(AGXUserFragmentShaderKey const*, AGCFragmentShaderCodeGenInfo const*) (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0x62357)

#4 0x185c080a3 in agxuHalEmitFramebufferWriteConstants(AGXContextRec*, AGXHalEndOfTileProgram*, AGXRenderCommandRec*, AGXResourceDescriptor const&, bool, bool) (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0x280a3)

#5 0x18cc2ad47 in CompilerFSCache::GetElement(unsigned char*, void (void const*, unsigned long) block_pointer) (/System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection+0x2d47)

#6 0x1035e4def in _dispatch_client_callout (/usr/lib/system/introspection/libdispatch.dylib+0xdef)

#7 0x1035ee8c7 in _dispatch_barrier_sync_f_invoke (/usr/lib/system/introspection/libdispatch.dylib+0xa8c7)

#8 0x18cc2abb3 in CompilerFSCache::GetElement(unsigned char*, void (void const*, unsigned long) block_pointer) (/System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection+0x2bb3)

#9 0x18cc2a29f in XPCCompilerConnection::BuildRequest(NSObject<OS_dispatch_data>*, NSObject<OS_dispatch_data>*, void (void const*, unsigned long) block_pointer) (/System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection+0x229f)

#10 0x1035e4def in _dispatch_client_callout (/usr/lib/system/introspection/libdispatch.dylib+0xdef)

#11 0x1035ee8c7 in _dispatch_barrier_sync_f_invoke (/usr/lib/system/introspection/libdispatch.dylib+0xa8c7)

#12 0x18cc2a22b in XPCCompilerConnection::BuildRequest(NSObject<OS_dispatch_data>*, NSObject<OS_dispatch_data>*, void (void const*, unsigned long) block_pointer) (/System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection+0x222b)

#13 0x185c08ae7 in AGXHalShaderFactoryT<AGXUserFragmentShaderKey, AGCFragmentShaderCodeGenInfo, AGXHalFragmentShader>::create(AGXUserFragmentShaderKey*) (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0x28ae7)

#14 0x185c3fa23 in glrReleaseVendCtxPipeProg (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0x5fa23)

#15 0x185c3f34b in AGXFragmentShader::getCompiledVariant(AGXContextRec*, _AGCFragmentContextStateGL*, _AGCDrawBufferState*, unsigned int&) (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0x5f34b)

#16 0x185c3f797 in glrUpdateCtxSysFragmentProgram (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0x5f797)

#17 0x185becc3f in gpusLoadCurrentPipelinePrograms (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0xcc3f)

#18 0x185c02437 in gldUpdateDispatch (/System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver+0x22437)

#19 0x18af6edd7 in <redacted> (/System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine+0x8add7)

#20 0x18af4a3c7 in <redacted> (/System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine+0x663c7)

#21 0x18af42ce3 in <redacted> (/System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine+0x5ece3)

#22 0x18b5d0e1f in <redacted> (/System/Library/Frameworks/QuartzCore.framework/QuartzCore+0x20e1f)

#23 0x18b5dd213 in <redacted> (/System/Library/Frameworks/QuartzCore.framework/QuartzCore+0x2d213)

#24 0x18b5cf827 in <redacted> (/System/Library/Frameworks/QuartzCore.framework/QuartzCore+0x1f827)

#25 0x18b5cf577 in <redacted> (/System/Library/Frameworks/QuartzCore.framework/QuartzCore+0x1f577)

#26 0x18b5ce353 in <redacted> (/System/Library/Frameworks/QuartzCore.framework/QuartzCore+0x1e353)

#27 0x18b5ccb93 in <redacted> (/System/Library/Frameworks/QuartzCore.framework/QuartzCore+0x1cb93)

#28 0x10290b097 in asan_dispatch_call_block_and_release (/private/var/mobile/Containers/Bundle/Application/2D58A33E-9FDC-464D-984C-2CD31CD6D873/MyApp.app/Frameworks/libclang_rt.asan_ios_dynamic.dylib+0x3b097)

#29 0x1035e4def in _dispatch_client_callout (/usr/lib/system/introspection/libdispatch.dylib+0xdef)

.... it goes on. Am I correct in reading these stack traces that this is a bug in the address sanitizer itself? Just updated to Xcode 7 today. Bummer.


edit: a potentially related thread: https://forums.developer.apple.com/thread/17901

I have the same error as yohost



==219==Shadow memory range interleaves with an existing memory mapping. ASan cannot proceed correctly. ABORTING.

==219==ASan shadow was supposed to be located in the [0x3ffff000-0x5fffffff] range.

==219==Process memory map follows:

0x028c2000-0x02932000 /Developer/Library/PrivateFrameworks/GPUToolsCore.framework/GPUToolsCore

0x02932000-0x0293e000 /Developer/Library/PrivateFrameworks/GPUToolsCore.framework/GPUToolsCore

0x0293e000-0x02963000 /Developer/Library/PrivateFrameworks/GPUToolsCore.framework/GPUToolsCore

0x028ae000-0x028b6000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftContacts.dylib

0x028b6000-0x028ba000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftContacts.dylib

0x028be000-0x028c2000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftContacts.dylib

0x33577000-0x33599000 /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary

0x3af76000-0x3af78000 /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary

0x343f1000-0x343fe000 /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage

0x3b31d000-0x3b31e000 /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage

0x373ce000-0x373e5000 /System/Library/PrivateFrameworks/Ubiquity.framework/Ubiquity

0x3bdaf000-0x3bdb2000 /System/Library/PrivateFrameworks/Ubiquity.framework/Ubiquity

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/Ubiquity.framework/Ubiquity

0x34a54000-0x34a61000 /System/Library/PrivateFrameworks/Librarian.framework/Librarian

0x3b775000-0x3b778000 /System/Library/PrivateFrameworks/Librarian.framework/Librarian

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/Librarian.framework/Librarian

0x34650000-0x346d6000 /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing

0x3b6eb000-0x3b6f8000 /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing

0x3656e000-0x36614000 /System/Library/PrivateFrameworks/Radio.framework/Radio

0x3bb37000-0x3bb49000 /System/Library/PrivateFrameworks/Radio.framework/Radio

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/Radio.framework/Radio

0x34ebd000-0x3505a000 /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary

0x3b83c000-0x3b85f000 /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary

0x346d6000-0x346e4000 /System/Library/PrivateFrameworks/IAP.framework/IAP

0x3b6f8000-0x3b6fa000 /System/Library/PrivateFrameworks/IAP.framework/IAP

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/IAP.framework/IAP

0x38722000-0x3875d000 /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore

0x3bfaa000-0x3bfb7000 /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore

0x32dab000-0x32dc0000 /System/Library/PrivateFrameworks/AirTraffic.framework/AirTraffic

0x3aea7000-0x3aeab000 /System/Library/PrivateFrameworks/AirTraffic.framework/AirTraffic

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/AirTraffic.framework/AirTraffic

0x309c8000-0x30bc6000 /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer

0x3a8d8000-0x3a928000 /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer

0x366a2000-0x36728000 /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects

0x3bb65000-0x3bbd1000 /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects

0x34e12000-0x34e1a000 /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons

0x3b821000-0x3b822000 /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons

0x3780c000-0x3782a000 /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices

0x3be48000-0x3be4e000 /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices

0x3329f000-0x332bc000 /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices

0x3aefd000-0x3af05000 /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices

0x3637f000-0x363f0000 /System/Library/PrivateFrameworks/Preferences.framework/Preferences

0x3baf7000-0x3bb0f000 /System/Library/PrivateFrameworks/Preferences.framework/Preferences

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/Preferences.framework/Preferences

0x33499000-0x334a5000 /System/Library/PrivateFrameworks/CertInfo.framework/CertInfo

0x3af4a000-0x3af4d000 /System/Library/PrivateFrameworks/CertInfo.framework/CertInfo

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/CertInfo.framework/CertInfo

0x32aac000-0x32acd000 /System/Library/PrivateFrameworks/AccountsUI.framework/AccountsUI

0x3ace0000-0x3ace6000 /System/Library/PrivateFrameworks/AccountsUI.framework/AccountsUI

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/AccountsUI.framework/AccountsUI

0x3324d000-0x3325e000 /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService

0x3aef3000-0x3aef6000 /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService

0x3299e000-0x329a8000 /System/Library/PrivateFrameworks/AOSNotification.framework/AOSNotification

0x3acb3000-0x3acb5000 /System/Library/PrivateFrameworks/AOSNotification.framework/AOSNotification

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/AOSNotification.framework/AOSNotification

0x336dc000-0x33731000 /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV

0x3afa8000-0x3afbd000 /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV

0x35124000-0x35149000 /System/Library/PrivateFrameworks/Notes.framework/Notes

0x3b881000-0x3b885000 /System/Library/PrivateFrameworks/Notes.framework/Notes

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/Notes.framework/Notes

0x386f9000-0x3871d000 /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar

0x3bfa1000-0x3bfa9000 /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar

0x3784c000-0x37872000 /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks

0x3be56000-0x3be5b000 /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks

0x33168000-0x331a0000 /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount

0x3aed5000-0x3aede000 /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount

0x362fa000-0x362fe000 /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog

0x3badd000-0x3bade000 /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog

0x33694000-0x336cd000 /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex

0x3afa2000-0x3afa5000 /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex

0x34749000-0x3477e000 /System/Library/PrivateFrameworks/IDS.framework/IDS

0x3b6fb000-0x3b705000 /System/Library/PrivateFrameworks/IDS.framework/IDS

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/IDS.framework/IDS

0x34864000-0x348f2000 /System/Library/PrivateFrameworks/IMCore.framework/IMCore

0x3b727000-0x3b73a000 /System/Library/PrivateFrameworks/IMCore.framework/IMCore

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/IMCore.framework/IMCore

0x34db9000-0x34dbc000 /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport

0x3b80f000-0x3b810000 /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport

0x31d4f000-0x31da6000 /System/Library/Frameworks/QuickLook.framework/QuickLook

0x3aa1d000-0x3aa31000 /System/Library/Frameworks/QuickLook.framework/QuickLook

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/QuickLook.framework/QuickLook

0x34a61000-0x34a9b000 /System/Library/PrivateFrameworks/MIME.framework/MIME

0x3b778000-0x3b782000 /System/Library/PrivateFrameworks/MIME.framework/MIME

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/MIME.framework/MIME

0x34ae1000-0x34aed000 /System/Library/PrivateFrameworks/MailServices.framework/MailServices

0x3b78a000-0x3b78d000 /System/Library/PrivateFrameworks/MailServices.framework/MailServices

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/MailServices.framework/MailServices

0x2fed5000-0x2ff95000 /System/Library/Frameworks/EventKit.framework/EventKit

0x3a782000-0x3a7a1000 /System/Library/Frameworks/EventKit.framework/EventKit

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/EventKit.framework/EventKit

0x33ae1000-0x33b19000 /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess

0x3b063000-0x3b06c000 /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess

0x34ce0000-0x34db5000 /System/Library/PrivateFrameworks/Message.framework/Message

0x3b7ec000-0x3b80e000 /System/Library/PrivateFrameworks/Message.framework/Message

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/Message.framework/Message

0x33d85000-0x33d88000 /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices

0x3b0e3000-0x3b0e4000 /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices

0x33909000-0x33914000 /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents

0x3b00b000-0x3b00e000 /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents

0x39ba9000-0x39bbf000 /usr/lib/liblzma.5.dylib

0x3c1d3000-0x3c1d4000 /usr/lib/liblzma.5.dylib

0x3c2e5000-0x41d8d000 /usr/lib/liblzma.5.dylib

0x32dc0000-0x330f2000 /System/Library/PrivateFrameworks/Altitude.framework/Altitude

0x3aeab000-0x3aec4000 /System/Library/PrivateFrameworks/Altitude.framework/Altitude

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/Altitude.framework/Altitude

0x373fe000-0x3765a000 /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit

0x3bdb9000-0x3be04000 /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit

0x33d07000-0x33d09000 /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection

0x3b0d0000-0x3b0d1000 /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection

0x347ed000-0x347ff000 /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation

0x3b715000-0x3b719000 /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation

0x34b9c000-0x34b9e000 /System/Library/PrivateFrameworks/Marco.framework/Marco

0x3b7ab000-0x3b7ac000 /System/Library/PrivateFrameworks/Marco.framework/Marco

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/Marco.framework/Marco

0x33d88000-0x33db3000 /System/Library/PrivateFrameworks/FTServices.framework/FTServices

0x3b0e4000-0x3b0eb000 /System/Library/PrivateFrameworks/FTServices.framework/FTServices

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/FTServices.framework/FTServices

0x334a5000-0x334ab000 /System/Library/PrivateFrameworks/CertUI.framework/CertUI

0x3af4d000-0x3af4e000 /System/Library/PrivateFrameworks/CertUI.framework/CertUI

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/CertUI.framework/CertUI

0x306ca000-0x30913000 /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore

0x3a89d000-0x3a8b8000 /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore

0x3a38f000-0x3a3b1000 /usr/lib/libxslt.1.dylib

0x3c22b000-0x3c22c000 /usr/lib/libxslt.1.dylib

0x3c2e5000-0x41d8d000 /usr/lib/libxslt.1.dylib

0x33cad000-0x33cc4000 /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress

0x3b0ba000-0x3b0bf000 /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress

0x3a2b1000-0x3a2d8000 /usr/lib/libtidy.A.dylib

0x3c21f000-0x3c224000 /usr/lib/libtidy.A.dylib

0x3c2e5000-0x41d8d000 /usr/lib/libtidy.A.dylib

0x34971000-0x349cc000 /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation

0x3b74c000-0x3b761000 /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation

0x335f5000-0x335fa000 /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter

0x3af81000-0x3af82000 /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter

0x33db3000-0x341cf000 /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore

0x3b0eb000-0x3b2ee000 /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore

0x358a3000-0x358df000 /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL

0x3b9c0000-0x3b9c6000 /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL

0x362c6000-0x362fa000 /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit

0x3bad9000-0x3badd000 /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit

0x363f0000-0x36428000 /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit

0x3bb0f000-0x3bb17000 /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit

0x39319000-0x39321000 /usr/lib/libAccessibility.dylib

0x3c0cb000-0x3c0cd000 /usr/lib/libAccessibility.dylib

0x3c2e5000-0x41d8d000 /usr/lib/libAccessibility.dylib

0x3642b000-0x364b2000 /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader

0x3bb18000-0x3bb22000 /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader

0x37887000-0x38330000 /System/Library/PrivateFrameworks/WebCore.framework/WebCore

0x3be60000-0x3bf48000 /System/Library/PrivateFrameworks/WebCore.framework/WebCore

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/WebCore.framework/WebCore

0x38330000-0x383f1000 /System/Library/PrivateFrameworks/WebKit.framework/WebKit

0x3bf48000-0x3bf62000 /System/Library/PrivateFrameworks/WebKit.framework/WebKit

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/WebKit.framework/WebKit

0x37056000-0x3708a000 /System/Library/PrivateFrameworks/TextInput.framework/TextInput

0x3bd11000-0x3bd69000 /System/Library/PrivateFrameworks/TextInput.framework/TextInput

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/TextInput.framework/TextInput

0x33d09000-0x33d24000 /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices

0x3b0d1000-0x3b0d4000 /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices

0x2fb55000-0x2fc2f000 /System/Library/Frameworks/CoreImage.framework/CoreImage

0x3a72c000-0x3a748000 /System/Library/Frameworks/CoreImage.framework/CoreImage

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/CoreImage.framework/CoreImage

0x36caa000-0x36ccc000 /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities

0x3bcdf000-0x3bce6000 /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities

0x34dc7000-0x34dd4000 /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset

0x3b813000-0x3b815000 /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset

0x33a2a000-0x33a87000 /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI

0x3b027000-0x3b055000 /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI

0x3730d000-0x373ce000 /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation

0x3bd98000-0x3bdaf000 /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation

0x34df7000-0x34e00000 /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth

0x3b81d000-0x3b81e000 /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth

0x332e8000-0x332ef000 /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager

0x3af12000-0x3af14000 /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager

0x364b2000-0x364bd000 /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer

0x3bb22000-0x3bb24000 /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer

0x343fe000-0x345aa000 /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices

0x3b31e000-0x3b35e000 /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices

0x2fd32000-0x2fddb000 /System/Library/Frameworks/CoreMotion.framework/CoreMotion

0x3a760000-0x3a76c000 /System/Library/Frameworks/CoreMotion.framework/CoreMotion

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/CoreMotion.framework/CoreMotion

0x39776000-0x39780000 /usr/lib/libbz2.1.0.dylib

0x3c14d000-0x3c14e000 /usr/lib/libbz2.1.0.dylib

0x3c2e5000-0x41d8d000 /usr/lib/libbz2.1.0.dylib

0x332ef000-0x33314000 /System/Library/PrivateFrameworks/Bom.framework/Bom

0x3af14000-0x3af15000 /System/Library/PrivateFrameworks/Bom.framework/Bom

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/Bom.framework/Bom

0x34e1a000-0x34e1e000 /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation

0x3b822000-0x3b823000 /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation

0x33d42000-0x33d60000 /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X

0x3b0db000-0x3b0de000 /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X

0x333b4000-0x333bd000 /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork

0x3af39000-0x3af3a000 /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork

0x35149000-0x3514c000 /System/Library/PrivateFrameworks/OAuth.framework/OAuth

0x3b885000-0x3b886000 /System/Library/PrivateFrameworks/OAuth.framework/OAuth

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/OAuth.framework/OAuth

0x33cfe000-0x33d03000 /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration

0x3b0cd000-0x3b0ce000 /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration

0x35e83000-0x35eab000 /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection

0x3ba0f000-0x3ba17000 /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection

0x2ed0f000-0x2ed30000 /System/Library/Frameworks/Accounts.framework/Accounts

0x3a609000-0x3a610000 /System/Library/Frameworks/Accounts.framework/Accounts

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/Accounts.framework/Accounts

0x35118000-0x3511e000 /System/Library/PrivateFrameworks/Netrb.framework/Netrb

0x3b87f000-0x3b880000 /System/Library/PrivateFrameworks/Netrb.framework/Netrb

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/Netrb.framework/Netrb

0x39eea000-0x39eff000 /usr/lib/libmis.dylib

0x3c1fe000-0x3c1ff000 /usr/lib/libmis.dylib

0x3c2e5000-0x41d8d000 /usr/lib/libmis.dylib

0x33a87000-0x33adb000 /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils

0x3b055000-0x3b062000 /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils

0x3325e000-0x33265000 /System/Library/PrivateFrameworks/AppleSRP.framework/AppleSRP

0x3aef6000-0x3aef7000 /System/Library/PrivateFrameworks/AppleSRP.framework/AppleSRP

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/AppleSRP.framework/AppleSRP

0x34e72000-0x34e7e000 /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi

0x3b831000-0x3b832000 /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi

0x34c55000-0x34c63000 /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote

0x3b7d4000-0x3b7d7000 /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote

0x34e50000-0x34e54000 /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices

0x3b82a000-0x3b82b000 /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices

0x34e1e000-0x34e29000 /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag

0x3b823000-0x3b824000 /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag

0x336cd000-0x336d0000 /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC

0x3afa5000-0x3afa6000 /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC

0x36a82000-0x36ba4000 /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices

0x3bc7f000-0x3bcae000 /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices

0x34b9e000-0x34c17000 /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSender

0x3b7ac000-0x3b7c7000 /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSender

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSender

0x39b9e000-0x39ba9000 /usr/lib/liblockdown.dylib

0x3c1d0000-0x3c1d3000 /usr/lib/liblockdown.dylib

0x3c2e5000-0x41d8d000 /usr/lib/liblockdown.dylib

0x32acd000-0x32ad2000 /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary

0x3ace6000-0x3ace7000 /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary

0x3511e000-0x35124000 /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics

0x3b880000-0x3b881000 /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics

0x309c3000-0x309c8000 /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility

0x3a8d7000-0x3a8d8000 /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility

0x395ec000-0x3961b000 /usr/lib/libTelephonyUtilDynamic.dylib

0x3c115000-0x3c118000 /usr/lib/libTelephonyUtilDynamic.dylib

0x3c2e5000-0x41d8d000 /usr/lib/libTelephonyUtilDynamic.dylib

0x335e9000-0x335f5000 /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities

0x3af7e000-0x3af81000 /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities

0x33982000-0x33984000 /System/Library/PrivateFrameworks/CoreSurface.framework/CoreSurface

0x3b018000-0x3b019000 /System/Library/PrivateFrameworks/CoreSurface.framework/CoreSurface

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/CoreSurface.framework/CoreSurface

0x31a25000-0x31a29000 /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib

0x3a9ef000-0x3a9f0000 /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib

0x31a20000-0x31a21000 /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib

0x3a9ed000-0x3a9ee000 /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib

0x31a31000-0x31a70000 /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib

0x3a9f1000-0x3a9f2000 /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib

0x349d5000-0x349dd000 /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer

0x3b764000-0x3b765000 /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer

0x31a29000-0x31a31000 /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib

0x3a9f0000-0x3a9f1000 /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib

0x33d68000-0x33d74000 /System/Library/PrivateFrameworks/ExFAT.framework/ExFAT

0x3b0df000-0x3b0e1000 /System/Library/PrivateFrameworks/ExFAT.framework/ExFAT

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/ExFAT.framework/ExFAT

0x33129000-0x33168000 /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport

0x3aecd000-0x3aed5000 /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport

0x373e5000-0x373e9000 /System/Library/PrivateFrameworks/UserFS.framework/UserFS

0x3bdb2000-0x3bdb3000 /System/Library/PrivateFrameworks/UserFS.framework/UserFS

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/UserFS.framework/UserFS

0x2ecfc000-0x2ed0e000 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib

0x3a608000-0x3a609000 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib

0x2e8fc000-0x2e9d6000 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib

0x3a601000-0x3a602000 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib

0x2e9d6000-0x2ec8d000 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib

0x3a602000-0x3a607000 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib

0x2ec8d000-0x2ecfc000 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib

0x3a607000-0x3a608000 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib

0x2ed0e000-0x2ed0f000 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib

0x2e72f000-0x2e8fc000 /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage

0x3a5f9000-0x3a601000 /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage

0x3368b000-0x3368e000 /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses

0x3af9e000-0x3af9f000 /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses

0x3853b000-0x38544000 /System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects

0x3bf85000-0x3bf87000 /System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects

0x332c0000-0x332e6000 /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices

0x3af08000-0x3af11000 /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices

0x2f43d000-0x2f499000 /System/Library/Frameworks/CoreAudio.framework/CoreAudio

0x3a6a3000-0x3a6a5000 /System/Library/Frameworks/CoreAudio.framework/CoreAudio

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/CoreAudio.framework/CoreAudio

0x36828000-0x3683e000 /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices

0x3bc08000-0x3bc0b000 /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices

0x33adb000-0x33ae1000 /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport

0x3b062000-0x3b063000 /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport

0x39769000-0x39776000 /usr/lib/libbsm.0.dylib

0x3c14b000-0x3c14d000 /usr/lib/libbsm.0.dylib

0x3c2e5000-0x41d8d000 /usr/lib/libbsm.0.dylib

0x3a560000-0x3a57b000 /usr/lib/system/libxpc.dylib

0x3c25a000-0x3c25d000 /usr/lib/system/libxpc.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libxpc.dylib

0x3a55f000-0x3a560000 /usr/lib/system/libunwind.dylib

0x3c259000-0x3c25a000 /usr/lib/system/libunwind.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libunwind.dylib

0x3a55c000-0x3a55f000 /usr/lib/system/libsystem_stats.dylib

0x3c258000-0x3c259000 /usr/lib/system/libsystem_stats.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libsystem_stats.dylib

0x3a55a000-0x3a55c000 /usr/lib/system/libsystem_sandbox.dylib

0x3c257000-0x3c258000 /usr/lib/system/libsystem_sandbox.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libsystem_sandbox.dylib

0x3a554000-0x3a55a000 /usr/lib/system/libsystem_pthread.dylib

0x3c255000-0x3c257000 /usr/lib/system/libsystem_pthread.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libsystem_pthread.dylib

0x3a54e000-0x3a554000 /usr/lib/system/libsystem_platform.dylib

0x3c254000-0x3c255000 /usr/lib/system/libsystem_platform.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libsystem_platform.dylib

0x3a546000-0x3a54e000 /usr/lib/system/libsystem_notify.dylib

0x3c253000-0x3c254000 /usr/lib/system/libsystem_notify.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libsystem_notify.dylib

0x3a525000-0x3a546000 /usr/lib/system/libsystem_network.dylib

0x3c250000-0x3c253000 /usr/lib/system/libsystem_network.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libsystem_network.dylib

0x3a513000-0x3a525000 /usr/lib/system/libsystem_malloc.dylib

0x3c24f000-0x3c250000 /usr/lib/system/libsystem_malloc.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libsystem_malloc.dylib

0x3a4f3000-0x3a513000 /usr/lib/system/libsystem_m.dylib

0x3c24e000-0x3c24f000 /usr/lib/system/libsystem_m.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libsystem_m.dylib

0x3a4da000-0x3a4f3000 /usr/lib/system/libsystem_kernel.dylib

0x3c24c000-0x3c24e000 /usr/lib/system/libsystem_kernel.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libsystem_kernel.dylib

0x3a4c1000-0x3a4da000 /usr/lib/system/libsystem_info.dylib

0x3c24a000-0x3c24c000 /usr/lib/system/libsystem_info.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libsystem_info.dylib

0x3a4ba000-0x3a4c1000 /usr/lib/system/libsystem_dnssd.dylib

0x3c249000-0x3c24a000 /usr/lib/system/libsystem_dnssd.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libsystem_dnssd.dylib

0x3a4b7000-0x3a4ba000 /usr/lib/system/libsystem_configuration.dylib

0x3c248000-0x3c249000 /usr/lib/system/libsystem_configuration.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libsystem_configuration.dylib

0x3a455000-0x3a4b7000 /usr/lib/system/libsystem_c.dylib

0x3c242000-0x3c248000 /usr/lib/system/libsystem_c.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libsystem_c.dylib

0x3a454000-0x3a455000 /usr/lib/system/libsystem_blocks.dylib

0x3c241000-0x3c242000 /usr/lib/system/libsystem_blocks.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libsystem_blocks.dylib

0x3a446000-0x3a454000 /usr/lib/system/libsystem_asl.dylib

0x3c240000-0x3c241000 /usr/lib/system/libsystem_asl.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libsystem_asl.dylib

0x3a444000-0x3a446000 /usr/lib/system/libremovefile.dylib

0x3c23f000-0x3c240000 /usr/lib/system/libremovefile.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libremovefile.dylib

0x3a440000-0x3a444000 /usr/lib/system/libmacho.dylib

0x3c23e000-0x3c23f000 /usr/lib/system/libmacho.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libmacho.dylib

0x3a439000-0x3a440000 /usr/lib/system/liblaunch.dylib

0x3c23d000-0x3c23e000 /usr/lib/system/liblaunch.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/liblaunch.dylib

0x3a438000-0x3a439000 /usr/lib/system/libkeymgr.dylib

0x3c23c000-0x3c23d000 /usr/lib/system/libkeymgr.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libkeymgr.dylib

0x3a436000-0x3a438000 /usr/lib/system/libdyld.dylib

0x3c23b000-0x3c23c000 /usr/lib/system/libdyld.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libdyld.dylib

0x3a411000-0x3a436000 /usr/lib/system/libdispatch.dylib

0x3c235000-0x3c23b000 /usr/lib/system/libdispatch.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libdispatch.dylib

0x3a3d8000-0x3a411000 /usr/lib/system/libcorecrypto.dylib

0x3c232000-0x3c235000 /usr/lib/system/libcorecrypto.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libcorecrypto.dylib

0x3a3d1000-0x3a3d8000 /usr/lib/system/libcopyfile.dylib

0x3c231000-0x3c232000 /usr/lib/system/libcopyfile.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libcopyfile.dylib

0x3a3cc000-0x3a3d1000 /usr/lib/system/libcompiler_rt.dylib

0x3c22f000-0x3c231000 /usr/lib/system/libcompiler_rt.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libcompiler_rt.dylib

0x3a3c3000-0x3a3cc000 /usr/lib/system/libcommonCrypto.dylib

0x3c22e000-0x3c22f000 /usr/lib/system/libcommonCrypto.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libcommonCrypto.dylib

0x3a3be000-0x3a3c3000 /usr/lib/system/libcache.dylib

0x3c22d000-0x3c22e000 /usr/lib/system/libcache.dylib

0x3c2e5000-0x41d8d000 /usr/lib/system/libcache.dylib

0x397cc000-0x397e7000 /usr/lib/libc++abi.dylib

0x3c153000-0x3c154000 /usr/lib/libc++abi.dylib

0x3c2e5000-0x41d8d000 /usr/lib/libc++abi.dylib

0x39b9d000-0x39b9e000 /usr/lib/liblangid.dylib

0x3c1cf000-0x3c1d0000 /usr/lib/liblangid.dylib

0x3c2e5000-0x41d8d000 /usr/lib/liblangid.dylib

0x3951d000-0x39534000 /usr/lib/libCRFSuite.dylib

0x3c0ea000-0x3c0eb000 /usr/lib/libCRFSuite.dylib

0x3c2e5000-0x41d8d000 /usr/lib/libCRFSuite.dylib

0x332bc000-0x332c0000 /System/Library/PrivateFrameworks/BTLEAudioController.framework/BTLEAudioController

0x3af05000-0x3af08000 /System/Library/PrivateFrameworks/BTLEAudioController.framework/BTLEAudioController

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/BTLEAudioController.framework/BTLEAudioController

0x36c54000-0x36c57000 /System/Library/PrivateFrameworks/TCC.framework/TCC

0x3bcce000-0x3bccf000 /System/Library/PrivateFrameworks/TCC.framework/TCC

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/TCC.framework/TCC

0x364ee000-0x36563000 /System/Library/PrivateFrameworks/Quagga.framework/Quagga

0x3bb31000-0x3bb34000 /System/Library/PrivateFrameworks/Quagga.framework/Quagga

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/Quagga.framework/Quagga

0x39549000-0x3955f000 /usr/lib/libMobileGestalt.dylib

0x3c0f0000-0x3c106000 /usr/lib/libMobileGestalt.dylib

0x3c2e5000-0x41d8d000 /usr/lib/libMobileGestalt.dylib

0x34b20000-0x34b9c000 /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration

0x3b794000-0x3b7ab000 /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration

0x33291000-0x3329f000 /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices

0x3aefa000-0x3aefd000 /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices

0x2fec5000-0x2fed5000 /System/Library/Frameworks/CoreVideo.framework/CoreVideo

0x3a780000-0x3a782000 /System/Library/Frameworks/CoreVideo.framework/CoreVideo

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/CoreVideo.framework/CoreVideo

0x349dd000-0x349e3000 /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface

0x3b765000-0x3b766000 /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface

0x333bd000-0x33499000 /System/Library/PrivateFrameworks/*********.framework/*********

0x3af3a000-0x3af4a000 /System/Library/PrivateFrameworks/*********.framework/*********

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/*********.framework/*********

0x32700000-0x3274e000 /System/Library/Frameworks/************.framework/************

0x3abab000-0x3abc0000 /System/Library/Frameworks/************.framework/************

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/************.framework/************

0x30bc6000-0x30ecc000 /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox

0x3a928000-0x3a94a000 /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox

0x345aa000-0x345c1000 /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices

0x3b35e000-0x3b39a000 /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices

0x3c2e5000-0x41d8d000 /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices

0x30462000-0x304b9000 /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit

0x3a888000-0x3a88d000 /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit

0x2e6fc000-0x2e725000 /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib

0x3a5f4000-0x3a5f8000 /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib

0x0288d000-0x02895000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftUIKit.dylib

0x02895000-0x02899000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftUIKit.dylib

0x028a5000-0x028ad000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftUIKit.dylib

0x02868000-0x02870000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftObjectiveC.dylib

0x02870000-0x02874000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftObjectiveC.dylib

0x02884000-0x0288c000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftObjectiveC.dylib

0x026ef000-0x0272f000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftFoundation.dylib

0x0272f000-0x02733000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftFoundation.dylib

0x02827000-0x02867000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftFoundation.dylib

0x026d4000-0x026dc000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftDispatch.dylib

0x026dc000-0x026e0000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftDispatch.dylib

0x026e4000-0x026ec000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftDispatch.dylib

0x0269d000-0x026a5000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftDarwin.dylib

0x026a5000-0x026a9000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftDarwin.dylib

0x026c1000-0x026d1000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftDarwin.dylib

0x02679000-0x02681000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftCoreMedia.dylib

0x02681000-0x02685000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftCoreMedia.dylib

0x02695000-0x0269d000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftCoreMedia.dylib

0x02665000-0x0266d000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftCoreLocation.dylib

0x0266d000-0x02671000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftCoreLocation.dylib

0x02675000-0x02679000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftCoreLocation.dylib

0x02651000-0x02659000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftCoreImage.dylib

0x02659000-0x0265d000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftCoreImage.dylib

0x02661000-0x02665000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftCoreImage.dylib

0x02611000-0x0261d000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftCoreGraphics.dylib

0x0261d000-0x02621000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftCoreGraphics.dylib

0x02641000-0x02651000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftCoreGraphics.dylib

0x025e5000-0x025ed000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftCoreAudio.dylib

0x025ed000-0x025f1000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftCoreAudio.dylib

0x02605000-0x02611000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftCoreAudio.dylib

0x01850000-0x01a84000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftCore.dylib

0x01a84000-0x01aa0000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftCore.dylib

0x023c0000-0x025e4000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftCore.dylib

0x01838000-0x01840000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftAVFoundation.dylib

0x01840000-0x01844000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftAVFoundation.dylib

0x01848000-0x01850000 /private/var/mobile/Applications/A411D815-A246-4694-9F1C-34C336840699/SkillTemp copy.app/Frameworks/libswiftAVFoundation.dylib

0x31f8c000-0x32700000 /System/Library/Frameworks/UIKit.framework/UIKit

0x3aa71000-0x3abab000 /System/Library/Frameworks/UIKit.framework/UIKit

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/UIKit.framework/UIKit

0x31da8000-0x31deb000 /System/Library/Frameworks/Security.framework/Security

0x3aa32000-0x3aa3a000 /System/Library/Frameworks/Security.framework/Security

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/Security.framework/Security

0x30ecc000-0x30f78000 /System/Library/Frameworks/MessageUI.framework/MessageUI

0x3a94a000-0x3a969000 /System/Library/Frameworks/MessageUI.framework/MessageUI

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/MessageUI.framework/MessageUI

0x30913000-0x309c3000 /System/Library/Frameworks/MapKit.framework/MapKit

0x3a8b8000-0x3a8d7000 /System/Library/Frameworks/MapKit.framework/MapKit

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/MapKit.framework/MapKit

0x2fddb000-0x2fe34000 /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony

0x3a76c000-0x3a777000 /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony

0x2fcb6000-0x2fd32000 /System/Library/Frameworks/CoreMedia.framework/CoreMedia

0x3a753000-0x3a760000 /System/Library/Frameworks/CoreMedia.framework/CoreMedia

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/CoreMedia.framework/CoreMedia

0x2f7e9000-0x2f90d000 /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics

0x3a708000-0x3a721000 /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics

0x2f6a6000-0x2f7e9000 /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation

0x3a6de000-0x3a708000 /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation

0x3c25d000-0x3c2e5000 /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation

0x3957c000-0x3957e000 /usr/lib/libSystem.B.dylib

0x3c10a000-0x3c10b000 /usr/lib/libSystem.B.dylib

0x3c2e5000-0x41d8d000 /usr/lib/libSystem.B.dylib

0x39f27000-0x3a0c7000 /usr/lib/libobjc.A.dylib

0x3c202000-0x3c20d000 /usr/lib/libobjc.A.dylib

0x3c2e5000-0x41d8d000 /usr/lib/libobjc.A.dylib

0x30095000-0x30281000 /System/Library/Frameworks/Foundation.framework/Foundation

0x3a7d0000-0x3a81e000 /System/Library/Frameworks/Foundation.framework/Foundation

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/Foundation.framework/Foundation

0x3a263000-0x3a2b1000 /usr/lib/libstdc++.6.dylib

0x3c21a000-0x3c21f000 /usr/lib/libstdc++.6.dylib

0x3c2e5000-0x41d8d000 /usr/lib/libstdc++.6.dylib

0x3a2db000-0x3a38f000 /usr/lib/libxml2.2.dylib

0x3c225000-0x3c22b000 /usr/lib/libxml2.2.dylib

0x3c2e5000-0x41d8d000 /usr/lib/libxml2.2.dylib

0x39956000-0x39a44000 /usr/lib/libiconv.2.dylib

0x3c1ba000-0x3c1bb000 /usr/lib/libiconv.2.dylib

0x3c2e5000-0x41d8d000 /usr/lib/libiconv.2.dylib

0x3a3b1000-0x3a3be000 /usr/lib/libz.1.dylib

0x3c22c000-0x3c22d000 /usr/lib/libz.1.dylib

0x3c2e5000-0x41d8d000 /usr/lib/libz.1.dylib

0x3a18e000-0x3a1a4000 /usr/lib/libresolv.9.dylib

0x3c213000-0x3c215000 /usr/lib/libresolv.9.dylib

0x3c2e5000-0x41d8d000 /usr/lib/libresolv.9.dylib

0x3a1cc000-0x3a263000 /usr/lib/libsqlite3.dylib

0x3c218000-0x3c21a000 /usr/lib/libsqlite3.dylib

0x3c2e5000-0x41d8d000 /usr/lib/libsqlite3.dylib

0x39a44000-0x39b96000 /usr/lib/libicucore.A.dylib

0x3c1bb000-0x3c1cd000 /usr/lib/libicucore.A.dylib

0x3c2e5000-0x41d8d000 /usr/lib/libicucore.A.dylib

0x39780000-0x397cc000 /usr/lib/libc++.1.dylib

0x3c14e000-0x3c153000 /usr/lib/libc++.1.dylib

0x3c2e5000-0x41d8d000 /usr/lib/libc++.1.dylib

0x2ed99000-0x2eeb0000 /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI

0x3a61d000-0x3a65b000 /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI

0x2ed31000-0x2ed99000 /System/Library/Frameworks/AddressBook.framework/AddressBook

0x3a611000-0x3a61d000 /System/Library/Frameworks/AddressBook.framework/AddressBook

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/AddressBook.framework/AddressBook

0x2f31e000-0x2f43d000 /System/Library/Frameworks/CFNetwork.framework/CFNetwork

0x3a681000-0x3a6a3000 /System/Library/Frameworks/CFNetwork.framework/CFNetwork

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/CFNetwork.framework/CFNetwork

0x30f78000-0x30fdc000 /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices

0x3a969000-0x3a972000 /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices

0x2f004000-0x2f31e000 /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox

0x3a665000-0x3a681000 /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox

0x2e725000-0x2e726000 /System/Library/Frameworks/Accelerate.framework/Accelerate

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/Accelerate.framework/Accelerate

0x2f499000-0x2f4b1000 /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth

0x3a6a5000-0x3a6aa000 /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth

0x31f3a000-0x31f8a000 /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration

0x3aa68000-0x3aa70000 /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration

0x31c08000-0x31d4f000 /System/Library/Frameworks/QuartzCore.framework/QuartzCore

0x3aa06000-0x3aa1d000 /System/Library/Frameworks/QuartzCore.framework/QuartzCore

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/QuartzCore.framework/QuartzCore

0x31a16000-0x31a1f000 /System/Library/Frameworks/OpenGLES.framework/OpenGLES

0x3a9ec000-0x3a9ed000 /System/Library/Frameworks/OpenGLES.framework/OpenGLES

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/OpenGLES.framework/OpenGLES

0x304b9000-0x306ca000 /System/Library/Frameworks/ImageIO.framework/ImageIO

0x3a88d000-0x3a89d000 /System/Library/Frameworks/ImageIO.framework/ImageIO

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/ImageIO.framework/ImageIO

0x30281000-0x302ac000 /System/Library/Frameworks/GLKit.framework/GLKit

0x3a81e000-0x3a827000 /System/Library/Frameworks/GLKit.framework/GLKit

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/GLKit.framework/GLKit

0x2fe34000-0x2fec5000 /System/Library/Frameworks/CoreText.framework/CoreText

0x3a777000-0x3a780000 /System/Library/Frameworks/CoreText.framework/CoreText

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/CoreText.framework/CoreText

0x2fc2f000-0x2fc7f000 /System/Library/Frameworks/CoreLocation.framework/CoreLocation

0x3a748000-0x3a750000 /System/Library/Frameworks/CoreLocation.framework/CoreLocation

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/CoreLocation.framework/CoreLocation

0x2f4b1000-0x2f6a6000 /System/Library/Frameworks/CoreData.framework/CoreData

0x3a6aa000-0x3a6de000 /System/Library/Frameworks/CoreData.framework/CoreData

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/CoreData.framework/CoreData

0x2e5f9000-0x2e6fc000 /System/Library/Frameworks/AVFoundation.framework/AVFoundation

0x3a5c5000-0x3a5f4000 /System/Library/Frameworks/AVFoundation.framework/AVFoundation

0x3c2e5000-0x41d8d000 /System/Library/Frameworks/AVFoundation.framework/AVFoundation

0x0160a000-0x017e7000 /Developer/Library/PrivateFrameworks/GPUTools.framework/libglInterpose.dylib

0x017e7000-0x017ef000 /Developer/Library/PrivateFrameworks/GPUTools.framework/libglInterpose.dylib

0x017ef000-0x01837000 /Developer/Library/PrivateFrameworks/GPUTools.framework/libglInterpose.dylib

==219==End of process memory map.

I just want to know how to deal with this problem.

the end, i use xcode 7.1, swift2.0, and iphone4s(ios deployment target is 7.1)

Address sanitizer "container-overflow" bug or false positive in vector&lt;&gt;::push_back()?
 
 
Q