godotengine / godot

Godot Engine – Multi-platform 2D and 3D game engine
https://godotengine.org
MIT License
88.43k stars 20.04k forks source link

C# SIGSEGV when using custom setter / getter #41233

Open iamacup opened 4 years ago

iamacup commented 4 years ago

Godot version:

3.2.3.rc3.mono

OS/device including version:

image GLES3

Issue description:

When accessing a custom getter, app crashes

Steps to reproduce:

  1. Make custom setter
  2. Access the data
Crashes ``` using Godot; using System; public class Control : Godot.Control { public String Str { get { return Str; } set { Str = value; } } public override void _Ready() { GD.Print("Ready in C#!"); GD.Print(Str); } } ```
Does not crash (comment out the accessing method) ``` using Godot; using System; public class Control : Godot.Control { public String Str { get { return Str; } set { Str = value; } } public override void _Ready() { GD.Print("Ready in C#!"); // GD.Print(Str); } } ```
Does not crash (use default getter setter) ``` using Godot; using System; public class Control : Godot.Control { public String Str {get; set;} public override void _Ready() { GD.Print("Ready in C#!"); GD.Print(Str); } } ```

Minimal reproduction project:

New Game Project.zip

Apple stack trace ``` Process: Godot [19699] Path: /Applications/GODOT_MAIN.app/Contents/MacOS/Godot Identifier: org.godotengine.godot Version: 3.2.3 (3.2.3) Code Type: X86-64 (Native) Parent Process: Godot [19628] Responsible: Terminal [8332] User ID: 501 Date/Time: 2020-08-13 20:53:13.039 +0100 OS Version: Mac OS X 10.15.6 (19G2021) Report Version: 12 Bridge OS Version: 3.0 (14Y908) Anonymous UUID: E4F6E50A-A0FC-771B-47B5-FA61C2466F99 Sleep/Wake UUID: 888EA4DE-4A8B-44A2-B833-A06BAEC37731 Time Awake Since Boot: 9200 seconds Time Since Wake: 9100 seconds System Integrity Protection: enabled Crashed Thread: 0 tid_307 Dispatch queue: com.apple.main-thread Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_PROTECTION_FAILURE at 0x00007ffeeb2b1ff0 Exception Note: EXC_CORPSE_NOTIFY Termination Signal: Segmentation fault: 11 Termination Reason: Namespace SIGNAL, Code 0xb Terminating Process: exc handler [19699] VM Regions Near 0x7ffeeb2b1ff0: MALLOC_SMALL 00007ffb56800000-00007ffb57000000 [ 8192K] rw-/rwx SM=PRV --> STACK GUARD 00007ffee7ab2000-00007ffeeb2b2000 [ 56.0M] ---/rwx SM=NUL stack guard for thread 0 Stack 00007ffeeb2b2000-00007ffeebab2000 [ 8192K] rw-/rwx SM=SHM thread 0 Thread 0 Crashed:: tid_307 Dispatch queue: com.apple.main-thread 0 ??? 0x000000011b4d53d4 0 + 4753019860 1 org.godotengine.godot 0x0000000104237c17 mono_jit_runtime_invoke + 1623 2 org.godotengine.godot 0x000000010437faae mono_runtime_try_invoke + 158 3 org.godotengine.godot 0x00000001043829af mono_runtime_invoke + 95 4 org.godotengine.godot 0x0000000104a7886f GDMonoUtils::runtime_invoke(_MonoMethod*, void*, void**, _MonoException**) + 31 5 org.godotengine.godot 0x0000000104a75c42 GDMonoMethod::invoke(_MonoObject*, Variant const**, _MonoException**) + 290 6 org.godotengine.godot 0x00000001049d4b25 CSharpInstance::call_multilevel(StringName const&, Variant const**, int) + 133 7 org.godotengine.godot 0x0000000105d086c1 Control::_notificationv(int, bool) + 49 8 org.godotengine.godot 0x0000000106c359d3 Object::notification(int, bool) + 19 9 org.godotengine.godot 0x0000000105c209fb Node::_propagate_ready() + 171 10 org.godotengine.godot 0x0000000105c209bb Node::_propagate_ready() + 107 11 org.godotengine.godot 0x0000000105c2626f Node::_set_tree(SceneTree*) + 95 12 org.godotengine.godot 0x0000000105c561cf SceneTree::init() + 31 13 org.godotengine.godot 0x000000010448cfa4 OS_OSX::run() + 52 14 org.godotengine.godot 0x0000000104493191 main + 529 15 libdyld.dylib 0x00007fff6cb2ecc9 start + 1 Thread 1: 0 libsystem_pthread.dylib 0x00007fff6cd2eb68 start_wqthread + 0 Thread 2: 0 libsystem_pthread.dylib 0x00007fff6cd2eb68 start_wqthread + 0 Thread 3: 0 libsystem_pthread.dylib 0x00007fff6cd2eb68 start_wqthread + 0 Thread 4: 0 libsystem_pthread.dylib 0x00007fff6cd2eb68 start_wqthread + 0 Thread 5: 0 libsystem_pthread.dylib 0x00007fff6cd2eb68 start_wqthread + 0 Thread 6: 0 libsystem_pthread.dylib 0x00007fff6cd2eb68 start_wqthread + 0 Thread 7: 0 libsystem_pthread.dylib 0x00007fff6cd2eb68 start_wqthread + 0 Thread 8: 0 libsystem_pthread.dylib 0x00007fff6cd2eb68 start_wqthread + 0 Thread 9: 0 libsystem_kernel.dylib 0x00007fff6cc7081e read + 10 1 org.godotengine.godot 0x0000000104493539 SemaphoreOSX::wait() + 25 2 org.godotengine.godot 0x0000000106e60ab3 _IP_ResolverPrivate::_thread_function(void*) + 83 3 org.godotengine.godot 0x0000000104f35485 ThreadPosix::thread_callback(void*) + 85 4 libsystem_pthread.dylib 0x00007fff6cd33109 _pthread_start + 148 5 libsystem_pthread.dylib 0x00007fff6cd2eb8b thread_start + 15 Thread 10: 0 libsystem_kernel.dylib 0x00007fff6cc7081e read + 10 1 org.godotengine.godot 0x0000000104493539 SemaphoreOSX::wait() + 25 2 org.godotengine.godot 0x0000000106a34d3d VisualServerScene::_gi_probe_bake_thread() + 29 3 org.godotengine.godot 0x0000000104f35485 ThreadPosix::thread_callback(void*) + 85 4 libsystem_pthread.dylib 0x00007fff6cd33109 _pthread_start + 148 5 libsystem_pthread.dylib 0x00007fff6cd2eb8b thread_start + 15 Thread 11:: AMCP Logging Spool 0 libsystem_kernel.dylib 0x00007fff6cc6fe36 semaphore_wait_trap + 10 1 com.apple.audio.caulk 0x00007fff66702b16 caulk::mach::semaphore::wait() + 16 2 com.apple.audio.caulk 0x00007fff667029b2 caulk::semaphore::timed_wait(double) + 106 3 com.apple.audio.caulk 0x00007fff667027c4 caulk::concurrent::details::worker_thread::run() + 30 4 com.apple.audio.caulk 0x00007fff667021e4 void* caulk::thread_proxy > >(void*) + 45 5 libsystem_pthread.dylib 0x00007fff6cd33109 _pthread_start + 148 6 libsystem_pthread.dylib 0x00007fff6cd2eb8b thread_start + 15 Thread 12: 0 libsystem_kernel.dylib 0x00007fff6cc6fe36 semaphore_wait_trap + 10 1 com.apple.audio.caulk 0x00007fff66702b16 caulk::mach::semaphore::wait() + 16 2 com.apple.audio.caulk 0x00007fff667029b2 caulk::semaphore::timed_wait(double) + 106 3 com.apple.audio.caulk 0x00007fff667027c4 caulk::concurrent::details::worker_thread::run() + 30 4 com.apple.audio.caulk 0x00007fff667021e4 void* caulk::thread_proxy > >(void*) + 45 5 libsystem_pthread.dylib 0x00007fff6cd33109 _pthread_start + 148 6 libsystem_pthread.dylib 0x00007fff6cd2eb8b thread_start + 15 Thread 13: 0 libsystem_kernel.dylib 0x00007fff6cc6fe4e semaphore_timedwait_trap + 10 1 libdispatch.dylib 0x00007fff6cad5b6b _dispatch_sema4_timedwait + 76 2 libdispatch.dylib 0x00007fff6cad5f97 _dispatch_semaphore_wait_slow + 58 3 libdispatch.dylib 0x00007fff6cae3795 _dispatch_worker_thread + 284 4 libsystem_pthread.dylib 0x00007fff6cd33109 _pthread_start + 148 5 libsystem_pthread.dylib 0x00007fff6cd2eb8b thread_start + 15 Thread 14:: com.apple.audio.IOThread.client 0 libsystem_kernel.dylib 0x00007fff6cc6fdfa mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6cc70170 mach_msg + 60 2 com.apple.audio.CoreAudio 0x00007fff321a5c75 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 111 3 com.apple.audio.CoreAudio 0x00007fff320a1f18 invocation function for block in HALC_ProxyIOContext::HALC_ProxyIOContext(unsigned int, unsigned int) + 2677 4 com.apple.audio.CoreAudio 0x00007fff321d5c22 HALB_IOThread::Entry(void*) + 72 5 libsystem_pthread.dylib 0x00007fff6cd33109 _pthread_start + 148 6 libsystem_pthread.dylib 0x00007fff6cd2eb8b thread_start + 15 Thread 15:: SGen worker 0 libsystem_kernel.dylib 0x00007fff6cc72882 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff6cd33425 _pthread_cond_wait + 698 2 org.godotengine.godot 0x0000000104449aa3 thread_func + 243 3 libsystem_pthread.dylib 0x00007fff6cd33109 _pthread_start + 148 4 libsystem_pthread.dylib 0x00007fff6cd2eb8b thread_start + 15 Thread 16:: Finalizer 0 libsystem_kernel.dylib 0x00007fff6cc6fe36 semaphore_wait_trap + 10 1 org.godotengine.godot 0x000000010430494b finalizer_thread + 379 2 org.godotengine.godot 0x00000001043d8106 start_wrapper_internal + 374 3 org.godotengine.godot 0x00000001043d7f67 start_wrapper + 71 4 libsystem_pthread.dylib 0x00007fff6cd33109 _pthread_start + 148 5 libsystem_pthread.dylib 0x00007fff6cd2eb8b thread_start + 15 Thread 17:: Debugger agent 0 libsystem_kernel.dylib 0x00007fff6cc763be __accept + 10 1 org.godotengine.godot 0x00000001042b3f3a socket_transport_accept + 58 2 org.godotengine.godot 0x00000001042aae79 debugger_thread + 217 3 org.godotengine.godot 0x00000001043d8106 start_wrapper_internal + 374 4 org.godotengine.godot 0x00000001043d7f67 start_wrapper + 71 5 libsystem_pthread.dylib 0x00007fff6cd33109 _pthread_start + 148 6 libsystem_pthread.dylib 0x00007fff6cd2eb8b thread_start + 15 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x0000000000000000 rbx: 0x00007ffb54b79320 rcx: 0x0000000000000000 rdx: 0x0000000000000608 rdi: 0x000000011547f818 rsi: 0x0000000000000001 rbp: 0x00007ffeebaafe10 rsp: 0x00007ffeeb2b1ff0 r8: 0x00000000000130a8 r9: 0x0000000000000000 r10: 0x00007ffb4d57cd58 r11: 0x000000011b4d53d0 r12: 0x00007ffeebab0000 r13: 0x0000000115485898 r14: 0x0000000000000000 r15: 0x000000011b4d4630 rip: 0x000000011b4d53d4 rfl: 0x0000000000010206 cr2: 0x00007ffeeb2b1ff0 Logical CPU: 4 Error Code: 0x00000006 (no mapping for user data write) Trap Number: 14 Binary Images: 0x10414e000 - 0x1082aff43 +org.godotengine.godot (3.2.3 - 3.2.3) <280ECEB0-AA61-301E-9505-37402210AA0F> /Applications/GODOT_MAIN.app/Contents/MacOS/Godot 0x10a53f000 - 0x10a542047 libobjc-trampolines.dylib (787.1) <88F9B648-C455-36F8-BBB9-7D1A9F57D073> /usr/lib/libobjc-trampolines.dylib 0x10a564000 - 0x10a5f5f47 dyld (750.6) /usr/lib/dyld 0x10e39f000 - 0x10e465fff com.apple.AMDRadeonX4000GLDriver (3.10.16 - 3.1.0) /System/Library/Extensions/AMDRadeonX4000GLDriver.bundle/Contents/MacOS/AMDRadeonX4000GLDriver 0x114959000 - 0x114ab2ff7 com.apple.audio.units.Components (1.14 - 1.14) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio 0x114b05000 - 0x114b09fff com.apple.audio.AppleHDAHALPlugIn (283.15 - 283.15) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn 0x114b12000 - 0x114b16fff com.apple.audio.AppleGFXHDAHALPlugIn (100.1.429 - 100.1.429) <632A2806-0FFA-34B8-BE35-64F6635F23FC> /System/Library/Extensions/AppleGFXHDA.kext/Contents/PlugIns/AppleGFXHDAHALPlugIn.bundle/Contents/MacOS/AppleGFXHDAHALPlugIn 0x1151c2000 - 0x115204ff7 com.apple.cmio.DAL.VDC-4 (810.0 - 248.40.1) /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/MacOS/VDC 0x116800000 - 0x1168c3ff7 +libmono-native-compat.dylib (0) <492869C9-5E3F-3CF9-90A6-F70C6A9AA9C0> /Applications/GODOT_MAIN.app/Contents/Frameworks/GodotSharp/Mono/lib/libmono-native-compat.dylib 0x7fff25d82000 - 0x7fff25eb0ff8 com.apple.AMDMTLBronzeDriver (3.10.16 - 3.1.0) /System/Library/Extensions/AMDMTLBronzeDriver.bundle/Contents/MacOS/AMDMTLBronzeDriver 0x7fff25eb1000 - 0x7fff25ee7fff ATIRadeonX4000SCLib.dylib (3.10.16) /System/Library/Extensions/AMDRadeonX4000GLDriver.bundle/Contents/MacOS/ATIRadeonX4000SCLib.dylib 0x7fff273c1000 - 0x7fff27d3efff libSC.dylib (3.10.16) <091873A3-B771-315E-96B0-571D73FD8C8B> /System/Library/Extensions/AMDShared.bundle/Contents/PlugIns/libSC.dylib 0x7fff2a438000 - 0x7fff2b43ffff com.apple.driver.AppleIntelKBLGraphicsGLDriver (14.7.8 - 14.0.7) <4CC9B127-5ED5-3D85-A251-57583C40ABB5> /System/Library/Extensions/AppleIntelKBLGraphicsGLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsGLDriver 0x7fff2b440000 - 0x7fff2b83fff1 com.apple.driver.AppleIntelKBLGraphicsMTLDriver (14.7.8 - 14.0.7) /System/Library/Extensions/AppleIntelKBLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsMTLDriver 0x7fff2e2da000 - 0x7fff2e2deffb com.apple.agl (3.3.3 - AGL-3.3.3) <204E20A9-AEA9-3F9F-AE23-EECE3AFFFC54> /System/Library/Frameworks/AGL.framework/Versions/A/AGL 0x7fff2e2df000 - 0x7fff2e4daff8 com.apple.avfoundation (2.0 - 1855.3) <0837D912-3783-35D6-A94A-E474E18600CF> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation 0x7fff2e4db000 - 0x7fff2e5a7ffe com.apple.audio.AVFAudio (1.0 - 415.75) /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio 0x7fff2e6c7000 - 0x7fff2e6c7fff com.apple.Accelerate (1.11 - Accelerate 1.11) <4F9977AE-DBDB-3A16-A536-AC1F9938DCDD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff2e6c8000 - 0x7fff2e6defef libCGInterfaces.dylib (524.2.1) <8FD09D09-BB19-36C5-ADE9-4F22DA235AEE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib 0x7fff2e6df000 - 0x7fff2ed35fff com.apple.vImage (8.1 - 524.2.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff2ed36000 - 0x7fff2ef9dff7 libBLAS.dylib (1303.60.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff2ef9e000 - 0x7fff2f471fef libBNNS.dylib (144.100.2) <99C61C48-B14C-3DA6-8C31-6BF72DA0A3A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib 0x7fff2f472000 - 0x7fff2f80dfff libLAPACK.dylib (1303.60.1) <5E3E3867-50C3-3E6A-9A2E-007CE77A4641> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff2f80e000 - 0x7fff2f823fec libLinearAlgebra.dylib (1303.60.1) <3D433800-0099-33E0-8C81-15F83247B2C9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff2f824000 - 0x7fff2f829ff3 libQuadrature.dylib (7) <371F36A7-B12F-363E-8955-F24F7C2048F6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib 0x7fff2f82a000 - 0x7fff2f89afff libSparse.dylib (103) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib 0x7fff2f89b000 - 0x7fff2f8adfef libSparseBLAS.dylib (1303.60.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib 0x7fff2f8ae000 - 0x7fff2fa85fd7 libvDSP.dylib (735.140.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff2fa86000 - 0x7fff2fb48fef libvMisc.dylib (735.140.1) <3601FDE3-B142-398D-987D-8151A51F0A96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff2fb49000 - 0x7fff2fb49fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff2fb4a000 - 0x7fff2fba9ff0 com.apple.Accounts (113 - 113) /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts 0x7fff2fcf3000 - 0x7fff30ab3ff2 com.apple.AppKit (6.9 - 1894.60.100) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff30b03000 - 0x7fff30b03fff com.apple.ApplicationServices (48 - 50) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff30b04000 - 0x7fff30b6ffff com.apple.ApplicationServices.ATS (377 - 493.0.4.1) <87EA5DE1-506A-39FD-88BE-D8A3416C9012> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff30c08000 - 0x7fff30c46ff0 libFontRegistry.dylib (274.0.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff30ca1000 - 0x7fff30cd0fff com.apple.ATSUI (1.0 - 1) <5F513967-DDD7-3F22-AD14-8A38ABD9F2D0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI 0x7fff30cd1000 - 0x7fff30cd5ffb com.apple.ColorSyncLegacy (4.13.0 - 1) <72EE68DB-F069-37F5-AA2A-40D5FCF139F4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy 0x7fff30d6f000 - 0x7fff30dc6ffa com.apple.HIServices (1.22 - 676) <14DF4D42-E24D-3EBD-9A9D-93124D8D6AA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff30dc7000 - 0x7fff30dd5fff com.apple.LangAnalysis (1.7.0 - 1.7.0) <01B8B6B3-E2C3-3607-B34A-8283A7E0E924> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff30dd6000 - 0x7fff30e1bffa com.apple.print.framework.PrintCore (15.4 - 516.2) <437BCF12-48D2-3770-8BC9-567718FB1BCA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff30e1c000 - 0x7fff30e26ff7 com.apple.QD (4.0 - 413) <27A36D07-B5E9-32E6-87B6-3127F260F48D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff30e27000 - 0x7fff30e34ffc com.apple.speech.synthesis.framework (9.0.24 - 9.0.24) <75344F8F-32CA-3558-B4E6-F56D498250E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff30e35000 - 0x7fff30f16ffa com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <8CFA0620-5E43-3C4D-A75B-981C0961C2DE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff30f18000 - 0x7fff30f18fff com.apple.audio.units.AudioUnit (1.14 - 1.14) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff312af000 - 0x7fff3163effa com.apple.CFNetwork (1128.0.1 - 1128.0.1) <07F9CA9C-B954-3EA0-A710-3122BFF9F057> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff316ba000 - 0x7fff316bafff com.apple.Carbon (160 - 162) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff316bb000 - 0x7fff316beff3 com.apple.CommonPanels (1.2.6 - 101) <9F6E13D9-374B-386F-8E15-FDD6CE967859> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff316bf000 - 0x7fff319b3ff3 com.apple.HIToolbox (2.1.1 - 994.6) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff319b4000 - 0x7fff319b7ff3 com.apple.help (1.3.8 - 71) <36483951-6F3E-3F7E-8A5B-191C2357EF17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff319b8000 - 0x7fff319bdff7 com.apple.ImageCapture (9.0 - 1600.65) <1A1F320E-3E85-3F3D-8AE0-B238C4E92D40> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff319be000 - 0x7fff319befff com.apple.ink.framework (10.15 - 227) <284507AE-EF47-3ABC-86A4-669243DB1D33> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff319bf000 - 0x7fff319d9ffa com.apple.openscripting (1.7 - 185.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff319fa000 - 0x7fff319fafff com.apple.print.framework.Print (15 - 271) <0D9FB08F-EA87-3BE7-821B-C61BA5601050> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff319fb000 - 0x7fff319fdff7 com.apple.securityhi (9.0 - 55008) <390C6FAA-99BF-3924-9180-9EAE41D9C6BE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff319fe000 - 0x7fff31a04fff com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <9614A01E-8303-3422-A3BA-6CE27540E09A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff31b9e000 - 0x7fff31b9efff com.apple.Cocoa (6.11 - 23) <2F5C8ABA-711F-316C-BB97-921122AEE4DF> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff31bac000 - 0x7fff31ca2fff com.apple.ColorSync (4.13.0 - 3394.9) /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff31f8d000 - 0x7fff32496ffb com.apple.audio.CoreAudio (5.0 - 5.0) <9DA02E7A-56A0-3FFF-94C2-1795BA761F07> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff324e9000 - 0x7fff32521fff com.apple.CoreBluetooth (1.0 - 1) <23DBB313-A082-3C08-8E1F-2D31EE4247EF> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff32522000 - 0x7fff3290cfe8 com.apple.CoreData (120 - 977.3) <49AE61CA-C91E-31FE-9BD0-1AACFFB5181E> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff3290d000 - 0x7fff32a3fff6 com.apple.CoreDisplay (1.0 - 186.6.15) <213D7011-8180-3CF4-9BE7-FB8F75DCDB95> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay 0x7fff32a40000 - 0x7fff32ebffeb com.apple.CoreFoundation (6.9 - 1677.104) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff32ec1000 - 0x7fff33536ff8 com.apple.CoreGraphics (2.0 - 1355.22) <4A3CDE7B-4578-3058-966A-3D1DC095A935> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff33544000 - 0x7fff3389fff0 com.apple.CoreImage (15.0.0 - 940.9) <69361069-01AB-342E-862B-73A74271A765> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff3390a000 - 0x7fff3395aff6 com.apple.audio.midi.CoreMIDI (1.10 - 88) <017B0334-8AC4-304B-A5E2-C82C51BE1917> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI 0x7fff33c60000 - 0x7fff33d3bffc com.apple.CoreMedia (1.0 - 2625.9) /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x7fff33d3c000 - 0x7fff33d9effe com.apple.CoreMediaIO (1000.0 - 5125.6) <8FDC573F-890A-3F08-B357-99895521C93D> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO 0x7fff33e28000 - 0x7fff33e28fff com.apple.CoreServices (1069.24 - 1069.24) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff33e29000 - 0x7fff33eaefff com.apple.AE (838.1 - 838.1) <2E5FD5AE-8A7F-353F-9BD1-0241F3586181> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff33eaf000 - 0x7fff34190ff7 com.apple.CoreServices.CarbonCore (1217 - 1217) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff34191000 - 0x7fff341deffd com.apple.DictionaryServices (1.2 - 323.6) <26B70C82-25BC-353A-858F-945B14C803A2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff341df000 - 0x7fff341e7ff7 com.apple.CoreServices.FSEvents (1268.100.1 - 1268.100.1) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff341e8000 - 0x7fff34422ff6 com.apple.LaunchServices (1069.24 - 1069.24) <9A5359D9-9148-3B18-B868-56A9DA5FB60C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff34423000 - 0x7fff344bbff1 com.apple.Metadata (10.7.0 - 2076.7) <0973F7E5-D58C-3574-A3CE-4F12CAC2D4C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff344bc000 - 0x7fff344e9fff com.apple.CoreServices.OSServices (1069.24 - 1069.24) <0E4F48AD-402C-3E9D-9CA9-6DD9479B28F9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff344ea000 - 0x7fff34551fff com.apple.SearchKit (1.4.1 - 1.4.1) <2C5E1D85-E8B1-3DC5-91B9-E3EDB48E9369> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff34552000 - 0x7fff34576ff5 com.apple.coreservices.SharedFileList (131.4 - 131.4) <02DE0D56-E371-3EF5-9BC1-FA435451B412> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList 0x7fff3489b000 - 0x7fff34a52ffc com.apple.CoreText (643.1.5.1 - 643.1.5.1) /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff34a53000 - 0x7fff34a97ffb com.apple.CoreVideo (1.8 - 344.3) <5314E70D-325F-3E98-99FC-00FDF520747E> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff34a98000 - 0x7fff34b25ffc com.apple.framework.CoreWLAN (13.0 - 1601.2) <6C76A9E0-430F-3B3C-AE8A-3005F8E6FCFF> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff34dbc000 - 0x7fff34dc2fff com.apple.DiskArbitration (2.7 - 2.7) <63923E3F-1489-3762-B5EB-5CE28A35FF50> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff34fb7000 - 0x7fff350e5ff6 com.apple.FileProvider (304.1 - 304.1) /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider 0x7fff350fa000 - 0x7fff350fcff3 com.apple.ForceFeedback (1.0.6 - 1.0.6) <9B324178-4FAA-3686-9E01-634607F38493> /System/Library/Frameworks/ForceFeedback.framework/Versions/A/ForceFeedback 0x7fff350fd000 - 0x7fff354c2fff com.apple.Foundation (6.9 - 1677.104) <7C69F845-F651-3193-8262-5938010EC67D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff3552f000 - 0x7fff3557fff7 com.apple.GSS (4.0 - 2.0) <2F3A67E6-D42A-3CF0-9041-A42C22D46F95> /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff356bc000 - 0x7fff357d0ff3 com.apple.Bluetooth (7.0.6 - 7.0.6f7) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff35836000 - 0x7fff358daff3 com.apple.framework.IOKit (2.0.2 - 1726.140.1) <14223387-6F81-3976-8605-4BC2F253A93E> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff358dc000 - 0x7fff358edffb com.apple.IOSurface (269.11 - 269.11) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff3596c000 - 0x7fff35ac8fee com.apple.ImageIO.framework (3.3.0 - 1976.11) /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff35ac9000 - 0x7fff35accfff libGIF.dylib (1976.11) <7F53F2C2-0F2B-3308-9E90-F043F43DAB32> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff35acd000 - 0x7fff35b86ff7 libJP2.dylib (1976.11) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff35b87000 - 0x7fff35baafe3 libJPEG.dylib (1976.11) <47540108-F321-35F9-A98A-784E4D4F3C15> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff35e28000 - 0x7fff35e42fef libPng.dylib (1976.11) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff35e43000 - 0x7fff35e44fff libRadiance.dylib (1976.11) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff35e45000 - 0x7fff35e8bfff libTIFF.dylib (1976.11) <79E99768-71D7-3EA9-9675-95EFACF32FC8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff373ed000 - 0x7fff373ffff3 com.apple.Kerberos (3.0 - 1) <03BB492B-016E-37BF-B020-39C2CF7487FE> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff37400000 - 0x7fff37400fff libHeimdalProxy.dylib (77) <0A2905EE-9533-3345-AF9B-AAC71513BDFD> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib 0x7fff37792000 - 0x7fff3779cffb com.apple.MediaAccessibility (1.0 - 125.1) <98065EA1-3484-3A5A-B05C-D2FABED8CEA4> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility 0x7fff37868000 - 0x7fff37fb5ff2 com.apple.MediaToolbox (1.0 - 2625.9) <3A848992-9182-382A-BF7D-5CB9707BE27B> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 0x7fff37fb7000 - 0x7fff38081fff com.apple.Metal (212.8 - 212.8) <98C944D6-62C8-355E-90F8-C1CA2429EF24> /System/Library/Frameworks/Metal.framework/Versions/A/Metal 0x7fff3809e000 - 0x7fff380dbff7 com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <7EBAC15D-7837-395D-B405-1E29F7DA68FA> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore 0x7fff380dc000 - 0x7fff38166fe2 com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage 0x7fff38167000 - 0x7fff3818cff4 com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <02006D92-E2AB-3892-A96B-37F6520C19BA> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix 0x7fff3818d000 - 0x7fff381a2ffb com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray 0x7fff381a3000 - 0x7fff38301ffc com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <05612E06-50CB-318F-9F8E-EF4D49FAB3B0> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork 0x7fff38302000 - 0x7fff38351ff4 com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector 0x7fff38352000 - 0x7fff38353ff5 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders 0x7fff393e1000 - 0x7fff393edffe com.apple.NetFS (6.0 - 4.0) <4415F027-D36D-3B9C-96BA-AD22B44A4722> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff393ee000 - 0x7fff39545ff3 com.apple.Network (1.0 - 1) <4A0F3B93-4D23-3E74-9A3D-AD19E9C0E59E> /System/Library/Frameworks/Network.framework/Versions/A/Network 0x7fff3bf6e000 - 0x7fff3bf76ff7 libcldcpuengine.dylib (2.14) /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib 0x7fff3bf77000 - 0x7fff3bfcffff com.apple.opencl (3.5 - 3.5) <293FE223-9186-320B-81A4-EC8104C38357> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff3bfd0000 - 0x7fff3bfecfff com.apple.CFOpenDirectory (10.15 - 220.40.1) <7E6C88EB-3DD9-32B0-81FC-179552834FA9> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff3bfed000 - 0x7fff3bff8ffd com.apple.OpenDirectory (10.15 - 220.40.1) <4A92D8D8-A9E5-3A9C-942F-28576F6BCDF5> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff3c95e000 - 0x7fff3c960fff libCVMSPluginSupport.dylib (17.10.22) <2B6C3C16-3F5F-36A8-8070-2A862B90328B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff3c961000 - 0x7fff3c966fff libCoreFSCache.dylib (176.15) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib 0x7fff3c967000 - 0x7fff3c96bfff libCoreVMClient.dylib (176.15) <018A48BA-1326-3847-8FB5-A7C99322EB87> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff3c96c000 - 0x7fff3c974ff7 libGFXShared.dylib (17.10.22) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff3c975000 - 0x7fff3c97ffff libGL.dylib (17.10.22) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff3c980000 - 0x7fff3c9b4ff7 libGLImage.dylib (17.10.22) <9A3FE633-61B8-3CC7-8183-62960109401A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff3c9b5000 - 0x7fff3cb49ff7 libGLProgrammability.dylib (17.10.22) <85815C4E-3376-33DF-9FBB-6512142AB61B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib 0x7fff3cb4a000 - 0x7fff3cb86fff libGLU.dylib (17.10.22) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff3d5c2000 - 0x7fff3d5d1ff7 com.apple.opengl (17.10.22 - 17.10.22) /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff3d5d2000 - 0x7fff3d74bfff GLEngine (17.10.22) /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine 0x7fff3d74c000 - 0x7fff3d774fff GLRendererFloat (17.10.22) /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat 0x7fff3e58f000 - 0x7fff3e812ffb com.apple.QuartzCore (1.11 - 841.4) /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff3f393000 - 0x7fff3f6dcff1 com.apple.security (7.0 - 59306.140.5) /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff3f6dd000 - 0x7fff3f765ffb com.apple.securityfoundation (6.0 - 55236.60.1) <7C69DF47-4017-3DF2-B55B-712B481654CB> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff3f794000 - 0x7fff3f798ff8 com.apple.xpc.ServiceManagement (1.0 - 1) <2C62956C-F2D4-3EB0-86C7-EAA06331621A> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff40444000 - 0x7fff404beff7 com.apple.SystemConfiguration (1.19 - 1.19) <84F9B3BB-F7AF-3B7C-8CD0-D3C22D19619F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff4073e000 - 0x7fff40ac1ff4 com.apple.VideoToolbox (1.0 - 2625.9) <6CF18E28-A7A8-3952-8171-7E4FF4FB37FA> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 0x7fff4442e000 - 0x7fff444f3fe7 com.apple.APFS (1412.141.1 - 1412.141.1) /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS 0x7fff45608000 - 0x7fff45609ff1 com.apple.AggregateDictionary (1.0 - 1) <95A291F5-B69F-3C37-9483-C3B2EBF52AC1> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary 0x7fff45ba3000 - 0x7fff45bc0ff4 com.apple.AppContainer (4.0 - 448.100.6) <87CEE13C-8585-3EFB-92CD-0852DFF0921B> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer 0x7fff45c15000 - 0x7fff45c23ff7 com.apple.AppSandbox (4.0 - 448.100.6) <0F49AA04-3400-349A-9096-6D4D7ED61027> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox 0x7fff4609f000 - 0x7fff460c3ffb com.apple.framework.Apple80211 (13.0 - 1610.1) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff46381000 - 0x7fff46390fd7 com.apple.AppleFSCompression (119.100.1 - 1.0) <466ABD77-2E52-36D1-8E39-77AE2CC61611> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression 0x7fff4648f000 - 0x7fff4649aff7 com.apple.AppleIDAuthSupport (1.0 - 1) <74F6CD9C-27A7-39C7-A7EB-47E60D2517EB> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport 0x7fff464dc000 - 0x7fff46524ff7 com.apple.AppleJPEG (1.0 - 1) <6DE30A07-C627-319B-A0DE-EB7A832BEB88> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff46913000 - 0x7fff46935fff com.apple.applesauce (1.0 - 16.25) <68E0364C-AEA7-3654-A030-136BF3CD92F3> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce 0x7fff469f4000 - 0x7fff469f7fff com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <67255151-F989-39F0-BC87-0C0BDAE70730> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo 0x7fff469f8000 - 0x7fff46a48ff7 com.apple.AppleVAFramework (6.1.2 - 6.1.2) <8E18983B-AF92-3853-8251-A6577A55AC15> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 0x7fff46a91000 - 0x7fff46aa0ff9 com.apple.AssertionServices (1.0 - 223.140.2) <48AD21CA-B81D-380E-A04F-90C48FDA5203> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices 0x7fff46fe3000 - 0x7fff473deff8 com.apple.audio.AudioResourceArbitration (1.0 - 1) <2BD68521-C19C-3D67-B5EB-DE3E9A4DAF0A> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration 0x7fff4751d000 - 0x7fff4756eff9 com.apple.audio.AudioSession (1.0 - 17) /System/Library/PrivateFrameworks/AudioSession.framework/Versions/A/AudioSession 0x7fff4756f000 - 0x7fff4759cff7 libSessionUtility.dylib (17) <54A1C204-FCBA-3106-A896-28F22ECF144E> /System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib 0x7fff47634000 - 0x7fff47874fe0 com.apple.audio.AudioToolboxCore (1.0 - 1104.93) <5B539F50-93E8-3F73-9E4C-678C85D0488F> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore 0x7fff47878000 - 0x7fff47994fff com.apple.AuthKit (1.0 - 1) /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit 0x7fff47b51000 - 0x7fff47b5aff7 com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement 0x7fff47b5b000 - 0x7fff47bfcff5 com.apple.backup.framework (1.11.6 - 1298.6.2) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff47bfd000 - 0x7fff47c89ff6 com.apple.BaseBoard (466.3 - 466.3) <10D0F3BB-E8F3-365E-8528-6AC996A9B0E7> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard 0x7fff47d8b000 - 0x7fff47dc7ff7 com.apple.bom (14.0 - 219.2) <79CBE5E7-054F-377B-9566-A86A9F120CF1> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom 0x7fff48947000 - 0x7fff48996fff com.apple.ChunkingLibrary (307 - 307) <5B09C30D-FD2B-3E98-8B64-C5EF470FC13C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x7fff49842000 - 0x7fff49852ffb com.apple.CommonAuth (4.0 - 2.0) /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff49866000 - 0x7fff4987dfff com.apple.commonutilities (8.0 - 900) /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities 0x7fff49f84000 - 0x7fff4a359fc8 com.apple.CoreAUC (283.0.0 - 283.0.0) <4341271C-D270-3F9F-8464-31A20D15158D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 0x7fff4a35a000 - 0x7fff4a387ff7 com.apple.CoreAVCHD (6.1.0 - 6100.4.1) /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD 0x7fff4a3aa000 - 0x7fff4a3cbff4 com.apple.analyticsd (1.0 - 1) /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics 0x7fff4a962000 - 0x7fff4a972ff3 com.apple.CoreEmoji (1.0 - 107.1) <7C2B3259-083B-31B8-BCDB-1BA360529936> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji 0x7fff4afb2000 - 0x7fff4b01cff0 com.apple.CoreNLP (1.0 - 213) /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP 0x7fff4b44a000 - 0x7fff4b452ff8 com.apple.CorePhoneNumbers (1.0 - 1) /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers 0x7fff4be3f000 - 0x7fff4be62fff com.apple.CoreSVG (1.0 - 129.3) /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG 0x7fff4be63000 - 0x7fff4be96fff com.apple.CoreServicesInternal (446.7 - 446.7) <65F53A22-6B61-382C-AAC2-B2C53F8FFB44> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff4be97000 - 0x7fff4bec5ffd com.apple.CSStore (1069.24 - 1069.24) /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore 0x7fff4c3ea000 - 0x7fff4c480ff7 com.apple.CoreSymbolication (11.4 - 64535.33.2) <0B3BF87A-7F95-3D79-B4F8-421D6FAC4A6C> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x7fff4c518000 - 0x7fff4c644ff6 com.apple.coreui (2.1 - 609.4) <788818B7-7EBC-316D-9464-D12E365E3791> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff4c645000 - 0x7fff4c7feffa com.apple.CoreUtils (6.2.4 - 624.7) <456CC907-E838-3945-B70A-66E862C19CD6> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils 0x7fff4c938000 - 0x7fff4c94bff1 com.apple.CrashReporterSupport (10.13 - 15016) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff4ca04000 - 0x7fff4ca16ff8 com.apple.framework.DFRFoundation (1.0 - 252.50.1) <8162057E-E856-3451-9160-04AEDDECFFA4> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation 0x7fff4ca17000 - 0x7fff4ca1cfff com.apple.DSExternalDisplay (3.1 - 380) <31ECB5FD-7660-33DB-BC5B-2B2A2AA7C686> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay 0x7fff4caa6000 - 0x7fff4cb20ff0 com.apple.datadetectorscore (8.0 - 659) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff4cb6c000 - 0x7fff4cba9ff8 com.apple.DebugSymbols (194 - 194) <040AE30B-CF2C-3798-A289-0929B8CAB10D> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x7fff4cbaa000 - 0x7fff4cd32ff6 com.apple.desktopservices (1.14.5 - 1281.5.3) /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff4e6f3000 - 0x7fff4eb0eff1 com.apple.vision.FaceCore (4.3.0 - 4.3.0) <5D32F65D-2CD7-3204-975C-F4C9256E505F> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff4f1ad000 - 0x7fff4f2e4ff4 libFontParser.dylib (277.2.6.1) <9E9E2EAA-3273-360E-A01B-EB986ECB7BCF> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib 0x7fff4f2e5000 - 0x7fff4f319fff libTrueTypeScaler.dylib (277.2.6.1) /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib 0x7fff4f37e000 - 0x7fff4f38eff6 libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <1605B441-08E0-332D-B7D8-0E13F37B54E7> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib 0x7fff5286f000 - 0x7fff52870fff libmetal_timestamp.dylib (902.14.11) /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib 0x7fff53f1e000 - 0x7fff53f29ff7 libGPUSupportMercury.dylib (17.10.22) <398D9635-B9CB-3BBB-A1E4-D1D1270D3F99> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib 0x7fff53f2a000 - 0x7fff53f30fff com.apple.GPUWrangler (5.2.6 - 5.2.6) <487F2E7A-A5FF-3C36-A8E9-B85D98618116> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler 0x7fff5424f000 - 0x7fff54275ff1 com.apple.GenerationalStorage (2.0 - 314) <54483E50-20BB-3AF8-900F-992320C109B0> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x7fff553a3000 - 0x7fff553b1ffb com.apple.GraphVisualizer (1.0 - 100.1) <507D5812-9CB4-3C94-938C-59ED2B370818> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer 0x7fff55550000 - 0x7fff5560eff4 com.apple.Heimdal (4.0 - 2.0) /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff5778a000 - 0x7fff57793ffe com.apple.IOAccelMemoryInfo (1.0 - 1) <50DDA9C2-BDDF-33D4-9BA9-A161E99F1EAD> /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo 0x7fff57794000 - 0x7fff5779cff5 com.apple.IOAccelerator (438.7.3 - 438.7.3) <06E3E70B-C0D0-39A2-96B7-12ED6A0EBEE7> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator 0x7fff577a9000 - 0x7fff577c0fff com.apple.IOPresentment (47.10 - 37) <32F1B3BC-4644-3982-AAB2-8EB5D5FF0161> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment 0x7fff57b48000 - 0x7fff57b93ff1 com.apple.IconServices (438.3 - 438.3) <0DADB4C3-46FF-3FDB-8A86-51E2067FC7F4> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff57d51000 - 0x7fff57d58ff9 com.apple.InternationalSupport (1.0 - 45.4) <8D8D4A7D-FD35-36B8-A456-7C93030EDAB3> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport 0x7fff57fe5000 - 0x7fff58004ffd com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <6F655A32-F963-3A7E-B475-E460F4AC7D99> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle 0x7fff58139000 - 0x7fff58207ffd com.apple.LanguageModeling (1.0 - 215.1) /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff58208000 - 0x7fff58250fff com.apple.Lexicon-framework (1.0 - 72) <41F208B9-8255-3EC7-9673-FE0925D071D3> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon 0x7fff58257000 - 0x7fff5825cff3 com.apple.LinguisticData (1.0 - 353.18) <3B92F249-4602-325F-984B-D2DE61EEE4E1> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData 0x7fff58af5000 - 0x7fff58af8fff com.apple.Mangrove (1.0 - 25) <482F300F-9B70-351F-A4DF-B440EEF7368D> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove 0x7fff58d61000 - 0x7fff58debff8 com.apple.MediaExperience (1.0 - 1) <0203AF27-AB5E-32FA-B529-AB7F29EEB887> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience 0x7fff595c5000 - 0x7fff59611fff com.apple.spotlight.metadata.utilities (1.0 - 2076.7) <0237323B-EC78-3FBF-9FC7-5A1FE2B5CE25> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities 0x7fff59612000 - 0x7fff596e3ffa com.apple.gpusw.MetalTools (1.0 - 1) <99876E08-37D7-3828-8796-56D90C9AFBDB> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools 0x7fff59917000 - 0x7fff59935fff com.apple.MobileKeyBag (2.0 - 1.0) /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag 0x7fff59b98000 - 0x7fff59bc8ff7 com.apple.MultitouchSupport.framework (3440.1 - 3440.1) <6794E1C8-9627-33DF-84F4-FDD02C97F383> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff5a0c8000 - 0x7fff5a0d2fff com.apple.NetAuth (6.2 - 6.2) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff5aae8000 - 0x7fff5ab33ffb com.apple.OTSVG (1.0 - 643.1.5.1) <001E5E8C-1DC0-3A6E-BDE4-1B7887E47F76> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG 0x7fff5bd50000 - 0x7fff5bd5bff2 com.apple.PerformanceAnalysis (1.243.2 - 243.2) /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff5bd5c000 - 0x7fff5bd84ffb com.apple.persistentconnection (1.0 - 1.0) <5B2D87A8-2641-3F6D-ACEA-96B00F85AAB5> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection 0x7fff5e744000 - 0x7fff5e75dffb com.apple.ProtocolBuffer (1 - 274.24.9.16.3) <5A020941-C43C-303E-8DE8-230FC6A84DBC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer 0x7fff5ebbd000 - 0x7fff5ebe6ff1 com.apple.RemoteViewServices (2.0 - 148) /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff5ed4b000 - 0x7fff5ed86ff0 com.apple.RunningBoardServices (1.0 - 223.140.2) <96BB04BD-D6E0-3D70-8F36-89B46DA1DA30> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices 0x7fff60667000 - 0x7fff6066aff5 com.apple.SecCodeWrapper (4.0 - 448.100.6) /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper 0x7fff607dd000 - 0x7fff60904fff com.apple.Sharing (1526.37 - 1526.37) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff61d19000 - 0x7fff6200fff7 com.apple.SkyLight (1.600.0 - 451.4) /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight 0x7fff6285c000 - 0x7fff6286affb com.apple.SpeechRecognitionCore (6.0.91.2 - 6.0.91.2) <4D6CAC2A-151B-3BBE-BDB7-E2BE72128691> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff6309e000 - 0x7fff630a7ff7 com.apple.SymptomDiagnosticReporter (1.0 - 1238.120.1) <14929A5D-C369-3B46-844B-CD29A3D1A015> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter 0x7fff6335e000 - 0x7fff6336eff3 com.apple.TCC (1.0 - 1) <017AB27D-6821-303A-8FD2-6DAC795CC7AA> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff63893000 - 0x7fff63959ff0 com.apple.TextureIO (3.10.9 - 3.10.9) /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO 0x7fff63b29000 - 0x7fff63d81ff0 com.apple.UIFoundation (1.0 - 662) /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation 0x7fff649f6000 - 0x7fff64a16ffc com.apple.UserManagement (1.0 - 1) <9F00880E-6EA6-3684-B208-455E14EC07C8> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement 0x7fff657c2000 - 0x7fff658acff8 com.apple.ViewBridge (464.1 - 464.1) <25CE39DF-2052-3873-9113-DB52B385C4BB> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge 0x7fff65a52000 - 0x7fff65a53fff com.apple.WatchdogClient.framework (1.0 - 67.120.2) /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient 0x7fff66683000 - 0x7fff66686ffa com.apple.dt.XCTTargetBootstrap (1.0 - 16091) /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap 0x7fff66700000 - 0x7fff6670eff5 com.apple.audio.caulk (1.0 - 32.3) <06D695EA-E2BC-31E4-9816-9C12542BA744> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk 0x7fff66a50000 - 0x7fff66a52ff3 com.apple.loginsupport (1.0 - 1) <12F77885-27DC-3837-9CE9-A25EBA75F833> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff66a53000 - 0x7fff66a66ffd com.apple.login (3.0 - 3.0) /System/Library/PrivateFrameworks/login.framework/Versions/A/login 0x7fff66a98000 - 0x7fff66aa4ffd com.apple.perfdata (1.0 - 51.100.6) <21760CFD-62FF-3466-B3AD-191D02411DA0> /System/Library/PrivateFrameworks/perfdata.framework/Versions/A/perfdata 0x7fff69529000 - 0x7fff69535ff9 libAudioStatistics.dylib (1104.93) <42CAC6A2-BCC3-391B-B1C1-D0AC69E99CF4> /usr/lib/libAudioStatistics.dylib 0x7fff69536000 - 0x7fff69569ffa libAudioToolboxUtility.dylib (1104.93) /usr/lib/libAudioToolboxUtility.dylib 0x7fff69570000 - 0x7fff695a4fff libCRFSuite.dylib (48) <5E5DE3CB-30DD-34DC-AEF8-FE8536A85E96> /usr/lib/libCRFSuite.dylib 0x7fff695a7000 - 0x7fff695b1fff libChineseTokenizer.dylib (34) <7F0DA183-1796-315A-B44A-2C234C7C50BE> /usr/lib/libChineseTokenizer.dylib 0x7fff6963d000 - 0x7fff6963fff7 libDiagnosticMessagesClient.dylib (112) /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff69685000 - 0x7fff6983cffb libFosl_dynamic.dylib (100.4) <737573B2-190A-3BA1-8220-807AD0A2CE5E> /usr/lib/libFosl_dynamic.dylib 0x7fff69863000 - 0x7fff69869ff3 libIOReport.dylib (54) <75D177C4-BAD7-3285-B8E1-3019F49B3178> /usr/lib/libIOReport.dylib 0x7fff6994b000 - 0x7fff69952fff libMatch.1.dylib (36) <5C6F3971-9D9E-3630-BDB6-60BFC5A665E0> /usr/lib/libMatch.1.dylib 0x7fff69981000 - 0x7fff699a1ff7 libMobileGestalt.dylib (826.140.5) <2BE94E6A-FA61-312F-84A1-F764D71B7E39> /usr/lib/libMobileGestalt.dylib 0x7fff69a21000 - 0x7fff69afeff7 libSMC.dylib (20) <5C9C17F2-1E6F-3A19-A440-86F74D82284F> /usr/lib/libSMC.dylib 0x7fff69b13000 - 0x7fff69b14fff libSystem.B.dylib (1281.100.1) /usr/lib/libSystem.B.dylib 0x7fff69ba1000 - 0x7fff69ba2fff libThaiTokenizer.dylib (3) <4F4ADE99-0D09-3223-B7C0-C407AB6DE8DC> /usr/lib/libThaiTokenizer.dylib 0x7fff69bba000 - 0x7fff69bd0fff libapple_nghttp2.dylib (1.39.2) <07FEC48A-87CF-32A3-8194-FA70B361713A> /usr/lib/libapple_nghttp2.dylib 0x7fff69c05000 - 0x7fff69c77ff7 libarchive.2.dylib (72.140.1) /usr/lib/libarchive.2.dylib 0x7fff69c78000 - 0x7fff69d11fe5 libate.dylib (3.0.1) <76EA60FB-748C-313F-8951-B076540BEA97> /usr/lib/libate.dylib 0x7fff69d15000 - 0x7fff69d15ff3 libauto.dylib (187) /usr/lib/libauto.dylib 0x7fff69ddb000 - 0x7fff69debffb libbsm.0.dylib (60.100.1) <00BFFB9A-2FFE-3C24-896A-251BC61917FD> /usr/lib/libbsm.0.dylib 0x7fff69dec000 - 0x7fff69df8fff libbz2.1.0.dylib (44) <14CC4988-B6D4-3879-AFC2-9A0DDC6388DE> /usr/lib/libbz2.1.0.dylib 0x7fff69df9000 - 0x7fff69e4bfff libc++.1.dylib (902.1) <59A8239F-C28A-3B59-B8FA-11340DC85EDC> /usr/lib/libc++.1.dylib 0x7fff69e4c000 - 0x7fff69e61ffb libc++abi.dylib (902) /usr/lib/libc++abi.dylib 0x7fff69e62000 - 0x7fff69e62fff libcharset.1.dylib (59) <72447768-9244-39AB-8E79-2FA14EC0AD33> /usr/lib/libcharset.1.dylib 0x7fff69e63000 - 0x7fff69e74fff libcmph.dylib (8) /usr/lib/libcmph.dylib 0x7fff69e75000 - 0x7fff69e8cfd7 libcompression.dylib (87) <64C91066-586D-38C0-A2F3-3E60A940F859> /usr/lib/libcompression.dylib 0x7fff6a166000 - 0x7fff6a17cff7 libcoretls.dylib (167) <770A5B96-936E-34E3-B006-B1CEC299B5A5> /usr/lib/libcoretls.dylib 0x7fff6a17d000 - 0x7fff6a17efff libcoretls_cfhelpers.dylib (167) <940BF370-FD0C-30A8-AA05-FF48DA44FA4C> /usr/lib/libcoretls_cfhelpers.dylib 0x7fff6a73b000 - 0x7fff6a79aff7 libcups.2.dylib (483.6) /usr/lib/libcups.2.dylib 0x7fff6a8a4000 - 0x7fff6a8a4fff libenergytrace.dylib (21) <162DFCC0-8F48-3DD0-914F-FA8653E27B26> /usr/lib/libenergytrace.dylib 0x7fff6a8a5000 - 0x7fff6a8bdfff libexpat.1.dylib (19.60.2) /usr/lib/libexpat.1.dylib 0x7fff6a8cb000 - 0x7fff6a8cdfff libfakelink.dylib (149.1) <36146CB2-E6A5-37BB-9EE8-1B4034D8F3AD> /usr/lib/libfakelink.dylib 0x7fff6a8dc000 - 0x7fff6a8e1fff libgermantok.dylib (24) /usr/lib/libgermantok.dylib 0x7fff6a8e2000 - 0x7fff6a8ebff7 libheimdal-asn1.dylib (564.140.1) <0AC6FB62-2B0F-3E93-A931-E4DC4B1D757A> /usr/lib/libheimdal-asn1.dylib 0x7fff6a8ec000 - 0x7fff6a9dcfff libiconv.2.dylib (59) <18311A67-E4EF-3CC7-95B3-C0EDEE3A282F> /usr/lib/libiconv.2.dylib 0x7fff6a9dd000 - 0x7fff6ac34fff libicucore.A.dylib (64260.0.1) <8AC2CB07-E7E0-340D-A849-186FA1F27251> /usr/lib/libicucore.A.dylib 0x7fff6ac4e000 - 0x7fff6ac4ffff liblangid.dylib (133) <30CFC08C-EF36-3CF5-8AEA-C1CB070306B7> /usr/lib/liblangid.dylib 0x7fff6ac50000 - 0x7fff6ac68ff3 liblzma.5.dylib (16) /usr/lib/liblzma.5.dylib 0x7fff6ac80000 - 0x7fff6ad27ff7 libmecab.dylib (883.11) <0D5BFD01-D4A7-3C8D-AA69-C329C1A69792> /usr/lib/libmecab.dylib 0x7fff6ad28000 - 0x7fff6af8aff1 libmecabra.dylib (883.11) /usr/lib/libmecabra.dylib 0x7fff6b2f7000 - 0x7fff6b326fff libncurses.5.4.dylib (57) <995DFEEA-40F3-377F-B73D-D02AC59D591F> /usr/lib/libncurses.5.4.dylib 0x7fff6b456000 - 0x7fff6b8d2ff5 libnetwork.dylib (1880.120.4) /usr/lib/libnetwork.dylib 0x7fff6b973000 - 0x7fff6b9a6fde libobjc.A.dylib (787.1) <6DF81160-5E7F-3E31-AA1E-C875E3B98AF6> /usr/lib/libobjc.A.dylib 0x7fff6b9b9000 - 0x7fff6b9bdfff libpam.2.dylib (25.100.1) <0502F395-8EE6-3D2A-9239-06FD5622E19E> /usr/lib/libpam.2.dylib 0x7fff6b9c0000 - 0x7fff6b9f6ff7 libpcap.A.dylib (89.120.1) /usr/lib/libpcap.A.dylib 0x7fff6ba36000 - 0x7fff6ba44ff9 libperfcheck.dylib (37.100.2) <9D9C4879-8A80-34C4-B0D2-BE341FD6D321> /usr/lib/libperfcheck.dylib 0x7fff6ba7a000 - 0x7fff6ba92fff libresolv.9.dylib (67.40.1) /usr/lib/libresolv.9.dylib 0x7fff6ba94000 - 0x7fff6bad8ff7 libsandbox.1.dylib (1217.141.1) <363BBD96-E1F0-38CF-90EF-EF41C0C7044E> /usr/lib/libsandbox.1.dylib 0x7fff6baec000 - 0x7fff6baedff7 libspindump.dylib (281.3) /usr/lib/libspindump.dylib 0x7fff6baee000 - 0x7fff6bcd8ff7 libsqlite3.dylib (308.5) <35A2BD9F-4E33-30DE-A994-4AB585AC3AFE> /usr/lib/libsqlite3.dylib 0x7fff6bf29000 - 0x7fff6bf2cffb libutil.dylib (57) /usr/lib/libutil.dylib 0x7fff6bf2d000 - 0x7fff6bf3aff7 libxar.1.dylib (425.2) /usr/lib/libxar.1.dylib 0x7fff6bf40000 - 0x7fff6c022ff7 libxml2.2.dylib (33.4) /usr/lib/libxml2.2.dylib 0x7fff6c026000 - 0x7fff6c04efff libxslt.1.dylib (16.9) <34A45627-DA5B-37D2-9609-65B425E0010A> /usr/lib/libxslt.1.dylib 0x7fff6c04f000 - 0x7fff6c061ff3 libz.1.dylib (76) <793D9643-CD83-3AAC-8B96-88D548FAB620> /usr/lib/libz.1.dylib 0x7fff6c910000 - 0x7fff6c915ff3 libcache.dylib (83) /usr/lib/system/libcache.dylib 0x7fff6c916000 - 0x7fff6c921fff libcommonCrypto.dylib (60165.120.1) /usr/lib/system/libcommonCrypto.dylib 0x7fff6c922000 - 0x7fff6c929fff libcompiler_rt.dylib (101.2) <49B8F644-5705-3F16-BBE0-6FFF9B17C36E> /usr/lib/system/libcompiler_rt.dylib 0x7fff6c92a000 - 0x7fff6c933ff7 libcopyfile.dylib (166.40.1) <3C481225-21E7-370A-A30E-0CCFDD64A92C> /usr/lib/system/libcopyfile.dylib 0x7fff6c934000 - 0x7fff6c9c6fdb libcorecrypto.dylib (866.140.1) <60567BF8-80FA-359A-B2F3-A3BAEFB288FD> /usr/lib/system/libcorecrypto.dylib 0x7fff6cad3000 - 0x7fff6cb13ff0 libdispatch.dylib (1173.100.2) /usr/lib/system/libdispatch.dylib 0x7fff6cb14000 - 0x7fff6cb4afff libdyld.dylib (750.6) <789A18C2-8AC7-3C88-813D-CD674376585D> /usr/lib/system/libdyld.dylib 0x7fff6cb4b000 - 0x7fff6cb4bffb libkeymgr.dylib (30) /usr/lib/system/libkeymgr.dylib 0x7fff6cb4c000 - 0x7fff6cb58ff3 libkxld.dylib (6153.141.1) <756B1F0D-2E37-31A7-A6F0-2E5C22E62C3D> /usr/lib/system/libkxld.dylib 0x7fff6cb59000 - 0x7fff6cb59ff7 liblaunch.dylib (1738.140.1) /usr/lib/system/liblaunch.dylib 0x7fff6cb5a000 - 0x7fff6cb5fff7 libmacho.dylib (959.0.1) /usr/lib/system/libmacho.dylib 0x7fff6cb60000 - 0x7fff6cb62ff3 libquarantine.dylib (110.40.3) /usr/lib/system/libquarantine.dylib 0x7fff6cb63000 - 0x7fff6cb64ff7 libremovefile.dylib (48) <7C7EFC79-BD24-33EF-B073-06AED234593E> /usr/lib/system/libremovefile.dylib 0x7fff6cb65000 - 0x7fff6cb7cff3 libsystem_asl.dylib (377.60.2) <1563EE02-0657-3B78-99BE-A947C24122EF> /usr/lib/system/libsystem_asl.dylib 0x7fff6cb7d000 - 0x7fff6cb7dff7 libsystem_blocks.dylib (74) <0D53847E-AF5F-3ACF-B51F-A15DEA4DEC58> /usr/lib/system/libsystem_blocks.dylib 0x7fff6cb7e000 - 0x7fff6cc05fff libsystem_c.dylib (1353.100.2) /usr/lib/system/libsystem_c.dylib 0x7fff6cc06000 - 0x7fff6cc09ffb libsystem_configuration.dylib (1061.141.1) <0EE84C33-64FD-372B-974A-AF7A136F2068> /usr/lib/system/libsystem_configuration.dylib 0x7fff6cc0a000 - 0x7fff6cc0dfff libsystem_coreservices.dylib (114) /usr/lib/system/libsystem_coreservices.dylib 0x7fff6cc0e000 - 0x7fff6cc16fff libsystem_darwin.dylib (1353.100.2) <5B12B5DB-3F30-37C1-8ECC-49A66B1F2864> /usr/lib/system/libsystem_darwin.dylib 0x7fff6cc17000 - 0x7fff6cc1efff libsystem_dnssd.dylib (1096.100.3) /usr/lib/system/libsystem_dnssd.dylib 0x7fff6cc1f000 - 0x7fff6cc20ffb libsystem_featureflags.dylib (17) <29FD922A-EC2C-3F25-BCCC-B58D716E60EC> /usr/lib/system/libsystem_featureflags.dylib 0x7fff6cc21000 - 0x7fff6cc6eff7 libsystem_info.dylib (538) <8A321605-5480-330B-AF9E-64E65DE61747> /usr/lib/system/libsystem_info.dylib 0x7fff6cc6f000 - 0x7fff6cc9bff7 libsystem_kernel.dylib (6153.141.1) <2B6311E6-6240-3EF7-8C87-475B66F7452C> /usr/lib/system/libsystem_kernel.dylib 0x7fff6cc9c000 - 0x7fff6cce3fff libsystem_m.dylib (3178) <00F331F1-0D09-39B3-8736-1FE90E64E903> /usr/lib/system/libsystem_m.dylib 0x7fff6cce4000 - 0x7fff6cd0bfff libsystem_malloc.dylib (283.100.6) <8549294E-4C53-36EB-99F3-584A7393D8D5> /usr/lib/system/libsystem_malloc.dylib 0x7fff6cd0c000 - 0x7fff6cd19ffb libsystem_networkextension.dylib (1095.140.2) /usr/lib/system/libsystem_networkextension.dylib 0x7fff6cd1a000 - 0x7fff6cd23ff7 libsystem_notify.dylib (241.100.2) /usr/lib/system/libsystem_notify.dylib 0x7fff6cd24000 - 0x7fff6cd2cfef libsystem_platform.dylib (220.100.1) <009A7C1F-313A-318E-B9F2-30F4C06FEA5C> /usr/lib/system/libsystem_platform.dylib 0x7fff6cd2d000 - 0x7fff6cd37fff libsystem_pthread.dylib (416.100.3) <62CB1A98-0B8F-31E7-A02B-A1139927F61D> /usr/lib/system/libsystem_pthread.dylib 0x7fff6cd38000 - 0x7fff6cd3cff3 libsystem_sandbox.dylib (1217.141.1) <6DE13684-5A67-3009-A53A-C9086CF241C3> /usr/lib/system/libsystem_sandbox.dylib 0x7fff6cd3d000 - 0x7fff6cd3ffff libsystem_secinit.dylib (62.100.2) /usr/lib/system/libsystem_secinit.dylib 0x7fff6cd40000 - 0x7fff6cd47ffb libsystem_symptoms.dylib (1238.120.1) <5820A2AF-CE72-3AB3-ABCC-273A3419FB55> /usr/lib/system/libsystem_symptoms.dylib 0x7fff6cd48000 - 0x7fff6cd5eff2 libsystem_trace.dylib (1147.120) <04B47629-847B-3D74-8ABE-C05EF9DEEFE4> /usr/lib/system/libsystem_trace.dylib 0x7fff6cd60000 - 0x7fff6cd65ff7 libunwind.dylib (35.4) <42B7B509-BAFE-365B-893A-72414C92F5BF> /usr/lib/system/libunwind.dylib 0x7fff6cd66000 - 0x7fff6cd9bffe libxpc.dylib (1738.140.1) <3E243A41-030F-38E3-9FD2-7B38C66C35B1> /usr/lib/system/libxpc.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: 8500 thread_create: 0 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=688.8M resident=0K(0%) swapped_out_or_unallocated=688.8M(100%) Writable regions: Total=225.4M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=225.4M(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Accelerate framework 384K 3 Activity Tracing 256K 1 CG backing stores 880K 4 CG image 176K 4 CoreAnimation 552K 17 CoreGraphics 8K 1 CoreImage 8K 2 CoreServices 28K 1 CoreUI image data 304K 5 Dispatch continuations 16.0M 1 Foundation 4K 1 Kernel Alloc Once 8K 1 MALLOC 153.1M 102 MALLOC guard page 32K 7 OpenGL GLSL 256K 3 STACK GUARD 56.1M 18 Stack 19.1M 18 VM_ALLOCATE 27.1M 81 VM_ALLOCATE (reserved) 8228K 2 reserved VM address space (unallocated) __DATA 41.1M 313 __DATA_CONST 180K 6 __FONT_DATA 4K 1 __GLSLBUILTINS 5176K 1 __LINKEDIT 400.7M 11 __OBJC_RO 32.3M 1 __OBJC_RW 1908K 2 __TEXT 288.1M 307 __UNICODE 564K 1 mapped file 58.2M 21 shared memory 648K 17 =========== ======= ======= TOTAL 1.1G 953 TOTAL, minus reserved VM space 1.1G 953 Model: MacBookPro14,3, BootROM 428.0.0.0.0, 4 processors, Quad-Core Intel Core i7, 2.8 GHz, 16 GB, SMC 2.45f4 Graphics: kHW_IntelHDGraphics630Item, Intel HD Graphics 630, spdisplays_builtin Graphics: kHW_AMDRadeonPro555Item, Radeon Pro 555, spdisplays_pcie_device, 2 GB Memory Module: BANK 0/DIMM0, 8 GB, LPDDR3, 2133 MHz, 0x802C, 0x4D5435324C31473332443450472D30393320 Memory Module: BANK 1/DIMM0, 8 GB, LPDDR3, 2133 MHz, 0x802C, 0x4D5435324C31473332443450472D30393320 AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x173), Broadcom BCM43xx 1.0 (7.77.111.1 AirPortDriverBrcmNIC-1615.1) Bluetooth: Version 7.0.6f7, 3 services, 18 devices, 1 incoming serial ports Network Service: Wi-Fi, AirPort, en0 PCI Card: pci1b21,1142, sppci_usbxhci, Thunderbolt@71,0,0 PCI Card: ethernet, sppci_ethernet, Thunderbolt@70,0,0 USB Device: USB 3.0 Bus USB Device: Apple T1 Controller USB Device: USB 3.0 Bus USB Device: USB 2.0 Hub USB Device: HD Pro Webcam C920 USB Device: ROCCAT Kova USB Device: Corsair Gaming K65 LUX RGB Keyboard Thunderbolt Bus: MacBook Pro, Apple Inc., 41.4 Thunderbolt Device: TB3-MiniDock-HM, CalDigit, Inc., 3, 33.1 Thunderbolt Bus: MacBook Pro, Apple Inc., 41.4 ```
Godot console log ``` Running: /Applications/GODOT_MAIN.app/Contents/MacOS/Godot --path /Users/iamacup/Desktop/New%20Game%20Project --remote-debug 127.0.0.1:6007 --allow_focus_steal_pid 19628 --position 768,420 arguments 0: /Applications/GODOT_MAIN.app/Contents/MacOS/Godot 1: --path 2: /Users/iamacup/Desktop/New%20Game%20Project 3: --remote-debug 4: 127.0.0.1:6007 5: --allow_focus_steal_pid 6: 19628 7: --position 8: 768,420 Current path: /Users/iamacup/Desktop/New Game Project Godot Engine v3.2.3.rc3.mono.official - https://godotengine.org OpenGL ES 3.0 Renderer: AMD Radeon Pro 555 OpenGL Engine Registered camera FaceTime HD Camera (Built-in) with id 1 position 0 at index 0 Registered camera HD Pro Webcam C920 with id 2 position 0 at index 1 Mono: Logfile is: /Users/iamacup/Library/Application Support/Godot/mono/mono_logs/2020_08_13 20.53.12 (19699).txt Ready in C#! ```
mono_log file ``` Config attempting to parse: '/Applications/GODOT_MAIN.app/Contents/MacOS/../Resources/GodotSharp/Mono/etc/mono/config'. (in domain Mono, info) Config attempting to parse: '/Users/iamacup/.mono/config'. (in domain Mono, info) Image addref mscorlib[0x7ffb4d79b4b0] (asmctx DEFAULT) -> /Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/mono/4.5/mscorlib.dll[0x7ffb4e0c6400]: 2 (in domain Mono, info) Prepared to set up assembly 'mscorlib' (/Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/mono/4.5/mscorlib.dll) (in domain Mono, info) AOT: image '/Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/mono/4.5/mscorlib.dll.dylib' not found: dlopen(/Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/mono/4.5/mscorlib.dll.dylib, 9): image not found (in domain Mono, info) AOT: image '/Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/mono/aot-cache/amd64/mscorlib.dll.dylib' not found: dlopen(/Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/mono/aot-cache/amd64/mscorlib.dll.dylib, 9): image not found (in domain Mono, info) Assembly mscorlib[0x7ffb4d79b4b0] added to domain GodotEngine.RootDomain, ref_count=1 (in domain Mono, info) Assembly mscorlib[0x7ffb4d79b4b0] added to domain GodotEngine.Domain.Scripts, ref_count=2 (in domain Mono, info) Image addref GodotSharp[0x7ffb4d7bbb10] (asmctx DEFAULT) -> /Users/iamacup/Desktop/New Game Project/.mono/assemblies/Debug/GodotSharp.dll[0x7ffb4ef11a00]: 3 (in domain Mono, info) Prepared to set up assembly 'GodotSharp' (/Users/iamacup/Desktop/New Game Project/.mono/assemblies/Debug/GodotSharp.dll) (in domain Mono, info) Assembly GodotSharp[0x7ffb4d7bbb10] added to domain GodotEngine.Domain.Scripts, ref_count=1 (in domain Mono, info) Loading reference 0 of /Users/iamacup/Desktop/New Game Project/.mono/assemblies/Debug/GodotSharp.dll asmctx DEFAULT, looking for mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 (in domain Mono, info) Config attempting to parse: ''. (in domain Mono, info) Assembly Ref addref GodotSharp[0x7ffb4d7bbb10] -> mscorlib[0x7ffb4d79b4b0]: 3 (in domain Mono, info) Image addref GodotSharpEditor[0x7ffb4d7c5250] (asmctx DEFAULT) -> /Users/iamacup/Desktop/New Game Project/.mono/assemblies/Debug/GodotSharpEditor.dll[0x7ffb4f0a7800]: 3 (in domain Mono, info) Prepared to set up assembly 'GodotSharpEditor' (/Users/iamacup/Desktop/New Game Project/.mono/assemblies/Debug/GodotSharpEditor.dll) (in domain Mono, info) Assembly GodotSharpEditor[0x7ffb4d7c5250] added to domain GodotEngine.Domain.Scripts, ref_count=1 (in domain Mono, info) Loading reference 0 of /Users/iamacup/Desktop/New Game Project/.mono/assemblies/Debug/GodotSharpEditor.dll asmctx DEFAULT, looking for mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 (in domain Mono, info) Assembly Ref addref GodotSharpEditor[0x7ffb4d7c5250] -> mscorlib[0x7ffb4d79b4b0]: 4 (in domain Mono, info) Loading reference 2 of /Users/iamacup/Desktop/New Game Project/.mono/assemblies/Debug/GodotSharp.dll asmctx DEFAULT, looking for System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 (in domain Mono, info) Image addref System[0x7ffb543f7240] (asmctx DEFAULT) -> /Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/mono/4.5/System.dll[0x7ffb4d90e200]: 2 (in domain Mono, info) Prepared to set up assembly 'System' (/Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/mono/4.5/System.dll) (in domain Mono, info) Assembly System[0x7ffb543f7240] added to domain GodotEngine.Domain.Scripts, ref_count=1 (in domain Mono, info) Assembly Ref addref GodotSharp[0x7ffb4d7bbb10] -> System[0x7ffb543f7240]: 2 (in domain Mono, info) Loading reference 0 of /Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/mono/4.5/System.dll asmctx DEFAULT, looking for mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 (in domain Mono, info) Assembly Ref addref System[0x7ffb543f7240] -> mscorlib[0x7ffb4d79b4b0]: 5 (in domain Mono, info) Loading reference 2 of /Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/mono/4.5/System.dll asmctx DEFAULT, looking for System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a (in domain Mono, info) Image addref System.Configuration[0x7ffb54690320] (asmctx DEFAULT) -> /Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/mono/4.5/System.Configuration.dll[0x7ffb4e0f3a00]: 2 (in domain Mono, info) Prepared to set up assembly 'System.Configuration' (/Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/mono/4.5/System.Configuration.dll) (in domain Mono, info) Assembly System.Configuration[0x7ffb54690320] added to domain GodotEngine.Domain.Scripts, ref_count=1 (in domain Mono, info) Assembly Ref addref System[0x7ffb543f7240] -> System.Configuration[0x7ffb54690320]: 2 (in domain Mono, info) Loading reference 0 of /Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/mono/4.5/System.Configuration.dll asmctx DEFAULT, looking for mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 (in domain Mono, info) Assembly Ref addref System.Configuration[0x7ffb54690320] -> mscorlib[0x7ffb4d79b4b0]: 6 (in domain Mono, info) Loading reference 2 of /Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/mono/4.5/System.Configuration.dll asmctx DEFAULT, looking for System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 (in domain Mono, info) Assembly Ref addref System.Configuration[0x7ffb54690320] -> System[0x7ffb543f7240]: 3 (in domain Mono, info) Loading reference 1 of /Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/mono/4.5/System.Configuration.dll asmctx DEFAULT, looking for System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 (in domain Mono, info) Image addref System.Xml[0x7ffb54ad6820] (asmctx DEFAULT) -> /Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/mono/4.5/System.Xml.dll[0x7ffb4ef52400]: 2 (in domain Mono, info) Prepared to set up assembly 'System.Xml' (/Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/mono/4.5/System.Xml.dll) (in domain Mono, info) Assembly System.Xml[0x7ffb54ad6820] added to domain GodotEngine.Domain.Scripts, ref_count=1 (in domain Mono, info) Assembly Ref addref System.Configuration[0x7ffb54690320] -> System.Xml[0x7ffb54ad6820]: 2 (in domain Mono, info) Loading reference 0 of /Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/mono/4.5/System.Xml.dll asmctx DEFAULT, looking for mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 (in domain Mono, info) Assembly Ref addref System.Xml[0x7ffb54ad6820] -> mscorlib[0x7ffb4d79b4b0]: 7 (in domain Mono, info) DllImport attempting to load: '/Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/../lib/libmono-native-compat.dylib'. (in domain Mono, info) DllImport loaded library '/Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/../lib/libmono-native-compat.dylib'. (in domain Mono, info) DllImport searching in: '/Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/../lib/libmono-native-compat.dylib' ('/Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/../lib/libmono-native-compat.dylib'). (in domain Mono, info) Searching for 'SystemNative_GetNonCryptographicallySecureRandomBytes'. (in domain Mono, info) Probing 'SystemNative_GetNonCryptographicallySecureRandomBytes'. (in domain Mono, info) Found as 'SystemNative_GetNonCryptographicallySecureRandomBytes'. (in domain Mono, info) DllImport searching in: '/Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/../lib/libmono-native-compat.dylib' ('/Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/../lib/libmono-native-compat.dylib'). (in domain Mono, info) Searching for 'SystemNative_Stat2'. (in domain Mono, info) Probing 'SystemNative_Stat2'. (in domain Mono, info) Found as 'SystemNative_Stat2'. (in domain Mono, info) DllImport searching in: '/Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/../lib/libmono-native-compat.dylib' ('/Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/../lib/libmono-native-compat.dylib'). (in domain Mono, info) Searching for 'SystemNative_LStat2'. (in domain Mono, info) Probing 'SystemNative_LStat2'. (in domain Mono, info) Found as 'SystemNative_LStat2'. (in domain Mono, info) DllImport searching in: '/Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/../lib/libmono-native-compat.dylib' ('/Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/../lib/libmono-native-compat.dylib'). (in domain Mono, info) Searching for 'SystemNative_ConvertErrorPlatformToPal'. (in domain Mono, info) Probing 'SystemNative_ConvertErrorPlatformToPal'. (in domain Mono, info) Found as 'SystemNative_ConvertErrorPlatformToPal'. (in domain Mono, info) Loading reference 2 of /Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/mono/4.5/System.Xml.dll asmctx DEFAULT, looking for System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 (in domain Mono, info) Assembly Ref addref System.Xml[0x7ffb54ad6820] -> System[0x7ffb543f7240]: 4 (in domain Mono, info) Loading reference 3 of /Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Mono/lib/mono/4.5/System.dll asmctx DEFAULT, looking for System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 (in domain Mono, info) Assembly Ref addref System[0x7ffb543f7240] -> System.Xml[0x7ffb54ad6820]: 3 (in domain Mono, info) Image addref GodotTools[0x7ffb4f90f5e0] (asmctx DEFAULT) -> /Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Tools/GodotTools.dll[0x7ffb51009e00]: 3 (in domain Mono, info) Prepared to set up assembly 'GodotTools' (/Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Tools/GodotTools.dll) (in domain Mono, info) Assembly GodotTools[0x7ffb4f90f5e0] added to domain GodotEngine.Domain.Scripts, ref_count=1 (in domain Mono, info) Image addref GodotTools.ProjectEditor[0x7ffb4d7f8c30] (asmctx DEFAULT) -> /Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Tools/GodotTools.ProjectEditor.dll[0x7ffb4efbfa00]: 3 (in domain Mono, info) Prepared to set up assembly 'GodotTools.ProjectEditor' (/Applications/GODOT_MAIN.app/Contents/MacOS/../Frameworks/GodotSharp/Tools/GodotTools.ProjectEditor.dll) (in domain Mono, info) Assembly GodotTools.ProjectEditor[0x7ffb4d7f8c30] added to domain GodotEngine.Domain.Scripts, ref_count=1 (in domain Mono, info) Image addref New Game Project[0x7ffb4d7fb2d0] (asmctx DEFAULT) -> /Users/iamacup/Desktop/New Game Project/.mono/temp/bin/Debug/New Game Project.dll[0x7ffb4f0cce00]: 3 (in domain Mono, info) Prepared to set up assembly 'New Game Project' (/Users/iamacup/Desktop/New Game Project/.mono/temp/bin/Debug/New Game Project.dll) (in domain Mono, info) Assembly New Game Project[0x7ffb4d7fb2d0] added to domain GodotEngine.Domain.Scripts, ref_count=1 (in domain Mono, info) Loading reference 1 of /Users/iamacup/Desktop/New Game Project/.mono/temp/bin/Debug/New Game Project.dll asmctx DEFAULT, looking for GodotSharp, Version=1.0.7517.24058, Culture=neutral, PublicKeyToken=null (in domain Mono, info) Assembly Ref addref New Game Project[0x7ffb4d7fb2d0] -> GodotSharp[0x7ffb4d7bbb10]: 2 (in domain Mono, info) Loading reference 0 of /Users/iamacup/Desktop/New Game Project/.mono/temp/bin/Debug/New Game Project.dll asmctx DEFAULT, looking for mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 (in domain Mono, info) ```
iamacup commented 4 years ago

