-
Notifications
You must be signed in to change notification settings - Fork 0
/
PPP_heavy_hanging.txt
1124 lines (1118 loc) · 134 KB
/
PPP_heavy_hanging.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Sampling process 15841 for 3 seconds with 1 millisecond of run time between samples
Sampling completed, processing symbols...
Analysis of sampling PhoenixPoint (pid 15841) every 1 millisecond
Process: PhoenixPoint [15841]
Path: /private/var/folders/qk/4jb_9w596ll25ykrw96sscpm0000gp/T/AppTranslocation/6B091A5F-283A-42ED-80E4-A493C6CB5C53/d/PhoenixPoint.app/Contents/MacOS/PhoenixPoint
Load Address: 0x100000000
Identifier: com.Company.ProductName
Version: 1.0 (0)
Code Type: X86-64
Parent Process: ??? [1]
Date/Time: 2018-05-15 22:57:08.473 +0200
Launch Time: 2018-05-15 20:46:57.733 +0200
OS Version: Mac OS X 10.13.4 (17E202)
Report Version: 7
Analysis Tool: /usr/bin/sample
Physical footprint: 1.6G
Physical footprint (peak): 1.6G
----
Call graph:
519 Thread_4056318 DispatchQueue_1: com.apple.main-thread (serial)
+ 519 start (in libdyld.dylib) + 1 [0x7fff66f2d015]
+ 519 PlayerMain(int, char const**) (in PhoenixPoint) + 954 [0x100458d1a]
+ 519 NSApplicationMain (in AppKit) + 804 [0x7fff3c176a72]
+ 519 -[NSApplication run] (in AppKit) + 764 [0x7fff3c1a7885]
+ 519 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] (in AppKit) + 3044 [0x7fff3c948e34]
+ 519 _DPSNextEvent (in AppKit) + 2085 [0x7fff3c1b2a73]
+ 519 _BlockUntilNextEventMatchingListInModeWithFilter (in HIToolbox) + 64 [0x7fff3deff884]
+ 519 ReceiveNextEventCommon (in HIToolbox) + 613 [0x7fff3deffb06]
+ 519 RunCurrentEventLoopInMode (in HIToolbox) + 286 [0x7fff3deffd96]
+ 519 CFRunLoopRunSpecific (in CoreFoundation) + 483 [0x7fff3ec171a3]
+ 519 __CFRunLoopRun (in CoreFoundation) + 2427 [0x7fff3ec17dab]
+ 519 __CFRunLoopDoTimers (in CoreFoundation) + 346 [0x7fff3ec207da]
+ 519 __CFRunLoopDoTimer (in CoreFoundation) + 1095 [0x7fff3ec20cd7]
+ 519 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ (in CoreFoundation) + 20 [0x7fff3ec21064]
+ 519 __NSFireTimer (in Foundation) + 83 [0x7fff40d7e739]
+ 519 -[PlayerAppDelegate UpdatePlayer] (in PhoenixPoint) + 436 [0x1004590d4]
+ 519 PlayerLoop() (in PhoenixPoint) + 1432 [0x1007b8ca8]
+ 507 PlayerRender(bool) (in PhoenixPoint) + 200 [0x1007b7198]
+ ! 507 GfxDeviceClient::BeginFrame() (in PhoenixPoint) + 97 [0x100f7b461]
+ ! 507 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ ! 507 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ ! 507 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
+ 12 PlayerRender(bool) (in PhoenixPoint) + 295 [0x1007b71f7]
+ 12 RenderManager::RenderCameras(int, void (*)()) (in PhoenixPoint) + 623 [0x1005a886f]
+ 12 Camera::Render(CullResults&, ShaderPassContext&, Camera::RenderFlag, void (*)()) (in PhoenixPoint) + 111 [0x10054ea4f]
+ 9 Camera::CustomRender(CullResults&, ShaderPassContext&, CameraRenderingParams const*, Camera::RenderFlag, Camera::PerformRenderFunction*, void (*)()) (in PhoenixPoint) + 1260 [0x10054d6ec]
+ : 9 Camera::DoRender(CullResults&, SharedRendererScene const&, Camera::RenderFlag, Camera::PerformRenderFunction*) (in PhoenixPoint) + 317 [0x10054bcfd]
+ : 9 DoRenderLoop(RenderLoop&, RenderingPath, CullResults&, ShadowMapCache&, bool) (in PhoenixPoint) + 1743 [0x1005f5ebf]
+ : 3 DoDeferredRenderLoop(RenderLoopContext const&, dynamic_array<RenderObjectData, 8ul>&, dynamic_array<RenderObjectData, 8ul>&, CullResults const&, RenderTexture*&, RenderTexture*&, bool*) (in PhoenixPoint) + 3471 [0x1005dcecf]
+ : | 3 DeferredRenderLoop::RenderGBuffer(RenderTexture*, RenderTexture**, bool, JobFence, DeferredRenderLoopScratch const*, int&, ObjectHandle<RenderSurface_Tag, RenderSurfaceBase*>) (in PhoenixPoint) + 2928 [0x1005db340]
+ : | 3 GfxDevice::ExecuteAsync(int, void (*)(GfxDeviceAsyncCommand::ArgScratch*, GfxDeviceAsyncCommand::Arg const*), GfxDeviceAsyncCommand::ArgScratch**, GfxDeviceAsyncCommand::Arg const*, JobFence const&) (in PhoenixPoint) + 65 [0x100906ef1]
+ : | 2 DeferredRenderLoopJob(GfxDeviceAsyncCommand::ArgScratch*, GfxDeviceAsyncCommand::Arg const*) (in PhoenixPoint) + 900,1774 [0x1005db764,0x1005dbace]
+ : | 1 DeferredRenderLoopJob(GfxDeviceAsyncCommand::ArgScratch*, GfxDeviceAsyncCommand::Arg const*) (in PhoenixPoint) + 2354 [0x1005dbd12]
+ : | 1 DrawUtil::DrawMeshRawFromNodeQueue(RenderNodeQueue const&, unsigned int, ShaderChannelMask, int) (in PhoenixPoint) + 118 [0x1006557a6]
+ : | 1 MeshRenderingData::ExtractMeshBuffersAndDrawRange(ShaderChannelMask, int, MeshBuffers&, DrawBuffersRange&, bool) const (in PhoenixPoint) + 140 [0x1007001fc]
+ : 3 DoDeferredRenderLoop(RenderLoopContext const&, dynamic_array<RenderObjectData, 8ul>&, dynamic_array<RenderObjectData, 8ul>&, CullResults const&, RenderTexture*&, RenderTexture*&, bool*) (in PhoenixPoint) + 4747 [0x1005dd3cb]
+ : | 2 DeferredRenderLoop::RenderLighting(ActiveLightingContext&, RenderTexture*, TextureID, RenderTexture**, int, Vector4f const&, LightingLayers const&, MinMaxAABB&, bool, ObjectHandle<RenderSurface_Tag, RenderSurfaceBase*>) (in PhoenixPoint) + 638 [0x1005d8c6e]
+ : | + 2 RenderLightDeferred(RenderLoopContext const&, LightingContext const&, QualitySettings::ShadowQuality, ShadowProjection, RenderTexture*, RenderTexture*, int, int, DeviceStencilState const*, DeviceMVPMatricesState const&, Vector4f const&, LightingLayers const&, bool, ShaderPassContext&, ObjectHandle<RenderSurface_Tag, RenderSurfaceBase*>) (in PhoenixPoint) + 3275 [0x1005d9c2b]
+ : | + 1 RenderShadowMaps(ShadowMapJobHeader const*, ShaderPassContext&, RenderTexture::SetActiveFlags) (in PhoenixPoint) + 3262 [0x1005bf5ae]
+ : | + ! 1 GfxDevice::ExecuteAsync(int, void (*)(GfxDeviceAsyncCommand::ArgScratch*, GfxDeviceAsyncCommand::Arg const*), GfxDeviceAsyncCommand::ArgScratch**, GfxDeviceAsyncCommand::Arg const*, JobFence const&) (in PhoenixPoint) + 65 [0x100906ef1]
+ : | + ! 1 ShadowMapJob(GfxDeviceAsyncCommand::ArgScratch*, GfxDeviceAsyncCommand::Arg const*) (in PhoenixPoint) + 997 [0x1005c06e5]
+ : | + ! 1 RenderCasters(int, Vector3f const&, Vector3f const&, ShadowJobData const&, ShaderPassContext&, std::vector<ShadowCasterData, stl_allocator<ShadowCasterData, (MemLabelIdentifier)2, 16> > const&, std::vector<ShadowCasterPartData, stl_allocator<ShadowCasterPartData, (MemLabelIdentifier)2, 16> > const&, RenderNodeQueue const&, bool, unsigned int const*) (in PhoenixPoint) + 2178 [0x1005c1962]
+ : | + ! 1 BatchRenderer::ApplyShaderPass(ShaderPassContext&, SharedMaterialData const*, Shader*, ShaderLab::Pass*, int, BatchingFlags, bool, ShaderLab::GrabPasses const*, DeviceRenderStateBlock const*) (in PhoenixPoint) + 269 [0x1005d695d]
+ : | + ! 1 ApplyMaterialPassAndKeywordsWithCache(SharedMaterialData const&, ShaderPassContext&, Shader*, ShaderLab::Pass*, int, bool, ShaderLab::GrabPasses const*, ShaderLab::SubPrograms*, DeviceRenderStateBlock const*) (in PhoenixPoint) + 136 [0x10081f208]
+ : | + ! 1 ApplyMaterialPassWithCache(SharedMaterialData const&, ShaderPassContext&, Shader*, ShaderLab::Pass*, int, bool, ShaderLab::GrabPasses const*, ShaderLab::SubPrograms*, DeviceRenderStateBlock const*) (in PhoenixPoint) + 169 [0x100819339]
+ : | + ! 1 ThreadedDisplayList::Call(ShaderPropertySheet const&) (in PhoenixPoint) + 257 [0x100f8fdd1]
+ : | + ! 1 ThreadedDisplayList::PatchableData::WriteParameters(ThreadedStreamBuffer&, ShaderPropertySheet const&) (in PhoenixPoint) + 330 [0x100f9000a]
+ : | + 1 RenderShadowMaps(ShadowMapJobHeader const*, ShaderPassContext&, RenderTexture::SetActiveFlags) (in PhoenixPoint) + 6237 [0x1005c014d]
+ : | + 1 GfxDevice::ExecuteAsync(int, void (*)(GfxDeviceAsyncCommand::ArgScratch*, GfxDeviceAsyncCommand::Arg const*), GfxDeviceAsyncCommand::ArgScratch**, GfxDeviceAsyncCommand::Arg const*, JobFence const&) (in PhoenixPoint) + 65 [0x100906ef1]
+ : | + 1 ShadowMapJob(GfxDeviceAsyncCommand::ArgScratch*, GfxDeviceAsyncCommand::Arg const*) (in PhoenixPoint) + 744 [0x1005c05e8]
+ : | + 1 RenderCasters(int, Vector3f const&, Vector3f const&, ShadowJobData const&, ShaderPassContext&, std::vector<ShadowCasterData, stl_allocator<ShadowCasterData, (MemLabelIdentifier)2, 16> > const&, std::vector<ShadowCasterPartData, stl_allocator<ShadowCasterPartData, (MemLabelIdentifier)2, 16> > const&, RenderNodeQueue const&, bool, unsigned int const*) (in PhoenixPoint) + 2247 [0x1005c19a7]
+ : | + 1 BatchRenderer::Add(BatchInstanceData const&) (in PhoenixPoint) + 236 [0x1005d6bac]
+ : | + 1 BatchRenderer::RenderBatch(BatchInstanceData const*, unsigned long, ShaderChannelMask) (in PhoenixPoint) + 188 [0x1005d6f5c]
+ : | + 1 RenderMultipleMeshes(RenderNodeQueue const&, RenderMultipleData const&, ShaderChannelMask) (in PhoenixPoint) + 2474 [0x1008fd7da]
+ : | 1 DeferredRenderLoop::RenderLighting(ActiveLightingContext&, RenderTexture*, TextureID, RenderTexture**, int, Vector4f const&, LightingLayers const&, MinMaxAABB&, bool, ObjectHandle<RenderSurface_Tag, RenderSurfaceBase*>) (in PhoenixPoint) + 785 [0x1005d8d01]
+ : | 1 RenderLightDeferred(RenderLoopContext const&, LightingContext const&, QualitySettings::ShadowQuality, ShadowProjection, RenderTexture*, RenderTexture*, int, int, DeviceStencilState const*, DeviceMVPMatricesState const&, Vector4f const&, LightingLayers const&, bool, ShaderPassContext&, ObjectHandle<RenderSurface_Tag, RenderSurfaceBase*>) (in PhoenixPoint) + 3275 [0x1005d9c2b]
+ : | 1 RenderShadowMaps(ShadowMapJobHeader const*, ShaderPassContext&, RenderTexture::SetActiveFlags) (in PhoenixPoint) + 5120 [0x1005bfcf0]
+ : | 1 GfxDevice::ExecuteAsync(int, void (*)(GfxDeviceAsyncCommand::ArgScratch*, GfxDeviceAsyncCommand::Arg const*), GfxDeviceAsyncCommand::ArgScratch**, GfxDeviceAsyncCommand::Arg const*, JobFence const&) (in PhoenixPoint) + 65 [0x100906ef1]
+ : | 1 ShadowMapJob(GfxDeviceAsyncCommand::ArgScratch*, GfxDeviceAsyncCommand::Arg const*) (in PhoenixPoint) + 744 [0x1005c05e8]
+ : | 1 RenderCasters(int, Vector3f const&, Vector3f const&, ShadowJobData const&, ShaderPassContext&, std::vector<ShadowCasterData, stl_allocator<ShadowCasterData, (MemLabelIdentifier)2, 16> > const&, std::vector<ShadowCasterPartData, stl_allocator<ShadowCasterPartData, (MemLabelIdentifier)2, 16> > const&, RenderNodeQueue const&, bool, unsigned int const*) (in PhoenixPoint) + 2247 [0x1005c19a7]
+ : | 1 BatchRenderer::Add(BatchInstanceData const&) (in PhoenixPoint) + 236 [0x1005d6bac]
+ : | 1 BatchRenderer::RenderBatch(BatchInstanceData const*, unsigned long, ShaderChannelMask) (in PhoenixPoint) + 188 [0x1005d6f5c]
+ : | 1 RenderMultipleMeshes(RenderNodeQueue const&, RenderMultipleData const&, ShaderChannelMask) (in PhoenixPoint) + 2346 [0x1008fd75a]
+ : 2 DoDeferredRenderLoop(RenderLoopContext const&, dynamic_array<RenderObjectData, 8ul>&, dynamic_array<RenderObjectData, 8ul>&, CullResults const&, RenderTexture*&, RenderTexture*&, bool*) (in PhoenixPoint) + 3768 [0x1005dcff8]
+ : | 1 SetupActiveLightsContext(ActiveLightingContext&, ActiveLights const&, CullResults const&, ShadowMapCache*, MinMaxAABB const&) (in PhoenixPoint) + 309 [0x1005de2b5]
+ : | + 1 PrepareShadowMaps(CullResults const&, ActiveLight const&, MinMaxAABB const&) (in PhoenixPoint) + 387 [0x1005bb1c3]
+ : | + 1 SendCullingCallbacks(CullingOutput const&, ShadowCullData const&, SharedLightData const&) (in PhoenixPoint) + 1368 [0x1005bad08]
+ : | + 1 GetScriptableCullingParameters(Camera&, bool, ScriptableCullingParameters&) (in PhoenixPoint) + 3109 [0x10072ebd5]
+ : | + 1 QualitySettings::GetShadowDistanceForRendering() (in PhoenixPoint) + 18 [0x100687432]
+ : | 1 SetupActiveLightsContext(ActiveLightingContext&, ActiveLights const&, CullResults const&, ShadowMapCache*, MinMaxAABB const&) (in PhoenixPoint) + 445 [0x1005de33d]
+ : | 1 PrepareShadowMaps(CullResults const&, ActiveLight const&, MinMaxAABB const&) (in PhoenixPoint) + 2243 [0x1005bb903]
+ : | 1 BeginRenderQueueExtraction(RenderNodeQueue&, RendererCullData const*, CullingOutput const&, LODDataArray const*, ExtractionFlags, JobBatchDispatcher*) (in PhoenixPoint) + 613 [0x1005a9e05]
+ : | 1 ScheduleJobForEachInternal(JobFence&, void (*)(void*, unsigned int), void*, int, void (*)(void*), JobPriority) (in PhoenixPoint) + 152 [0x10077b3b8]
+ : | 1 JobQueue::ScheduleGroup(JobGroup*, JobQueue::JobQueuePriority) (in PhoenixPoint) + 392 [0x10077d258]
+ : | 1 _dispatch_semaphore_signal_slow (in libdispatch.dylib) + 39 [0x7fff66efba0f]
+ : | 1 _dispatch_sema4_signal (in libdispatch.dylib) + 21 [0x7fff66f03866]
+ : | 1 semaphore_signal_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074222]
+ : 1 DoDeferredRenderLoop(RenderLoopContext const&, dynamic_array<RenderObjectData, 8ul>&, dynamic_array<RenderObjectData, 8ul>&, CullResults const&, RenderTexture*&, RenderTexture*&, bool*) (in PhoenixPoint) + 4625 [0x1005dd351]
+ : 1 DeferredRenderLoop::RenderReflections(RenderTexture*, RenderTexture**) (in PhoenixPoint) + 518 [0x1005d74f6]
+ : 1 RenderEventsContext::ExecuteCommandBuffers(int, unsigned int, ShaderPassContext&, RenderNodeQueue&, profiling::Marker*, int) const (in PhoenixPoint) + 103 [0x1006cd4b7]
+ : 1 RenderingCommandBuffer::ExecuteCommandBuffer(ShaderPassContext&, RenderNodeQueue&, unsigned int, dynamic_array<std::pair<ShaderLab::FastPropertyName, RenderTexture*>, 8ul>*, ComputeQueueType, RenderTexture*) (in PhoenixPoint) + 2419 [0x1006c8503]
+ : 1 SkinnedMeshRenderer::AddAsRenderNode(RenderNodeQueue&, DeprecatedSourceData const&) (in PhoenixPoint) + 272 [0x10070dd70]
+ : 1 MeshRenderingData::Init(Mesh*, Mesh*, int, GfxBuffer*, GfxBuffer*) (in PhoenixPoint) + 52 [0x1006ffdb4]
+ : 1 Mesh::AcquireSharedMeshRenderingData() (in PhoenixPoint) + 12 [0x1006e557c]
+ 2 Camera::CustomRender(CullResults&, ShaderPassContext&, CameraRenderingParams const*, Camera::RenderFlag, Camera::PerformRenderFunction*, void (*)()) (in PhoenixPoint) + 1122 [0x10054d662]
+ : 1 CullResults::GetOrCreateSharedRendererScene() (in PhoenixPoint) + 604 [0x100562c1c]
+ : | 1 EndRenderQueueExtraction(RenderNodeQueuePrepareContext*) (in PhoenixPoint) + 78 [0x1005aa37e]
+ : | 1 CompleteFenceInternal(JobFence&) (in PhoenixPoint) + 28 [0x10077affc]
+ : | 1 JobQueue::WaitForJobGroup(JobGroupID) (in PhoenixPoint) + 288 [0x10077d680]
+ : | 1 JobQueue::Exec(JobInfo*, long long, int) (in PhoenixPoint) + 122 [0x10077c55a]
+ : | 1 CullLocalShadowCastersJob(LocalShadowCullingJobData*, unsigned int) (in PhoenixPoint) + 175 [0x1005b5e2f]
+ : | 1 CullShadowCastersWithoutUmbra(IndexList&, CullingParameters const&, AABB const*, unsigned long, unsigned long) (in PhoenixPoint) + 170 [0x1005cd7ca]
+ : | 1 IntersectAABBPlaneBoundsOptimized(AABB const&, float vector[4] const*, int) (in PhoenixPoint) + 25 [0x100621509]
+ : 1 CullResults::GetOrCreateSharedRendererScene() (in PhoenixPoint) + 682 [0x100562c6a]
+ : 1 ScheduleJobForEachInternal(JobFence&, void (*)(void*, unsigned int), void*, int, void (*)(void*), JobPriority) (in PhoenixPoint) + 152 [0x10077b3b8]
+ : 1 JobQueue::ScheduleGroup(JobGroup*, JobQueue::JobQueuePriority) (in PhoenixPoint) + 392 [0x10077d258]
+ : 1 _dispatch_semaphore_signal_slow (in libdispatch.dylib) + 39 [0x7fff66efba0f]
+ : 1 _dispatch_sema4_signal (in libdispatch.dylib) + 21 [0x7fff66f03866]
+ : 1 semaphore_signal_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074222]
+ 1 Camera::CustomRender(CullResults&, ShaderPassContext&, CameraRenderingParams const*, Camera::RenderFlag, Camera::PerformRenderFunction*, void (*)()) (in PhoenixPoint) + 723 [0x10054d4d3]
+ 1 ScriptingInvocation::Invoke(ScriptingExceptionPtr*, bool) (in PhoenixPoint) + 64 [0x100960d60]
+ 1 mono_runtime_invoke (in libmonobdwgc-2.0.dylib) + 31 [0x10aa0789b]
+ 1 do_runtime_invoke (in libmonobdwgc-2.0.dylib) + 88 [0x10aa07945]
+ 1 mono_jit_runtime_invoke (in libmonobdwgc-2.0.dylib) + 2458 [0x10a844a78]
+ 1 ??? (in <unknown binary>) [0x1dbc442f7]
+ 1 ??? (in <unknown binary>) [0x1dbc5102d]
+ 1 ??? (in <unknown binary>) [0x28cad8e01]
+ 1 RenderingCommandBuffer::AddDrawRenderer(Renderer*, Material*, int, int) (in PhoenixPoint) + 45 [0x1006c369d]
+ 1 RenderingCommandBuffer::PPtrResolver<Material>::Put(Material*) (in PhoenixPoint) + 36 [0x1006c3774]
519 Thread_4057892: Finalizer
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 GC_start_routine (in libmonobdwgc-2.0.dylib) + 28 [0x10aa5ea5d]
+ 519 GC_inner_start_routine (in libmonobdwgc-2.0.dylib) + 90 [0x10aa5eac5]
+ 519 inner_start_thread (in libmonobdwgc-2.0.dylib) + 128 [0x10aa3be4a]
+ 519 start_wrapper (in libmonobdwgc-2.0.dylib) + 337 [0x10a9d7dd8]
+ 519 finalizer_thread (in libmonobdwgc-2.0.dylib) + 201 [0x10aa010cb]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4057893: BatchDeleteObjects
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 BatchDeleteStep2Threaded(void*) (in PhoenixPoint) + 101 [0x100797db5]
+ 519 ThreadedStreamBuffer::HandleOutOfBufferToReadFrom(unsigned int&, unsigned int&) (in PhoenixPoint) + 361 [0x10085cfe9]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4057894: AsyncReadManager
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 AsyncReadManagerThreaded::StaticThreadEntry(void*) (in PhoenixPoint) + 9 [0x1006106c9]
+ 519 AsyncReadManagerThreaded::ThreadEntry() (in PhoenixPoint) + 169 [0x100610e69]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4057895: OSX HID Input
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 HIDDeviceThreadOSX(void*) (in PhoenixPoint) + 63 [0x10044abdf]
+ 519 CFRunLoopRun (in CoreFoundation) + 99 [0x7fff3ec55c33]
+ 519 CFRunLoopRunSpecific (in CoreFoundation) + 483 [0x7fff3ec171a3]
+ 519 __CFRunLoopRun (in CoreFoundation) + 1783 [0x7fff3ec17b27]
+ 519 __CFRunLoopServiceMachPort (in CoreFoundation) + 341 [0x7fff3ec187d5]
+ 519 mach_msg (in libsystem_kernel.dylib) + 60 [0x7fff67073724]
+ 519 mach_msg_trap (in libsystem_kernel.dylib) + 10 [0x7fff6707420a]
519 Thread_4057938: com.apple.NSEventThread
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 _NSEventThread (in AppKit) + 184 [0x7fff3c2effc4]
+ 519 CFRunLoopRunSpecific (in CoreFoundation) + 483 [0x7fff3ec171a3]
+ 518 __CFRunLoopRun (in CoreFoundation) + 1783 [0x7fff3ec17b27]
+ ! 518 __CFRunLoopServiceMachPort (in CoreFoundation) + 341 [0x7fff3ec187d5]
+ ! 518 mach_msg (in libsystem_kernel.dylib) + 60 [0x7fff67073724]
+ ! 518 mach_msg_trap (in libsystem_kernel.dylib) + 10 [0x7fff6707420a]
+ 1 __CFRunLoopRun (in CoreFoundation) + 2848 [0x7fff3ec17f50]
+ 1 __CFRunLoopDoSource1 (in CoreFoundation) + 533 [0x7fff3ec20395]
+ 1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ (in CoreFoundation) + 41 [0x7fff3ec20449]
+ 1 __CFMachPortPerform (in CoreFoundation) + 310 [0x7fff3ec20596]
+ 1 MessageHandler(__CFMachPort*, void*, long, void*) (in HIToolbox) + 51 [0x7fff3df09970]
+ 1 PullEventsFromWindowServerOnConnection(unsigned int, unsigned char, __CFMachPortBoost*) (in HIToolbox) + 45 [0x7fff3df099cf]
+ 1 SLEventCreateNextEvent (in SkyLight) + 44 [0x7fff60e80d68]
+ 1 SLSGetNextEventRecordInternal (in SkyLight) + 81 [0x7fff60e08371]
+ 1 CGSSnarfAndDispatchDatagrams (in SkyLight) + 168 [0x7fff60d76429]
+ 1 mach_msg (in libsystem_kernel.dylib) + 60 [0x7fff67073724]
+ 1 mach_msg_trap (in libsystem_kernel.dylib) + 10 [0x7fff6707420a]
519 Thread_4059052
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 ??? (in GeForceMTLDriver) load address 0x7fff3a3d8000 + 0x160cc2 [0x7fff3a538cc2]
+ 519 _pthread_cond_wait (in libsystem_pthread.dylib) + 732 [0x7fff67246589]
+ 519 __psynch_cvwait (in libsystem_kernel.dylib) + 10 [0x7fff6707da1e]
519 Thread_4059053: UnityGfxDeviceWorker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 GfxDeviceWorker::RunGfxDeviceWorker(void*) (in PhoenixPoint) + 89 [0x100f84229]
+ 519 GfxDeviceWorker::RunExt(ThreadedStreamBuffer&) (in PhoenixPoint) + 80 [0x100f8f590]
+ 519 GfxDeviceWorkerAutoreleasePoolProxy (in PhoenixPoint) + 60 [0x1004b201c]
+ 506 GfxDeviceWorker::RunCommand(ThreadedStreamBuffer&) (in PhoenixPoint) + 28004 [0x100f8b034]
+ ! 506 BufferMetal::SetData(void const*, unsigned long, unsigned long, GfxDeviceMetal&) (in PhoenixPoint) + 52 [0x1004b0934]
+ ! 481 BufferMetal::Sync(id<MTLCommandBuffer>, GfxDeviceMetal&) (in PhoenixPoint) + 320 [0x1004b3da0]
+ ! : 481 MetalContext::CommitCommandBuffer(MetalContext::CommandBufferCommitType) (in PhoenixPoint) + 133 [0x1004b6a55]
+ ! : 481 ??? (in GeForceMTLDriver) load address 0x7fff3a3d8000 + 0xc673a [0x7fff3a49e73a]
+ ! : 481 -[_MTLCommandBuffer waitUntilCompleted] (in Metal) + 67 [0x7fff433800fd]
+ ! : 481 _pthread_cond_wait (in libsystem_pthread.dylib) + 732 [0x7fff67246589]
+ ! : 481 __psynch_cvwait (in libsystem_kernel.dylib) + 10 [0x7fff6707da1e]
+ ! 25 BufferMetal::Sync(id<MTLCommandBuffer>, GfxDeviceMetal&) (in PhoenixPoint) + 328 [0x1004b3da8]
+ ! 25 MetalContext::PrepareCommandBufferIfNeeded() (in PhoenixPoint) + 357 [0x1004b6975]
+ ! 25 ??? (in GeForceMTLDriver) load address 0x7fff3a3d8000 + 0xc6cc5 [0x7fff3a49ecc5]
+ ! 25 ??? (in GeForceMTLDriver) load address 0x7fff3a3d8000 + 0xc427b [0x7fff3a49c27b]
+ ! 25 ??? (in GeForceMTLDriver) load address 0x7fff3a3d8000 + 0x16aab6 [0x7fff3a542ab6]
+ ! 25 MTLIOAccelCommandBufferStorageAllocResourceAtIndex (in Metal) + 176 [0x7fff4337c4b2]
+ ! 25 MTLIOAccelResourcePoolCreatePooledResource (in Metal) + 37 [0x7fff43345746]
+ ! 25 _os_unfair_lock_lock_slow (in libsystem_platform.dylib) + 140 [0x7fff6723e6ba]
+ ! 25 __ulock_wait (in libsystem_kernel.dylib) + 10 [0x7fff6707e162]
+ 12 GfxDeviceWorker::RunCommand(ThreadedStreamBuffer&) (in PhoenixPoint) + 7963 [0x100f861eb]
+ ! 12 GeometryJobTasks::ScheduleGeometryJobs(GfxDevice&, void (*)(GeometryJobData*), GeometryJobInstruction const*, unsigned int, bool) (in PhoenixPoint) + 364 [0x10090133c]
+ ! 12 BufferMetal::BeginWrite(unsigned long, unsigned long) (in PhoenixPoint) + 161 [0x1004aef11]
+ ! 12 _platform_memmove$VARIANT$Haswell (in libsystem_platform.dylib) + 41 [0x7fff6723ef49]
+ 1 GfxDeviceWorker::RunCommand(ThreadedStreamBuffer&) (in PhoenixPoint) + 5686 [0x100f85906]
+ 1 GfxDeviceMetal::SetShadersThreadable(GpuProgram**, GpuProgramParameters const**, unsigned char const* const*) (in PhoenixPoint) + 41 [0x1004ae759]
+ 1 metal::PrepareRenderTargetIfNeeded(GfxDeviceMetal&) (in PhoenixPoint) + 45 [0x1004a6c2d]
+ 1 SetupMetalFBO(GfxDeviceMetal&, GfxClearFlags, ColorRGBAf const&, float, unsigned int) (in PhoenixPoint) + 2633 [0x1004a6909]
+ 1 GfxDeviceMetal::ReapplyTextures() (in PhoenixPoint) + 23 [0x1004adc57]
+ 1 TexturesMetal::ReapplyTextures(id<MTLRenderCommandEncoder>) (in PhoenixPoint) + 419 [0x1004be323]
+ 1 objc_release (in libobjc.A.dylib) + 82 [0x7fff663081b2]
519 Thread_4059054: Worker Thread
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 516 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ ! 516 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ ! 516 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ ! 516 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
+ 3 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 126 [0x10077cc4e]
+ 3 JobQueue::Exec(JobInfo*, long long, int) (in PhoenixPoint) + 122 [0x10077c55a]
+ 2 ExecuteRenderQueueJob(RenderNodeQueuePrepareContext*, unsigned int) (in PhoenixPoint) + 576 [0x1005aa060]
+ : 1 void ParticleSystemRenderer::PrepareRenderNodes<true>(RenderNodeQueuePrepareThreadContext&) (in PhoenixPoint) + 130 [0x1003175d2]
+ : 1 void PrepareMeshRenderNodes<true>(RenderNodeQueuePrepareThreadContext&) (in PhoenixPoint) + 415 [0x1006ff15f]
+ : 1 bool BaseRenderer::FlattenSharedMaterialData<true>(BaseRenderer&, PerThreadPageAllocator&, RenderNode&) (in PhoenixPoint) + 184 [0x10055c9d8]
+ : 1 Material* PPtrToObjectDontLoadNoThreadCheck<Material>(PPtr<Material>) (in PhoenixPoint) + 203 [0x10055cbab]
+ 1 CullAllPerObjectLightsJob(CullAllPerObjectLightsJobData*, unsigned int) (in PhoenixPoint) + 2000 [0x1005cf6c0]
519 Thread_4059055: Worker Thread
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 516 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ ! 516 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ ! 516 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ ! 516 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
+ 2 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 126 [0x10077cc4e]
+ ! 2 JobQueue::Exec(JobInfo*, long long, int) (in PhoenixPoint) + 122 [0x10077c55a]
+ ! 1 CullAllPerObjectLightsJob(CullAllPerObjectLightsJobData*, unsigned int) (in PhoenixPoint) + 2031 [0x1005cf6df]
+ ! : 1 IntersectAABBSphere(AABB const&, Sphere const&) (in PhoenixPoint) + 23 [0x10061ff87]
+ ! : 1 CalculateSqrDistance(Vector3f const&, AABB const&) (in PhoenixPoint) + 73 [0x100618369]
+ ! 1 ExecuteRenderQueueJob(RenderNodeQueuePrepareContext*, unsigned int) (in PhoenixPoint) + 576 [0x1005aa060]
+ ! 1 void PrepareMeshRenderNodes<true>(RenderNodeQueuePrepareThreadContext&) (in PhoenixPoint) + 415 [0x1006ff15f]
+ ! 1 bool BaseRenderer::FlattenSharedMaterialData<true>(BaseRenderer&, PerThreadPageAllocator&, RenderNode&) (in PhoenixPoint) + 200 [0x10055c9e8]
+ ! 1 Material::AcquireSharedMaterialDataFromJob() const (in PhoenixPoint) + 11 [0x10081c78b]
+ 1 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 152 [0x10077cc68]
+ 1 JobQueue::ExecuteJobFromQueue() (in PhoenixPoint) + 94 [0x10077cb5e]
+ 1 JobQueue::Steal(JobGroup*, JobInfo*, long long, int, bool) (in PhoenixPoint) + 246 [0x10077c496]
+ 1 JobQueue::Exec(JobInfo*, long long, int) (in PhoenixPoint) + 122 [0x10077c55a]
+ 1 CullLocalShadowCastersJob(LocalShadowCullingJobData*, unsigned int) (in PhoenixPoint) + 196 [0x1005b5e44]
+ 1 ProcessShadowsIndexListIsNodeVisibleInOut(SceneCullingParameters const&, SceneNode const*, AABB const*, IndexList&) (in PhoenixPoint) + 104 [0x1005ce768]
+ 1 IsNodeVisible(SceneNode const&, AABB const&, SceneCullingParameters const&) (in PhoenixPoint) + 3 [0x1005ce5d3]
519 Thread_4059056: Worker Thread
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 517 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ ! 517 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ ! 517 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ ! 517 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
+ 2 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 126 [0x10077cc4e]
+ 2 JobQueue::Exec(JobInfo*, long long, int) (in PhoenixPoint) + 122 [0x10077c55a]
+ 1 CullLocalShadowCastersJob(LocalShadowCullingJobData*, unsigned int) (in PhoenixPoint) + 175 [0x1005b5e2f]
+ : 1 CullShadowCastersWithoutUmbra(IndexList&, CullingParameters const&, AABB const*, unsigned long, unsigned long) (in PhoenixPoint) + 170 [0x1005cd7ca]
+ : 1 IntersectAABBPlaneBoundsOptimized(AABB const&, float vector[4] const*, int) (in PhoenixPoint) + 196 [0x1006215b4]
+ 1 CullLocalShadowCastersJob(LocalShadowCullingJobData*, unsigned int) (in PhoenixPoint) + 1509 [0x1005b6365]
+ 1 CullSpotShadows(IndexList&, SceneNode const*, AABB const*, SpotCullContext&) (in PhoenixPoint) + 1129 [0x1005cdfc9]
+ 1 IntersectAABBFrustumFull(AABB const&, Plane const*) (in PhoenixPoint) + 9 [0x1006210c9]
519 Thread_4059057: Worker Thread
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 516 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ ! 516 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ ! 516 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ ! 516 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
+ 2 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 126 [0x10077cc4e]
+ ! 2 JobQueue::Exec(JobInfo*, long long, int) (in PhoenixPoint) + 122 [0x10077c55a]
+ ! 1 CullLocalShadowCastersJob(LocalShadowCullingJobData*, unsigned int) (in PhoenixPoint) + 175 [0x1005b5e2f]
+ ! : 1 CullShadowCastersWithoutUmbra(IndexList&, CullingParameters const&, AABB const*, unsigned long, unsigned long) (in PhoenixPoint) + 170 [0x1005cd7ca]
+ ! : 1 IntersectAABBPlaneBoundsOptimized(AABB const&, float vector[4] const*, int) (in PhoenixPoint) + 163 [0x100621593]
+ ! 1 CullLocalShadowCastersJob(LocalShadowCullingJobData*, unsigned int) (in PhoenixPoint) + 1509 [0x1005b6365]
+ ! 1 CullSpotShadows(IndexList&, SceneNode const*, AABB const*, SpotCullContext&) (in PhoenixPoint) + 435 [0x1005cdd13]
+ ! 1 IntersectAABBFrustumFull(AABB const&, Plane const*) (in PhoenixPoint) + 209 [0x100621191]
+ 1 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 152 [0x10077cc68]
+ 1 JobQueue::ExecuteJobFromQueue() (in PhoenixPoint) + 94 [0x10077cb5e]
+ 1 JobQueue::Steal(JobGroup*, JobInfo*, long long, int, bool) (in PhoenixPoint) + 291 [0x10077c4c3]
+ 1 JobQueue::Exec(JobInfo*, long long, int) (in PhoenixPoint) + 111 [0x10077c54f]
+ 1 PrepareShadowMapsJob(ShadowMapJobHeader*) (in PhoenixPoint) + 1581 [0x1005bc17d]
519 Thread_4059058: Worker Thread
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 516 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ ! 516 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ ! 516 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ ! 516 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
+ 2 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 152 [0x10077cc68]
+ ! 2 JobQueue::ExecuteJobFromQueue() (in PhoenixPoint) + 94 [0x10077cb5e]
+ ! 2 JobQueue::Steal(JobGroup*, JobInfo*, long long, int, bool) (in PhoenixPoint) + 246 [0x10077c496]
+ ! 2 JobQueue::Exec(JobInfo*, long long, int) (in PhoenixPoint) + 122 [0x10077c55a]
+ ! 2 CullLocalShadowCastersJob(LocalShadowCullingJobData*, unsigned int) (in PhoenixPoint) + 196 [0x1005b5e44]
+ ! 2 ProcessShadowsIndexListIsNodeVisibleInOut(SceneCullingParameters const&, SceneNode const*, AABB const*, IndexList&) (in PhoenixPoint) + 104 [0x1005ce768]
+ ! 2 IsNodeVisible(SceneNode const&, AABB const&, SceneCullingParameters const&) (in PhoenixPoint) + 12 [0x1005ce5dc]
+ 1 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 126 [0x10077cc4e]
+ 1 JobQueue::Exec(JobInfo*, long long, int) (in PhoenixPoint) + 122 [0x10077c55a]
+ 1 CullAllPerObjectLightsJob(CullAllPerObjectLightsJobData*, unsigned int) (in PhoenixPoint) + 2031 [0x1005cf6df]
+ 1 IntersectAABBSphere(AABB const&, Sphere const&) (in PhoenixPoint) + 23 [0x10061ff87]
+ 1 CalculateSqrDistance(Vector3f const&, AABB const&) (in PhoenixPoint) + 8 [0x100618328]
519 Thread_4059059: Worker Thread
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 515 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ ! 515 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ ! 515 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ ! 515 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
+ 2 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 126 [0x10077cc4e]
+ ! 2 JobQueue::Exec(JobInfo*, long long, int) (in PhoenixPoint) + 122 [0x10077c55a]
+ ! 1 CullAllPerObjectLightsJob(CullAllPerObjectLightsJobData*, unsigned int) (in PhoenixPoint) + 2031 [0x1005cf6df]
+ ! : 1 IntersectAABBSphere(AABB const&, Sphere const&) (in PhoenixPoint) + 32 [0x10061ff90]
+ ! 1 ExecuteRenderQueueJob(RenderNodeQueuePrepareContext*, unsigned int) (in PhoenixPoint) + 576 [0x1005aa060]
+ ! 1 void PrepareMeshRenderNodes<true>(RenderNodeQueuePrepareThreadContext&) (in PhoenixPoint) + 415 [0x1006ff15f]
+ ! 1 bool BaseRenderer::FlattenSharedMaterialData<true>(BaseRenderer&, PerThreadPageAllocator&, RenderNode&) (in PhoenixPoint) + 200 [0x10055c9e8]
+ ! 1 Material::AcquireSharedMaterialDataFromJob() const (in PhoenixPoint) + 17 [0x10081c791]
+ 2 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 152 [0x10077cc68]
+ 2 JobQueue::ExecuteJobFromQueue() (in PhoenixPoint) + 94 [0x10077cb5e]
+ 2 JobQueue::Steal(JobGroup*, JobInfo*, long long, int, bool) (in PhoenixPoint) + 246 [0x10077c496]
+ 2 JobQueue::Exec(JobInfo*, long long, int) (in PhoenixPoint) + 122 [0x10077c55a]
+ 2 CullLocalShadowCastersJob(LocalShadowCullingJobData*, unsigned int) (in PhoenixPoint) + 175 [0x1005b5e2f]
+ 2 CullShadowCastersWithoutUmbra(IndexList&, CullingParameters const&, AABB const*, unsigned long, unsigned long) (in PhoenixPoint) + 170 [0x1005cd7ca]
+ 2 IntersectAABBPlaneBoundsOptimized(AABB const&, float vector[4] const*, int) (in PhoenixPoint) + 178 [0x1006215a2]
519 Thread_4059060: Worker Thread
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 517 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ ! 517 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ ! 517 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ ! 517 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
+ 2 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 152 [0x10077cc68]
+ 2 JobQueue::ExecuteJobFromQueue() (in PhoenixPoint) + 94 [0x10077cb5e]
+ 2 JobQueue::Steal(JobGroup*, JobInfo*, long long, int, bool) (in PhoenixPoint) + 291 [0x10077c4c3]
+ 2 JobQueue::Exec(JobInfo*, long long, int) (in PhoenixPoint) + 111 [0x10077c54f]
+ 1 PrepareShadowMapsJob(ShadowMapJobHeader*) (in PhoenixPoint) + 1186 [0x1005bbff2]
+ 1 UI::UIGeometryJob(UI::UIGeometryJobData*) (in PhoenixPoint) + 3192 [0x100c5c878]
519 Thread_4059061: BackgroundWorker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 519 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059062: BackgroundWorker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 519 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059063: BackgroundWorker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 519 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059064: BackgroundWorker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 519 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059065: BackgroundWorker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 519 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059066: BackgroundWorker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 519 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059067: BackgroundWorker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 519 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059068: BackgroundWorker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 519 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059069: BackgroundWorker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 519 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059070: BackgroundWorker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 519 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059071: BackgroundWorker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 519 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059072: BackgroundWorker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 519 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059073: BackgroundWorker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 519 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059074: BackgroundWorker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 519 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059075: BackgroundWorker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 519 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059076: BackgroundWorker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 519 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059077
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 algThreadJobQueueThreadFunc (in PhoenixPoint) + 209 [0x100077311]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059078
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 algThreadJobQueueThreadFunc (in PhoenixPoint) + 209 [0x100077311]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059079
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 algThreadJobQueueThreadFunc (in PhoenixPoint) + 209 [0x100077311]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059080: UnitySubstanceThread
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 SubstanceSystem::ThreadMain(void*) (in PhoenixPoint) + 56 [0x1007560e8]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059088: com.apple.audio.IOThread.client
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 HALB_IOThread::Entry(void*) (in CoreAudio) + 72 [0x7fff3e66b05e]
+ 519 HALC_ProxyIOContext::IOThreadEntry(void*) (in CoreAudio) + 128 [0x7fff3e66b31c]
+ 517 HALC_ProxyIOContext::IOWorkLoop() (in CoreAudio) + 977 [0x7fff3e66b8b9]
+ ! 517 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) (in CoreAudio) + 45 [0x7fff3e66e84d]
+ ! 517 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) (in CoreAudio) + 124 [0x7fff3e66e8da]
+ ! 517 mach_msg (in libsystem_kernel.dylib) + 60 [0x7fff67073724]
+ ! 517 mach_msg_trap (in libsystem_kernel.dylib) + 10 [0x7fff6707420a]
+ 2 HALC_ProxyIOContext::IOWorkLoop() (in CoreAudio) + 5021 [0x7fff3e66c885]
+ 2 AUHAL::AUIOProc(unsigned int, AudioTimeStamp const*, AudioBufferList const*, AudioTimeStamp const*, AudioBufferList*, AudioTimeStamp const*, void*) (in CoreAudio) + 1726 [0x11a206d44]
+ 2 AUBase::DoRender(unsigned int&, AudioTimeStamp const&, unsigned int, unsigned int, AudioBufferList&) (in CoreAudio) + 546 [0x11a32d37a]
+ 2 AUBase::DoRenderBus(unsigned int&, AudioTimeStamp const&, unsigned int, AUOutputElement*, unsigned int, AudioBufferList&) (in CoreAudio) + 166 [0x11a32dca4]
+ 1 AUConverterBase::RenderBus(unsigned int&, AudioTimeStamp const&, unsigned int, unsigned int) (in CoreAudio) + 656 [0x11a203560]
+ : 1 FMOD::OutputCoreAudio::renderProc(void*, unsigned int*, AudioTimeStamp const*, unsigned int, unsigned int, AudioBufferList*) (in PhoenixPoint) + 50 [0x1015cc4a2]
+ : 1 FMOD::Output::mix(void*, unsigned int) (in PhoenixPoint) + 774 [0x10158b846]
+ : 1 FMOD::DSPSoundCard::read(void*, unsigned int*, FMOD_SPEAKERMODE, int, unsigned int) (in PhoenixPoint) + 90 [0x10157b77a]
+ : 1 FMOD::DSPFilter::read(float**, int*, unsigned int*, FMOD_SPEAKERMODE, int, unsigned int) (in PhoenixPoint) + 324 [0x101563664]
+ : 1 FMOD::DSPFilter::read(float**, int*, unsigned int*, FMOD_SPEAKERMODE, int, unsigned int) (in PhoenixPoint) + 324 [0x101563664]
+ : 1 FMOD::DSPFilter::read(float**, int*, unsigned int*, FMOD_SPEAKERMODE, int, unsigned int) (in PhoenixPoint) + 324 [0x101563664]
+ : 1 FMOD::DSPFilter::read(float**, int*, unsigned int*, FMOD_SPEAKERMODE, int, unsigned int) (in PhoenixPoint) + 324 [0x101563664]
+ : 1 FMOD::DSPFilter::read(float**, int*, unsigned int*, FMOD_SPEAKERMODE, int, unsigned int) (in PhoenixPoint) + 324 [0x101563664]
+ : 1 FMOD::DSPFilter::read(float**, int*, unsigned int*, FMOD_SPEAKERMODE, int, unsigned int) (in PhoenixPoint) + 324 [0x101563664]
+ : 1 FMOD::DSPFilter::read(float**, int*, unsigned int*, FMOD_SPEAKERMODE, int, unsigned int) (in PhoenixPoint) + 324 [0x101563664]
+ : 1 FMOD::DSPFilter::read(float**, int*, unsigned int*, FMOD_SPEAKERMODE, int, unsigned int) (in PhoenixPoint) + 324 [0x101563664]
+ : 1 FMOD::DSPFilter::read(float**, int*, unsigned int*, FMOD_SPEAKERMODE, int, unsigned int) (in PhoenixPoint) + 324 [0x101563664]
+ : 1 FMOD::DSPFilter::read(float**, int*, unsigned int*, FMOD_SPEAKERMODE, int, unsigned int) (in PhoenixPoint) + 324 [0x101563664]
+ : 1 FMOD::DSPFilter::read(float**, int*, unsigned int*, FMOD_SPEAKERMODE, int, unsigned int) (in PhoenixPoint) + 324 [0x101563664]
+ : 1 FMOD::DSPFilter::read(float**, int*, unsigned int*, FMOD_SPEAKERMODE, int, unsigned int) (in PhoenixPoint) + 1288 [0x101563a28]
+ : 1 UnityAudioEffect_InternalReadCallback(FMOD_DSP_STATE*, float*, float*, unsigned int, int, int) (in PhoenixPoint) + 249 [0x100d206e9]
+ : 1 AudioMixerFaderProcessCallback(UnityAudioEffectState*, float*, float*, unsigned int, int, int) (in PhoenixPoint) + 877 [0x100d5249d]
+ 1 AUConverterBase::RenderBus(unsigned int&, AudioTimeStamp const&, unsigned int, unsigned int) (in CoreAudio) + 715 [0x11a20359b]
+ 1 CrashIfClientProvidedBogusAudioBufferList (in CoreAudio) + 6 [0x11a34576e]
519 Thread_4059090
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 518 FMOD::Thread::callback(void*) (in PhoenixPoint) + 37 [0x1015b02c5]
+ ! 518 FMOD_OS_Time_Sleep(unsigned int) (in PhoenixPoint) + 15 [0x1015c9d7f]
+ ! 518 usleep (in libsystem_c.dylib) + 53 [0x7fff66ff8618]
+ ! 518 nanosleep (in libsystem_c.dylib) + 199 [0x7fff66ff8724]
+ ! 517 __semwait_signal (in libsystem_kernel.dylib) + 10 [0x7fff6707dd8a]
+ ! 1 cerror (in libsystem_kernel.dylib) + 0 [0x7fff67074b25]
+ 1 FMOD::Thread::callback(void*) (in PhoenixPoint) + 93 [0x1015b02fd]
+ 1 FMOD::SystemI::updateStreams() (in PhoenixPoint) + 188 [0x1015a078c]
+ 1 FMOD_OS_CriticalSection_Leave(FMOD_OS_CRITICALSECTION*) (in PhoenixPoint) + 19 [0x1015ca0f3]
+ 1 _pthread_mutex_unlock_slow (in libsystem_pthread.dylib) + 208 [0x7fff6724381c]
519 Thread_4059142: tid_18503
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 PreloadManager::Run(void*) (in PhoenixPoint) + 9 [0x100806dc9]
+ 519 PreloadManager::Run() (in PhoenixPoint) + 85 [0x100806e25]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059191
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Enlighten::MultithreadCpuWorkerCommon::CommandThreadFunction(void*) (in PhoenixPoint) + 77 [0x1010ae7bd]
+ 519 Geo::GeoEvent::Wait(unsigned int) (in PhoenixPoint) + 41 [0x1010c4269]
+ 519 Geo::Impl::WaitForMultipleObjects(unsigned int, Geo::Impl::t_HANDLE**, bool, int) (in PhoenixPoint) + 486 [0x1010c3f46]
+ 519 _pthread_cond_wait (in libsystem_pthread.dylib) + 732 [0x7fff67246589]
+ 519 __psynch_cvwait (in libsystem_kernel.dylib) + 10 [0x7fff6707da1e]
519 Thread_4059192: EnlightenWorker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 TUpdateFunction(void*) (in PhoenixPoint) + 104 [0x100fac778]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059193: EnlightenWorker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 TUpdateFunction(void*) (in PhoenixPoint) + 104 [0x100fac778]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059194: EnlightenWorker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 TUpdateFunction(void*) (in PhoenixPoint) + 104 [0x100fac778]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059195: EnlightenWorker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 TUpdateFunction(void*) (in PhoenixPoint) + 104 [0x100fac778]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059196: Worker Thread
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
+ 519 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
+ 519 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
+ 519 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
+ 519 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
+ 519 semaphore_wait_trap (in libsystem_kernel.dylib) + 10 [0x7fff67074246]
519 Thread_4059202: Timer-Scheduler
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 GC_start_routine (in libmonobdwgc-2.0.dylib) + 28 [0x10aa5ea5d]
+ 519 GC_inner_start_routine (in libmonobdwgc-2.0.dylib) + 90 [0x10aa5eac5]
+ 519 inner_start_thread (in libmonobdwgc-2.0.dylib) + 128 [0x10aa3be4a]
+ 519 start_wrapper (in libmonobdwgc-2.0.dylib) + 565 [0x10a9d7ebc]
+ 519 do_runtime_invoke (in libmonobdwgc-2.0.dylib) + 88 [0x10aa07945]
+ 519 mono_jit_runtime_invoke (in libmonobdwgc-2.0.dylib) + 2458 [0x10a844a78]
+ 519 ??? (in <unknown binary>) [0x11078c339]
+ 519 ??? (in <unknown binary>) [0x11078c977]
+ 519 ??? (in <unknown binary>) [0x11119a30a]
+ 519 ??? (in <unknown binary>) [0x11119a6ef]
+ 519 ves_icall_System_Threading_WaitHandle_WaitOne_internal (in libmonobdwgc-2.0.dylib) + 86 [0x10a9d4243]
+ 519 mono_wait_uninterrupted (in libmonobdwgc-2.0.dylib) + 115 [0x10a9d4062]
+ 519 mono_w32handle_wait_multiple (in libmonobdwgc-2.0.dylib) + 192 [0x10a9f45b3]
+ 519 mono_w32handle_wait_one (in libmonobdwgc-2.0.dylib) + 318 [0x10a9f4241]
+ 518 mono_w32handle_timedwait_signal_handle (in libmonobdwgc-2.0.dylib) + 191 [0x10a9f448e]
+ ! 518 mono_os_cond_timedwait (in libmonobdwgc-2.0.dylib) + 135 [0x10a9f533f]
+ ! 518 _pthread_cond_wait (in libsystem_pthread.dylib) + 732 [0x7fff67246589]
+ ! 518 __psynch_cvwait (in libsystem_kernel.dylib) + 10 [0x7fff6707da1e]
+ 1 mono_w32handle_timedwait_signal_handle (in libmonobdwgc-2.0.dylib) + 202 [0x10a9f4499]
+ 1 free (in libsystem_malloc.dylib) + 33 [0x7fff670d763a]
519 Thread_4059211: tid_1b803
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 GC_start_routine (in libmonobdwgc-2.0.dylib) + 28 [0x10aa5ea5d]
+ 519 GC_inner_start_routine (in libmonobdwgc-2.0.dylib) + 90 [0x10aa5eac5]
+ 519 inner_start_thread (in libmonobdwgc-2.0.dylib) + 128 [0x10aa3be4a]
+ 519 start_wrapper (in libmonobdwgc-2.0.dylib) + 337 [0x10a9d7dd8]
+ 519 selector_thread (in libmonobdwgc-2.0.dylib) + 1142 [0x10a9def1e]
+ 519 poll_event_wait (in libmonobdwgc-2.0.dylib) + 113 [0x10a9df580]
+ 519 mono_poll (in libmonobdwgc-2.0.dylib) + 385 [0x10aa34861]
+ 519 __select (in libsystem_kernel.dylib) + 10 [0x7fff6707dcfa]
519 Thread_4112583: Threadpool worker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 GC_start_routine (in libmonobdwgc-2.0.dylib) + 28 [0x10aa5ea5d]
+ 519 GC_inner_start_routine (in libmonobdwgc-2.0.dylib) + 90 [0x10aa5eac5]
+ 519 inner_start_thread (in libmonobdwgc-2.0.dylib) + 128 [0x10aa3be4a]
+ 519 start_wrapper (in libmonobdwgc-2.0.dylib) + 337 [0x10a9d7dd8]
+ 519 worker_thread (in libmonobdwgc-2.0.dylib) + 1266 [0x10a9dd2e5]
+ 519 _pthread_cond_wait (in libsystem_pthread.dylib) + 732 [0x7fff67246589]
+ 519 __psynch_cvwait (in libsystem_kernel.dylib) + 10 [0x7fff6707da1e]
519 Thread_4112846
+ 519 start_wqthread (in libsystem_pthread.dylib) + 13 [0x7fff67244be9]
+ 519 _pthread_wqthread (in libsystem_pthread.dylib) + 1035 [0x7fff67245009]
+ 519 __workq_kernreturn (in libsystem_kernel.dylib) + 10 [0x7fff6707e292]
519 Thread_4112930: Threadpool worker
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 GC_start_routine (in libmonobdwgc-2.0.dylib) + 28 [0x10aa5ea5d]
+ 519 GC_inner_start_routine (in libmonobdwgc-2.0.dylib) + 90 [0x10aa5eac5]
+ 519 inner_start_thread (in libmonobdwgc-2.0.dylib) + 128 [0x10aa3be4a]
+ 519 start_wrapper (in libmonobdwgc-2.0.dylib) + 337 [0x10a9d7dd8]
+ 519 worker_thread (in libmonobdwgc-2.0.dylib) + 1266 [0x10a9dd2e5]
+ 519 _pthread_cond_wait (in libsystem_pthread.dylib) + 732 [0x7fff67246589]
+ 519 __psynch_cvwait (in libsystem_kernel.dylib) + 10 [0x7fff6707da1e]
519 Thread_4113269: tid_69f2f
+ 519 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
+ 519 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
+ 519 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
+ 519 GC_start_routine (in libmonobdwgc-2.0.dylib) + 28 [0x10aa5ea5d]
+ 519 GC_inner_start_routine (in libmonobdwgc-2.0.dylib) + 90 [0x10aa5eac5]
+ 519 inner_start_thread (in libmonobdwgc-2.0.dylib) + 128 [0x10aa3be4a]
+ 519 start_wrapper (in libmonobdwgc-2.0.dylib) + 337 [0x10a9d7dd8]
+ 519 monitor_thread (in libmonobdwgc-2.0.dylib) + 185 [0x10a9dc7bd]
+ 519 mono_thread_info_sleep (in libmonobdwgc-2.0.dylib) + 784 [0x10aa3c25a]
+ 519 _pthread_cond_wait (in libsystem_pthread.dylib) + 732 [0x7fff67246589]
+ 519 __psynch_cvwait (in libsystem_kernel.dylib) + 10 [0x7fff6707da1e]
519 Thread_4113465
+ 519 start_wqthread (in libsystem_pthread.dylib) + 13 [0x7fff67244be9]
+ 519 _pthread_wqthread (in libsystem_pthread.dylib) + 1552 [0x7fff6724520e]
+ 519 __workq_kernreturn (in libsystem_kernel.dylib) + 10 [0x7fff6707e292]
488 Thread_<multiple> DispatchQueue_972: com.Metal.CommandQueueDispatch (serial)
+ 488 start_wqthread (in libsystem_pthread.dylib) + 13 [0x7fff67244be9]
+ 488 _pthread_wqthread (in libsystem_pthread.dylib) + 980 [0x7fff67244fd2]
+ 488 _dispatch_workloop_worker_thread (in libdispatch.dylib) + 880 [0x7fff66f0cd71]
+ 488 _dispatch_root_queue_drain_deferred_wlh (in libdispatch.dylib) + 332 [0x7fff66f08f5d]
+ 488 _dispatch_queue_invoke (in libdispatch.dylib) + 373 [0x7fff66efb1b6]
+ 488 _dispatch_queue_serial_drain (in libdispatch.dylib) + 222 [0x7fff66f080ca]
+ 488 _dispatch_source_invoke (in libdispatch.dylib) + 620 [0x7fff66ef60d1]
+ 488 _dispatch_continuation_pop (in libdispatch.dylib) + 472 [0x7fff66f06ed1]
+ 488 _dispatch_client_callout (in libdispatch.dylib) + 8 [0x7fff66ef3e08]
+ 488 -[_MTLCommandQueue _submitAvailableCommandBuffers] (in Metal) + 872 [0x7fff433849ad]
+ 488 ??? (in GeForceMTLDriver) load address 0x7fff3a3d8000 + 0xc6e81 [0x7fff3a49ee81]
+ 488 -[MTLIOAccelCommandQueue submitCommandBuffers:count:] (in Metal) + 678 [0x7fff43358269]
+ 488 IOAccelCommandQueueSubmitCommandBuffers (in IOAccelerator) + 136 [0x7fff5936043a]
+ 488 IOConnectCallMethod (in IOKit) + 186 [0x7fff413c5c84]
+ 488 io_connect_method (in IOKit) + 369 [0x7fff413c5e57]
+ 488 mach_msg (in libsystem_kernel.dylib) + 60 [0x7fff67073724]
+ 488 mach_msg_trap (in libsystem_kernel.dylib) + 10 [0x7fff6707420a]
481 Thread_4113715
+ 480 start_wqthread (in libsystem_pthread.dylib) + 13 [0x7fff67244be9]
+ ! 480 _pthread_wqthread (in libsystem_pthread.dylib) + 1035 [0x7fff67245009]
+ ! 480 __workq_kernreturn (in libsystem_kernel.dylib) + 10 [0x7fff6707e292]
+ 1 start_wqthread (in libsystem_pthread.dylib) + 0 [0x7fff67244bdc]
351 Thread_4113929
+ 351 start_wqthread (in libsystem_pthread.dylib) + 13 [0x7fff67244be9]
+ 351 _pthread_wqthread (in libsystem_pthread.dylib) + 1035 [0x7fff67245009]
+ 351 __workq_kernreturn (in libsystem_kernel.dylib) + 10 [0x7fff6707e292]
43 Thread_4113466
+ 43 start_wqthread (in libsystem_pthread.dylib) + 13 [0x7fff67244be9]
+ 43 _pthread_wqthread (in libsystem_pthread.dylib) + 1035 [0x7fff67245009]
+ 43 __workq_kernreturn (in libsystem_kernel.dylib) + 10 [0x7fff6707e292]
26 Thread_4113715 DispatchQueue_973: com.Metal.CompletionQueueDispatch (serial)
26 start_wqthread (in libsystem_pthread.dylib) + 13 [0x7fff67244be9]
26 _pthread_wqthread (in libsystem_pthread.dylib) + 980 [0x7fff67244fd2]
26 _dispatch_workloop_worker_thread (in libdispatch.dylib) + 880 [0x7fff66f0cd71]
26 _dispatch_root_queue_drain_deferred_wlh (in libdispatch.dylib) + 332 [0x7fff66f08f5d]
26 _dispatch_queue_invoke (in libdispatch.dylib) + 373 [0x7fff66efb1b6]
26 _dispatch_queue_serial_drain (in libdispatch.dylib) + 222 [0x7fff66f080ca]
26 _dispatch_source_invoke (in libdispatch.dylib) + 620 [0x7fff66ef60d1]
26 _dispatch_continuation_pop (in libdispatch.dylib) + 472 [0x7fff66f06ed1]
26 _dispatch_client_callout (in libdispatch.dylib) + 8 [0x7fff66ef3e08]
26 dispatch_mig_server (in libdispatch.dylib) + 413 [0x7fff66f0001a]
26 _IODispatchCalloutWithDispatch (in IOKit) + 33 [0x7fff413d4e62]
26 IODispatchCalloutFromCFMessage (in IOKit) + 365 [0x7fff413d4fd9]
26 ioAccelCommandQueueBlockFenceCallback (in IOAccelerator) + 44 [0x7fff593602e5]
26 -[_MTLCommandQueue commandBufferDidComplete:startTime:completionTime:error:] (in Metal) + 279 [0x7fff43384faa]
26 ??? (in GeForceMTLDriver) load address 0x7fff3a3d8000 + 0xc4fd6 [0x7fff3a49cfd6]
26 -[MTLIOAccelCommandBuffer didCompleteWithStartTime:endTime:error:] (in Metal) + 104 [0x7fff433397ef]
26 MTLIOAccelCommandBufferStorageDealloc (in Metal) + 24 [0x7fff4337bf96]
25 MTLIOAccelCommandBufferStorageReset (in Metal) + 14 [0x7fff4337c001]
! 25 MTLIOAccelCommandBufferStorageReleaseExtraResources (in Metal) + 58 [0x7fff4337c21b]
! 25 MTLIOAccelPooledResourceRelease (in Metal) + 181 [0x7fff4333e381]
! 25 -[MTLIOAccelResource setPurgeableState:] (in Metal) + 131 [0x7fff43356477]
! 25 IOAccelResourceSetPurgeable (in IOAccelerator) + 106 [0x7fff593606d6]
! 25 IOConnectCallMethod (in IOKit) + 186 [0x7fff413c5c84]
! 25 io_connect_method (in IOKit) + 369 [0x7fff413c5e57]
! 25 mach_msg (in libsystem_kernel.dylib) + 60 [0x7fff67073724]
! 25 mach_msg_trap (in libsystem_kernel.dylib) + 10 [0x7fff6707420a]
1 MTLIOAccelCommandBufferStorageReset (in Metal) + 39 [0x7fff4337c01a]
1 -[MTLResourceList releaseAllObjectsAndReset] (in Metal) + 114 [0x7fff4337c9b1]
1 objc_msgSend (in libobjc.A.dylib) + 26 [0x7fff66305e9a]
Total number in stack (recursive counted multiple, when >=5):
48 _pthread_body (in libsystem_pthread.dylib) + 340 [0x7fff67245661]
48 _pthread_start (in libsystem_pthread.dylib) + 377 [0x7fff6724550d]
48 thread_start (in libsystem_pthread.dylib) + 13 [0x7fff67244bf9]
37 semaphore_wait_trap (in libsystem_kernel.dylib) + 0 [0x7fff6707423c]
34 Thread::RunThreadWrapper(void*) (in PhoenixPoint) + 60 [0x10085ae1c]
33 _dispatch_sema4_wait (in libdispatch.dylib) + 16 [0x7fff66f038e3]
33 _dispatch_semaphore_wait_slow (in libdispatch.dylib) + 101 [0x7fff66efb9c9]
24 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 281 [0x10077cce9]
24 JobQueue::WorkLoop(void*) (in PhoenixPoint) + 9 [0x10077bed9]
11 FMOD::DSPFilter::read(float**, int*, unsigned int*, FMOD_SPEAKERMODE, int, unsigned int) (in PhoenixPoint) + 324 [0x101563664]
10 JobQueue::Exec(JobInfo*, long long, int) (in PhoenixPoint) + 122 [0x10077c55a]
7 __psynch_cvwait (in libsystem_kernel.dylib) + 0 [0x7fff6707da14]
7 _pthread_cond_wait (in libsystem_pthread.dylib) + 732 [0x7fff67246589]
7 start_wqthread (in libsystem_pthread.dylib) + 13 [0x7fff67244be9]
6 GC_inner_start_routine (in libmonobdwgc-2.0.dylib) + 90 [0x10aa5eac5]
6 GC_start_routine (in libmonobdwgc-2.0.dylib) + 28 [0x10aa5ea5d]
6 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 126 [0x10077cc4e]
6 inner_start_thread (in libmonobdwgc-2.0.dylib) + 128 [0x10aa3be4a]
6 mach_msg (in libsystem_kernel.dylib) + 60 [0x7fff67073724]
6 mach_msg_trap (in libsystem_kernel.dylib) + 0 [0x7fff67074200]
5 JobQueue::ExecuteJobFromQueue() (in PhoenixPoint) + 94 [0x10077cb5e]
5 JobQueue::ProcessJobs(void*) (in PhoenixPoint) + 152 [0x10077cc68]
5 __workq_kernreturn (in libsystem_kernel.dylib) + 0 [0x7fff6707e288]
5 start_wrapper (in libmonobdwgc-2.0.dylib) + 337 [0x10a9d7dd8]
Sort by top of stack, same collapsed (when >= 5):
semaphore_wait_trap (in libsystem_kernel.dylib) 19171
__psynch_cvwait (in libsystem_kernel.dylib) 3594
mach_msg_trap (in libsystem_kernel.dylib) 2068
__workq_kernreturn (in libsystem_kernel.dylib) 1912
__select (in libsystem_kernel.dylib) 519
__semwait_signal (in libsystem_kernel.dylib) 517
__ulock_wait (in libsystem_kernel.dylib) 25
_platform_memmove$VARIANT$Haswell (in libsystem_platform.dylib) 12
IntersectAABBPlaneBoundsOptimized(AABB const&, float vector[4] const*, int) (in PhoenixPoint) 5
Binary Images:
0x100000000 - 0x1018567a7 +com.Company.ProductName (1.0 - 0) <DD8CF935-E7B4-37DD-AA66-9A68143F5403> /var/folders/qk/4jb_9w596ll25ykrw96sscpm0000gp/T/AppTranslocation/6B091A5F-283A-42ED-80E4-A493C6CB5C53/d/PhoenixPoint.app/Contents/MacOS/PhoenixPoint
0x10a2da000 - 0x10a2e7ff7 com.apple.iokit.IOHIDLib (2.0.0 - 2.0.0) <0EE39934-EEA4-3A7D-AF86-7B6D6470EEC1> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Contents/MacOS/IOHIDLib
0x10a798000 - 0x10a7e29df dyld (551.3) <AFAB4EFA-7020-34B1-BBEF-0F26C6D3CA36> /usr/lib/dyld
0x10a836000 - 0x10ab4dfff +libmonobdwgc-2.0.dylib (0) <4C528144-4CBD-31C5-AAD7-2052C1C57723> /var/folders/qk/4jb_9w596ll25ykrw96sscpm0000gp/T/AppTranslocation/6B091A5F-283A-42ED-80E4-A493C6CB5C53/d/PhoenixPoint.app/Contents/Frameworks/MonoBleedingEdge/MonoEmbedRuntime/osx/libmonobdwgc-2.0.dylib
0x10ae33000 - 0x10ae37ffb com.apple.audio.AppleHDAHALPlugIn (281.51 - 281.51) <DCCD4E19-B09A-36D6-A19D-2549FCD7D5F0> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
0x10daa8000 - 0x10daaafff AppleIntelHSWVA (10.32.48) <FD2E6A57-A512-356A-BE16-9B276C39A303> /System/Library/Extensions/AppleIntelHSWVA.bundle/Contents/MacOS/AppleIntelHSWVA
0x11a200000 - 0x11a3a8fff com.apple.audio.units.Components (1.14 - 1.14) <540CC580-7CEE-3B00-ADF7-F6BFBBF70999> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
0x1f37eb000 - 0x1f39bbfff com.apple.AppleIntelHD5000GraphicsVADriver (10.32.48 - 10.3.2) <B29FC545-0808-312C-96C1-30CEA0F27645> /System/Library/Extensions/AppleIntelHD5000GraphicsVADriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsVADriver
0x1f3a58000 - 0x1f3af8fff com.apple.GeForceVADriver (10.30.25 - 10.3.0) <34A333AC-4433-36D3-B729-0CE0BD1B7AF7> /System/Library/Extensions/GeForceVADriver.bundle/Contents/MacOS/GeForceVADriver
0x7fff3714b000 - 0x7fff37499fff com.apple.RawCamera.bundle (8.03.0 - 1017.3.4) <FC6A4AFD-2F60-3006-9C42-577F62F9B2A4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x7fff38aa8000 - 0x7fff38b2dff7 com.apple.driver.AppleIntelHD5000GraphicsMTLDriver (10.32.48 - 10.3.2) <22E85FE9-9836-3487-A6FC-19C545C73B31> /System/Library/Extensions/AppleIntelHD5000GraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsMTLDriver
0x7fff3a3d8000 - 0x7fff3a57aff7 com.apple.GeForceMTLDriver (10.30.25 - 10.3.0) <1C84917A-3E3C-3A66-9531-0BE51DAFA62D> /System/Library/Extensions/GeForceMTLDriver.bundle/Contents/MacOS/GeForceMTLDriver
0x7fff3ad6d000 - 0x7fff3af4cfff com.apple.avfoundation (2.0 - 1535.42) <A4E74521-3C02-329A-BCB7-C2C4308DECD4> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff3af4d000 - 0x7fff3b006fff com.apple.audio.AVFAudio (1.0 - ???) <ECE63BA3-4344-3522-904B-71F89677AC7D> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
0x7fff3b10c000 - 0x7fff3b10cfff com.apple.Accelerate (1.11 - Accelerate 1.11) <8632A9C5-19EA-3FD7-A44D-80765CC9C540> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff3b10d000 - 0x7fff3b123fef libCGInterfaces.dylib (417.2) <ED0EAE3C-D963-3DF7-A408-4F00FF1C8C34> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
0x7fff3b124000 - 0x7fff3b622fc3 com.apple.vImage (8.1 - ???) <A243A7EF-0C8E-3A9A-AA38-44AFD7507F00> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff3b623000 - 0x7fff3b77dfe3 libBLAS.dylib (1211.50.2) <62C659EB-3E32-3B5F-83BF-79F5DF30D5CE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff3b77e000 - 0x7fff3b7acfef libBNNS.dylib (38.1) <7BAEFDCA-3227-3E07-80D8-59B6370B89C6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
0x7fff3b7ad000 - 0x7fff3bb6cff7 libLAPACK.dylib (1211.50.2) <40ADBA5F-8B2D-30AC-A7AD-7B17C37EE52D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff3bb6d000 - 0x7fff3bb82ff7 libLinearAlgebra.dylib (1211.50.2) <E8E0B7FD-A0B7-31E5-AF01-81781F71EBBE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff3bb83000 - 0x7fff3bb88ff3 libQuadrature.dylib (3) <3D6BF66A-55B2-3692-BAC7-DEB0C676ED29> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
0x7fff3bb89000 - 0x7fff3bc09fff libSparse.dylib (79.50.2) <0DC25CDD-F8C1-3D6E-B472-8B060708424F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
0x7fff3bc0a000 - 0x7fff3bc1dfff libSparseBLAS.dylib (1211.50.2) <722573CC-31CC-34B2-9032-E4F652A9CCFE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fff3bc1e000 - 0x7fff3bdcbfc3 libvDSP.dylib (622.50.5) <40690941-CF89-3F90-A0AC-A4D200744A5D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff3bdcc000 - 0x7fff3be7dfff libvMisc.dylib (622.50.5) <BA2532DF-2D68-3DD0-9B59-D434BF702AA4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff3be7e000 - 0x7fff3be7efff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <54FF3B43-E66C-3F36-B34B-A2B3B0A36502> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff3c171000 - 0x7fff3cfcffff com.apple.AppKit (6.9 - 1561.40.112) <C839B0C1-F7EE-3056-985C-63CF1A030EC4> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff3d021000 - 0x7fff3d021fff com.apple.ApplicationServices (48 - 50) <8DA47D38-B07B-3AE2-B343-4579864430C6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff3d022000 - 0x7fff3d088fff com.apple.ApplicationServices.ATS (377 - 445.3) <000C4E9F-E0D9-371D-B304-83BA37460724> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff3d121000 - 0x7fff3d243fff libFontParser.dylib (222.1.4) <FF68FAF6-70BB-3E39-A263-E17B6F5E00D0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff3d244000 - 0x7fff3d28eff7 libFontRegistry.dylib (221.3) <C84F7112-4764-3F4B-9FBA-4A022CF6346B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff3d333000 - 0x7fff3d366ff7 libTrueTypeScaler.dylib (222.1.4) <4734ECD6-6F41-3A16-AE35-265BDC1572C5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x7fff3d3d0000 - 0x7fff3d3d4ff3 com.apple.ColorSyncLegacy (4.13.0 - 1) <A5FB2694-1559-34A8-A3D3-2029F68A63CA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
0x7fff3d474000 - 0x7fff3d4c6ffb com.apple.HIServices (1.22 - 624) <828E189A-62F9-3961-8A89-22F508870CC5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff3d4c7000 - 0x7fff3d4d5fff com.apple.LangAnalysis (1.7.0 - 1.7.0) <B65FF7E6-E9B5-34D8-8CA7-63D415A8A9A6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff3d4d6000 - 0x7fff3d522fff com.apple.print.framework.PrintCore (13.4 - 503.2) <B90C67C1-0292-3CEC-885D-F1882CD104BE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff3d523000 - 0x7fff3d55dfff com.apple.QD (3.12 - 404.2) <38B20AFF-9D54-3B52-A6DC-C0D71380AA5F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff3d55e000 - 0x7fff3d56afff com.apple.speech.synthesis.framework (7.5.1 - 7.5.1) <84ADDF38-36F1-3D3B-B28D-8865FA10FCD7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff3d56b000 - 0x7fff3d7f8ff7 com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <87D81714-F167-39F5-B5E7-A7A432EDAB5B> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff3d7fa000 - 0x7fff3d7fafff com.apple.audio.units.AudioUnit (1.14 - 1.14) <513C9A4B-4F6D-3A21-921F-2CA101B97830> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff3db1c000 - 0x7fff3deb6ff7 com.apple.CFNetwork (897.15 - 897.15) <0C03AF39-3527-3E0D-8413-8E1B2A962F0D> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff3decb000 - 0x7fff3decbfff com.apple.Carbon (158 - 158) <F8B370D9-2103-3276-821D-ACC756167F86> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff3decc000 - 0x7fff3decfffb com.apple.CommonPanels (1.2.6 - 98) <2391761C-5CAA-3F68-86B7-50B37927B104> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff3ded0000 - 0x7fff3e1d5fff com.apple.HIToolbox (2.1.1 - 911.10) <BF7F9C0E-C732-3FB2-9BBC-362888BDA57B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff3e1d6000 - 0x7fff3e1d9ffb com.apple.help (1.3.8 - 66) <DEBADFA8-C189-3195-B0D6-A1F2DE95882A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff3e1da000 - 0x7fff3e1dffff com.apple.ImageCapture (9.0 - 9.0) <23B4916F-3B43-3DFF-B956-FC390EECA284> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff3e1e0000 - 0x7fff3e275ffb com.apple.ink.framework (10.9 - 221) <5206C8B0-22DA-36C9-998E-846EDB626D5B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff3e276000 - 0x7fff3e290ff7 com.apple.openscripting (1.7 - 174) <1B2A1F9E-5534-3D61-83CA-9199B39E8708> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff3e2b1000 - 0x7fff3e2b2fff com.apple.print.framework.Print (12 - 267) <3682ABFB-2561-3419-847D-02C247F4800D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff3e2b3000 - 0x7fff3e2b5ff7 com.apple.securityhi (9.0 - 55006) <C1406B8D-7D05-3959-808F-9C82189CF57F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff3e2b6000 - 0x7fff3e2bcfff com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <2ED8643D-B0C3-3F17-82A2-BBF13E6CBABC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff3e3dd000 - 0x7fff3e3ddfff com.apple.Cocoa (6.11 - 22) <4CF8E31C-B5C7-367B-B73D-1A8AC8E41B7F> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff3e3eb000 - 0x7fff3e4a4fff com.apple.ColorSync (4.13.0 - 3325) <D283C285-447D-3258-A7E4-59532123B8FF> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff3e631000 - 0x7fff3e6c4ff7 com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <6E3F958D-79BB-3658-99AD-59F16BF756F1> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff3e72b000 - 0x7fff3e754ffb com.apple.CoreBluetooth (1.0 - 1) <E1335074-9D07-370E-8440-61C4874BAC56> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff3e755000 - 0x7fff3eaabfef com.apple.CoreData (120 - 851) <A2B59780-FB16-36A3-8EE0-E0EF072454E0> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff3eaac000 - 0x7fff3eb91ff7 com.apple.CoreDisplay (1.0 - 97.16) <FCFB2A8C-7A5E-314B-AA12-04D33656A0E6> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
0x7fff3eb92000 - 0x7fff3f033fef com.apple.CoreFoundation (6.9 - 1452.23) <945E5C0A-86C5-336E-A64F-5BF06E78985A> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff3f035000 - 0x7fff3f645fef com.apple.CoreGraphics (2.0 - 1161.10) <31C36FA0-4026-3347-93FD-71CD7287A6F0> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff3f647000 - 0x7fff3f936fff com.apple.CoreImage (13.0.0 - 579.4.11) <702F8035-26FE-3C78-8587-4C9563E03CC4> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff3fbc5000 - 0x7fff3fcaeff7 com.apple.CoreMedia (1.0 - 2275.61.1) <C440188D-BC13-3E1C-A322-5F1FF70BDB34> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff3fcaf000 - 0x7fff3fcfdfff com.apple.CoreMediaIO (812.0 - 4994) <2FDA2056-D26F-343D-AB91-488CF809FE63> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fff3fcfe000 - 0x7fff3fcfefff com.apple.CoreServices (822.31 - 822.31) <615919A2-AE11-3F27-9A37-FB0CFF8D36B6> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff3fcff000 - 0x7fff3fd73ffb com.apple.AE (735.1 - 735.1) <08EBA184-20F7-3725-AEA6-C314448161C6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff3fd74000 - 0x7fff4004bfff com.apple.CoreServices.CarbonCore (1178.4 - 1178.4) <0D5E19BF-18CB-3FA4-8A5F-F6C787C5EE08> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff4004c000 - 0x7fff40080fff com.apple.DictionaryServices (1.2 - 284.2) <6505B075-41C3-3C62-A4C3-85CE3F6825CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff40081000 - 0x7fff40089ffb com.apple.CoreServices.FSEvents (1239.50.1 - 1239.50.1) <3637CEC7-DF0E-320E-9634-44A442925C65> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff4008a000 - 0x7fff40247ff7 com.apple.LaunchServices (822.31 - 822.31) <BDFAB0FF-C2C6-375B-9E84-E43E267E2F82> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff40248000 - 0x7fff402f8ff7 com.apple.Metadata (10.7.0 - 1191.4.13) <B5C22E70-C265-3C9F-865F-B138994A418D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff402f9000 - 0x7fff40359fff com.apple.CoreServices.OSServices (822.31 - 822.31) <690E3C93-8799-39FF-8663-190A49B002E3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff4035a000 - 0x7fff403c8fff com.apple.SearchKit (1.4.0 - 1.4.0) <3662545A-B1CF-3079-BDCD-C83855CEFEEE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff403c9000 - 0x7fff403edffb com.apple.coreservices.SharedFileList (71.21 - 71.21) <7DB79D78-9925-33F8-96BA-35AB7AEB326A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fff4068e000 - 0x7fff407defff com.apple.CoreText (352.0 - 578.18) <B8454115-2A4B-3585-A7A1-B47A638F2EEB> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff407df000 - 0x7fff40819fff com.apple.CoreVideo (1.8 - 0.0) <86CCC036-51BB-3DD1-9601-D93798BCCD0F> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff4081a000 - 0x7fff408a5ff3 com.apple.framework.CoreWLAN (13.0 - 1350.1) <E862CC02-69D2-3503-887B-B6E8223081E7> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff40b20000 - 0x7fff40b25fff com.apple.DiskArbitration (2.7 - 2.7) <A6450227-DD23-3100-ADBF-DB1C21E979F7> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff40ce6000 - 0x7fff410acfff com.apple.Foundation (6.9 - 1452.23) <E64540AD-1755-3C16-8537-552A00E92541> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff4111c000 - 0x7fff4114cfff com.apple.GSS (4.0 - 2.0) <41087278-74AE-3FA5-8C0E-9C78EB696299> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff4125e000 - 0x7fff41362ffb com.apple.Bluetooth (6.0.5 - 6.0.5f3) <85F1B5A6-03C5-3D5A-90B8-5FC86349E330> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff413c2000 - 0x7fff4145dff7 com.apple.framework.IOKit (2.0.2 - 1445.50.26) <A63CAC8D-BF57-34FD-9A88-2F74546F2000> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff4145f000 - 0x7fff41466ffb com.apple.IOSurface (211.12 - 211.12) <392CA7DE-B365-364E-AF4A-33EC2CC48E6F> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff414bd000 - 0x7fff41636fe7 com.apple.ImageIO.framework (3.3.0 - 1739.1) <E5E88083-26A7-3E48-8EB4-A1F04E0737CE> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff41637000 - 0x7fff4163bffb libGIF.dylib (1739.1) <D39BE184-279C-36AC-B233-EE17CACDEDB3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff4163c000 - 0x7fff41723fef libJP2.dylib (1739.1) <053925CD-59DB-372F-98A8-C2372FF0B899> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff41724000 - 0x7fff41747ff7 libJPEG.dylib (1739.1) <E925D511-B457-3732-9B67-1A7DFB228EA4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff41a23000 - 0x7fff41a49feb libPng.dylib (1739.1) <48633B0C-BE01-3D94-9D9D-A95D50466AF9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff41a4a000 - 0x7fff41a4cffb libRadiance.dylib (1739.1) <A6F1064A-FFFC-3B06-8CBF-5204CDFC41C6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff41a4d000 - 0x7fff41a9bfef libTIFF.dylib (1739.1) <AD819413-29E3-3B2F-8997-2F88A82D9D83> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff42937000 - 0x7fff42950ff7 com.apple.Kerberos (3.0 - 1) <F86DCCDF-93C1-38B3-82C2-477C12E8EE6D> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff42c0e000 - 0x7fff42c15fff com.apple.MediaAccessibility (1.0 - 114) <9F72AACD-BAEB-3646-BD0F-12C47591C20D> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff42cc1000 - 0x7fff43328ff7 com.apple.MediaToolbox (1.0 - 2275.61.1) <E92B8487-AE1C-3EA9-A80B-99B43AD75FC0> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff4332a000 - 0x7fff433abff7 com.apple.Metal (125.25 - 125.25) <B2ECA050-4C13-3EAD-A1C8-AC21EFF122F1> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x7fff433c8000 - 0x7fff433e3fff com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <0B4455FE-5C97-345C-B416-325EC6D88A2A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
0x7fff433e4000 - 0x7fff43453fef com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <87F14199-C445-34C2-90F8-57C29212483E> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
0x7fff43454000 - 0x7fff43478fff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <BD50FD9C-CE92-34AF-8663-968BF89202A0> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
0x7fff43479000 - 0x7fff43560ff7 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <FBDDCAE6-EC6E-361F-B924-B3EBDEAC2D2F> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
0x7fff43561000 - 0x7fff43561ff7 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <20ECB52B-B5C2-39EA-88E3-DFEC0C3CC9FF> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
0x7fff44560000 - 0x7fff4456cffb com.apple.NetFS (6.0 - 4.0) <471DD96F-FA2E-3FE9-9746-2519A6780D1A> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff4735e000 - 0x7fff473acfff com.apple.opencl (2.8.15 - 2.8.15) <83ED39D0-1D39-3593-BA25-70A8A911DE71> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff473ad000 - 0x7fff473c9ffb com.apple.CFOpenDirectory (10.13 - 207.50.1) <C2715A7A-2E5C-3A21-ADB4-726F707A1294> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff473ca000 - 0x7fff473d5fff com.apple.OpenDirectory (10.13 - 207.50.1) <220FB6F2-4892-3A66-8838-C134CF657D3A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff48554000 - 0x7fff48556fff libCVMSPluginSupport.dylib (16.5.10) <BF5D065A-A38B-3446-9418-799F598072EF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff48557000 - 0x7fff4855cffb libCoreFSCache.dylib (162.6.1) <879B2738-2E8A-3596-AFF8-9C3FB1B6828B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x7fff4855d000 - 0x7fff48561fff libCoreVMClient.dylib (162.6.1) <64ED0A84-225F-39BC-BE0D-C896ACF5B50A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff48562000 - 0x7fff4856bff7 libGFXShared.dylib (16.5.10) <6024B1FE-ACD7-3314-B390-85972CB9B778> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff4856c000 - 0x7fff48577fff libGL.dylib (16.5.10) <AB8B6C73-8496-3784-83F6-27737ED03B09> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff48578000 - 0x7fff485b3fe7 libGLImage.dylib (16.5.10) <5B41D074-3132-3587-91B6-E441BA8C9F13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff48721000 - 0x7fff4875fffb libGLU.dylib (16.5.10) <F6844912-1B86-34DF-9FB5-A428CC7B5B18> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff490d7000 - 0x7fff490e6fff com.apple.opengl (16.5.10 - 16.5.10) <BC4EEFE3-A09B-3998-B723-1415B995B0EE> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff49f35000 - 0x7fff4a180ff7 com.apple.QuartzCore (1.11 - 584.40) <ABC7F8FA-5F5A-31F4-868B-FDC4175BAFAC> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff4a9b4000 - 0x7fff4acdcfff com.apple.security (7.0 - 58286.51.6) <7212D257-5324-3DBA-8C26-504D6B8F632A> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff4acdd000 - 0x7fff4ad69ff7 com.apple.securityfoundation (6.0 - 55185.50.5) <087D601E-7813-3F9E-97EE-BC7081F520BD> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff4ad9b000 - 0x7fff4ad9fffb com.apple.xpc.ServiceManagement (1.0 - 1) <5BFDB3ED-73A7-3035-A5BC-ADA6E4F74BFD> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff4b144000 - 0x7fff4b1b4ff3 com.apple.SystemConfiguration (1.17 - 1.17) <8532B8E9-7E30-35A3-BC4A-DDE8E0614FDA> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff4b369000 - 0x7fff4b6e4fff com.apple.VideoToolbox (1.0 - 2275.61.1) <B8E60F20-DEB7-38CA-B294-FD1DB3F233EC> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff4e0a5000 - 0x7fff4e138ff7 com.apple.APFS (1.0 - 1) <D1CE52E0-45C0-30C4-B440-E2CF2F74CEE5> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
0x7fff4ed53000 - 0x7fff4ed7bfff com.apple.framework.Apple80211 (13.0 - 1361.7) <16627876-8CF5-3502-A1D6-35FCBDD5E79A> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff4ed7d000 - 0x7fff4ed8cfef com.apple.AppleFSCompression (96.30.2 - 1.0) <ABFF224B-22D6-35F6-A072-9548FD388EB7> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff4ed8d000 - 0x7fff4ee75fff com.apple.AppleGVAFramework (11.5.24 - 11.5.24) <D2412FDD-A8D8-3DDD-AB16-EF7338289B46> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
0x7fff4eece000 - 0x7fff4ef16ff3 com.apple.AppleJPEG (1.0 - 1) <8DD410CB-76A1-3F22-9A9F-0491FA0CEB4A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff4ef51000 - 0x7fff4ef79fff com.apple.applesauce (1.0 - ???) <CCA8B094-1BCE-3AE3-A0A7-D544C818DE36> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
0x7fff4f046000 - 0x7fff4f096ff7 com.apple.AppleVAFramework (5.0.41 - 5.0.41) <8169ABC4-56F0-301E-B913-A762F7E40DBF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff4f799000 - 0x7fff4f7a0ff7 com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <51A41CA3-DB1D-3380-993E-99C54AEE518E> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
0x7fff4f7a1000 - 0x7fff4f828ff7 com.apple.backup.framework (1.9.5 - 1.9.5) <BC020BDD-7C93-37E5-A762-4FDCBD2056A8> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff511de000 - 0x7fff511e7ff3 com.apple.CommonAuth (4.0 - 2.0) <4D237B25-27E5-3577-948B-073659F6D3C0> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff51523000 - 0x7fff5192bfff com.apple.CoreAUC (259.0.0 - 259.0.0) <1E0FB2C7-109E-3924-8E7F-8C6ACD78AF26> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff5192c000 - 0x7fff5195cff7 com.apple.CoreAVCHD (5.9.0 - 5900.4.1) <E9FF9574-122A-3966-AA2B-546E512ACD06> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff51cea000 - 0x7fff51cfaff7 com.apple.CoreEmoji (1.0 - 69.3) <A4357F5C-0C38-3A61-B456-D7321EB2CEE5> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
0x7fff52bd8000 - 0x7fff52c09ff3 com.apple.CoreServicesInternal (309.1 - 309.1) <EB09CAFC-AE9B-3257-BE45-5471D9F64AAD> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff52f45000 - 0x7fff52fd6fff com.apple.CoreSymbolication (9.3 - 64026) <BAF3CE6E-8140-3159-BF1B-B953816459A0> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff53059000 - 0x7fff5318dfff com.apple.coreui (2.1 - 494.1) <19624CAA-74DE-3DD3-9585-E64BE866EBFF> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff5318e000 - 0x7fff532beff7 com.apple.CoreUtils (5.5 - 550.44) <DFC364C3-0812-31B5-9C79-C81C2DFDDB8B> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff53313000 - 0x7fff53377fff com.apple.framework.CoreWiFi (13.0 - 1350.1) <6EC5DEB3-6E2F-3DC2-BE59-1FD05175FB0C> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff53378000 - 0x7fff53388ff7 com.apple.CrashReporterSupport (10.13 - 1) <42451386-F745-38B9-896F-49996B26D066> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport