Vux: router-view设置成keep-alive,pullup加载更多使用spinner组件,多次切换后,会出现闪退现象。

Created on 21 Aug 2016  ·  10Comments  ·  Source: airyland/vux

1、npm版本为3.9.3,node版本为v6.2.1,vux版本0.1.2

2、iOS8, Safari 版本 8.0.8 (10600.8.9)

3、Codes

<template>
  <div>

    <group title="Scroller" title-color="#04be02">
      <cell title="pullup" link="pullup">
        <span class="demo-icon" slot="icon">&#xe650;</span>
      </cell>
      <cell title="comment" value="评论" link="comment">
        <span class="demo-icon" slot="icon">&#xe652;</span>
      </cell>
    </group>

  </div>
</template>

<script>
import { Cell, Group } from 'vux/src/components'

/**
* fix firefox cell bottom border missing
*/

if (/firefox/i.test(navigator.userAgent)) {
  document.querySelector('body').classList.add('firefox')
}

export default {
  components: {
    Cell,
    Group
  },
  data () {
    return {
    }
  }
}
</script>

<style>
.center {
  margin-top: 15px;
  text-align: center;
}

body {
  font-family: Helvetica, sans-serif;
  background-color: #fbf9fe;
  padding-bottom: 50px;
}

.firefox .weui_cells:after {
  transform-origin: 50% 50%;
}
</style>




<template>
  <div>

    <divider>custom pullup html template</divider>
    <scroller lock-x scrollbar-y use-pullup height="200px" :pullup-status.sync="pullupStatus" @pullup:loading="load3">
      <!--content slot-->
      <div class="box2">
        <p v-for="i in n3">placeholder {{i}}</p>
      </div>

      <!--pullup slot-->
      <div slot="pullup" class="xs-plugin-pullup-container xs-plugin-pullup-up" style="position: absolute; width: 100%; height: 40px; bottom: -40px; text-align: center;">
        <span v-show="pullupStatus === 'default'"></span>
        <span class="pullup-arrow" v-show="pullupStatus === 'down' || pullupStatus === 'up'" :class="{'rotate': pullupStatus === 'up'}">↑</span>
        <span v-show="pullupStatus === 'loading'"><spinner type="ios-small"></spinner></span>
      </div>
    </scroller>

  </div>
</template>

<script>
import { Scroller, Divider, Spinner } from 'vux/src/components'

export default {
  components: {
    Scroller,
    Divider,
    Spinner
  },
  methods: {
    load1 (uuid) {
      setTimeout(() => {
        this.n1 += 10
        setTimeout(() => {
          this.$broadcast('pullup:reset', uuid)
        }, 10)
      }, 2000)
    },
    load2 (uuid) {
      setTimeout(() => {
        if (this.n2 === 30) {
          this.$broadcast('pullup:done', uuid)
        } else {
          this.n2 += 10
          setTimeout(() => {
            this.$broadcast('pullup:reset', uuid)
          }, 10)
        }
      }, 2000)
    },
    load3 (uuid) {
      setTimeout(() => {
        this.n3 += 10
        setTimeout(() => {
          this.$broadcast('pullup:reset', uuid)
        }, 10)
      }, 2000)
    }
  },
  data () {
    return {
      pullupStatus: 'default',
      n1: 10,
      n2: 10,
      n3: 10,
      pullupConfig2: {
        content: '下拉刷新',
        downContent: '下拉刷新',
        upContent: '释放刷新',
        loadingContent: '加载中'
      }
    }
  }
}
</script>

<style lang="less" scoped>
.box1 {
  height: 100px;
  position: relative;
  width: 1490px;
}
.box1-item {
  width: 200px;
  height: 100px;
  background-color: #ccc;
  display:inline-block;
  margin-left: 15px;
  float: left;
  text-align: center;
  line-height: 100px;
}
.box1-item:first-child {
  margin-left: 0;
}
.box2-wrap {
  height: 300px;
  overflow: hidden;
}
.rotate {
  display: inline-block;
  transform: rotate(-180deg);
}
.pullup-arrow {
  transition: all linear 0.2s;
  color: #666;
  font-size: 25px;
}
</style>




<template>
  <div style="padding: 15px; background-color: #fff;">
    <ul class="discuss_list">
      <li class="discuss_item" v-for="comment in list">

        <div class="discuss_opr">
          <span class="media_tool_meta tips_global meta_praise" :class="{'praised': comment.has_praised}">
            <i class="icon_praise_gray" @click="praise(comment)"></i>
            <span class="praise_num">{{comment.like_num}}</span>
          </span>
        </div>

        <div class="user_info">
          <strong class="nickname">{{comment.name}}</strong>
          <img class="avatar" :src="comment.avatar">
        </div>

        <div class="discuss_message">
          <span class="discuss_status">{{comment.status}}</span>
          <div class="discuss_message_content">{{comment.content}}</div>
        </div>
        <p class="discuss_extra_info">{{comment.time}}

          <a v-if="comment.is_from_me" class="discuss_del js_del" href="javascript:;" data-my-id="<#=my_id#>" data-content-id="<#=content_id#>">删除</a>
        </p>

        <div class="reply_result" v-if="comment.reply_list && comment.reply_list.length">
          <div class="nickname">作者回复</div>
          <div class="discuss_message">
            <div class="discuss_message_content">{{comment.reply_list[0].content}}</div>
          </div>
          <p class="discuss_extra_info">{{comment.reply_list[0].time}}</p>
        </div>

      </li>
    </ul>
  </div>
</template>

<script>
const list = [{
  name: 'Airyland',
  avatar: 'static/demo/comment/1.jpg',
  time: '昨天',
  like_num: 99,
  content: '沙发',
  has_praised: true,
  reply_list: [{
    content: '恭喜~',
    time: '今天早上'
  }]
}, {
  name: 'Vux',
  avatar: 'static/demo/comment/2.jpg',
  time: '未来时间',
  like_num: 0,
  content: '板凳'
}, {
  name: 'Secret',
  avatar: 'static/demo/comment/3.jpg',
  time: '未来时间',
  like_num: 99,
  content: '居然没抢到沙发'
}]
export default {
  data () {
    return {
      list: list
    }
  },
  methods: {
    praise (item) {
      if (!item.has_praised) {
        item.like_num++
        item.has_praised = true
        console.log(JSON.stringify(item))
      }
    }
  }
}
</script>

<style>
.discuss_btn_wrp {
  display: none;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: right
}

.btn_discuss {
  padding-left: 1.5em;
  padding-right: 1.5em
}

.discuss_list {
  margin-top: -5px;
  padding-bottom: 20px;
  font-size: 16px
}

.discuss_item {
  position: relative;
  padding-left: 45px;
  margin-top: 15px;
}

.discuss_item:after {
  content: "\200B";
  display: block;
  height: 0;
  clear: both
}

.discuss_item .user_info {
  min-height: 20px;
  overflow: hidden
}

.discuss_item .nickname {
  display: block;
  font-weight: 400;
  font-style: normal;
  color: #727272;
  width: 9em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal
}

.discuss_item .avatar {
  position: absolute;
  top: 0;
  left: 0;
  top: 3px;
  width: 35px;
  height: 35px;
  background-color: #ccc;
  vertical-align: top;
  margin-top: 0;
  border-radius: 2px;
}

.discuss_item .discuss_message {
  color: #3e3e3e;
  line-height: 1.5
}

.discuss_item .discuss_extra_info {
  color: #8c8c8c;
  font-size: 12px
}

.discuss_item .discuss_extra_info a {
  margin-left: .5em
}

.discuss_item .discuss_status {
  color: #ff7a21;
  white-space: nowrap
}

.discuss_item .discuss_status i {
  font-style: normal;
  margin-right: 2px
}

.discuss_item .discuss_opr {
  float: right
}

.discuss_item .discuss_opr .meta_praise {
  display: inline-block;
  text-align: right;
  padding-top: 5px;
  margin-top: -5px
}

.discuss_item .discuss_del {
  margin-left: .5em
}

.discuss_icon_tips {
  margin-bottom: 20px
}

.discuss_icon_tips img {
  vertical-align: middle;
  margin-left: 3px;
  margin-top: -4px
}

.discuss_icon_tips .icon_edit {
  width: 12px
}

.discuss_icon_tips .icon_access {
  width: 13px
}

.reply_result {
  position: relative;
  margin-top: .5em;
  padding-top: .5em;
  padding-left: .4em
}

.reply_result:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  border-top: 1px solid #dadada;
  transform-origin: 0 0;
  transform: scaleY(0.5)
}

