[R-SIG-Mac] Large number calculations causing system crash
Carl Witthoft
c@r| @end|ng |rom w|ttho|t@com
Wed Feb 9 16:01:48 CET 2022
First, the function in use:
(this is an ancient series approximation for pi)
mnilak <- function(K, init = 3, kmpbits = 400){
# if starting w/ init != 3, have to allow k to be a pair for start and
# end term numbers
if (length(K) < 2 ) {
K <- 1:K
} else{
K <- K[1] : K[2]
}
kterm = 2 * mpfr(K, kmpbits)
init = mpfr(init, kmpbits)
#mpfr is pissy about power function, so
mneg1 <- mpfr(-1,kmpbits)
npi = init + 4 * sum((mneg1)^(kterm/2 +1)/(kterm * (kterm+1) * (kterm+2)))
return (invisible(list(npi = npi, kvals = K)))
}
This first chunk of R code runs fine:
kone <- c(1,2,5,10,20,50,100 , 200,500,1000)
nilone <- list()
kmp = 2e4
for (jone in 1:length(kone)) {
nilone[[jone]] <- mnilak(jone,kmp=kmp)
}
Now I try to run longer sums
nilout <- list()
nilout[[1]] <- nilone[[10]]
ktwo <- c( 1e3,5e3, 1e4, 2e4, 5e4, 1e5, 2e5, 5e5, 1e6, 2e6, 5e6)
kmp = 10000
for (j2 in 1:(length(ktwo)-1) ){
K2 <- c(ktwo[j2]+1, ktwo[j2+1])
nilout[[j2+1]] <- mnilak(K2, init = nilout[[j2]]$npi, kmp=kmp)
}
I've watched as the memory used by R goes over 23 Gig . When I come by
a few minutes later, my iMac (BigSur) has crashed and rebooted. This has
happened repeatedly.
Here is the only crash report file I could find,
"WindowServer_[date]_iMac.crash
Process: WindowServer [3068]
Path:
/System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/Resources/WindowServer
Identifier: WindowServer
Version: 600.00 (588.7)
Code Type: X86-64 (Native)
Parent Process: launchd [1]
Responsible: WindowServer [3068]
User ID: 88
Date/Time: 2022-02-09 07:57:08.034 -0500
OS Version: macOS 11.6 (20G165)
Report Version: 12
Anonymous UUID: 06BC54B2-C024-4D02-B7E8-4A0EA45B9406
Sleep/Wake UUID: FC4C6E20-FC71-465B-AA6D-08F4BA4D8C05
Time Awake Since Boot: 180000 seconds
Time Since Wake: 6200 seconds
System Integrity Protection: enabled
Crashed Thread: 0 Dispatch queue: com.apple.main-thread
Exception Type: EXC_CRASH (SIGKILL)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Termination Reason: WATCHDOG, [0x1] monitoring timed out for service
Termination Details: WATCHDOG, checkin with service: WindowServer
returned not alive with context:
unresponsive work processor(s): WindowServer main thread
40 seconds since last successful checkin, 593 total successsful checkins
since wake (0 induced crashes)
Application Specific Information:
StartTime:2022-02-08 17:04:20
GPU:AMD
MetalDevice for accelerator(0xbf3f): 0x7fa677f22a68 (MTLDevice:
0x7fa67ab79000)
IOService:/AppleACPIPlatformExpert/PCI0 using 0/AppleACPIPCI/PEG0 using 1/IOPP/GFX0 using 0/ATY,Tolten using 0/AMDFramebufferVIB
boot-args:
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 libsystem_platform.dylib 0x00007fff2055410c
_platform_memmove$VARIANT$Haswell + 268
1 com.apple.SkyLight 0x00007fff24e08d23
ManagedBufferPool::EncodeVertexData(void*, unsigned long, unsigned long)
+ 325
2 com.apple.SkyLight 0x00007fff2503d330
emit_colored_verts_for_region(MetalContext*, float, CGSRegionObject*,
float vector[4]) + 408
3 com.apple.SkyLight 0x00007fff2503dd84
CompositorMetal::composite(WSCompositeSourceLayer*,
WSCompositeDestination*, bool, bool) + 322
4 com.apple.SkyLight 0x00007fff2503868b
CompositorMetal::CompositeLayersToDestination(WSCompositeSourceLayer*,
WSCompositeDestination*, unsigned long long) + 229
5 com.apple.SkyLight 0x00007fff2501b8d1
CaptureSurfaceMetal::Populate(WSCompositeSourceLayer*) + 185
6 com.apple.SkyLight 0x00007fff24f6f6a9
WSCALayerBacking::Flatten(double, double) + 2153
7 com.apple.SkyLight 0x00007fff24f41274
WSCAWindowBacking::PopulateFlattenedContent(unsigned int*) + 460
8 com.apple.SkyLight 0x00007fff24fb8896
prepare_CoreAnimation_update_state(CGXConnection*, CGXWindowSubArray,
WSCAPrepareState*) + 6817
9 com.apple.SkyLight 0x00007fff24faeb07 CGXUpdateDisplay +
4726
10 com.apple.SkyLight 0x00007fff24fa78a3
update_display_callback(void*, double) + 1507
11 com.apple.SkyLight 0x00007fff2501120a run_timer_pass + 482
12 com.apple.SkyLight 0x00007fff25011338
non_coalesced_timer_handler + 16
13 com.apple.SkyLight 0x00007fff2504d3a9 post_port_data + 265
14 com.apple.SkyLight 0x00007fff2504cffd
CGXRunOneServicesPass + 1719
15 com.apple.SkyLight 0x00007fff2504dd8f server_loop + 91
16 com.apple.SkyLight 0x00007fff2504db61 SLXServer + 1889
17 WindowServer 0x000000010db7b320 0x10db78000 + 13088
18 libdyld.dylib 0x00007fff2052cf3d start + 1
Thread 1:: com.apple.coreanimation.render-server
0 libsystem_kernel.dylib 0x00007fff204dc2ba mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff204dc62c mach_msg + 60
2 com.apple.QuartzCore 0x00007fff26dbf84c
CA::Render::Server::server_thread(void*) + 498
3 com.apple.QuartzCore 0x00007fff26dbf647 thread_fun(void*) + 25
4 libsystem_pthread.dylib 0x00007fff205118fc _pthread_start + 224
5 libsystem_pthread.dylib 0x00007fff2050d443 thread_start + 15
Thread 2:: Dispatch queue: com.apple.VirtualDisplayListener
0 libsystem_kernel.dylib 0x00007fff204dc2ba mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff204dc62c mach_msg + 60
2 libsystem_kernel.dylib 0x00007fff204e4863
mach_msg_server_once + 255
3 com.apple.CoreDisplay 0x00007fff21794441
-[VirtualDisplayListener rx] + 77
4 libdispatch.dylib 0x00007fff20366623
_dispatch_call_block_and_release + 12
5 libdispatch.dylib 0x00007fff20367806
_dispatch_client_callout + 8
6 libdispatch.dylib 0x00007fff2036d5ea
_dispatch_lane_serial_drain + 606
7 libdispatch.dylib 0x00007fff2036e0ad
_dispatch_lane_invoke + 366
8 libdispatch.dylib 0x00007fff20377c0d
_dispatch_workloop_worker_thread + 811
9 libsystem_pthread.dylib 0x00007fff2050e45d _pthread_wqthread
+ 314
10 libsystem_pthread.dylib 0x00007fff2050d42f start_wqthread + 15
Thread 3:: IOHIDService - RunLoopCompatibilityThread
0 libsystem_kernel.dylib 0x00007fff204dc2ba mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff204dc62c mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff2060949f
__CFRunLoopServiceMachPort + 316
3 com.apple.CoreFoundation 0x00007fff20607b7f __CFRunLoopRun + 1328
4 com.apple.CoreFoundation 0x00007fff20606f8c
CFRunLoopRunSpecific + 563
5 com.apple.CoreFoundation 0x00007fff2068d8b2 CFRunLoopRun + 40
6 com.apple.framework.IOKit 0x00007fff22d1cb77
__IOHIDServiceRunLoopCompatibilityThread + 306
7 libsystem_pthread.dylib 0x00007fff205118fc _pthread_start + 224
8 libsystem_pthread.dylib 0x00007fff2050d443 thread_start + 15
Thread 4:
0 libsystem_kernel.dylib 0x00007fff204dc2ba mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff204dc62c mach_msg + 60
2 com.apple.CoreDisplay 0x00007fff21873e85
CoreDisplay::Mach::Server::Start() + 147
3 com.apple.CoreDisplay 0x00007fff21873fed void*
std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct,
std::__1::default_delete<std::__1::__thread_struct> >, void
(CoreDisplay::Mach::Server::*)(), CoreDisplay::Mach::Server*> >(void*) + 59
4 libsystem_pthread.dylib 0x00007fff205118fc _pthread_start + 224
5 libsystem_pthread.dylib 0x00007fff2050d443 thread_start + 15
Thread 5:
0 libsystem_pthread.dylib 0x00007fff2050d420 start_wqthread + 0
Thread 6:
0 libsystem_pthread.dylib 0x00007fff2050d420 start_wqthread + 0
Thread 7:
0 libsystem_kernel.dylib 0x00007fff204dc30e
semaphore_timedwait_trap + 10
1 libdispatch.dylib 0x00007fff20367d15
_dispatch_sema4_timedwait + 72
2 libdispatch.dylib 0x00007fff20368145
_dispatch_semaphore_wait_slow + 58
3 libdispatch.dylib 0x00007fff20376656
_dispatch_worker_thread + 284
4 libsystem_pthread.dylib 0x00007fff205118fc _pthread_start + 224
5 libsystem_pthread.dylib 0x00007fff2050d443 thread_start + 15
Thread 8:
0 libsystem_kernel.dylib 0x00007fff204dc30e
semaphore_timedwait_trap + 10
1 libdispatch.dylib 0x00007fff20367d15
_dispatch_sema4_timedwait + 72
2 libdispatch.dylib 0x00007fff20368145
_dispatch_semaphore_wait_slow + 58
3 libdispatch.dylib 0x00007fff20376656
_dispatch_worker_thread + 284
4 libsystem_pthread.dylib 0x00007fff205118fc _pthread_start + 224
5 libsystem_pthread.dylib 0x00007fff2050d443 thread_start + 15
Thread 9:
0 libsystem_pthread.dylib 0x00007fff2050d420 start_wqthread + 0
Thread 10:
0 libsystem_pthread.dylib 0x00007fff2050d420 start_wqthread + 0
Thread 11:
0 libsystem_kernel.dylib 0x00007fff204dc30e
semaphore_timedwait_trap + 10
1 libdispatch.dylib 0x00007fff20367d15
_dispatch_sema4_timedwait + 72
2 libdispatch.dylib 0x00007fff20368145
_dispatch_semaphore_wait_slow + 58
3 libdispatch.dylib 0x00007fff20376656
_dispatch_worker_thread + 284
4 libsystem_pthread.dylib 0x00007fff205118fc _pthread_start + 224
5 libsystem_pthread.dylib 0x00007fff2050d443 thread_start + 15
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x00000001ac604000 rbx: 0x00007fa677c12050 rcx:
0x0000000000000020 rdx: 0x00000000000000a0
rdi: 0x00000001ac604020 rsi: 0x00007ffee2075e70 rbp:
0x00007ffee2075db0 rsp: 0x00007ffee2075db0
r8: 0x00007ffee2075e20 r9: 0x00007fa67dda0d68 r10:
0x00007fff85ebb800 r11: 0xffff8002ca58e1b0
r12: 0x00007ffee2075e50 r13: 0x00007fa677ebf490 r14:
0x00000000000000c0 r15: 0x00007fff203af800
rip: 0x00007fff2055410c rfl: 0x0000000000010206 cr2: 0x000070000f583000
Logical CPU: 0
Error Code: 0x01000026
Trap Number: 133
Thread 0 instruction stream not available.
Thread 0 last branch register state not available.
Binary Images:
0x10db78000 - 0x10db7bfff WindowServer (600.00 - 588.7)
<7E7C495A-F3AF-3960-BF1F-907002868052>
/System/Library/PrivateFrameworks/SkyLight.framework/Resources/WindowServer
0x10dc1e000 - 0x10dc29fff
com.apple.iokit.hid.IOHIDNXEventTranslatorSessionFilter (1.0 - 1)
<A785D1F3-7A58-3B60-98CF-3E7DE7721BFF>
/System/Library/HIDPlugins/IOHIDNXEventTranslatorSessionFilter.plugin/Contents/MacOS/IOHIDNXEventTranslatorSessionFilter
0x10dc3e000 - 0x10dc41fff
com.apple.iokit.hid.IOHIDDFREventFilter (1.0 - 1)
<CA61CC1D-6833-3CFA-BFF1-FB42A9410571>
/System/Library/HIDPlugins/IOHIDDFREventFilter.plugin/Contents/MacOS/IOHIDDFREventFilter
0x10dc4e000 - 0x10dc59fff com.apple.IOAnalytics (1.0 -
1) <27C05B54-45CC-3ACA-B910-AFD3C6757D50>
/System/Library/HIDPlugins/SessionFilters/IOAnalytics.plugin/Contents/MacOS/IOAnalytics
0x10dc8b000 - 0x10dc8efff
com.apple.iokit.plugin.AmbientLightSensorHID (344 - 344)
<8CF2B8AB-EB38-36BA-B9B1-CFD6E3008E5F>
/System/Library/Extensions/AppleSMCLMU.kext/Contents/PlugIns/AmbientLightSensorHID.plugin/Contents/MacOS/AmbientLightSensorHID
0x10dc9f000 - 0x10dca2fff
com.apple.iokit.hid.IOHIDNXEventTranslatorServiceFilter (1.0 - 1)
<E012D991-B017-3C5C-8F82-DC43E33AD552>
/System/Library/HIDPlugins/IOHIDNXEventTranslatorServiceFilter.plugin/Contents/MacOS/IOHIDNXEventTranslatorServiceFilter
0x10dcdb000 - 0x10dce2fff
com.apple.iokit.hid.IOHIDEventProcessorFilter (1.0 - 1)
<F237E706-EF35-30A3-A8B5-64A6E6F22B1A>
/System/Library/HIDPlugins/IOHIDEventProcessorFilter.plugin/Contents/MacOS/IOHIDEventProcessorFilter
0x10dcf3000 - 0x10dcf6fff
com.apple.iokit.IOHIDNXEventRouter (2.0.0 - 2.0.0)
<8FEC343D-B347-3F55-B06A-01F2DE08F916>
/System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDNXEventRouter.plugin/Contents/MacOS/IOHIDNXEventRouter
0x10dd0c000 - 0x10dd0ffff
com.apple.IOHIDEventServicePlugin (1.0 - 1)
<5CFDF25A-0BCD-34F9-B72A-5FC751FEB227>
/System/Library/HIDPlugins/ServicePlugins/IOHIDEventServicePlugin.plugin/Contents/MacOS/IOHIDEventServicePlugin
0x10dd25000 - 0x10dd30fff
com.apple.iokit.hid.IOHIDPointerScrollFilter (1.0 - 1)
<1A756695-8167-3117-B8E2-63B07BEC3559>
/System/Library/HIDPlugins/IOHIDPointerScrollFilter.plugin/Contents/MacOS/IOHIDPointerScrollFilter
0x10dd46000 - 0x10dd55fff
com.apple.iokit.hid.IOHIDKeyboardFilter (1.0 - 1)
<DA39297C-3E09-3B25-AE32-17F2F0B80285>
/System/Library/HIDPlugins/IOHIDKeyboardFilter.plugin/Contents/MacOS/IOHIDKeyboardFilter
0x10dde1000 - 0x10dde4fff
com.apple.driver.IOAccelerator2D (442.9 - 442.9)
<C17C466A-431F-33EC-9207-BF4AE1FF207B>
/System/Library/Extensions/IOAccelerator2D.plugin/Contents/MacOS/IOAccelerator2D
0x10df37000 - 0x10df4efff TouchBarEvent.bundle (267)
<22D92B86-5FB2-3808-A8F7-361B67E726DA>
/System/Library/CoreServices/TouchBarEvent.bundle
0x110000000 - 0x110733fff CursorAsset (588.7)
<1A56CDF0-0274-3A28-AB4C-D0491233F2EE>
/System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/Resources/CursorAsset
0x111266000 - 0x111301fff dyld (852.2)
<0CC19410-FD43-39AE-A32A-50273F8303A4> /usr/lib/dyld
0x7fff20249000 - 0x7fff2024afff libsystem_blocks.dylib (79)
<925E3B6D-184D-3E73-97B1-643C4ADB387A>
/usr/lib/system/libsystem_blocks.dylib
0x7fff2024b000 - 0x7fff20280fff libxpc.dylib (2038.120.1)
<FFFB49D7-2CA6-3E1F-AE4E-5697B19B7D76> /usr/lib/system/libxpc.dylib
0x7fff20281000 - 0x7fff20298fff libsystem_trace.dylib
(1277.120.1) <7E800ECA-DFDB-3737-A3C5-FFDE37E65383>
/usr/lib/system/libsystem_trace.dylib
0x7fff20299000 - 0x7fff20336fff libcorecrypto.dylib
(1000.140.4) <D211160D-E22F-3440-8054-1F5824519C7F>
/usr/lib/system/libcorecrypto.dylib
0x7fff20337000 - 0x7fff20363fff libsystem_malloc.dylib
(317.140.5) <050E37E1-1458-3F80-BFA3-F1488570169D>
/usr/lib/system/libsystem_malloc.dylib
0x7fff20364000 - 0x7fff203a8fff libdispatch.dylib (1271.120.2)
<8144B0BD-90D2-3EAE-999F-AB0D14082088> /usr/lib/system/libdispatch.dylib
0x7fff203a9000 - 0x7fff203e2fff libobjc.A.dylib (824)
<8C7C49A1-4211-3E4C-BA3D-160D675EEE96> /usr/lib/libobjc.A.dylib
0x7fff203e3000 - 0x7fff203e5fff libsystem_featureflags.dylib
(28.60.1) <E5C43AE3-19E7-3DAB-8B5D-D79A4B68B5C0>
/usr/lib/system/libsystem_featureflags.dylib
0x7fff203e6000 - 0x7fff2046efff libsystem_c.dylib (1439.141.1)
<3C273899-4CBE-32D5-BB31-7A449743204F> /usr/lib/system/libsystem_c.dylib
0x7fff2046f000 - 0x7fff204c4fff libc++.1.dylib (905.6)
<FD6DB1CB-B14B-3404-8BEB-B459C2F6C303> /usr/lib/libc++.1.dylib
0x7fff204c5000 - 0x7fff204dafff libc++abi.dylib (905.6)
<D0CDDF98-1C04-300F-B685-4A4C59C04C42> /usr/lib/libc++abi.dylib
0x7fff204db000 - 0x7fff2050afff libsystem_kernel.dylib
(7195.141.6) <78289AAE-61B5-339F-A485-8819BC2388F2>
/usr/lib/system/libsystem_kernel.dylib
0x7fff2050b000 - 0x7fff20516fff libsystem_pthread.dylib
(454.120.2) <1268FF2D-A513-3B51-BA65-AF2FF5789DDB>
/usr/lib/system/libsystem_pthread.dylib
0x7fff20517000 - 0x7fff20552fff libdyld.dylib (852.2)
<3DE0178A-0AEE-3D08-AE19-6C6403F69BA1> /usr/lib/system/libdyld.dylib
0x7fff20553000 - 0x7fff2055cfff libsystem_platform.dylib
(254.80.2) <EF52D569-09F5-32E1-B1B3-34E2CA55A017>
/usr/lib/system/libsystem_platform.dylib
0x7fff2055d000 - 0x7fff20588fff libsystem_info.dylib
(542.40.3) <55B39B7F-957B-3D99-A8DF-7CA80D38155D>
/usr/lib/system/libsystem_info.dylib
0x7fff20589000 - 0x7fff20a26fff com.apple.CoreFoundation (6.9
- 1778.101) <8CF9D741-ADFF-3D5E-ACDE-DC342701EE0D>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff20a27000 - 0x7fff20c5cfff com.apple.LaunchServices
(1122.44 - 1122.44) <C285E620-3D2F-3AD0-8A3D-BB1FC540FE44>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff20c5d000 - 0x7fff20d31fff com.apple.gpusw.MetalTools
(1.0 - 1) <C41024C5-01E7-3A66-A1F8-D7BC767260D8>
/System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
0x7fff20d32000 - 0x7fff20f8efff libBLAS.dylib (1336.140.1)
<170AFA22-1234-3DE9-9D94-52B3BE18E34E>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff20f8f000 - 0x7fff20fdcfff com.apple.Lexicon-framework
(1.0 - 86.2) <B7047A55-806D-3B32-A2D6-885D824E54A6>
/System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
0x7fff20fdd000 - 0x7fff2104bfff libSparse.dylib (106)
<1E68BF64-7432-3509-BC85-5DE95379E901>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
0x7fff2104c000 - 0x7fff210c9fff com.apple.SystemConfiguration
(1.20 - 1.20) <8FEB39D4-ACD6-39F2-8D1B-A57CACD5628F>
/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff210ca000 - 0x7fff210fefff libCRFSuite.dylib (50)
<BCDD0ED1-D2F4-3556-B218-4420C7EA47D2> /usr/lib/libCRFSuite.dylib
0x7fff210ff000 - 0x7fff21337fff libmecabra.dylib (929.10)
<D780814D-2BB2-3D84-820E-12E4C23C590E> /usr/lib/libmecabra.dylib
0x7fff21338000 - 0x7fff21696fff com.apple.Foundation (6.9 -
1778.101) <7B7FB88B-01D3-38CE-8029-837DB094C545>
/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff21697000 - 0x7fff2177ffff com.apple.LanguageModeling
(1.0 - 247.3) <DBFAE8CF-36B2-30D8-9E82-6C412CD935B4>
/System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff21780000 - 0x7fff218b6fff com.apple.CoreDisplay (237.4 -
237.4) <556BADE0-D3B0-309C-9740-7FEFBD052B6B>
/System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
0x7fff218b7000 - 0x7fff21b27fff
com.apple.audio.AudioToolboxCore (1.0 - 1181.72)
<5C3B84EE-B281-34C4-832F-78F00CC63B93>
/System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
0x7fff21b28000 - 0x7fff21d0dfff com.apple.CoreText (677.6.0.2
- 677.6.0.2) <10E1382E-7949-3F4E-8B15-A4BD31A75E91>
/System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff21d0e000 - 0x7fff2239ffff com.apple.audio.CoreAudio (5.0
- 5.0) <5EEA9225-4837-37F3-9105-941A5743169F>
/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff223a0000 - 0x7fff226f7fff com.apple.security (7.0 -
59754.140.13) <A196C85A-DB28-3F5B-A415-5BE44AD81668>
/System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff226f8000 - 0x7fff22957fff libicucore.A.dylib (66112)
<AC994BC1-F9CC-359C-A7B5-F2821EAEF650> /usr/lib/libicucore.A.dylib
0x7fff22958000 - 0x7fff22961fff libsystem_darwin.dylib
(1439.141.1) <2C81A009-45BB-30D7-A4F7-4B2EEC691617>
/usr/lib/system/libsystem_darwin.dylib
0x7fff22962000 - 0x7fff22c4dfff
com.apple.CoreServices.CarbonCore (1307.3 - 1307.3)
<2C65E0D8-A9C7-31D8-A3D3-3AC1A91C80A5>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff22c4e000 - 0x7fff22c8cfff com.apple.CoreServicesInternal
(476.1.1 - 476.1.1) <3FC6073F-78E4-3D3B-8765-50E50512C5EB>
/System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff22c8d000 - 0x7fff22cc7fff com.apple.CSStore (1122.44 -
1122.44) <C103DAAA-A966-359B-97F0-BA3BB56ECBF1>
/System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
0x7fff22cc8000 - 0x7fff22d76fff com.apple.framework.IOKit
(2.0.2 - 1845.120.6) <720D9AE1-79D6-3E77-8D7A-47F8F6681050>
/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff22d77000 - 0x7fff22d82fff libsystem_notify.dylib
(279.40.4) <2E40EA4A-B124-3010-8379-1B4D7082A08F>
/usr/lib/system/libsystem_notify.dylib
0x7fff22d83000 - 0x7fff22dd0fff libsandbox.1.dylib
(1441.141.4) <C291C059-F7E4-3C20-BCBF-60F7011F0718>
/usr/lib/libsandbox.1.dylib
0x7fff22dd1000 - 0x7fff23b1cfff com.apple.AppKit (6.9 -
2022.60.128) <02EC69A0-D634-341B-BE3D-840F496F5814>
/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff23b1d000 - 0x7fff23d6bfff com.apple.UIFoundation (1.0 -
728.9) <C2E04F0F-AEAA-3B77-9BBA-1CF628341A56>
/System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff23d6c000 - 0x7fff23d7efff
com.apple.UniformTypeIdentifiers (637 - 637)
<8FFD3B69-0840-34D6-83AD-7D521B1A2339>
/System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers
0x7fff241e9000 - 0x7fff2486ffff libnetwork.dylib (2288.140.7)
<42825FCA-35A1-352F-AE68-19D8F695604B> /usr/lib/libnetwork.dylib
0x7fff24870000 - 0x7fff24d0efff com.apple.CFNetwork (1240.0.4
- 1240.0.4) <E4BF9BFF-798B-33FF-B37D-6D8175CA708A>
/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff24d0f000 - 0x7fff24d1dfff
libsystem_networkextension.dylib (1295.140.3)
<83AA4425-2F1D-36EC-B77B-8D4F03CDDB68>
/usr/lib/system/libsystem_networkextension.dylib
0x7fff24d1e000 - 0x7fff24d1efff libenergytrace.dylib
(22.100.1) <9E877E0A-5261-3F75-91A0-521423499AD0>
/usr/lib/libenergytrace.dylib
0x7fff24d1f000 - 0x7fff24d7bfff libMobileGestalt.dylib
(978.140.1) <D1FF79C3-4B2F-32FB-BF25-9F0B9E160692>
/usr/lib/libMobileGestalt.dylib
0x7fff24d7c000 - 0x7fff24d92fff libsystem_asl.dylib (385)
<8D324D65-EE16-3A1A-BD39-ACB1B3050D1F> /usr/lib/system/libsystem_asl.dylib
0x7fff24d93000 - 0x7fff24dabfff com.apple.TCC (1.0 - 1)
<18F48712-FFF0-3B30-B2C4-8A93AEF86A34>
/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff24dac000 - 0x7fff25111fff com.apple.SkyLight (1.600.0 -
588.7) <5F88F814-A3DF-3446-8B35-F0CDD8C1B302>
/System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
0x7fff25112000 - 0x7fff2579bfff com.apple.CoreGraphics (2.0 -
1463.17.3) <5EDF86BC-FFDE-3906-9674-142C113B34EF>
/System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff2579c000 - 0x7fff25892fff com.apple.ColorSync (4.13.0 -
3473.4.3) <102C423C-E05F-317B-83AE-A2A6B77D653B>
/System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff25893000 - 0x7fff258eefff com.apple.HIServices (1.22 -
716) <B2D34F3F-0CEB-35F1-9B32-E0806CF3FC91>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff25c95000 - 0x7fff260b4fff com.apple.CoreData (120 -
1048) <33DE1B26-D4C6-3939-B12E-88897660BB38>
/System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff260b5000 - 0x7fff260cafff com.apple.ProtocolBuffer (1 -
285.24.10.20.1) <AEDEFF64-CA8A-365C-900F-3107383F91D9>
/System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff260cb000 - 0x7fff2627efff libsqlite3.dylib (321.3)
<E7377C46-DA4F-3486-B935-0A35C3637215> /usr/lib/libsqlite3.dylib
0x7fff262fc000 - 0x7fff26313fff com.apple.commonutilities (8.0
- 900) <98B456F4-8F4F-387B-B3BB-D3919295AE1D>
/System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
0x7fff26314000 - 0x7fff26393fff com.apple.BaseBoard (526 -
526) <F9D85C3A-D0D6-351B-A6EE-5416CB90179D>
/System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
0x7fff26394000 - 0x7fff263dcfff com.apple.RunningBoardServices
(1.0 - 505.100.9) <2ED406CD-2253-33F0-B16A-694DB447CADC>
/System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
0x7fff263dd000 - 0x7fff26451fff com.apple.AE (918.6 - 918.6)
<C5130BB4-18E7-3804-A9D9-915D318426A5>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff26452000 - 0x7fff26458fff libdns_services.dylib
(1310.140.1) <22BE5030-2F48-3ED6-9DF8-9D102CEF33FF>
/usr/lib/libdns_services.dylib
0x7fff26459000 - 0x7fff26460fff libsystem_symptoms.dylib
(1431.140.1) <1B4D8837-C951-3B69-B079-85D477749E8B>
/usr/lib/system/libsystem_symptoms.dylib
0x7fff26461000 - 0x7fff265ecfff com.apple.Network (1.0 - 1)
<2155E1AA-2067-36CF-979E-2F96062D5CFE>
/System/Library/Frameworks/Network.framework/Versions/A/Network
0x7fff265ed000 - 0x7fff2661cfff com.apple.analyticsd (1.0 - 1)
<0DF60ECD-742C-39D1-964A-48EC3DEA6319>
/System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
0x7fff2661d000 - 0x7fff2661ffff
libDiagnosticMessagesClient.dylib (112)
<A7EC7265-E13C-3C98-81EE-3EFB5CC65AB0>
/usr/lib/libDiagnosticMessagesClient.dylib
0x7fff26620000 - 0x7fff2666cfff
com.apple.spotlight.metadata.utilities (1.0 - 2150.26)
<F709AE5E-AF80-3C9B-A3D3-B779164FBA95>
/System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
0x7fff2666d000 - 0x7fff26707fff com.apple.Metadata (10.7.0 -
2150.26) <D7CE41CA-DDE7-32BE-926C-0DC3048C5E11>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff26708000 - 0x7fff2670efff com.apple.DiskArbitration (2.7
- 2.7) <8DF059B4-BE32-3171-8CC4-C5FA189FA718>
/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff2670f000 - 0x7fff26d76fff com.apple.vImage (8.1 - 544.4)
<E62F9E4F-9A1D-3004-B7F4-6F83F71144C2>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff26d77000 - 0x7fff27054fff com.apple.QuartzCore (1.11 -
927.24) <88794856-F1F1-3D23-BDDB-0AE28A1D6D6E>
/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff27055000 - 0x7fff27096fff libFontRegistry.dylib (309)
<300F2208-7274-38F8-B88D-9237BA6B397E>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff27097000 - 0x7fff271d7fff com.apple.coreui (2.1 - 692.1)
<BC5D8EAA-7CE8-35F3-8EAD-075B18D9606C>
/System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff272c4000 - 0x7fff272cffff com.apple.PerformanceAnalysis
(1.278.3 - 278.3) <6AF20F05-FF15-3174-A504-1AC16BA14729>
/System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff272d0000 - 0x7fff272dffff com.apple.OpenDirectory (11.6
- 230.40.1) <84B2D11F-E6C4-3C29-9A9A-939DB906E2F5>
/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff272e0000 - 0x7fff272fffff com.apple.CFOpenDirectory
(11.6 - 230.40.1) <6BE3204F-2F86-34A7-AD79-4C88320F446F>
/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff27300000 - 0x7fff2730cfff
com.apple.CoreServices.FSEvents (1290.120.5 - 1290.120.5)
<DC473A17-310F-3C16-B545-F75CE3F6D39D>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff2730d000 - 0x7fff27331fff
com.apple.coreservices.SharedFileList (144 - 144)
<A13B58B8-6D7A-3F1B-AFB5-E41E0A6B4B81>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fff27332000 - 0x7fff27334fff
libapp_launch_measurement.dylib (14.1)
<511EC2A9-6059-3A7D-9D2A-741189922D02>
/usr/lib/libapp_launch_measurement.dylib
0x7fff27335000 - 0x7fff2737cfff com.apple.CoreAutoLayout (1.0
- 21.10.1) <18113C8E-B54E-3DD3-A1AD-2A5FD949CE66>
/System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout
0x7fff2737d000 - 0x7fff2745ffff libxml2.2.dylib (34.10)
<DD2093F0-F9B7-3F30-B46D-B028CE15E2B1> /usr/lib/libxml2.2.dylib
0x7fff27460000 - 0x7fff274adfff com.apple.CoreVideo (1.8 -
414.7) <EE991A40-DE38-3B13-891E-A51987D5CD70>
/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff274ae000 - 0x7fff274b0fff com.apple.loginsupport (1.0 -
1) <4C358D8E-4BB8-3DD8-8A72-11BD80607BDE>
/System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff28468000 - 0x7fff28478fff
libsystem_containermanager.dylib (318.100.4)
<1139CD47-9CBA-356F-8694-1D00EB9F0C8F>
/usr/lib/system/libsystem_containermanager.dylib
0x7fff28479000 - 0x7fff2848afff com.apple.IOSurface (290.8.1 -
290.8.1) <8B251196-DA38-38BF-8A91-45AC2B06014C>
/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff2848b000 - 0x7fff28494fff com.apple.IOAccelerator (442.9
- 442.9) <F2C3DC87-49D7-3A67-8E6D-12D75D98EFDD>
/System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fff28495000 - 0x7fff285b8fff com.apple.Metal (244.303 -
244.303) <71B6039E-232E-3AD2-881F-DF8E73C75B99>
/System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x7fff285b9000 - 0x7fff285d5fff com.apple.audio.caulk (1.0 -
70) <F6A09FF3-1DC7-302C-86E3-B2DD9B7130A9>
/System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
0x7fff285d6000 - 0x7fff286c0fff com.apple.CoreMedia (1.0 -
2780.10) <6A003180-F8AA-3DFA-B095-61D8E859FE3F>
/System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff286c1000 - 0x7fff2881dfff libFontParser.dylib
(305.6.0.4) <C3E552F6-72AD-3F3A-B217-E44A5C565240>
/System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x7fff2881e000 - 0x7fff28b19fff com.apple.HIToolbox (2.1.1 -
1062) <DEF01A0C-8B9D-359E-9FE7-B15D551888DC>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff28b1a000 - 0x7fff28b2dfff
com.apple.framework.DFRFoundation (1.0 - 267)
<EBFDDB28-7661-3B50-BC15-736C5DF05AB3>
/System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
0x7fff28b2e000 - 0x7fff28b31fff
com.apple.dt.XCTTargetBootstrap (1.0 - 18119.1)
<DD9E09C3-B658-3BD2-8229-E3E3C5D85552>
/System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
0x7fff28b32000 - 0x7fff28b5bfff com.apple.CoreSVG (1.0 - 149)
<C4DC952A-9373-33E5-8A98-F008986B0420>
/System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
0x7fff28b5c000 - 0x7fff28d98fff com.apple.ImageIO (3.3.0 -
2130.7.3) <28C6A501-2548-3187-A13B-9F314280BBB8>
/System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff28d99000 - 0x7fff29114fff com.apple.CoreImage (16.3.0 -
1140.2) <3ED3F244-632C-383D-89B0-50F2E0FDBA40>
/System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff29115000 - 0x7fff2917bfff
com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1)
<C12F8828-6D1E-3820-BBF7-80EEA978AE9C>
/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSCore.framework/Versions/A/MPSCore
0x7fff2917c000 - 0x7fff2917ffff libsystem_configuration.dylib
(1109.140.1) <02F3A5C9-6289-3012-8F5F-F1DB669ADB79>
/usr/lib/system/libsystem_configuration.dylib
0x7fff29180000 - 0x7fff29184fff libsystem_sandbox.dylib
(1441.141.4) <5471601B-5072-3E97-8926-804FF08DC4C0>
/usr/lib/system/libsystem_sandbox.dylib
0x7fff29185000 - 0x7fff29186fff com.apple.AggregateDictionary
(1.0 - 1) <B25A1764-0BBC-388B-8FB4-A8FBB8F51C10>
/System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
0x7fff29187000 - 0x7fff2918afff com.apple.AppleSystemInfo
(3.1.5 - 3.1.5) <4A803F86-CA61-3508-864A-302F032ADA70>
/System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fff2918b000 - 0x7fff2918cfff liblangid.dylib (136)
<F4019132-A63D-3A38-A8DB-974C6F1311ED> /usr/lib/liblangid.dylib
0x7fff2918d000 - 0x7fff29231fff com.apple.CoreNLP (1.0 -
245.2) <203C6AB9-5B07-3370-A056-DA1F2C8A8419>
/System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
0x7fff29232000 - 0x7fff29238fff com.apple.LinguisticData (1.0
- 399) <AB85B59F-3047-37EC-AB9E-835D87BACF73>
/System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
0x7fff29239000 - 0x7fff298e1fff libBNNS.dylib (288.100.5)
<4BB7A1B7-D1F2-3DC3-BFC7-D57CBD892719>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
0x7fff298e2000 - 0x7fff29ab4fff libvDSP.dylib (760.100.3)
<DA809F3E-9391-3BE0-98C6-061CCACA809A>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff29ab5000 - 0x7fff29ac6fff com.apple.CoreEmoji (1.0 -
128.4) <8DB42230-A624-3C13-80F8-EC2CE89C0699>
/System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
0x7fff29ac7000 - 0x7fff29ad1fff com.apple.IOMobileFramebuffer
(343.0.0 - 343.0.0) <195E20E7-33BD-3935-92ED-AA354180B7FA>
/System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer
0x7fff29dca000 - 0x7fff29ddafff com.apple.AssertionServices
(1.0 - 505.100.9) <850AE031-A3B3-30C0-81A1-71FBCE620BC1>
/System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
0x7fff29ddb000 - 0x7fff29e66fff com.apple.securityfoundation
(6.0 - 55240.40.4) <A7D05091-B54C-317A-81FE-4B174C968C5A>
/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff29e67000 - 0x7fff29e70fff
com.apple.coreservices.BackgroundTaskManagement (1.0 - 104)
<98B365F9-8E0C-32C7-AC5A-FFB9A4A0B30A>
/System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
0x7fff29e71000 - 0x7fff29e75fff
com.apple.xpc.ServiceManagement (1.0 - 1)
<7D081389-0032-3521-A3D9-84B4667817FB>
/System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff29e76000 - 0x7fff29e78fff libquarantine.dylib (119.40.2)
<3244B57B-9FDF-373E-9F96-A7BAD7534F23> /usr/lib/system/libquarantine.dylib
0x7fff29e79000 - 0x7fff29e84fff libCheckFix.dylib (31)
<AAB549BA-1738-33FD-BBC4-C34B5070C309> /usr/lib/libCheckFix.dylib
0x7fff29e85000 - 0x7fff29e9cfff libcoretls.dylib (169.100.1)
<FC2811AD-9D76-3403-B760-32A101D07638> /usr/lib/libcoretls.dylib
0x7fff29e9d000 - 0x7fff29eadfff libbsm.0.dylib (68.40.1)
<61577B7F-2C06-365C-9039-E00B0B5258D0> /usr/lib/libbsm.0.dylib
0x7fff29eae000 - 0x7fff29ef7fff libmecab.dylib (929.10)
<D60C5095-3A5F-3284-9699-08C76DA29CBD> /usr/lib/libmecab.dylib
0x7fff29ef8000 - 0x7fff29efdfff libgermantok.dylib (24)
<6F2B01E8-6077-3B72-91F3-AB6D0FCB15D6> /usr/lib/libgermantok.dylib
0x7fff29efe000 - 0x7fff29f13fff libLinearAlgebra.dylib
(1336.140.1) <A450756D-D3AC-342D-A802-ED6C554A494A>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff29f14000 - 0x7fff2a132fff
com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1)
<8AAFA6C5-1FBD-359A-8774-F1D1FBFCCFFE>
/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
0x7fff2a133000 - 0x7fff2a182fff
com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1)
<0C854684-1D62-35D1-83C1-9066DB158189>
/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
0x7fff2a183000 - 0x7fff2a2e4fff com.apple.MLCompute (1.0 - 1)
<9255AB44-3AB5-3F3F-8FA2-77FEA1C7C221>
/System/Library/Frameworks/MLCompute.framework/Versions/A/MLCompute
0x7fff2a2e5000 - 0x7fff2a31bfff
com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1)
<B7361691-334A-3A33-98E1-A9A623E5D26A>
/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
0x7fff2a31c000 - 0x7fff2a372fff
com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1)
<706E8171-48B3-33A3-B55B-35B5F86F3043>
/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
0x7fff2a373000 - 0x7fff2a403fff
com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1)
<3999E177-7A40-358A-BE89-1F20ADF13740>
/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSImage.framework/Versions/A/MPSImage
0x7fff2a404000 - 0x7fff2a413fff com.apple.AppleFSCompression
(125 - 1.0) <F7163A3A-C4F0-3169-9501-B9AAB8CAE9CD>
/System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff2a414000 - 0x7fff2a420fff libbz2.1.0.dylib (44)
<ECD22F5B-FD6C-39A5-884B-418C6B896263> /usr/lib/libbz2.1.0.dylib
0x7fff2a421000 - 0x7fff2a425fff libsystem_coreservices.dylib
(127.1) <619CCB6D-226C-35BD-98FB-04A18FD54792>
/usr/lib/system/libsystem_coreservices.dylib
0x7fff2a426000 - 0x7fff2a453fff
com.apple.CoreServices.OSServices (1122.44 - 1122.44)
<C547575F-985F-31B8-A61C-79D3A673B8D9>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff2a622000 - 0x7fff2a634fff libz.1.dylib (76)
<F805C1CB-1B80-33D0-994C-1D522D347A68> /usr/lib/libz.1.dylib
0x7fff2a635000 - 0x7fff2a67cfff libsystem_m.dylib (3186.100.3)
<D61B56FE-649B-34A0-8446-25685B2BBBF2> /usr/lib/system/libsystem_m.dylib
0x7fff2a67d000 - 0x7fff2a67dfff libcharset.1.dylib (59)
<363A6C40-7446-3A72-B5EA-4731843CFE2F> /usr/lib/libcharset.1.dylib
0x7fff2a67e000 - 0x7fff2a683fff libmacho.dylib (980)
<A4F4D532-7824-3E4E-8FB6-45617415E7DD> /usr/lib/system/libmacho.dylib
0x7fff2a684000 - 0x7fff2a69ffff libkxld.dylib (7195.141.6)
<1121F83B-5D42-368B-B440-100418CD4B23> /usr/lib/system/libkxld.dylib
0x7fff2a6a0000 - 0x7fff2a6abfff libcommonCrypto.dylib
(60178.120.3) <CF1E0E70-9F6C-3FAF-82B2-D55F7C9EBB03>
/usr/lib/system/libcommonCrypto.dylib
0x7fff2a6ac000 - 0x7fff2a6b6fff libunwind.dylib (201)
<4602E909-C71A-3006-8140-BE616DA241EE> /usr/lib/system/libunwind.dylib
0x7fff2a6b7000 - 0x7fff2a6befff liboah.dylib (203.58)
<F72C2D50-7279-3497-8A59-56908F9661F3> /usr/lib/liboah.dylib
0x7fff2a6bf000 - 0x7fff2a6c9fff libcopyfile.dylib (173.40.2)
<B0F35A80-D5E3-33DD-A47D-ACBFE1300523> /usr/lib/system/libcopyfile.dylib
0x7fff2a6ca000 - 0x7fff2a6d1fff libcompiler_rt.dylib (102.2)
<1C049207-1719-39AC-A2A9-6E5BE28AA138> /usr/lib/system/libcompiler_rt.dylib
0x7fff2a6d2000 - 0x7fff2a6d4fff libsystem_collections.dylib
(1439.141.1) <F2D775D9-AAEF-371F-AA54-CFB882B9B430>
/usr/lib/system/libsystem_collections.dylib
0x7fff2a6d5000 - 0x7fff2a6d7fff libsystem_secinit.dylib
(87.60.1) <EB4516ED-1F8B-3E8A-8C4B-B209A33DCCEF>
/usr/lib/system/libsystem_secinit.dylib
0x7fff2a6d8000 - 0x7fff2a6dafff libremovefile.dylib (49.120.1)
<1AEE3D84-32F9-35FB-8036-B178C9E27D20> /usr/lib/system/libremovefile.dylib
0x7fff2a6db000 - 0x7fff2a6dbfff libkeymgr.dylib (31)
<698AF6EE-08BB-36CF-B7AD-9EC16E36FA0B> /usr/lib/system/libkeymgr.dylib
0x7fff2a6dc000 - 0x7fff2a6e3fff libsystem_dnssd.dylib
(1310.140.1) <0685BDB0-9A98-3ADD-B95A-11F221FD80D7>
/usr/lib/system/libsystem_dnssd.dylib
0x7fff2a6e4000 - 0x7fff2a6e9fff libcache.dylib (83)
<B51FAB34-AA9C-38C5-95F1-E5E54B21EA67> /usr/lib/system/libcache.dylib
0x7fff2a6ea000 - 0x7fff2a6ebfff libSystem.B.dylib (1292.120.1)
<DBD0A184-CD98-3225-8E9B-D5BFE0D30562> /usr/lib/libSystem.B.dylib
0x7fff2a6ec000 - 0x7fff2a6effff libfakelink.dylib (3)
<BE0E6C60-675A-3739-A47A-67C650B1F790> /usr/lib/libfakelink.dylib
0x7fff2a6f0000 - 0x7fff2a6f0fff com.apple.SoftLinking (1.0 -
1) <9E4B6591-74E3-3B36-91C4-851FAA567DAA>
/System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking
0x7fff2a6f1000 - 0x7fff2a728fff libpcap.A.dylib (98.100.3)
<6DD23455-C0CA-313E-89B5-A45F8CD71C20> /usr/lib/libpcap.A.dylib
0x7fff2a729000 - 0x7fff2a819fff libiconv.2.dylib (59)
<90F749E2-9D2D-3323-A018-31A1F95221A1> /usr/lib/libiconv.2.dylib
0x7fff2a81a000 - 0x7fff2a82bfff libcmph.dylib (8)
<17871D7D-49C2-3343-AC30-C40E3AD5B2B6> /usr/lib/libcmph.dylib
0x7fff2a82c000 - 0x7fff2a89dfff libarchive.2.dylib (83.100.2)
<5AF9560E-5683-33A5-8D60-A469193B94E3> /usr/lib/libarchive.2.dylib
0x7fff2a89e000 - 0x7fff2a905fff com.apple.SearchKit (1.4.1 -
1.4.1) <A45AE5BD-9242-351E-B621-3EB50F66AB30>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff2a906000 - 0x7fff2a907fff libThaiTokenizer.dylib (3)
<7B40AC51-B945-3AF0-B349-5818050D37FB> /usr/lib/libThaiTokenizer.dylib
0x7fff2a908000 - 0x7fff2a92afff com.apple.applesauce (1.0 -
16.28) <7D011403-38CD-37DA-B2C2-00D2D2273422>
/System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
0x7fff2a92b000 - 0x7fff2a942fff libapple_nghttp2.dylib (1.41)
<E3FCBDB9-6671-3368-B371-B9CAC9BB1B45> /usr/lib/libapple_nghttp2.dylib
0x7fff2a943000 - 0x7fff2a959fff libSparseBLAS.dylib
(1336.140.1) <78762464-084C-3743-BC56-A2AF5D010909>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fff2a95a000 - 0x7fff2a95bfff
com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1)
<BD2B6B2B-E116-3B97-A25F-71B4AC7B2BA6>
/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
0x7fff2a95c000 - 0x7fff2a960fff libpam.2.dylib (28.40.1)
<E73D1903-42B9-3FF9-AE5D-482672F015AC> /usr/lib/libpam.2.dylib
0x7fff2a961000 - 0x7fff2a980fff libcompression.dylib
(96.120.1) <CFE780B4-AFB0-327C-BB68-A5565AA7C630>
/usr/lib/libcompression.dylib
0x7fff2a981000 - 0x7fff2a986fff libQuadrature.dylib (7)
<9668C241-61D5-3AE9-9856-708ACDC27F12>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
0x7fff2a987000 - 0x7fff2ad24fff libLAPACK.dylib (1336.140.1)
<8B968A9A-8263-3639-A740-636387467C03>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff2ad25000 - 0x7fff2ad74fff com.apple.DictionaryServices
(1.2 - 341) <617030DF-769F-3CE0-869F-7F5B9B5A3784>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff2ad75000 - 0x7fff2ad8dfff liblzma.5.dylib (16)
<6DE3F2AA-7140-3F6D-AD12-0DBA19BBBD54> /usr/lib/liblzma.5.dylib
0x7fff2ad8e000 - 0x7fff2ad8ffff libcoretls_cfhelpers.dylib
(169.100.1) <0CF72D7A-0A39-3683-82ED-29A09761D6FF>
/usr/lib/libcoretls_cfhelpers.dylib
0x7fff2ad90000 - 0x7fff2ae8bfff com.apple.APFS (1677.141.2 -
1677.141.2) <F42A21D0-F8CE-3DDA-ACE6-C0AC9EE2FA6C>
/System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
0x7fff2ae8c000 - 0x7fff2ae99fff libxar.1.dylib (452)
<0B0B68CC-D627-3BDC-AE01-007C6AD8E97B> /usr/lib/libxar.1.dylib
0x7fff2ae9a000 - 0x7fff2ae9dfff libutil.dylib (58.40.2)
<0EA3237C-B6E6-351B-AE27-8975D88602D6> /usr/lib/libutil.dylib
0x7fff2ae9e000 - 0x7fff2aec6fff libxslt.1.dylib (17.6)
<300C3D2D-19B1-3D8E-B212-1D2EB6C8B80A> /usr/lib/libxslt.1.dylib
0x7fff2aec7000 - 0x7fff2aed1fff libChineseTokenizer.dylib
(37.1) <B4314553-EF8B-3CD4-A7D8-76CD7FC7142D>
/usr/lib/libChineseTokenizer.dylib
0x7fff2aed2000 - 0x7fff2af8ffff libvMisc.dylib (760.100.3)
<B8F30684-94D1-3A53-80BF-C78F424594AD>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff2af90000 - 0x7fff2b027fff libate.dylib (3.0.6)
<FA881406-28F3-33BD-B75D-40389CE2ADD1> /usr/lib/libate.dylib
0x7fff2b028000 - 0x7fff2b02ffff libIOReport.dylib (64.100.1)
<4D638FAC-2FD8-359C-8159-1ED37CBB5704> /usr/lib/libIOReport.dylib
0x7fff2b131000 - 0x7fff2b138fff libMatch.1.dylib (38)
<85F66EF8-FC5E-385C-AF8F-79532C2AC988> /usr/lib/libMatch.1.dylib
0x7fff2b1c5000 - 0x7fff2b218fff com.apple.AppleVAFramework
(6.1.3 - 6.1.3) <2CDA1194-F435-3B9C-94A2-220E26E40DE6>
/System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff2b219000 - 0x7fff2b232fff libexpat.1.dylib (26.141.1)
<84DC54E5-9E75-3F64-9D7F-3CA641674ED8> /usr/lib/libexpat.1.dylib
0x7fff2b233000 - 0x7fff2b23cfff libheimdal-asn1.dylib
(597.140.2) <8D7B3A0D-A699-3947-9E8C-EEA4B4AD6408>
/usr/lib/libheimdal-asn1.dylib
0x7fff2b23d000 - 0x7fff2b251fff com.apple.IconFoundation
(479.4 - 479.4) <6ED33568-2A1D-3918-9D32-D1E102002E48>
/System/Library/PrivateFrameworks/IconFoundation.framework/Versions/A/IconFoundation
0x7fff2b252000 - 0x7fff2b2befff com.apple.IconServices (479.4
- 479.4) <D94D5AF3-6EF6-30D8-A7F8-58A1A3E5641B>
/System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff2b2bf000 - 0x7fff2b35dfff com.apple.MediaExperience (1.0
- 1) <245932F7-E76A-37A7-A033-7BB62F8ED190>
/System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience
0x7fff2b35e000 - 0x7fff2b386fff com.apple.persistentconnection
(1.0 - 1.0) <90FBA2DD-E91A-3A9F-80C5-8F94950136A4>
/System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection
0x7fff2b387000 - 0x7fff2b395fff com.apple.GraphVisualizer (1.0
- 100.1) <9538C368-5703-367B-ADAE-20EC5C3C5C41>
/System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
0x7fff2b396000 - 0x7fff2b7b1fff com.apple.vision.FaceCore
(4.3.2 - 4.3.2) <86110F21-96FE-325C-8D55-9385690C2386>
/System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff2b7b2000 - 0x7fff2b7f9fff com.apple.OTSVG (1.0 -
677.6.0.2) <34AD6D57-71B8-3859-94AF-DB856D8FD6BA>
/System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
0x7fff2b7fa000 - 0x7fff2b800fff com.apple.xpc.AppServerSupport
(1.0 - 2038.120.1) <AD03039F-3D12-31FE-A497-EC4A87097683>
/System/Library/PrivateFrameworks/AppServerSupport.framework/Versions/A/AppServerSupport
0x7fff2b801000 - 0x7fff2b813fff libhvf.dylib (1.0 -
$[CURRENT_PROJECT_VERSION]) <B4F0CDA6-0332-3AB9-A0FB-8CD6EE316D30>
/System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
0x7fff2b814000 - 0x7fff2b816fff libspindump.dylib (295.2)
<8DE7E414-DCEC-30B8-87DC-511D362D49F3> /usr/lib/libspindump.dylib
0x7fff2b817000 - 0x7fff2b8d7fff com.apple.Heimdal (4.0 - 2.0)
<30D71BC9-C18F-35C7-B7E1-88E645D4D329>
/System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff2b8f3000 - 0x7fff2b9cafff com.apple.corebrightness (1.0
- 1) <84C0971C-31BB-3E68-9EC1-0EF05986CEEA>
/System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness
0x7fff2ba77000 - 0x7fff2bab3fff com.apple.bom (14.0 - 235)
<E428566D-DFA2-33AC-AF3B-C68530D52522>
/System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x7fff2bab4000 - 0x7fff2bafdfff com.apple.AppleJPEG (1.0 - 1)
<15DCB33B-EB52-38A2-B02F-EC235DC85B52>
/System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff2bafe000 - 0x7fff2bbddfff libJP2.dylib (2130.7.3)
<20747AB5-CFA0-3C7A-BE41-BF4B54FD2038>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff2bbde000 - 0x7fff2bbe1fff
com.apple.WatchdogClient.framework (1.0 - 98.120.2)
<0A097C25-405B-38CD-B6E2-57F51AD77AF0>
/System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
0x7fff2bbe2000 - 0x7fff2bc18fff
com.apple.MultitouchSupport.framework (4440.3 - 4440.3)
<0DF955E2-E57C-3C1B-96BD-5B81DAD43BC7>
/System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff2bc19000 - 0x7fff2bd77fff com.apple.VideoToolbox (1.0 -
2780.10) <4FF9A4C0-FFB4-3F68-9A84-949B4DB0DB7A>
/System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff2bd78000 - 0x7fff2bdabfff libAudioToolboxUtility.dylib
(1181.72) <9D9EA545-924D-342A-BF27-C19887850F05>
/usr/lib/libAudioToolboxUtility.dylib
0x7fff2bdac000 - 0x7fff2bdccfff libPng.dylib (2130.7.3)
<29756FE6-34E9-3760-9B70-9FF6648BE7CC>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff2bdcd000 - 0x7fff2be2cfff libTIFF.dylib (2130.7.3)
<692B9470-8F28-3C98-9C6A-DAE79FE0136F>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff2be2d000 - 0x7fff2be49fff com.apple.IOPresentment (58 -
37) <A86E6181-E216-3691-A7FF-0264A927C8CC>
/System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
0x7fff2be4a000 - 0x7fff2be51fff com.apple.GPUWrangler (6.3.5 -
6.3.5) <CC101DAE-349B-3C72-9554-6F569364841E>
/System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
0x7fff2be52000 - 0x7fff2be55fff libRadiance.dylib (2130.7.3)
<1A759A2B-28E8-32C4-940D-BE0239558098>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff2be56000 - 0x7fff2be5bfff com.apple.DSExternalDisplay
(3.1 - 380) <3FD5886F-5EDD-313D-9783-FF899E5F2650>
/System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
0x7fff2be5c000 - 0x7fff2be80fff libJPEG.dylib (2130.7.3)
<C0903C97-523A-3822-ABE4-D1047D6785DC>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff2be81000 - 0x7fff2beb0fff com.apple.ATSUI (1.0 - 1)
<F9BEFF92-E409-35B6-89CB-0F221D804D3C>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
0x7fff2beb1000 - 0x7fff2beb5fff libGIF.dylib (2130.7.3)
<E92A145C-2B76-39D1-B481-B7C95ACBF989>
/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff2beb6000 - 0x7fff2bebffff com.apple.CMCaptureCore (1.0 -
82.6) <E0EAD649-4C7A-384E-999B-4D82AA9CDA52>
/System/Library/PrivateFrameworks/CMCaptureCore.framework/Versions/A/CMCaptureCore
0x7fff2bec0000 - 0x7fff2bf07fff
com.apple.print.framework.PrintCore (16.1 - 531.1)
<035969B9-3323-3AF4-AC4C-1D5B941C7C62>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff2bf08000 - 0x7fff2bfd5fff com.apple.TextureIO (3.10.9 -
3.10.9) <4B778275-5F2D-36DA-A6AD-14C8E516E197>
/System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
0x7fff2bfd6000 - 0x7fff2bfdefff com.apple.InternationalSupport
(1.0 - 61.1) <56A6D4F8-FF5B-3F34-BD1A-249414F182E9>
/System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
0x7fff2bfdf000 - 0x7fff2c059fff com.apple.datadetectorscore
(8.0 - 674) <CDA8DABD-62A3-3E1C-9A76-B00E1E950254>
/System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff2c05a000 - 0x7fff2c0b7fff com.apple.UserActivity (439 -
439) <C272F369-1086-317C-A4CF-AE2E1EC4FFB4>
/System/Library/PrivateFrameworks/UserActivity.framework/Versions/A/UserActivity
0x7fff2c8be000 - 0x7fff2cc94fff libswiftCore.dylib (5.4 -
1205.0.24.15) <4B89DAB5-1737-3FAE-B501-B9CEB5578ACF>
/usr/lib/swift/libswiftCore.dylib
0x7fff2cd25000 - 0x7fff2cd56fff libSessionUtility.dylib
(76.69) <400DF595-A30C-3AD3-A8BA-25260299ACE6>
/System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib
0x7fff2cd57000 - 0x7fff2ce8bfff
com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14)
<93226BB9-165F-3A42-8EE3-9670394C4DC9>
/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff2ce8c000 - 0x7fff2cef1fff com.apple.audio.AudioSession
(1.0 - 76.69) <ADC1C8FC-A444-3F15-A396-B4AB688BB326>
/System/Library/PrivateFrameworks/AudioSession.framework/Versions/A/AudioSession
0x7fff2cef2000 - 0x7fff2cf04fff libAudioStatistics.dylib
(27.64) <74E8B615-03FE-327B-A8FB-EAC5EF117414>
/usr/lib/libAudioStatistics.dylib
0x7fff2cf05000 - 0x7fff2cf14fff
com.apple.speech.synthesis.framework (9.0.66 - 9.0.66)
<CE36276F-23DD-32A3-9863-D3A5DDE5965E>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff2cf15000 - 0x7fff2cf81fff
com.apple.ApplicationServices.ATS (377 - 516)
<6E601872-2340-3675-9B6F-0C1DB991C54E>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff2cf82000 - 0x7fff2cf9afff libresolv.9.dylib (68)
<86A4BABF-3EFC-3113-BE8A-2D1AAAEF0194> /usr/lib/libresolv.9.dylib
0x7fff2d0cd000 - 0x7fff2d1acfff libSMC.dylib (20)
<CF88A94C-B5EE-306F-96A3-1442BA061C46> /usr/lib/libSMC.dylib
0x7fff2d1ad000 - 0x7fff2d20cfff libcups.2.dylib (494.3)
<2CE9752F-8763-3456-83CF-E4BCFB731153> /usr/lib/libcups.2.dylib
0x7fff2d20d000 - 0x7fff2d21cfff com.apple.LangAnalysis (1.7.0
- 254) <AB67008E-5986-3974-B986-FDBFAC018CAB>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff2d21d000 - 0x7fff2d227fff com.apple.NetAuth (6.2 - 6.2)
<B5806BA7-9A6E-37A0-9AB9-6EC2D61844AC>
/System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff2d228000 - 0x7fff2d22ffff com.apple.ColorSyncLegacy
(4.13.0 - 1) <86D9E9C9-C631-371E-824E-A203FE9E560A>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
0x7fff2d230000 - 0x7fff2d23bfff com.apple.QD (4.0 - 416)
<1D8792FC-4A76-3B4F-82CF-3889C05768FE>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff2d23c000 - 0x7fff2d890fff
com.apple.audio.AudioResourceArbitration (1.0 - 1)
<C97CD66B-8267-3C39-B025-789864237928>
/System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration
0x7fff2d891000 - 0x7fff2d89cfff com.apple.perfdata (1.0 -
67.40.1) <10E2B0C5-83A4-368A-B972-7AFA40D5338C>
/System/Library/PrivateFrameworks/perfdata.framework/Versions/A/perfdata
0x7fff2d89d000 - 0x7fff2d8abfff libperfcheck.dylib (41)
<A2D0E1A8-A98F-3DAA-B9FC-C033FC4CD9E0> /usr/lib/libperfcheck.dylib
0x7fff2d8ac000 - 0x7fff2d8bbfff com.apple.Kerberos (3.0 - 1)
<0074E20F-E7D8-31F5-AF41-0D7BF370CD50>
/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff2d8bc000 - 0x7fff2d90cfff com.apple.GSS (4.0 - 2.0)
<D546E52C-295F-3CCD-9925-03632FE72ECB>
/System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff2d90d000 - 0x7fff2d91dfff com.apple.CommonAuth (4.0 -
2.0) <DF20551B-1514-39B3-A52E-681A2E5F0D1C>
/System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff2daee000 - 0x7fff2daeefff liblaunch.dylib (2038.120.1)
<4A353070-A560-3A98-8869-28C92435C6B2> /usr/lib/system/liblaunch.dylib
0x7fff2e715000 - 0x7fff2e80ffff com.apple.combine (1.0 -
252.158) <478ED3F3-2FD3-32C0-8E9C-B652AA9341FF>
/System/Library/Frameworks/Combine.framework/Versions/A/Combine
0x7fff2fd18000 - 0x7fff2fd3ffff com.apple.RemoteViewServices
(2.0 - 163) <7DBF2A51-CE8E-352E-9426-B83DC370ADDD>
/System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff2fd40000 - 0x7fff2fd4ffff
com.apple.SpeechRecognitionCore (6.1.25 - 6.1.25)
<076E6A5F-4FEE-378B-9DCD-AFFA1348C64F>
/System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff2fd50000 - 0x7fff2fd57fff
com.apple.speech.recognition.framework (6.0.3 - 6.0.3)
<DB80BAB9-5E83-32DB-A424-05BB19044665>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff2ff85000 - 0x7fff2ff85fff
libsystem_product_info_filter.dylib (8.40.1)
<78928329-DD98-3799-989D-870DF92FE8D5>
/usr/lib/system/libsystem_product_info_filter.dylib
0x7fff3005d000 - 0x7fff3005dfff com.apple.Accelerate.vecLib
(3.11 - vecLib 3.11) <CDB56324-715E-3223-903F-EEC1D4E57F14>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff30083000 - 0x7fff30083fff com.apple.CoreServices
(1122.44 - 1122.44) <104E1757-7D8A-32D3-9B38-B23B1A8EAB17>
/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff3023f000 - 0x7fff3023ffff com.apple.Accelerate (1.11 -
Accelerate 1.11) <28463942-495F-3231-9348-32ABC601A1F5>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff305ce000 - 0x7fff30726fff libswiftFoundation.dylib
(25.103) <87767E1E-D0C9-3B68-974D-2371386EA2E3>
/usr/lib/swift/libswiftFoundation.dylib
0x7fff30af1000 - 0x7fff30b03fff com.apple.PowerLog (1.0 - 1)
<7A3E3B4D-5DA4-3D01-9188-4FE8A6859D15>
/System/Library/PrivateFrameworks/PowerLog.framework/Versions/A/PowerLog
0x7fff3168c000 - 0x7fff316a1fff libswiftDispatch.dylib
(4.100.1) <503D809C-82D4-3B9B-B3FC-0DAD1A1BA96D>
/usr/lib/swift/libswiftDispatch.dylib
0x7fff31837000 - 0x7fff318a6fff com.apple.FrontBoardServices
(703.16 - 703.16) <5088E177-3DF7-3F48-B340-7E6FF569C1E2>
/System/Library/PrivateFrameworks/FrontBoardServices.framework/Versions/A/FrontBoardServices
0x7fff318a7000 - 0x7fff318d0fff com.apple.BoardServices (1.0 -
526) <9932480F-CA31-362C-B5BB-263998D63224>
/System/Library/PrivateFrameworks/BoardServices.framework/Versions/A/BoardServices
0x7fff32d2b000 - 0x7fff32d45fff com.apple.BackBoardServices
(1.0 - 1.0) <C21E697A-AB8B-3353-9B92-7DB6C09DE34D>
/System/Library/PrivateFrameworks/BackBoardServices.framework/Versions/A/BackBoardServices
0x7fff3325e000 - 0x7fff3325efff com.apple.ApplicationServices
(48 - 50) <52BB5EB6-2C1B-34F9-8665-F50DD078E71B>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff33573000 - 0x7fff33573fff libHeimdalProxy.dylib (79)
<A1B83B1E-006D-38A8-8878-FD6ECBBB9B1B>
/System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
0x7fff336ad000 - 0x7fff336aefff libswiftObjectiveC.dylib (3)
<FB49234B-E9B2-369B-A24E-283BFE6E304E>
/usr/lib/swift/libswiftObjectiveC.dylib
0x7fff336af000 - 0x7fff336c0fff libswiftos.dylib (1000.120.2)
<BB62C01F-6CE0-3809-AF62-2DB343132948> /usr/lib/swift/libswiftos.dylib
0x7fff35056000 - 0x7fff35059fff com.apple.Cocoa (6.11 - 23)
<237F7F6E-E7D1-363A-92AF-32B564728891>
/System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff35061000 - 0x7fff35097fff com.apple.AmbientDisplay
(133.2 - 133.2) <C04CF35E-8FF5-308B-9D52-5F8B5C44E237>
/System/Library/PrivateFrameworks/AmbientDisplay.framework/Versions/A/AmbientDisplay
0x7fff35c43000 - 0x7fff35c4afff com.apple.DisplayServicesFW
(3.1 - 380) <F794066C-55D0-3CC6-9BCD-C27207746B97>
/System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x7fff38573000 - 0x7fff38582fff com.apple.HID (1.0 - 1)
<2078CFB6-A410-3B7E-B012-AE2BF1A80887>
/System/Library/PrivateFrameworks/HID.framework/Versions/A/HID
0x7fff3c041000 - 0x7fff3c04bfff libswiftCoreGraphics.dylib (2)
<28DA9562-BD85-33FE-817C-0FE936A8D95F>
/usr/lib/swift/libswiftCoreGraphics.dylib
0x7fff3c04c000 - 0x7fff3c055fff libswiftDarwin.dylib (??? -
???) <77C93514-3627-3B5D-A204-393C81DEA71D>
/usr/lib/swift/libswiftDarwin.dylib
0x7fff3cd3d000 - 0x7fff3cd5cfff com.apple.private.SystemPolicy
(1.0 - 1) <8BC55621-1E45-33B3-BCD6-C59F1F390695>
/System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy
0x7fff3d4c8000 - 0x7fff3d4cffff com.apple.HIDAnalytics (1.0 -
1) <16D37741-EB4F-3D3F-930F-98DE723FCEFD>
/System/Library/PrivateFrameworks/HIDAnalytics.framework/Versions/A/HIDAnalytics
0x7fff3d69a000 - 0x7fff3d6acfff libmis.dylib (274.140.2)
<570E2D9A-BC76-37F7-8CFC-E18AD5E81CE0> /usr/lib/libmis.dylib
0x7fff3d6ba000 - 0x7fff3d6bafff libswiftCoreFoundation.dylib
(1.6) <B6D014DB-4619-3CCD-81D3-7077C458E10B>
/usr/lib/swift/libswiftCoreFoundation.dylib
0x7fff3d6c6000 - 0x7fff3d6c6fff libswiftXPC.dylib (1.1)
<51C80D70-4410-3051-B67C-250687BEF195> /usr/lib/swift/libswiftXPC.dylib
0x7fff3d6c7000 - 0x7fff3d6c7fff libswiftCoreImage.dylib (1)
<8990A4CE-4704-3594-836D-CA82860F0227>
/usr/lib/swift/libswiftCoreImage.dylib
0x7fff3d6c8000 - 0x7fff3d6c8fff libswiftIOKit.dylib (1)
<BCB2B8BC-C209-36F5-B753-C4BE4C5EE34B> /usr/lib/swift/libswiftIOKit.dylib
0x7fff3fd13000 - 0x7fff3fd20fff com.apple.FuseBoardServices
(1.0 - 240) <79065AA0-422E-3E60-BBCA-E0529B0A0C23>
/System/Library/PrivateFrameworks/FuseBoardServices.framework/Versions/A/FuseBoardServices
0x7fff40ed5000 - 0x7fff40edefff com.apple.IOAccelMemoryInfo
(1.0 - 1) <DFFBB3EE-333E-3A1E-B795-4A3A6DBA0F3A>
/System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo
0x7fff41361000 - 0x7fff4137ffff libCGInterfaces.dylib (544.4)
<05A5B7E9-C79A-3FEA-AD6C-72FE168004C3>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
0x7fff41882000 - 0x7fff41898fff com.apple.MSUDataAccessor (1.0
- 1) <EA383D77-7702-3FC4-9586-BADCE91DCDB0>
/System/Library/PrivateFrameworks/MSUDataAccessor.framework/Versions/A/MSUDataAccessor
0x7fff45d69000 - 0x7fff45d6efff libswiftMetal.dylib (1.3.1)
<F37C12C7-8EC9-31DE-A1B6-7583C50E1476> /usr/lib/swift/libswiftMetal.dylib
0x7fff46460000 - 0x7fff464b7fff libFDR.dylib (640.100.30)
<00D40C2D-270A-3DE6-BE4F-7FAEC1C084BC> /usr/lib/libFDR.dylib
0x7fff46e2c000 - 0x7fff46e33fff com.apple.HIDPreferences (1.0
- 1) <C2AA675D-B157-329C-B501-68F095040144>
/System/Library/PrivateFrameworks/HIDPreferences.framework/Versions/A/HIDPreferences
0x7fff46e34000 - 0x7fff46e8efff com.apple.HDRProcessing
(1.117.54 - 1.117.54) <D6453D21-F278-3108-BAF2-49AB82D49930>
/System/Library/PrivateFrameworks/HDRProcessing.framework/Versions/A/HDRProcessing
0x7fff48314000 - 0x7fff48315fff libswiftQuartzCore.dylib (1)
<F6543B69-C052-3954-888F-A2F2BAC9D44F>
/usr/lib/swift/libswiftQuartzCore.dylib
0x7fff48619000 - 0x7fff4861ffff com.apple.BezelServicesFW (344
- 344) <4091A3E3-CAFD-3B73-80DB-5592B1E8CC3E>
/System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServices
0x7fff49d03000 - 0x7fff49d59fff libamsupport.dylib (250.120.1)
<11D00A09-668F-3F4E-9C9C-C4AB646727FB> /usr/lib/libamsupport.dylib
0x7fff4eb73000 - 0x7fff4eb8afff
com.apple.AppleGVACoreFramework (108.7.1 - 108.7.1)
<EF53D7ED-8DFB-31FD-A2EA-80FAF6A1EA41>
/System/Library/PrivateFrameworks/AppleGVACore.framework/Versions/A/AppleGVACore
0x7fff5cfde000 - 0x7fff5cfe1fff libIOGTrace.dylib (585.1)
<E99648FB-EB29-3651-9D80-C88E4CE3ABBD> /usr/lib/libIOGTrace.dylib
0x7fff69799000 - 0x7fff6979dfff libmetal_timestamp.dylib
(31001.192.1) <408D3E8F-D662-38FF-A0AB-79615D1BBD0D>
/System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/31001/Libraries/libmetal_timestamp.dylib
0x7fff6bbe4000 - 0x7fff6bbeafff libCoreFSCache.dylib (200.11)
<3C96E791-3964-32EA-A84A-00DF3455B43D>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x7fff6bbeb000 - 0x7fff6bbeffff libCoreVMClient.dylib (200.11)
<966F49F6-D2D5-3ACB-9CFD-9F8D3C8C82F9>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff6bbf0000 - 0x7fff6bbfffff com.apple.opengl (18.5.9 -
18.5.9) <5C26B170-E22B-3AAD-BA33-61304FFA70B2>
/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff6bc00000 - 0x7fff6bc02fff libCVMSPluginSupport.dylib
(18.5.9) <435F258D-95B5-3015-BDAC-4B8EF8E89F1E>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff6bc03000 - 0x7fff6bc0bfff libGFXShared.dylib (18.5.9)
<851E0956-A16E-3F5D-B3BE-37B56C2BAA04>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff6bc0c000 - 0x7fff6bc3ffff libGLImage.dylib (18.5.9)
<687EBB15-1AB3-3815-A69D-58527655A92D>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff6bc40000 - 0x7fff6bc7cfff libGLU.dylib (18.5.9)
<29B7802C-F6E4-3DF1-B5D6-07B29C6D02B2>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff6be11000 - 0x7fff6be1bfff libGL.dylib (18.5.9)
<8A4ED04C-9171-3CE2-A52A-E7C4D76A6EDA>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff6d25b000 - 0x7fff6d2b3fff com.apple.opencl (4.6 - 4.6)
<713206B3-A335-3AC5-B342-4CE16BDF69F4>
/System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff6dddd000 - 0x7fff6dff8fff com.apple.AMDMTLBronzeDriver
(4.6.20 - 4.0.6) <B213D062-98DC-30CE-B960-02373F8C3277>
/System/Library/Extensions/AMDMTLBronzeDriver.bundle/Contents/MacOS/AMDMTLBronzeDriver
0x7fff75a09000 - 0x7fff75a0cfff com.apple.ZhuGeSupport (1.0 -
4.40.1) <11A87DA5-EE2C-35FE-892A-DD9290E0C1DC>
/System/Library/PrivateFrameworks/ZhuGeSupport.framework/Versions/A/ZhuGeSupport
0x7fff77a8f000 - 0x7fff77a96fff libRosetta.dylib (203.58)
<F72C2D50-7279-3497-8A59-56908F9661F3> /usr/lib/libRosetta.dylib
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=690.5M resident=0K(0%)
swapped_out_or_unallocated=690.5M(100%)
Writable regions: Total=2.4G written=0K(0%) resident=0K(0%)
swapped_out=0K(0%) unallocated=2.4G(100%)
VIRTUAL REGION
REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Activity Tracing 256K 1
CG backing stores 22.8M 85
CG framebuffers 1.4G 12
CG framebuffers (reserved) 610.1M 11 reserved VM
address space (unallocated)
CoreAnimation 277.7M 3348
CoreGraphics 28K 7
Dispatch continuations 32.0M 1
Kernel Alloc Once 8K 1
MALLOC 106.0M 102
MALLOC guard page 32K 8
Mach message (reserved) 12K 1 reserved VM
address space (unallocated)
STACK GUARD 56.0M 12
Stack 14.1M 12
VM_ALLOCATE 22.6M 593
VM_ALLOCATE (reserved) 152K 31 reserved VM
address space (unallocated)
__CGSERVER 16K 1
__DATA 11.2M 301
__DATA_CONST 11.7M 185
__DATA_DIRTY 656K 108
__FONT_DATA 4K 1
__LINKEDIT 500.8M 30
__OBJC_RO 70.3M 1
__OBJC_RW 2496K 2
__SLSERVER 16K 1
__TEXT 189.9M 304
__UNICODE 588K 1
mapped file 42.5M 8
shared memory 604K 15
=========== ======= =======
TOTAL 3.3G 5183
TOTAL, minus reserved VM space 2.7G 5183
--
Carl Witthoft
carl using witthoft.com
resume: https://app.box.com/file/498153801347
More information about the R-SIG-Mac
mailing list