haha apparently i have spent too long coding today.

In case anyone comes accross this issue - the code should be this ;-)

using Godot;
using System;

public class Control : Godot.Control
{
    private String _str;
    public String Str 
    {
        get
        {
            return _str;
        }
        set
        {
            _str = value;
        }
    }
    public override void _Ready()
    {
        GD.Print("Ready in C#!");
        GD.Print(Str);
    }
}
akien-mga commented 4 years ago

Well a segmentation fault is an engine bug anyway that needs to be fixed.

neikeq commented 4 years ago

Hmm, I would expect to see a stack overflow message in the Godot console output.

Running a similar console app with Mono prints:

Unhandled Exception:
StackOverflowException
akien-mga commented 3 years ago

Tested in 3.2.4 beta 2 on Linux, and I get a stack overflow error in the editor, and not a SIGSEGV:

E 0:00:02.345   System.String Control.get_Str(): System.StackOverflowException: The requested operation caused a stack overflow.
  <C++ Error>   Unhandled exception
  <C++ Source>  :0 @ System.String Control.get_Str()()
  <Stack Trace> :0 @ System.String Control.get_Str()()
                Control.cs:10 @ System.String Control.get_Str()()
                Control.cs:10 @ System.String Control.get_Str()()
                Control.cs:10 @ System.String Control.get_Str()()
                Control.cs:10 @ System.String Control.get_Str()()
                Control.cs:10 @ System.String Control.get_Str()()