.reply_result .nickname {
  position: relative;
  overflow: visible
}

.reply_result .nickname:before {
  content: " ";
  position: absolute;
  left: -0.4em;
  top: 50%;
  margin-top: -7px;
  width: 3px;
  height: 14px;
  background-color: #02bb00
}

.rich_tips.discuss_title_line {
  margin-top: 50px
}


.meta_praise {
  tap-highlight-color: rgba(0,0,0,0);
  outline: 0;
  min-width: 3.5em
}

.meta_praise .praise_num {
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  color: #666;
}

.icon_praise_gray {
  background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAA+CAYAAAA1dwvuAAAACXBIWXMAAA7EAAAOxAGVKw4bAAACd0lEQVRYhe2XMWhUMRjHfycdpDg4iJN26CQih4NUlFIc3iTasaAO+iZBnorIId2CDg6PLqWDXSy0p28TJ6ejILgoKiLFSeRcnASLnDf2HPKll8b3ah5NQPB+cHzJl0v+73J5Sf6NwWCAD6kqxoEV4BywCTwA2j59V9QlxrxUNJeBOSkfBtaAHvDcp/O+GkJHJd4H7kr5nm/nOkJHJH4FHkv5WAyhUxLfAgelvBlUKFXFBNCU6oYl+j6oEHohADwFtoDTUn8dTChVxX7gjlSfSJyS+CaYEDCPXs4d4IXkzDR+8BWqfI9SVUyil/ENST20ml8BF4Afu4z9HT3V80B/TAY9CxTABNAHxp1Oj4B1q34dWAamGa5Al0PALfSs3TS/aE1EcERWgQXgozPIN+Ai6O2ljFQVM8BLZJqN0KTEhgj9kvrViqf1wYz5BcoXQ38Pg9uckfiuSigU0xLXowmlqpgCjgNd4FM0IeCKxGcmEUtoRqLZScILpaqYA06iN9/tTTfGLzKvxLKdDCqUquIEcB59xK9GE2J4xLeBn3ZD1abaq/sQqSpmgWvo82rBbTdCPeAA4N69/noXS1XhphaBz27SPPVtapz/FXSBFsNDcgcN3wvkiBEjRoSndAtqLXXKvuvtYfMs+SP3T3tYm6ge1iaqh7UJ62HRTqNZko/mYV3CeVjA9rAuUTxsGd4edrcX1vWwddn2sHmWaA/bWuq4HnYLff3aC7U8bAiaMPyPJp3GhnxCUOlhQxPdwxrieViLbp4lUT2sIbqHNcTzsBYbeZZE9bCGeB7WIrqHNbTzLNnhYWMIlXpYI9Rz8gM8/GsFi3mW/Ace9jf8QZwIX5o4uQAAAABJRU5ErkJggg==) no-repeat 0 0;width: 13px;
  height: 13px;
  vertical-align: middle;
  display: inline-block;
  background-size: 100% auto
}

.icon_praise_gray.praised {
  background-position: 0 -18px
}

.praised .icon_praise_gray {
  background-position: 0 -18px
}
</style>

重现步骤:
1:全局router-view设置成keep-alive
2:随便准备2个组件,方便互相切换
3:pullup加载更多使用spinner组件
4:pullup和其他组件多次切换后就会出现闪退

闪退截图:
c385e0e2-7841-4a8a-9d39-6782c06e7635

错误日志:
Process: com.apple.WebKit.WebContent [1436]
Path: /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
Identifier: com.apple.WebKit.WebContent
Version: 10600 (10600.8.9)
Build Info: WebKit2-7600008009000000~3
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: Safari [393]
User ID: 501

Date/Time: 2016-08-21 21:02:55.191 +0800
OS Version: Mac OS X 10.10.5 (14F27)
Report Version: 11
Anonymous UUID: 0B27D0D6-BFD5-0858-8C1C-F37D7B9E28AD

Time Awake Since Boot: 18000 seconds

Crashed Thread: 0 Dispatch queue: com.apple.main-thread

Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000010

VM Regions Near 0x10:
-->
__TEXT 000000010100c000-000000010100d000 [ 4K] r-x/rwx SM=COW /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent

Application Specific Information:
Bundle controller class:
BrowserBundleController

Process Model:
Multiple Web Processes

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 com.apple.WebCore 0x00007fff916fd718 WebCore::SVGAnimatedNumberAnimator::calculateAnimatedValue(float, unsigned int, WebCore::SVGAnimatedType_, WebCore::SVGAnimatedType_, WebCore::SVGAnimatedType_, WebCore::SVGAnimatedType_) + 40
1 com.apple.WebCore 0x00007fff91709f3b WebCore::SVGAnimationElement::updateAnimation(float, unsigned int, WebCore::SVGSMILElement_) + 747
2 com.apple.WebCore 0x00007fff9177713f WebCore::SVGSMILElement::progress(WebCore::SMILTime, WebCore::SVGSMILElement_, bool) + 607
3 com.apple.WebCore 0x00007fff90c0ae0a WebCore::SMILTimeContainer::updateAnimations(WebCore::SMILTime, bool) + 426
4 com.apple.WebCore 0x00007fff916a47cb WebCore::SMILTimeContainer::timerFired(WebCore::Timer_) + 91
5 com.apple.WebCore 0x00007fff90a2441d WebCore::ThreadTimers::sharedTimerFiredInternal() + 157
6 com.apple.WebCore 0x00007fff90a24344 WebCore::timerFired(__CFRunLoopTimer_, void*) + 20
7 com.apple.CoreFoundation 0x00007fff9a3062e4 CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION + 20
8 com.apple.CoreFoundation 0x00007fff9a305f73 __CFRunLoopDoTimer + 1059
9 com.apple.CoreFoundation 0x00007fff9a37953d __CFRunLoopDoTimers + 301
10 com.apple.CoreFoundation 0x00007fff9a2c1608 __CFRunLoopRun + 2024
11 com.apple.CoreFoundation 0x00007fff9a2c0bd8 CFRunLoopRunSpecific + 296
12 com.apple.HIToolbox 0x00007fff97ccb56f RunCurrentEventLoopInMode + 235
13 com.apple.HIToolbox 0x00007fff97ccb2ea ReceiveNextEventCommon + 431
14 com.apple.HIToolbox 0x00007fff97ccb12b _BlockUntilNextEventMatchingListInModeWithFilter + 71
15 com.apple.AppKit 0x00007fff91b958ab _DPSNextEvent + 978
16 com.apple.AppKit 0x00007fff91b94e58 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 346
17 com.apple.AppKit 0x00007fff91b8aaf3 -[NSApplication run] + 594
18 com.apple.AppKit 0x00007fff91b07244 NSApplicationMain + 1832
19 libxpc.dylib 0x00007fff95025928 _xpc_objc_main + 793
20 libxpc.dylib 0x00007fff95027030 xpc_main + 490
21 com.apple.WebKit.WebContent 0x000000010100cb40 0x10100c000 + 2880
22 libdyld.dylib 0x00007fff9afe15c9 start + 1

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0 libsystem_kernel.dylib 0x00007fff99ead232 kevent64 + 10
1 libdispatch.dylib 0x00007fff96f13a6a _dispatch_mgr_thread + 52

Thread 2:
0 libsystem_kernel.dylib 0x00007fff99eac94a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff96dfb3dd start_wqthread + 13

Thread 3:
0 libsystem_kernel.dylib 0x00007fff99eac94a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff96dfb3dd start_wqthread + 13

Thread 4:
0 libsystem_kernel.dylib 0x00007fff99eac94a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff96dfb3dd start_wqthread + 13

Thread 5:
0 libsystem_kernel.dylib 0x00007fff99ea74de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff99ea664f mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff9a2c1eb4 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff9a2c137b __CFRunLoopRun + 1371
4 com.apple.CoreFoundation 0x00007fff9a2c0bd8 CFRunLoopRunSpecific + 296
5 com.apple.AppKit 0x00007fff91c5d56b _NSEventThread + 137
6 libsystem_pthread.dylib 0x00007fff96dfe05a _pthread_body + 131
7 libsystem_pthread.dylib 0x00007fff96dfdfd7 _pthread_start + 176
8 libsystem_pthread.dylib 0x00007fff96dfb3ed thread_start + 13