<snip>
                Control.cs:10 @ System.String Control.get_Str()()
                Control.cs:10 @ System.String Control.get_Str()()
                Control.cs:10 @ System.String Control.get_Str()()
                Control.cs:10 @ System.String Control.get_Str()()
                Control.cs:10 @ System.String Control.get_Str()()
                Control.cs:10 @ System.String Control.get_Str()()

Might be a macOS specific issue. CC @bruvzg.

bruvzg commented 3 years ago

Release build SIGSEGVs, release-debug prints mono error:

Stack overflow: IP: 0x1217e0670, fault addr: 0x7ffee2b54ff8
Stacktrace:
  at Control.get_Str () [0x00001] in Control.cs:10
 <...>
  at Control._Ready () [0x00015] in Control.cs:20
  at (wrapper runtime-invoke) object.runtime_invoke_void__this__ (object,intptr,intptr,intptr) [0x0002c] in <ef9d1bb304144181992b3d45b6e0cf2a>:0

I guess there's no exception handler in release build (not sure this is expected).

akien-mga commented 3 years ago

Is this fixed by #44108 maybe?

bruvzg commented 3 years ago

Is this fixed by #44108 maybe?

44108 seems to have no effect on this behavior.

akien-mga commented 1 year ago

Can you still reproduce this in 4.0.3 and 4.1-beta3 or later?