Thread 6:: WebCore: Scrolling
0 libsystem_kernel.dylib 0x00007fff99ea74de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff99ea664f mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff9a2c1eb4 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff9a2c137b __CFRunLoopRun + 1371
4 com.apple.CoreFoundation 0x00007fff9a2c0bd8 CFRunLoopRunSpecific + 296
5 com.apple.CoreFoundation 0x00007fff9a378671 CFRunLoopRun + 97
6 com.apple.WebCore 0x00007fff90a9ff94 WebCore::ScrollingThread::initializeRunLoop() + 244
7 com.apple.JavaScriptCore 0x00007fff965f1cff WTF::wtfThreadEntryPoint(void*) + 15
8 libsystem_pthread.dylib 0x00007fff96dfe05a _pthread_body + 131
9 libsystem_pthread.dylib 0x00007fff96dfdfd7 _pthread_start + 176
10 libsystem_pthread.dylib 0x00007fff96dfb3ed thread_start + 13

Thread 7:: JavaScriptCore::BlockFree
0 libsystem_kernel.dylib 0x00007fff99eac136 __psynch_cvwait + 10
1 libc++.1.dylib 0x00007fff9270ac95 std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 47
2 com.apple.JavaScriptCore 0x00007fff965fc544 JSC::BlockAllocator::blockFreeingThreadMain() + 228
3 com.apple.JavaScriptCore 0x00007fff965f1cff WTF::wtfThreadEntryPoint(void*) + 15
4 libsystem_pthread.dylib 0x00007fff96dfe05a _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff96dfdfd7 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff96dfb3ed thread_start + 13

Thread 8:: JavaScriptCore::Marking
0 libsystem_kernel.dylib 0x00007fff99eac136 __psynch_cvwait + 10
1 libc++.1.dylib 0x00007fff9270ac95 std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 47
2 com.apple.JavaScriptCore 0x00007fff965fcadb JSC::GCThread::waitForNextPhase() + 171
3 com.apple.JavaScriptCore 0x00007fff965fc938 JSC::GCThread::gcThreadMain() + 88
4 com.apple.JavaScriptCore 0x00007fff965f1cff WTF::wtfThreadEntryPoint(void*) + 15
5 libsystem_pthread.dylib 0x00007fff96dfe05a _pthread_body + 131
6 libsystem_pthread.dylib 0x00007fff96dfdfd7 _pthread_start + 176
7 libsystem_pthread.dylib 0x00007fff96dfb3ed thread_start + 13

Thread 9:: JavaScriptCore::Marking
0 libsystem_kernel.dylib 0x00007fff99eac136 __psynch_cvwait + 10
1 libc++.1.dylib 0x00007fff9270ac95 std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 47
2 com.apple.JavaScriptCore 0x00007fff965fcadb JSC::GCThread::waitForNextPhase() + 171
3 com.apple.JavaScriptCore 0x00007fff965fc938 JSC::GCThread::gcThreadMain() + 88
4 com.apple.JavaScriptCore 0x00007fff965f1cff WTF::wtfThreadEntryPoint(void*) + 15
5 libsystem_pthread.dylib 0x00007fff96dfe05a _pthread_body + 131
6 libsystem_pthread.dylib 0x00007fff96dfdfd7 _pthread_start + 176
7 libsystem_pthread.dylib 0x00007fff96dfb3ed thread_start + 13

Thread 10:: JavaScriptCore::Marking
0 libsystem_kernel.dylib 0x00007fff99eac136 __psynch_cvwait + 10
1 libc++.1.dylib 0x00007fff9270ac95 std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 47
2 com.apple.JavaScriptCore 0x00007fff965fcadb JSC::GCThread::waitForNextPhase() + 171
3 com.apple.JavaScriptCore 0x00007fff965fc938 JSC::GCThread::gcThreadMain() + 88
4 com.apple.JavaScriptCore 0x00007fff965f1cff WTF::wtfThreadEntryPoint(void*) + 15
5 libsystem_pthread.dylib 0x00007fff96dfe05a _pthread_body + 131
6 libsystem_pthread.dylib 0x00007fff96dfdfd7 _pthread_start + 176
7 libsystem_pthread.dylib 0x00007fff96dfb3ed thread_start + 13

Thread 11:: DFG Worklist Worker Thread
0 libsystem_kernel.dylib 0x00007fff99eac136 __psynch_cvwait + 10
1 com.apple.JavaScriptCore 0x00007fff968f393b JSC::DFG::Worklist::runThread(JSC::DFG::ThreadData_) + 219
2 com.apple.JavaScriptCore 0x00007fff965f1cff WTF::wtfThreadEntryPoint(void_) + 15
3 libsystem_pthread.dylib 0x00007fff96dfe05a _pthread_body + 131
4 libsystem_pthread.dylib 0x00007fff96dfdfd7 _pthread_start + 176
5 libsystem_pthread.dylib 0x00007fff96dfb3ed thread_start + 13

Thread 12:

Thread 13:: CVDisplayLink
0 libsystem_kernel.dylib 0x00007fff99eac136 __psynch_cvwait + 10
1 com.apple.CoreVideo 0x00007fff91ad8ff8 CVDisplayLink::waitUntil(unsigned long long) + 240
2 com.apple.CoreVideo 0x00007fff91ad84b3 CVDisplayLink::runIOThread() + 511
3 com.apple.CoreVideo 0x00007fff91ad829b startIOThread(void*) + 147
4 libsystem_pthread.dylib 0x00007fff96dfe05a _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff96dfdfd7 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff96dfb3ed thread_start + 13

Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x0000000107cf9a40 rcx: 0x0000000000000000 rdx: 0x0000000000000000
rdi: 0x000000010727f780 rsi: 0x0000000000000022 rbp: 0x00007fff5ebf1010 rsp: 0x00007fff5ebf0fd0
r8: 0x000000010833cb10 r9: 0x000000010833cb58 r10: 0x0000000107c56da0 r11: 0x000000010842e940
r12: 0x0000000000000001 r13: 0x0000000000000022 r14: 0x0000000000000022 r15: 0x0000000000000022
rip: 0x00007fff916fd718 rfl: 0x0000000000010202 cr2: 0x0000000000000010

Logical CPU: 1
Error Code: 0x00000004
Trap Number: 14

Binary Images:
0x10100c000 - 0x10100cffb com.apple.WebKit.WebContent (10600 - 10600.8.9) /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
0x101018000 - 0x101018fff WebProcessShim.dylib (7600.8.9) /System/Library/Frameworks/WebKit.framework/WebProcess.app/Contents/MacOS/WebProcessShim.dylib
0x10104b000 - 0x10105afff libSimplifiedChineseConverter.dylib (64) <468DE6E1-42B9-3751-ACA5-7D16C550FF84> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
0x104724000 - 0x10472bff7 libCGCMS.A.dylib (788.3) <1A47CDD9-99AE-3BD2-85F1-339FC169B16E> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
0x1059c9000 - 0x1059c9ffb com.apple.datadetectors.plugins.phone (6.0 - 396.1.2) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/PlugIns/PhoneNumbers.plugin/PhoneNumbers
0x105a55000 - 0x105a67fff com.apple.webcontentfilter.framework (5.1 - 5.1) <4249E67E-BE11-31F0-95B5-2C0D5CFAC1CF> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalysis
0x105a7d000 - 0x105b30ff7 com.apple.NetworkExtension (1.0 - 1) /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
0x105ba8000 - 0x105baeff7 com.apple.SymptomReporter (1.0 - 1) <3191E395-6284-3C5F-BDA2-BB061CF00B51> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomReporter.framework/SymptomReporter
0x109718000 - 0x109740fff libRIP.A.dylib (788.3) <6AB1CA86-38C8-33E3-AC07-3A065666E0F9> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x1098f2000 - 0x1098f5ffb libCGXType.A.dylib (788.3) <7CC6CD5B-AD6B-3B36-9165-BFB1E5274F69> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x11276a000 - 0x112919fff GLEngine (11.1.2) <8A8153B1-94CE-3EC1-9840-441DA7217BA9> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
0x112955000 - 0x112e5dfff com.apple.driver.AppleIntelHD5000GraphicsGLDriver (10.6.33 - 10.0.6) /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsGLDriver
0x11303c000 - 0x113066fff GLRendererFloat (11.1.2) <50EC0CD3-5CAB-3183-9818-FC4A405B681F> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFloat
0x7fff613de000 - 0x7fff61414887 dyld (353.2.3) /usr/lib/dyld
0x7fff8dfd8000 - 0x7fff8e3e5ff7 libLAPACK.dylib (1128) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff8e3e6000 - 0x7fff8e3ecfff libsystem_trace.dylib (72.20.1) <840F5301-B55A-3078-90B9-FEFFD6CD741A> /usr/lib/system/libsystem_trace.dylib
0x7fff8e3ed000 - 0x7fff8e3f6fff libGFXShared.dylib (11.1.2) <7F9F6175-E993-3014-8C9B-1F08CE7C75A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff8e438000 - 0x7fff8e470fff com.apple.RemoteViewServices (2.0 - 99) /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff8e471000 - 0x7fff8e472ff7 com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff8e480000 - 0x7fff8e483fff com.apple.help (1.3.3 - 46) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff8e484000 - 0x7fff8e488fff com.apple.LoginUICore (3.2 - 3.2) <417954C5-1675-31A8-9631-6B56E9AA3E93> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore
0x7fff8e4d4000 - 0x7fff8e4effff com.apple.AppleVPAFramework (1.4.5 - 1.4.5) /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
0x7fff8e4f0000 - 0x7fff8e602ff7 libvDSP.dylib (516) <151B3CCB-77D3-3715-A3D0-7C74CD5C7FFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff8e603000 - 0x7fff8e71cffb com.apple.CoreText (352.0 - 454.10) <3293BF91-B587-3B49-A159-A04D58533F14> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff8e77d000 - 0x7fff8e782ff7 libunwind.dylib (35.3) /usr/lib/system/libunwind.dylib
0x7fff8e783000 - 0x7fff8e78eff7 libkxld.dylib (2782.40.9) <2ADAE067-78A0-371E-A5A8-1E7C892D193C> /usr/lib/system/libkxld.dylib
0x7fff8e78f000 - 0x7fff8ea76ffb com.apple.CoreServices.CarbonCore (1108.6 - 1108.6) <8953580E-7857-33B2-AA64-98296830D3A8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff8ea77000 - 0x7fff8eb9bff7 com.apple.LaunchServices (644.56 - 644.56) <20AABB1C-9319-3E4D-A024-51B0DD5FCD3B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff8eb9c000 - 0x7fff8eba8ff7 com.apple.commonutilities (8.0 - 900) /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
0x7fff8ec3f000 - 0x7fff8ec3ffff com.apple.audio.units.AudioUnit (1.12 - 1.12) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff8ec4a000 - 0x7fff8ece9e27 com.apple.AppleJPEG (1.0 - 1) <6627DDD9-A8FE-3968-B23A-B6A29AA3919A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff8ecea000 - 0x7fff8eceefff libCoreVMClient.dylib (79.1) <201EF6DF-5074-3CB7-A361-398CF957A264> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff8ed67000 - 0x7fff8f09aff7 libmecabra.dylib (666.7) <0ED8AE5E-7A5B-34A6-A2EE-2B852E60E1E2> /usr/lib/libmecabra.dylib
0x7fff8f09b000 - 0x7fff8f1cdff7 com.apple.MediaControlSender (2.0 - 215.18) <88726256-A71E-33A8-A56C-ABA208951C92> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender
0x7fff8fbc1000 - 0x7fff8fbc5fff libspindump.dylib (182.4) <929670EB-4963-3496-AD24-8B50E388803C> /usr/lib/libspindump.dylib
0x7fff8fbc6000 - 0x7fff8fbd1fff libGL.dylib (11.1.2) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff8fbee000 - 0x7fff8fd4ffff com.apple.avfoundation (2.0 - 889.210) /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff8fd50000 - 0x7fff8fd9cff7 libcups.2.dylib (408.2) /usr/lib/libcups.2.dylib
0x7fff8fd9d000 - 0x7fff8fdacfd3 com.apple.AppleFSCompression (68.30.1 - 1.0) /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff8fe45000 - 0x7fff90160fcf com.apple.vImage (8.0 - 8.0) <1183FE6A-FDB6-3B3B-928D-50C7909F2308> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff90161000 - 0x7fff901d5ffb com.apple.securityfoundation (6.0 - 55126) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff901d6000 - 0x7fff901defff libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
0x7fff901df000 - 0x7fff901dffff libOpenScriptingUtil.dylib (162.2) /usr/lib/libOpenScriptingUtil.dylib
0x7fff90208000 - 0x7fff90208fff com.apple.Carbon (154 - 157) <9BF51672-1684-3FDE-A561-FC59A2864EF8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff90209000 - 0x7fff9020cff7 com.apple.Mangrove (1.0 - 1) <6326024D-5C8D-3F59-9468-ACA1E01BC70C> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff9020d000 - 0x7fff902fdfef libJP2.dylib (1239) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff902fe000 - 0x7fff9030bfff libxar.1.dylib (255) <7CD69BB5-97BA-3858-8A8B-2F33F129E6E7> /usr/lib/libxar.1.dylib
0x7fff9031a000 - 0x7fff9031cff7 com.apple.diagnosticlogcollection (10.0 - 1000) <1DB05D1A-636A-3672-BCB6-E3759852F5E2> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/DiagnosticLogCollection
0x7fff9031d000 - 0x7fff9059cff7 com.apple.CoreData (111 - 526.3) <5A27E0D8-5E5A-335B-B3F6-2601C7B976FA> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff9059d000 - 0x7fff90807ff7 com.apple.imageKit (2.6.1 - 850) <612201FE-768E-386B-82E3-764038B40120> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x7fff90808000 - 0x7fff9081eff7 com.apple.CoreMediaAuthoring (2.2 - 951) /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fff9081f000 - 0x7fff908a0ff7 com.apple.CoreUtils (1.1 - 110.1) <3808CBC5-1DF1-3821-8AAE-57C30D4F514B> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff908ca000 - 0x7fff90a04fff com.apple.ImageIO.framework (3.3.0 - 1239) <6033D915-B9A2-3F21-8F35-2E18EF66CA6F> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff90a05000 - 0x7fff919c8ff3 com.apple.WebCore (10600 - 10600.8.9) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
0x7fff919d6000 - 0x7fff91a33fff com.apple.QuickLookFramework (5.0 - 675.43) <506D60B4-B188-3D0A-9187-0404A60A9B06> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x7fff91a34000 - 0x7fff91a58ff7 com.apple.Sharing (328.17 - 328.17) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff91a59000 - 0x7fff91a72ff7 com.apple.CFOpenDirectory (10.10 - 187) <3FCEE6F7-A8C6-3222-B22D-8AD290E477E2> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff91a86000 - 0x7fff91ad3ff7 com.apple.print.framework.PrintCore (10.3 - 451.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff91ad4000 - 0x7fff91ad5fff libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
0x7fff91ad6000 - 0x7fff91b03fff com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff91b04000 - 0x7fff92685ff7 com.apple.AppKit (6.9 - 1348.17) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff92686000 - 0x7fff9268fff7 libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
0x7fff92690000 - 0x7fff92702fff com.apple.framework.IOKit (2.0.2 - 1050.20.2) <09C0518C-90DF-3FC3-96D6-34D35F72C8EF> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff92703000 - 0x7fff92757fff libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
0x7fff92758000 - 0x7fff927effff com.apple.CoreMedia (1.0 - 1562.238) /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff927f0000 - 0x7fff928daff7 com.apple.QuickLookUIFramework (5.0 - 675.43) <011DEB49-0FB3-3E44-9D99-D89ADD59A3CC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x7fff928db000 - 0x7fff928ddfff com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging
0x7fff928eb000 - 0x7fff92d1bfff com.apple.vision.FaceCore (3.1.6 - 3.1.6) /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff92d33000 - 0x7fff92d40ff3 com.apple.ProtocolBuffer (1 - 228.0.1) <3429EB06-9F0E-355F-B9AB-F72879177398> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff92f75000 - 0x7fff92f94fff com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
0x7fff92ff0000 - 0x7fff93027ffb com.apple.LDAPFramework (2.4.28 - 194.5) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x7fff93028000 - 0x7fff9304cff7 com.apple.facetimeservices (10.0 - 1000) /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
0x7fff930e7000 - 0x7fff932e146f libobjc.A.dylib (647) <759E155D-BC42-3D4E-869B-6F57D477177C> /usr/lib/libobjc.A.dylib
0x7fff9332b000 - 0x7fff9332dff7 com.apple.securityhi (9.0 - 55006) <2B9C0BCB-7D82-39C2-A99F-7B9E1522CDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff93337000 - 0x7fff93337fff com.apple.Cocoa (6.8 - 21) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff9362b000 - 0x7fff9362cffb libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
0x7fff9362d000 - 0x7fff936cffff com.apple.Bluetooth (4.3.6 - 4.3.6f3) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff936d0000 - 0x7fff9378bff7 com.apple.DiscRecording (9.0 - 9000.4.2) <4655B4B8-523D-3AE6-92A0-8486A2258B3B> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff9378c000 - 0x7fff93798ff7 libGPUSupportMercury.dylib (11.1.2) <16B2CA57-479C-3F0F-BF87-03A2C6923D5A> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
0x7fff93799000 - 0x7fff9387dfff libcrypto.0.9.8.dylib (52.40.1) /usr/lib/libcrypto.0.9.8.dylib
0x7fff9387e000 - 0x7fff938f6ff7 com.apple.SystemConfiguration (1.14.4 - 1.14) <3DFFD7F7-BD23-3F4C-A209-C4A0D99F6573> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff938f7000 - 0x7fff938fffff libsystem_dnssd.dylib (576.30.4) <0CEB5910-843F-315C-A1DE-5D955A48A045> /usr/lib/system/libsystem_dnssd.dylib
0x7fff93900000 - 0x7fff93924ff7 com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x7fff93925000 - 0x7fff93ad5ff3 com.apple.QuartzCore (1.10 - 361.19) /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff93ada000 - 0x7fff93afefef libJPEG.dylib (1239) <75667D4A-9359-3178-9D3A-2AE5A60DE55F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff93aff000 - 0x7fff93b00fff libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff93b01000 - 0x7fff93b8dfe7 libsystem_c.dylib (1044.40.1) /usr/lib/system/libsystem_c.dylib
0x7fff93b8e000 - 0x7fff93b92fff com.apple.CommonPanels (1.2.6 - 96) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff93bd8000 - 0x7fff93be3fff com.apple.AppSandbox (4.0 - 238.20.2) /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
0x7fff93be4000 - 0x7fff93befff7 libcsfde.dylib (471.30.1) /usr/lib/libcsfde.dylib
0x7fff93c5c000 - 0x7fff93c5efff libsystem_sandbox.dylib (358.20.5) <3F5E973F-C702-31AC-97BC-05F5C195683C> /usr/lib/system/libsystem_sandbox.dylib
0x7fff93c5f000 - 0x7fff93c92fff com.apple.MediaKit (16 - 757.2) <2912E5C2-085F-3FE2-8531-23B6E894B0F0> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff93c93000 - 0x7fff93c95ff3 com.apple.SafariServices.framework (10600 - 10600.8.9) /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariServices
0x7fff93cef000 - 0x7fff93d1efff com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
0x7fff93d1f000 - 0x7fff93d6bfff com.apple.corelocation (1486.17 - 1615.24) <8825B3E2-E053-3E01-AE31-793443962D06> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
0x7fff93eb0000 - 0x7fff93ec5ff7 com.apple.AppContainer (4.0 - 238.20.2) <2AA2EF49-9F38-31F6-8B08-8CC7C26F57F3> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
0x7fff93ef1000 - 0x7fff93f1cfff libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
0x7fff93f1d000 - 0x7fff93f5efff libGLU.dylib (11.1.2) <2BA52A8D-ED35-3D86-B2D6-41479969C96D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff93f5f000 - 0x7fff93fc9fff com.apple.imfoundation (10.0 - 1000) <842F39B6-0BE2-3B9B-9166-D40031C80C89> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundation
0x7fff93fca000 - 0x7fff942ccffb com.apple.GeoServices (1.0 - 1077.0.18) <2BBF8B44-DD46-3432-8C84-6D6AA004C233> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
0x7fff94331000 - 0x7fff94600ff3 com.apple.CoreImage (10.3.4) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff94601000 - 0x7fff94672ffb com.apple.ApplicationServices.ATS (360 - 375.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff94673000 - 0x7fff9468dff3 com.apple.Ubiquity (1.3 - 313) /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
0x7fff946a2000 - 0x7fff94762ff7 com.apple.backup.framework (1.6.5 - 1.6.5) <86396038-33EA-3046-9F70-093A3D6407D4> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff9485b000 - 0x7fff948c7ff3 com.apple.MMCS (1.3 - 327.5) /System/Library/PrivateFrameworks/MMCS.framework/Versions/A/MMCS
0x7fff948e5000 - 0x7fff94ba8ff7 com.apple.WebKit (10600 - 10600.8.9) <8EE5A9F9-DE98-3202-92C0-23F6E6E5E274> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
0x7fff94e41000 - 0x7fff94e4bfff com.apple.IntlPreferences (2.0 - 150.1) <79F95D7D-F64F-3A4E-8A42-AE5BF1577195> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences
0x7fff94e4c000 - 0x7fff94e5fff7 com.apple.CoreBluetooth (1.0 - 1) <8D7BA9BA-EB36-307A-9119-0B3D9732C953> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff94f42000 - 0x7fff94f7dfff com.apple.QD (301 - 301) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff94f7e000 - 0x7fff94f9cff7 com.apple.addressbook.vCard (9.0 - 1579) /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
0x7fff94f9d000 - 0x7fff94fa9fff com.apple.speech.synthesis.framework (5.3.11 - 5.3.11) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff94faa000 - 0x7fff94faaff7 liblaunch.dylib (559.40.1) <4F81CA3A-D2CE-3030-A89D-42F3DAD7BA8F> /usr/lib/system/liblaunch.dylib
0x7fff94fab000 - 0x7fff94fdbff3 com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff9500f000 - 0x7fff95037fff libxpc.dylib (559.40.1) <5C829202-962E-3744-8B50-00D38CC88E84> /usr/lib/system/libxpc.dylib
0x7fff95038000 - 0x7fff950ccfff com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff950cd000 - 0x7fff950daff7 com.apple.SpeechRecognitionCore (2.1.2 - 2.1.2) <551322E2-C1E4-3378-A218-F362985E3E3C> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff950db000 - 0x7fff950e3ffb libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
0x7fff950fe000 - 0x7fff95103fff com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff95104000 - 0x7fff95151ff3 com.apple.CoreMediaIO (601.0 - 4760) <4D52EBBF-5DE1-3778-BDE5-DE8540E7DE5C> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fff95152000 - 0x7fff95162ff7 libbsm.0.dylib (34) /usr/lib/libbsm.0.dylib
0x7fff95163000 - 0x7fff95172ff7 com.apple.ToneLibrary (1.0 - 1) <179C7D61-CB88-3CE3-9F06-4D60D13D616C> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
0x7fff95173000 - 0x7fff95282ff3 com.apple.desktopservices (1.9.3 - 1.9.3) /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff95283000 - 0x7fff95290ff7 libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
0x7fff95340000 - 0x7fff9538eff7 com.apple.ImageCaptureCore (6.3 - 6.3) <75B5043C-9EF0-3CD2-875D-12813F0A73D3> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x7fff953a2000 - 0x7fff953aeff7 com.apple.OpenDirectory (10.10 - 187) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff953af000 - 0x7fff9571afff com.apple.VideoToolbox (1.0 - 1562.238) <510956DF-E324-3974-A83B-C0C74A6F812C> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff9571b000 - 0x7fff957a4ff7 com.apple.CoreSymbolication (3.1 - 57020.2) /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff957a5000 - 0x7fff957a7fff com.apple.SecCodeWrapper (4.0 - 238.20.2) /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
0x7fff957d9000 - 0x7fff95806ff7 com.apple.Accounts (113 - 113) <17D8868C-7079-354F-8F37-B8346960D94B> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
0x7fff95807000 - 0x7fff95808ff7 com.apple.AddressBook.ContactsData (9.0 - 1579) /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsData
0x7fff9593e000 - 0x7fff9598fff7 com.apple.AppleVAFramework (5.0.31 - 5.0.31) <17C35538-7C2B-3735-A1B3-E8487EED0668> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff95990000 - 0x7fff95d67fe7 com.apple.CoreAUC (211.1.0 - 211.1.0) <12645629-E065-388E-A6B5-094A240578CE> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff95d68000 - 0x7fff95d6eff7 com.apple.XPCService (2.0 - 1) /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
0x7fff95d6f000 - 0x7fff96298ff7 com.apple.QuartzComposer (5.1 - 332.1) <64399385-0768-3590-B4EF-1BD0F8A35CB3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x7fff96299000 - 0x7fff962a1fff libMatch.1.dylib (24) /usr/lib/libMatch.1.dylib
0x7fff962a2000 - 0x7fff962a3fff libquit.dylib (182.4) /usr/lib/libquit.dylib
0x7fff962a4000 - 0x7fff962cafff com.apple.ChunkingLibrary (2.1 - 163.6) <29D4CB95-42EF-34C6-8182-BDB6F7BB1E79> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff962cb000 - 0x7fff96306fff com.apple.Symbolication (1.4 - 56045) /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff9632e000 - 0x7fff96340ff7 libsasl2.2.dylib (194.1) <35371406-75EF-304A-A073-956C40373555> /usr/lib/libsasl2.2.dylib
0x7fff96341000 - 0x7fff96341fff com.apple.quartzframework (1.5 - 1.5) <26C982A3-2FC3-3F50-B5F4-3C545C3BAC10> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x7fff96342000 - 0x7fff96344fff com.apple.marco (10.0 - 1000) /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
0x7fff96345000 - 0x7fff963a0fe7 libTIFF.dylib (1239) <568B04C1-118C-3E22-87E5-E1FF7AAE589C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff963a1000 - 0x7fff965e6ff7 com.apple.AddressBook.framework (9.0 - 1579) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
0x7fff965e7000 - 0x7fff96afcffb com.apple.JavaScriptCore (10600 - 10600.8.7) <480CDC12-5A1C-321C-B32F-673F0B3BA8F9> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x7fff96afd000 - 0x7fff96b0cfff com.apple.LangAnalysis (1.7.0 - 1.7.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff96cbd000 - 0x7fff96cc2ffb libheimdal-asn1.dylib (398.40.1) <7D2BE3DE-60F7-3A6E-A92E-DA0EF9D3417E> /usr/lib/libheimdal-asn1.dylib
0x7fff96cc3000 - 0x7fff96cc9ff7 libsystem_networkextension.dylib (167.40.3) /usr/lib/system/libsystem_networkextension.dylib
0x7fff96cca000 - 0x7fff96ccaff7 libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
0x7fff96dfa000 - 0x7fff96e03fff libsystem_pthread.dylib (105.40.1) /usr/lib/system/libsystem_pthread.dylib
0x7fff96e04000 - 0x7fff96e29fff libPng.dylib (1239) <0F0DDDBD-E508-377D-859F-14D11D019705> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff96e2a000 - 0x7fff96e89fff com.apple.AE (681.5 - 681.7) <2BF39455-1CDD-392C-824A-9972C6B1FB57> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff96f0f000 - 0x7fff96f39ff7 libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
0x7fff96f3a000 - 0x7fff96f3fff7 com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff96f40000 - 0x7fff96fe7fff com.apple.PDFKit (3.1 - 3.1) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x7fff96fe8000 - 0x7fff97020fff libsystem_network.dylib (412.20.3) <6105C134-6722-3C0A-A4CE-5E1261E2E1CC> /usr/lib/system/libsystem_network.dylib
0x7fff97021000 - 0x7fff9702bff7 com.apple.NetAuth (5.2 - 5.2) <2BBD749A-8E18-35B8-8E48-A90347C1CCA7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff97033000 - 0x7fff970c8ff7 com.apple.ColorSync (4.9.0 - 4.9.0) <9150C2B7-2E6E-3509-96EA-7B3F959F049E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff970c9000 - 0x7fff973fafff com.apple.Foundation (6.9 - 1154) <49EE64E1-9F53-35D1-A481-2EFE2789B254> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff973fb000 - 0x7fff973fbfff com.apple.CoreServices (62 - 62) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff973fc000 - 0x7fff973fefff libquarantine.dylib (76.20.1) <7AF90041-2768-378A-925A-D83161863642> /usr/lib/system/libquarantine.dylib
0x7fff973ff000 - 0x7fff97423fff com.apple.speech.LatentSemanticMappingFramework (2.11.6 - 2.11.6) <5AB4EF58-829E-382D-9E4E-BCD2085C47CC> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSemanticMapping
0x7fff974e5000 - 0x7fff97554fff com.apple.SearchKit (1.4.0 - 1.4.0) <80883BD1-C9BA-3794-A20E-476F94DD89A9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff975ea000 - 0x7fff977faff7 com.apple.CFNetwork (720.5.7 - 720.5.7) /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff97845000 - 0x7fff97872ff3 com.apple.SystemConfiguration.EAP8021X (14.0.0 - 14.0) <472C84AA-FF56-3848-9AD9-4BBE62C1C6D5> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
0x7fff97873000 - 0x7fff9788dff7 libextension.dylib (55.2) <3BB019CA-199A-36AC-AA22-14B562138545> /usr/lib/libextension.dylib
0x7fff9788e000 - 0x7fff97912fff com.apple.PerformanceAnalysis (1.0 - 1) <4E934EE0-5CC6-3D54-8FA2-5B8AE669D775> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff97913000 - 0x7fff9791efff libcommonCrypto.dylib (60061.30.1) /usr/lib/system/libcommonCrypto.dylib
0x7fff9791f000 - 0x7fff97970fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <450293F7-DAE7-3DD0-8F7C-71FC2FD72627> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff97971000 - 0x7fff979effff com.apple.CoreServices.OSServices (640.4 - 640.4) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff979f0000 - 0x7fff97a01ff7 libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
0x7fff97a11000 - 0x7fff97ae7ff3 com.apple.DiskImagesFramework (10.10.5 - 398) <23E788A6-9A11-3232-A882-BA16D0C54880> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
0x7fff97ae8000 - 0x7fff97b01ff3 com.apple.openscripting (1.6.4 - 162.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff97b26000 - 0x7fff97b66ff7 libGLImage.dylib (11.1.2) <9B05F3BF-D111-3B01-B7F8-C5EF7E02000B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff97b67000 - 0x7fff97b6aff7 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fff97b6b000 - 0x7fff97c93ff7 com.apple.coreui (2.1 - 308.6) <9E0E9C6A-68F5-34C1-A17C-96226D401D4D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff97c94000 - 0x7fff97c98fff libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
0x7fff97c99000 - 0x7fff97f9eff3 com.apple.HIToolbox (2.1.1 - 758.7) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff97f9f000 - 0x7fff97fe5ff7 libauto.dylib (186) /usr/lib/libauto.dylib
0x7fff97fe6000 - 0x7fff98116fff com.apple.UIFoundation (1.0 - 1) <466BDFA8-0B9F-3AB0-989D-F9779422926A> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff98117000 - 0x7fff9811bfff libpam.2.dylib (20) /usr/lib/libpam.2.dylib
0x7fff9811c000 - 0x7fff98183ffb com.apple.datadetectorscore (6.0 - 396.1.2) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff98262000 - 0x7fff98264fff com.apple.EFILogin (2.0 - 2) <3BA837D8-94F5-3240-9CF7-E40DC2808446> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x7fff98361000 - 0x7fff9837effb libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
0x7fff983af000 - 0x7fff98428fe7 libcorecrypto.dylib (233.30.1) <5779FFA0-4D9A-3AD4-B7F2-618227621DC8> /usr/lib/system/libcorecrypto.dylib
0x7fff9842a000 - 0x7fff9842bfff com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff9842c000 - 0x7fff9844dfff com.apple.framework.Apple80211 (10.3 - 1030.71.6) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff9844e000 - 0x7fff98468ff7 liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
0x7fff9847e000 - 0x7fff98482fff com.apple.TCC (1.0 - 1) /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff98485000 - 0x7fff984cffff com.apple.HIServices (1.22 - 523) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff984d0000 - 0x7fff984d2ff7 libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
0x7fff98b3d000 - 0x7fff98b43fff com.apple.speech.recognition.framework (5.0.9 - 5.0.9) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff98bb2000 - 0x7fff98c19ff7 com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff98c1a000 - 0x7fff98c25ff7 com.apple.DirectoryService.Framework (10.10 - 187) /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x7fff98c26000 - 0x7fff98c28fff com.apple.OAuth (25 - 25) /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
0x7fff98c29000 - 0x7fff98c49fff com.apple.IconServices (47.1 - 47.1) /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff98c4a000 - 0x7fff98dd9fff libGLProgrammability.dylib (11.1.2) <11882D43-25B4-331D-9428-C97F4A88DA21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x7fff98dda000 - 0x7fff98e13fff com.apple.AirPlaySupport (2.0 - 215.18) /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySupport
0x7fff98e14000 - 0x7fff98e15ff7 libodfde.dylib (22) <52D0ABCD-F464-362C-86EA-ACA10993F556> /usr/lib/libodfde.dylib
0x7fff98e16000 - 0x7fff98e41ff3 libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
0x7fff98e8e000 - 0x7fff98e97ff3 com.apple.CommonAuth (4.0 - 2.0) <9A484EE6-0003-3AB1-AE4F-AA543BBBF53F> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff98ea3000 - 0x7fff98f39ff7 com.apple.cloudkit.CloudKit (283.67.4 - 283.67.4) /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
0x7fff98f3a000 - 0x7fff98f4cff7 com.apple.CoreDuetDaemonProtocol (1.0 - 1) /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol
0x7fff98f4d000 - 0x7fff98f75fff libsystem_info.dylib (459.40.1) <2E16C4B3-A327-3957-9C41-143911979A1E> /usr/lib/system/libsystem_info.dylib
0x7fff98f76000 - 0x7fff98f8cff7 libsystem_asl.dylib (267) /usr/lib/system/libsystem_asl.dylib
0x7fff98f8d000 - 0x7fff998ecfff com.apple.Safari.framework (10600 - 10600.8.9) <82302F92-6E83-3115-935F-3EF2B973A559> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
0x7fff998ed000 - 0x7fff998f5ff3 com.apple.CoreServices.FSEvents (1210.20.1 - 1210.20.1) <84F79D3E-7B5E-3C93-8479-35794A3F125E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff998f6000 - 0x7fff999e8ff3 libxml2.2.dylib (26.1) <3FBA890F-2850-3A45-87EA-DB6892BDEB60> /usr/lib/libxml2.2.dylib
0x7fff999ec000 - 0x7fff99b34ff7 com.apple.WebKitLegacy (10600 - 10600.8.9) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy
0x7fff99b35000 - 0x7fff99b46fff libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
0x7fff99b47000 - 0x7fff99b48fff liblangid.dylib (117) /usr/lib/liblangid.dylib
0x7fff99e8a000 - 0x7fff99e92ff7 com.apple.AppleSRP (5.0 - 1) <68F0C577-ED96-34F2-B701-CE3023367D4D> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff99e93000 - 0x7fff99e95ff7 libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
0x7fff99e96000 - 0x7fff99eb3fff libsystem_kernel.dylib (2782.40.9) <16AD15EF-3DAE-3F63-9D26-26CCE1920762> /usr/lib/system/libsystem_kernel.dylib
0x7fff99f01000 - 0x7fff9a08ffff libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff9a090000 - 0x7fff9a09bff7 com.apple.CrashReporterSupport (10.10 - 631) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff9a09c000 - 0x7fff9a09ffff com.apple.xpc.ServiceManagement (1.0 - 1) /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff9a0a0000 - 0x7fff9a0a7ff7 com.apple.phonenumbers (1.1.1 - 105) /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
0x7fff9a0a8000 - 0x7fff9a0a9ff7 libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
0x7fff9a24f000 - 0x7fff9a5e7ff7 com.apple.CoreFoundation (6.9 - 1153.18) <5C0892B8-9691-341F-9279-CA3A74D59AA0> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff9a5e8000 - 0x7fff9a5e8fff com.apple.Accelerate (1.10 - Accelerate 1.10) <2C8AF258-4F11-3BEC-A826-22D7199B3975> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff9a650000 - 0x7fff9a66cff7 libsystem_malloc.dylib (53.30.1) /usr/lib/system/libsystem_malloc.dylib
0x7fff9a66d000 - 0x7fff9ab5dfff com.apple.MediaToolbox (1.0 - 1562.238) /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff9abaa000 - 0x7fff9abc1ff7 libLinearAlgebra.dylib (1128) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff9abdc000 - 0x7fff9ad22fef libsqlite3.dylib (168.2) <53F6A294-15D7-3804-9ABF-47D35E15CDFB> /usr/lib/libsqlite3.dylib
0x7fff9ad23000 - 0x7fff9ad25fff libCVMSPluginSupport.dylib (11.1.2) <1C5C1757-67F1-3C23-90EF-643619A0E7DC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff9ae8e000 - 0x7fff9ae93ff7 libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
0x7fff9ae94000 - 0x7fff9af88fff libFontParser.dylib (134.7) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff9af89000 - 0x7fff9afbaff7 com.apple.ProtectedCloudStorage (1.0 - 1) <9D76F2E0-C28A-3DBC-A91F-E87888D46BF0> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
0x7fff9afbb000 - 0x7fff9afc2ff7 libcompiler_rt.dylib (35) /usr/lib/system/libcompiler_rt.dylib
0x7fff9afc3000 - 0x7fff9afcbfe7 libcldcpuengine.dylib (2.4.5) <6CC680F9-0D13-333B-B151-F0D9C631A1E5> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
0x7fff9afd1000 - 0x7fff9afd5ff7 libGIF.dylib (1239) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff9afd6000 - 0x7fff9afddfff com.apple.NetFS (6.0 - 4.0) /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff9afde000 - 0x7fff9afe1ff7 libdyld.dylib (353.2.3) /usr/lib/system/libdyld.dylib
0x7fff9afe2000 - 0x7fff9afe7fff libsystem_stats.dylib (163.30.2) /usr/lib/system/libsystem_stats.dylib
0x7fff9afe8000 - 0x7fff9b042ff7 com.apple.LanguageModeling (1.0 - 1) /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff9b043000 - 0x7fff9b07dffb com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff9b07e000 - 0x7fff9b086ff7 com.apple.icloud.FindMyDevice (1.0 - 1) <9CE67F85-2BA8-3093-97BA-07BF5C04A5D6> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice
0x7fff9b087000 - 0x7fff9b0a2ff7 com.apple.aps.framework (4.0 - 4.0) /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
0x7fff9b104000 - 0x7fff9b382ff7 com.apple.RawCamera.bundle (6.04.1 - 798) <7988A25F-2A69-311E-929E-B70D164739F4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x7fff9b38b000 - 0x7fff9b38bfff com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff9b38c000 - 0x7fff9b393fff com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics
0x7fff9b394000 - 0x7fff9b394ff7 libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
0x7fff9b395000 - 0x7fff9b3aafff com.apple.ToneKit (1.0 - 1) <25D0FF56-B802-359D-9CA1-D530F4890D87> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
0x7fff9b3ab000 - 0x7fff9b3cbff7 com.apple.MultitouchSupport.framework (264.6 - 264.6) <1539F1F6-6334-37F3-9C52-02EFFBF4835D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff9b40a000 - 0x7fff9b49bff7 libCoreStorage.dylib (471.30.1) <9D95399F-1AC5-325F-8337-6E13AD99E44B> /usr/lib/libCoreStorage.dylib
0x7fff9b49c000 - 0x7fff9b52aff7 com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x7fff9b586000 - 0x7fff9b594ff7 com.apple.opengl (11.1.2 - 11.1.2) <5F355713-4637-33CD-9CBA-4B4CA43FB0FE> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff9b595000 - 0x7fff9b598fff com.apple.IOSurface (97.4 - 97.4) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff9b599000 - 0x7fff9b5aaff3 libsystem_coretls.dylib (35.40.1) <155DA0A9-2046-332E-BFA3-D7974A51F731> /usr/lib/system/libsystem_coretls.dylib
0x7fff9b5ab000 - 0x7fff9b5d7fff libsandbox.1.dylib (358.20.5) <533B9C4A-6C92-3658-95B9-D30BC135796B> /usr/lib/libsandbox.1.dylib
0x7fff9b5d8000 - 0x7fff9be19ff3 com.apple.CoreGraphics (1.600.0 - 788.3) <0AAD1F22-9823-3D31-A25B-F8C1D7915AC4> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff9be1a000 - 0x7fff9be3dff7 com.apple.idsfoundation (10.0 - 1000) <79DAA5F6-E054-3CC9-B317-65044A95B567> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundation
0x7fff9c0dc000 - 0x7fff9c10bff7 com.apple.CoreServicesInternal (221.7.2 - 221.7.2) /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff9c10c000 - 0x7fff9c157ff7 com.apple.CloudDocs (1.0 - 321.10) /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
0x7fff9c158000 - 0x7fff9c181ffb libxslt.1.dylib (13) /usr/lib/libxslt.1.dylib
0x7fff9c1ba000 - 0x7fff9c2feff7 com.apple.QTKit (7.7.3 - 2890.7) <267DFB98-4959-3EDE-B76B-8B2F12F41A17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff9c2ff000 - 0x7fff9c4e4ff7 libicucore.A.dylib (531.48) <3CD34752-B1F9-31D2-865D-B5B0F0BE3111> /usr/lib/libicucore.A.dylib
0x7fff9c4e5000 - 0x7fff9c583fff com.apple.Metadata (10.7.0 - 917.36) <00C4CB5D-E723-3612-84E0-439098392CDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff9c584000 - 0x7fff9c5f2ff3 com.apple.Heimdal (4.0 - 2.0) <8D1667CF-D454-3E07-A58E-E15591B5A95E> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff9c5f3000 - 0x7fff9c5f3fff com.apple.WebKit2 (10600 - 10600.8.9) /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
0x7fff9c5f4000 - 0x7fff9c631ff3 com.apple.bom (14.0 - 193.6) <3CE5593D-DB28-3BFD-943E-6261006FA292> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x7fff9c639000 - 0x7fff9c688ff7 com.apple.opencl (2.4.2 - 2.4.2) /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff9c689000 - 0x7fff9c6b9ff3 com.apple.GSS (4.0 - 2.0) <97F2A028-44CF-3188-B863-F4EEB39CBDBD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff9c6ba000 - 0x7fff9c6befff com.apple.IOAccelerator (156.16 - 156.16) <12DE1474-4B2A-3D7D-ACF9-DDAF66A6936A> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fff9c6bf000 - 0x7fff9c6ebfff com.apple.framework.SystemAdministration (1.0 - 1.0) <9F77597C-BAB8-3D86-B6CC-96D54D89E6AE> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration
0x7fff9c6ec000 - 0x7fff9c73fffb libAVFAudio.dylib (118.6) <2441D4C1-D8FB-3DA9-9DD7-914E03413882> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib
0x7fff9c740000 - 0x7fff9c7acfff com.apple.framework.CoreWLAN (5.0 - 500.35.2) <03697149-1CDD-32FF-B564-1C1EF5E9E5C3> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff9c7ad000 - 0x7fff9c7fcff7 libcurl.4.dylib (83.40.2) /usr/lib/libcurl.4.dylib
0x7fff9c808000 - 0x7fff9c841ff3 com.apple.datadetectors (5.0 - 286.13) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetectors
0x7fff9c842000 - 0x7fff9c85dff7 libCRFSuite.dylib (34) /usr/lib/libCRFSuite.dylib
0x7fff9c8a4000 - 0x7fff9c8a6fff libRadiance.dylib (1239) <594FD1C9-2041-3877-9AD2-0A977EBBB1D0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff9c8b0000 - 0x7fff9c8b2fff com.apple.loginsupport (1.0 - 1) /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff9c8b3000 - 0x7fff9c8c1fff com.apple.AddressBook.ContactsFoundation (9.0 - 1579) <34ED9046-0157-399F-9742-2FC2D098E368> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation
0x7fff9c8c2000 - 0x7fff9cb38ff7 com.apple.security (7.0 - 57031.40.6) /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff9cb39000 - 0x7fff9cb4bff7 com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff9cb6f000 - 0x7fff9cb9aff7 com.apple.DictionaryServices (1.2 - 229.1) <62EC3E1B-5A28-3252-90FF-C2E9999C2A2A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff9cb9b000 - 0x7fff9cb9cff3 libSystem.B.dylib (1213) <1866C519-C5F3-3D09-8C17-A8F703664521> /usr/lib/libSystem.B.dylib
0x7fff9cb9d000 - 0x7fff9cbe3ff7 libFontRegistry.dylib (134.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff9cbe4000 - 0x7fff9cc16ff3 com.apple.frameworks.CoreDaemon (1.3 - 1.3) /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x7fff9cc17000 - 0x7fff9cc47fff libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
0x7fff9cc48000 - 0x7fff9ccf7fe7 libvMisc.dylib (516) <6739E390-46E7-3BFA-9B69-B278562326E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff9cd3a000 - 0x7fff9cd56fff com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff9cd57000 - 0x7fff9cd88fff libtidy.A.dylib (15.15) <37FC944D-271A-386A-9ADD-FA33AD48F96D> /usr/lib/libtidy.A.dylib
0x7fff9cd89000 - 0x7fff9cef0ffb com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5678FC94-456A-3F5F-BA9A-10EB6E462997> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff9cef1000 - 0x7fff9cefafff com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x7fff9cf15000 - 0x7fff9cf17fff libsystem_configuration.dylib (699.40.2) <56F94DCE-DBDE-3615-8F07-DE6270D9F8BE> /usr/lib/system/libsystem_configuration.dylib
0x7fff9cf18000 - 0x7fff9d00aff7 libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
0x7fff9d00b000 - 0x7fff9d00bfff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <9D749502-A228-3BF1-B52F-A182DEEB2C4D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff9d00c000 - 0x7fff9d071ff7 com.apple.ids (10.0 - 1000) /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
0x7fff9d074000 - 0x7fff9d08eff7 com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos

External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 1
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 6854
thread_create: 0
thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=265.3M resident=129.3M(49%) swapped_out_or_unallocated=136.0M(51%)
Writable regions: Total=1.2G written=66.4M(5%) resident=85.3M(7%) swapped_out=0K(0%) unallocated=1.1G(93%)

REGION TYPE VIRTUAL
=========== =======
CG shared images 144K
CoreAnimation 340K
CoreServices 2464K
CoreUI image data 8K
Dispatch continuations 8192K
IOKit 45.6M
Image IO 24K
JS JIT generated code 256.0M
JS JIT generated code (reserved) 768.0M reserved VM address space (unallocated)
JS garbage collector 12.8M
Kernel Alloc Once 8K
MALLOC 80.2M
MALLOC (admin) 32K
Memory Tag 242 12K
Memory Tag 251 36K
OpenGL GLSL 256K
STACK GUARD 56.0M
Stack 13.7M
Stack (reserved) 520K reserved VM address space (unallocated)
VM_ALLOCATE 17.2M
WebKit Malloc 44.0M
__DATA 26.5M
__GLSLBUILTINS 2588K
__IMAGE 528K
__LINKEDIT 73.0M
__TEXT 192.3M
__UNICODE 552K
mapped file 158.5M
shared memory 68K
=========== =======
TOTAL 1.7G
TOTAL, minus reserved VM space 990.7M

Model: MacBookPro11,1, BootROM MBP111.0138.B15, 2 processors, Intel Core i5, 2.6 GHz, 8 GB, SMC 2.16f68
Graphics: Intel Iris, Intel Iris, Built-In
Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343531533641465238412D50422020
Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343531533641465238412D50422020
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x112), Broadcom BCM43xx 1.0 (7.15.166.24.3)
Bluetooth: Version 4.3.6f3 16238, 3 services, 27 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
Serial ATA Device: APPLE SSD SM0256F, 251 GB
USB Device: Internal Memory Card Reader
USB Device: BRCM20702 Hub
USB Device: Bluetooth USB Host Controller
USB Device: Apple Internal Keyboard / Trackpad
USB Device: USB Optical Mouse
Thunderbolt Bus: MacBook Pro, Apple Inc., 17.2

inactive issue will be closed need repro to be investigated

Most helpful comment

😓

All 10 comments

😓

@airyland 再上个动画演示步骤,方便定位
1

遇到同样的问题,而且搜不出解决方法,,,都不敢在生产环境使用了?

切换view 崩溃。。引入scroller后

移动端:
Safari的提示都一样,
在chrome下直接退出,在微信浏览器,微信直接崩溃

@airyland 支持10.24 略表心意,感谢作者提供
但是这个闪退的问题比较严重呢。。。还请尽快修复吧 谢谢

+1

同样是 vue-router 设置了 keep-alive,也同样使用了 scroller,在切换页面的过程中,会出现卡死、严重迟缓现象。

具体表现为手机 Chrome 严重卡顿,微信内置浏览器卡死,Via 浏览器崩溃。


  • Vux 版本:0.1.3
  • node 版本:4.6.0 LTS / 6.7.0
  • webpack 版本:1.13.1

这个估计不是vux的问题,这个是vue的问题了,作者估计解决不了

我用最新版本,将<router-view>加上<keep-alive>,然后在pullup和scroller页面切换,貌似一直重现不了。

@airyland 是最新版 vue吗 是1.0还是2.0 还是vux的最新版本? 谢谢

Was this page helpful?
0 / 5 - 0 ratings