Jump to content
35 posts in this topic

Recommended Posts

Hi,

I have some issues when trying to install macOS Big Sur on the SuperMicro X11SPL-F. When trying to boot from the USB, the system always gets stuck at the infamous [EB|LOG:EXITBS:START]. I tried every suggestion from the Dortania OpenCore Guide but I am unable to boot the installer. CFGLock ist disabled via UEFIPatch, ControlMsr2 reports 

This firmware has UNLOCKED MSR 0xE2 register!

This system has been a nightmare to work with, I have some experience with hackintoshed from the past. My other rig (ASRock Z490M Pro4 + i9 10900) works perfectly fine but this motherboard and CPU combination is giving me a headache.

I will attach my current EFI config + OpenCore log. Happy if somebody could try to help me out.
 

EFI_X11SPLF.zip opencore-2024-07-28-093042.txt

Edited by xXAUsSTaR
edit post for better readability.

This is a more detailed log. 

I have created the SSDT-EC-USBX and SSDT-PLUG.aml manually and I have also added SSDT-Wrap.aml because I have found a post that mentions that this SSDT can fix some issues on C421 motherboards. 

I have also disabled ProvideCustomSlide because in a previous log, the following entries were present:
 

11:336 00:020 OCABC: MMIO devirt start
11:356 00:020 OCABC: MMIO devirt 0x80000000 (0x10000 pages, 0x8000000000000001) skip 0
11:376 00:020 OCABC: MMIO devirt 0xFD000000 (0x1800 pages, 0x800000000000100D) skip 0
11:397 00:020 OCABC: MMIO devirt 0xFED20000 (0x25 pages, 0x800000000000100D) skip 0
11:417 00:020 OCABC: MMIO devirt 0xFF000000 (0x1000 pages, 0x800000000000100D) skip 0
11:437 00:020 OCABC: MMIO devirt end, saved 303252 KB
11:458 00:020 OCABC: All slides are usable! You can disable ProvideCustomSlide!

 

opencore-2024-07-28-130042.txt

I did take a look at my decompiled FACP.aml and made sure that I use the correct SSDT-CPU-WRAP.aml -> In my case, the offset 0x98 showed:
 

[095h 0149 001h]                   Bit Width : 20
[096h 0150 001h]                  Bit Offset : 00
[097h 0151 001h]        Encoded Access Width : 02 [Word Access:16]
[098h 0152 008h]                     Address : 0000000000000500

Which means that  SSDT-CPU-WRAP.aml should be the correct one since adding 0x10 to the address should result in 0x00000510. -> Processor (PR00, 0x00, 0x00000510, 0x06) (for example)

I have also modified SSDT-RTC0-RANGE and SSDT-EC-USBX to fit the systems requirements. However I am still unable to boot, I still get stuck at the same step: [EB|LOG:EXITBS:START] 

I did try these BIOS settings from another post on this forum as well:
 

Disable :

- Intel® VT for Directed I/O (VT-d)

- Disable VMD

 

Super IO Configuration 

I/O panel (COM1) disable

- serial port header (COM2) disable

- Serial Port Console Redirection disable

 

South BridgeUSB  :

Legacy USB Support

- XHCI Hand-off

Disable : PCIe PLL SCC, Port 61h Bit-4 Emulation

 

PCH SATA Configuration :

- SATA. AHCI mode and Hot-plug disable

Support Aggressive : disable

 

PCIe/PCI/PnP Configuration :

- Above 4G Decoding not needed for Polaris or Vega GPUS so i don't know if mandatory for RDNA GPUs : but  enable is recommended.

- SR-IOV Support, ARI Support, Bus Master,  disable

- MMCFG Base : auto 

- NVMe Firmware Source : first try with Vendor Defined Firmware 

- VGA Priority : onboard

Onboard LAN Device : LAN port 1 & LAN port 2 : enable

 

CPU :

- you can try with Intel Hyper-threading disable : this will limit CPU cores count supported by MacOs (people with Amd TRX40 processor use it)

- CPU P State Control : enable

- EIST : enable

I am out of ideas, I did recreate my EFI config multiple times today already but nothing seems to work to get past the [EB|LOG:EXITBS:START] error.

I have attached my latest OpenCore Debug config with all the logs and the SysReport. Maybe somebody can guide me in the right direction.

Thanks in advance :)

opencore-2024-07-28-214527.zip

Good morning or evening, depending where you are located ;)

I did find some interesting information again, my SSDT-PLUG.aml needed some adaptions as well. Since SSDT-CPU-WRAP gets loaded first, SSDT-PLUG needs to target the fake Processor() objects created by SSDT-CPU-WRAP.

So the new config would be:
 

/*
 * Intel ACPI Component Architecture
 * AML/ASL+ Disassembler version 20221020 (32-bit version)
 * Copyright (c) 2000 - 2022 Intel Corporation
 * 
 * Disassembling to symbolic ASL+ operators
 *
 * Disassembly of H:/EFI/OC/ACPI/SSDT-PLUG.aml, Mon Jul 29 09:15:33 2024
 *
 * Original Table Header:
 *     Signature        "SSDT"
 *     Length           0x000000B6 (182)
 *     Revision         0x02
 *     Checksum         0xA3
 *     OEM ID           "ACDT"
 *     OEM Table ID     "CpuPlug"
 *     OEM Revision     0x00003000 (12288)
 *     Compiler ID      "INTL"
 *     Compiler Version 0x20221020 (539103264)
 */
DefinitionBlock ("", "SSDT", 2, "ACDT", "CpuPlug", 0x00003000)
{
    External (_SB_.SCK0.PR00, ProcessorObj)

    Method (PMPM, 4, NotSerialized)
    {
        If ((Arg2 == Zero))
        {
            Return (Buffer (One)
            {
                 0x03                                             // .
            })
        }

        Return (Package (0x02)
        {
            "plugin-type", 
            One
        })
    }

    If (CondRefOf (\_SB.SCK0.PR00))
    {
        If ((ObjectType (\_SB.SCK0.PR00) == 0x0C))
        {
            Scope (\_SB.SCK0.PR00)
            {
                If (_OSI ("Darwin"))
                {
                    Method (_DSM, 4, NotSerialized)  // _DSM: Device-Specific Method
                    {
                        Return (PMPM (Arg0, Arg1, Arg2, Arg3))
                    }
                }
            }
        }
    }
}


Lets see if that makes any difference. 
 

Edited by anullpointerexception
  • Like 1

Even with the modified SSDT-PLUG and SSDT-CPU-WRAP, I am still unable to boot the installer. I am out of ideas; this motherboard has been a nightmare so far. :no:

Does anyone have any recommendations on what to look at? 

Congratulations on your good documentation work!

You're almost there. It's "just" a matter of debugging [EB|LOG:EXITBS:START], which can be many things. Probably a matter of finding the right combination of quirks and BIOS settings.

 

On 7/28/2024 at 9:59 PM, anullpointerexception said:

Which means that  SSDT-CPU-WRAP.aml should be the correct one since adding 0x10 to the address should result in 0x00000510. -> Processor (PR00, 0x00, 0x00000510, 0x06) (for example)

By the textbook… although macOS actually does not care about the address, it only needs the processor stubs.

 

On 7/28/2024 at 9:59 PM, anullpointerexception said:

Disable :

- Intel® VT for Directed I/O (VT-d)

I'd rather advise to enable it, to enjoy native AppleVTD and DriverKit, and also disable DisableIoMapper.

 

On 7/28/2024 at 9:59 PM, anullpointerexception said:

- Above 4G Decoding not needed for Polaris or Vega GPUS so i don't know if mandatory for RDNA GPUs : but  enable is recommended.

-…

- VGA Priority : onboard

Above 4G Decoding is generally recommended, but if you're stuck try to disable it.

VGA Priority should be to the PCI slot, not the on-board ASPEED2500.

 

You may need "npci=0x2000", or use SSDTTime to fix IRQs.

  • Like 1

Thank you @Balamut and @etorix for your replies! I will try it each recommendation.

In the meantime, here is the whole BIOS configuration in raw-text:



- Boot Feature Quiet Boot Use this feature to select the screen display between the POST messages and the OEM logo upon bootup. Select Disabled to display the POST messages. Select Enabled to display the OEM logo instead of the normal POST messages. The options are Disabled and Enabled. 
- Option ROM Messages Use this feature to set the display mode for the Option ROM. Select Keep Current to display the current AddOn ROM setting. Select Force BIOS to use the Option ROM display set by the system BIOS. The options are Force BIOS and Keep Current. 
- Bootup NumLock State Use this feature to set the Power-on state for the key. The options are On and Off. 
- Wait For "F1" If Error Use this feature to force the system to wait until the "F1" key is pressed if an error occurs. The options are Disabled and Enabled. 
- INT19 (Interrupt 19) Trap Response Interrupt 19 is the software interrupt that handles the boot disk function. When this item is set to Immediate, the ROM BIOS of the host adaptors will "capture" Interrupt 19 at bootup immediately and allow the drives that are attached to these host adaptors to function as bootable disks. If this item is set to Postponed, the ROM BIOS of the host adaptors will not capture Interrupt 19 immediately and allow the drives attached to these adaptors to function as bootable devices at bootup. The options are Immediate and Postponed. 
- Re-try Boot If this item is enabled, the BIOS will automatically reboot the system from a specified boot device after its initial boot failure. The options are Disabled, Legacy Boot, and EFI Boot. 
- Install Windows 7 USB Support Enable this feature to use the USB keyboard and mouse during the Windows 7 installation since the native XHCI driver support is unavailable. Use a SATA optical drive as a USB drive, and USB CD/DVD drives are not supported. Disable this feature after the XHCI driver has been installed in Windows. The options are Disabled and Enabled. Port 61h Bit-4 Emulation Select Enabled to enable the emulation of Port 61h bit-4 toggling in SMM (System Management Mode). The options are Disabled and Enabled. 
- Power Configuration Watch Dog Function If enabled, the Watch Dog Timer will allow the system to reset or generate NMI based on jumper settings when it is expired for more than five minutes. The options are Disabled and Enabled. 
- Restore on AC Power Loss Use this feature to set the power state after a power outage. Select Stay Off for the system power to remain off after a power loss. Select Power On for the system power to be turned on after a power loss. Select Last State to allow the system to resume its last power state before a power loss. The options are Stay Off, Power On,and Last State. 
- Power Button Function This feature controls how the system shuts down when the power button is pressed. Select 4 Seconds Override for you to power off the system after pressing and holding the power button for four seconds or longer. Select Instant Off to instantly power off the system as soon as you press the power button. The options are Instant Off and 4 Seconds Override. CPU Configuration The following CPU information will display: • Processor BSP Revision • Processor Socket • Processor ID • Processor Frequency • Processor Max Ratio • Processor Min Ratio • Microcode Revision • L1 Cache RAM • L2 Cache RAM • L3 Cache RAM • Processor 0 Version Hyper-Threading (ALL) (Available when supported by the CPU) Select Enable to support Intel Hyper-threading Technology to enhance CPU performance. The options are Disable and Enable. 
- Cores Enabled Set a numeric value to enable the number of cores. (Please refer to the Intel website for more information.) Enter 0 to enable all cores. 
Monitor/Mwait Select Enabled to enable the Monitor/Mwait instructions. The Monitor instructions monitors a region of memory for writes, and Mwait instructions instruct the CPU to stop until the monitored region begins to write. The options are Auto, Disable, and Enable. 
- Execute Disable Bit (Available if supported by the OS & the CPU) Select Enable to enable the Execute-Disable Bit, which will allow the processor to designate areas in the system memory where an application code can execute and where it cannot, thus preventing a worm or a virus from flooding illegal codes to overwhelm the processor or damage the system during an attack. The options are Disable and Enable. 
- Intel Virtualization Technology Use feature to enable the Vanderpool Technology. This technology allows the system to run several operating systems simultaneously. The options are Disable and Enable. PPIN Control Select Unlock/Enable to use the Protected Processor Inventory Number (PPIN) in the system. The options are Unlock/Disable and Unlock/Enable. 
- Hardware Prefetcher (Available when supported by the CPU) If set to Enable, the hardware prefetcher will prefetch streams of data and instructions from the main memory to the L2 cache to improve CPU performance. The options are Disable and Enable. 

- Adjacent Cache Prefetch (Available when supported by the CPU) The CPU prefetches the cache line for 64 bytes if this feature is set to Disabled. The CPU prefetches both cache lines for 128 bytes as comprised if this feature is set to Enable. The options are Enable and Disable. DCU Streamer Prefetcher (Available when supported by the CPU) Select Enable to enable the Data Cache Unit (DCU) Streamer Prefetcher which will stream and prefetch data and send it to the Level 1 data cache to improve data processing and system performance. The options are Disable and Enable. 
- DCU IP Prefetcher (Available when supported by the CPU) Select Enable for Data Cache Unit (DCU) IP Prefetcher support, which will prefetch IP addresses to improve network connectivity and system performance. The options are Enable and Disable. 
LLC Prefetch If set to Enable, the hardware prefetcher will prefetch streams of data and instructions from the main memory to the L3 cache to improve CPU performance. The options are Disable and Enable. 
- Extended APIC Select Enable to activate APIC (Advanced Programmable Interrupt Controller) support. 
The options are Disable and Enable. AES-NI Select Enable to use the Intel Advanced Encryption Standard (AES) New Instructions (NI) to ensure data security. The options are Disable and Enable. 
- Advanced Power Management Configuration Power Technology Select Energy Effiency to support power-saving mode. Select Custom to customize system power settings. Select Disable to disable power-saving settings. The options are Disable, Energy Efficient, and Custom. If the feature above is set to Custom, the following features will become available for configuration: Power -Performance Tuning This feature allows you to select whether the BIOS or Operating System chooses energy performance bias tuning. The options are OS Controls EPB or BIOS Controls EPB. If Power Technology is set to BIOS Control EFB, the following features will become available for configuration: ENERGY_PERF_BIAS CFG mode This feature allows you to set Energy Performance bias The options are Maximum Performance, Performance, Balanced Performance, Balanced Power, and Power. 
- CPU P State Control This feature allows you to configure the following CPU power settings: SpeedStep (Pstates) Intel SpeedStep Technology allows the system to automatically adjust processor voltage and core frequency to reduce power consumption and heat dissipation. The options are Disable and Enable. 
- EIST PSD Funtion This feature allows you to choose between Hardware and Software to control the processor's frequency and performance (P-state). In HW_ALL mode, the processor hardware is responsible for coordinating the P-state, and the OS is responsible for keeping the P-state request up to date on all Logical Processors. In SW_ALL mode, the OS Power Manager is responsible for coordinating the P-state, and must initiate the transition on all Logical Processors. In SW_ANY mode, the OS Power Manager is responsible for coordinating the P-state and may initiate the transition on any Logical Processors. The options are HW_ALL, SW_ALL, and SW_ANY. 
Turbo Mode This feature will enable dynamic control of the processor, allowing it to run above stock frequency. The options are Disable and Enable. 
- Hardware PM State Control Hardware P-States This setting allows you to select between OS and hardware-controlled P-states. Selecting Native Mode allows the OS to choose a P-state. Selecting Out of Band Mode allows the hardware to autonomously choose a P-state without OS guidance. Selecting Native Mode with No Legacy Support functions as Native Mode with no support for older hardware. The options are Disable, Native Mode, Out of Band Mode, and Native Mode with No Legacy Support. 
- CPU C State Control Autonomous Core C-State Enabling this setting allows the hardware to autonomously choose to enter a C-state based on power consumption and clock speed. The options are Disable and Enable. 
- CPU C6 Report Select Enable to allow the BIOS to report the CPU C6 State (ACPI C3) to the operating system. During the CPU C6 State, the power to all cache is turned off. The options are Disable, Enable, and Auto. 
- Enhanced Halt State (C1E) Select Enable to use Enhanced Halt State technology, which will significantly reduce the CPU's power consumption by reducing its clock cycle and voltage during a Halt-state. The options are Disable and Enable. 
- Package C State Control Package C State This feature allows you to set the limit on the C State package register. The options are C0/C1 State, C2 State, C6 (Non Retention) State, C6 (Retention) State, No Limit, and Auto. 
- CPU T State Control Software Controlled T-States Use this feature to enable Software Controlled T-States. The options are Disable and Enable. 
- Chipset Configuration Warning: Setting the wrong values in the following features may cause the system to malfunction. 
- North Bridge This feature allows you to configure the following North Bridge settings. 
- UPI Configuration The following UPI information will display: • Number of CPU • Number of Active UPI Link • Current UPI Link Speed • Current UPI Link Frequency • UPI Global MMIO Low Base / Limit • UPI Global MMIO High Base / Limit • UPI Pci-e Configuration Base / Size Super X11SPL-F User's Manual 80 Degrade Precedence Use this feature to set degrade precedence when system settings are in conflict. Select Topology Precedence to degrade Features. Select Feature Precedence to degrade Topology. The options are Topology Precedence and Feature Precedence. 
- Link L0p Enable Select Enable for the QPI to enter the L0p state for power saving. The options are Disable, Enable, and Auto. 
- Link L1 Enable Select Enable for the QPI to enter the L1 state for power saving. The options are Disable, Enable, and Auto. 
- IO Directory Cache (IODC) IO Directory Cache is an 8-entry cache that stores the directory state of remote IIO writes and memory lookups, and saves directory updates. Use this feature to lower cache to cache (C2C) transfer latencies. The options are Disable, Auto, Enable for Remote 
- InvItoM Hybrid Push, InvItoM AllocFlow, Enable for Remote InvItoM Hybrid AllocNonAlloc, and Enable for Remote InvItoM and Remote WViLF. SNC Sub NUMA Clustering (SNC) is a feature that breaks up the Last Level Cache (LLC) into clusters based on address range. Each cluster is connected to a subset of the memory controller. Enabling SNC improves average latency and reduces memory access congestion to achieve higher performance. Select Auto for 1-cluster or 2-clusters depending on IMC interleave. Select Enable for Full SNC (2-clusters and 1-way IMC interleave). The options are Disable, Enable, and Auto. 
- XPT Prefetch XPT Prefetch speculatively makes a copy to the memory controller of a reader request being sent to the LLC. IF the read request maps to the local memory address and the recent memory reads are likely to miss the LLC, a speculative read is sent to the local memory controller. The options are Disable and Enable. 
- KTI Prefetch XPT Prefetch enables memory read to start early on a DDR bus, where the KTI Rx path will directly create a Memory Speculative Read command to the memory controller. The options are Disable and Enable. Chapter 4: BIOS 81 Local/Remote Threshold This feature allows you to set the threshold for the Interrupt Request (IRQ) signal, which handles hardware interruptions. The options are Disable, Auto, Low, Medium, and High. 
- Stale AtoS This feature optimizes A to S directory. When all snoop responses found in directory A are found to be Rspl, then all data is moved to directory S and is returned in S-state. The options are Disable, Enable, and Auto. 
- LLC Dead Line Alloc Select Enable to optimally fill dead lines in LLC. Select Disable to never fill dead lines in LLC. The options are Disable, Enable, and Auto. Isoc Mode Isochronous (Isoc) mode allows time-sensitive processes to be given priority. The options are Disable, Enable, and Auto. 
- Memory Configuration Enforce POR Select Plan of Record (POR) to enforce POR restrictions on DDR4 frequency and voltage programming. The options are POR and Disable. 
- PPR Type Use this feature to set the Post Package Repair type. The options are Auto, Hard PPR, Soft PPR, and PPR Disabled. Memory Frequency Use this feature to set the maximum memory frequency for onboard memory modules. The options are Auto, 1866, 2000, 2133, 2400, 2600, 2666, and 2933. 
- Data Scrambling for DDR4 Use this feature to enable or disable data scrambling for DDR4 memory. The options are Auto, Disable, and Enable. 
- tCCD_L Relaxation Select Enable to get TCDD settings from SPD (Serial Presence Detect) and implement into memory RC code to improve system reliability. Select Disable for TCCD to follow Intel POR. The options are Auto and Disable. 
- tRWSR Relaxation Select Enable to use the same TRWSR DDR timing setting for all memory channels, in which case, the worst case scenario value for all channels will be used. Select Disable to use different values for the TRWSR DDR timing settings for different channels as trained. The options are Disable and Enable. 
- 2X REFRESH Use this feature to select the memory controller refresh rate to 2x refresh mode. The options are Auto and Enable. 
- Page Policy Use this feature to set the page policy for onboard memory support. The options are Closed, Adaptive, and Auto. 
- IMC Interleaving Use this feature to configure interleaving settings for the Intergrated Memory Controller (IMC), which will improve memory performance. The options are 1-way Interleave, 2-way Interleave, and Auto. 
- Memory Topology This item displays the information of onboard memory modules as detected by the BIOS. 
- Memory RAS Configuration Static Virtual Lockstep Mode Select Enable to run the system's memory channels in lockstep mode to minimize memory access latency. The options are Disable and Enable. 
- Mirror Mode This feature allows memory to be mirrored between two channels, providing 100% redundancy. The options are Disable, Mirror Mode 1LM, and Mirror Mode 2LM. 
- Memory Rank Sparing Select Enable to enable memory-sparing support for memory ranks to improve memory performance. The options are Disable and Enable.  
- Correctable Error Threshold Use this item to specify the threshold value for correctable memory-error logging, which sets a limit on the maximum number of events that can be logged in the memory error log at a given time. The default setting is 100. Intel Run Sure Use this feature to enable Intel Run Sure technology. The options are Disable and Enable. 
- SDDC Plus One Single device data correction +1 (SDDC Plus One) organizes data in a single bundle (x4/x8 DRAM). If any or all the bits become corrupted, corrections occur. The x4 condition is corrected on all cases. The x8 condition is corrected only if the system is in Lockstep Mode. The options are Disable and Enable. 
- ADDDC Sparing Adaptive Double Device Data Correction (ADDDC) Sparing detects when the predetermined threshold for correctable errors is reached, copying the contents of the failing DIMM to spare memory. The failing DIMM or memory rank will then be disabled. The options are Disable and Enable. 
- Patrol Scrub Patrol Scrubbing is a process that allows the CPU to correct correctable memory errors detected on a memory module and send the correction to the requestor (the original source). When this item is set to Enable, the IO hub will read and write back one cache line every 16K cycles if there is no delay caused by internal processing. By using this method, roughly 64 GB of memory behind the IO hub will be scrubbed every day. The options are Disable and Enable. 
- Patrol Scrub Interval This feature allows you to decide how many hours the system should wait before the next complete patrol scrub is performed. Use the keyboard to enter a value from 0-24. The default setting is 24. 
- IIO Configuration EV DFX Features When this feature is set to Enable, the EV_DFX Lock Bits that are located on a processor will always remain clear during electric tuning. The options are Disable and Enable. 
- CPU1 Configuration IOU0 (II0 PCIe Br1) This item configures the PCIe port Bifuraction setting for the specified PCIe port. The options are x4x4x4x4, x4x4x8, x8x4x4, x8x8, x16, and Auto. 
- IOU1 (II0 PCIe Br2) This item configures the PCIe port Bifuraction setting for the specified PCIe port. The options are x4x4x4x4, x4x4x8, x8x4x4, x8x8, x16, and Auto. 
- IOU2 (II0 PCIe Br3) This item configures the PCIe port Bifuraction setting for the specified PCIe port. The options are x4x4x4x4, x4x4x8, x8x4x4, x8x8, x16, and Auto. 
- CPU SLOT5 PCI-E 3.0 X8 / CPU SLOT4 PCI-E 3.0 X8 (IN X16) / CPU SLOT6 PCI-E 3.0 X8 (IN X16) / CPU SLOT7 PCI-E 3.0 X8 / CPU SLOT2 PCI-E 3.0 X8 / CPU SLOT3 PCI-E 3.0 X8 Link Speed Use this item to select the link speed for the the specified PCIe port. The options are Auto, Gen 1 (2.5 GT/s), Gen 2 (5 GT/s), and Gen 3 (8 GT/s). 
The following information will also be displayed: • PCI-E Port Link Status • PCI-E Port Link Max • PCI-E Port Link Speed PCI-E Port Max Payload Size Selecting Auto for this feature will enable the motherboard to automatically detect the maximum Transaction Layer Packet (TLP) size for the connected PCIe device, allowing for maximum I/O efficiency. Selecting 128B or 256B will designate maximum packet size of 128 or 256. The options are 128B, 256B, and Auto. 
- IOAT Configuration Disable TPH Transparent Huge Pages (TPH) is a Linux memory management system that enables communication in larger blocks (pages). Enabling this feature will increase performance. The options are No and Yes. 
-  Prioritize TPH Use this feature to enable Prioritize TPH support. The options are Enable and Disable. 
- Relaxed Ordering Select Enable to enable Relaxed Ordering support, which will allow certain transactions to violate the strict-ordering rules of PCI bus for a transaction to be completed prior to other transactions that have already been enqueued. The options are Disable and Enable. 
- Intel® VT for Directed I/O (VT-d) Intel® VT for Directed I/O (VT-d) Select Enable to use Intel Virtualization Technology for Direct I/O VT-d support by reporting the I/O device assignments to the VMM (Virtual Machine Monitor) through the DMAR ACPI tables. This feature offers fully-protected I/O resource sharing across Intel platforms, providing greater reliability, security and availability in networking and data-sharing. The options are Enable and Disable. 
- ACS Control Select Enable for Access Control Services (ACS) extended capability support to enhance system performance. The options are Enable and Disable. 
- Interrupt Remapping Use this feature to enable Interrupt Remapping support, which detects and controls external interrupt requests. The options are Enable and Disable. 
- PassThrough DMA Use this feature to allow devices such as network cards to access the system memory without using a processor. Select Enable to use the Non-Isoch VT_D Engine Pass Through Direct Memory Access (DMA) support. The options are Enable and Disable. 
- ATS Use this feature to enable Non-Isoch VT-d Engine Address Translation Services (ATS) support. ATS translates virtual addresses to physical addresses. The options are Enable and Disable. 
Posted Interrupt Use this feature to enable VT_D Posted Interrupt. The options are Enable and Disable. 
Super X11SPL-F User's Manual 86 Coherency Support (Non-Isoch) Use this feature to maintain setting coherency between processors or other devices. Select Enable for the Non-Isoch VT-d engine to pass through DMA to enhance system performance. 
The options are Enable and Disable. 
- Intel® VMD Technology Note: After you’ve enabled VMD on a PCIe slot of your choice, this PCIe slot will be dedicated for NVMe storage devices use only, and it will no longer support PCIe devices of other functionalities. To re-activate this slot for PCIe use, please disable VMD. 
- Intel® VMD for Volume Management Device on CPU1 VMD Config for PStack0 Intel® VMD for Volume Management Device Select Enable to use the Intel Volume Management Device Technology for this stack. The options are Disable and Enable. *If the item above is set to Enable, the following items will be displayed: CPU SLOT5 PCI-E 3.0 X8 VMD / CPU SLOT4 PCI-E 3.0 X8 (IN X16) VMD (Available when the device is detected by the system) 
Select Enable to use the Intel Volume Management Device Technology for this specific root port. The options are Disable and Enable.
- Hot Plug Capable (Available when the device is detected by the system) Use this feature to enable hot plug support for PCIe root ports 1A~1D. The options are Disable and Enable. 
- VMD Config for PStack1 Intel® VMD for Volume Management Device Select Enable to use the Intel Volume Management Device Technology for this stack. The options are Disable and Enable. *If the item above is set to Enable, the following items will be displayed: CPU SLOT6 PCI-E 3.0 X8 (IN X16) VMD / CPU SLOT7 PCI-E 3.0 X8 VMD (Available when the device is detected by the system) Select Enable to use the Intel Volume Management Device Technology for this specific root port. The options are Disable and Enable. 
- Hot Plug Capable (Available when the device is detected by the system) Use this feature to enable hot plug support for PCIe root ports 2A~2D. The options are Disable and Enable. 
- VMD Config for PStack2 Intel® VMD for Volume Management Device Select Enable to use the Intel Volume Management Device Technology for this stack. The options are Disable and Enable. *If the item above is set to Enable, the following items will be displayed: CPU SLOT2 PCI-E 3.0 X8 VMD / CPU SLOT3 PCI-E 3.0 X8 VMD (Available when the device is detected by the system) Select Enable to use the Intel Volume Management Device Technology for this specific root port. The options are Disable and Enable. 
- Hot Plug Capable (Available when the device is detected by the system) Use this feature to enable hot plug support for PCIe root ports 3A~3D. The options are Disable and Enable. 
- PCI-E Completion Timeout Disable Use this feature to enable PCIe Completion Timeout support for electric tuning. The options are Yes, No, and Per-Port. 
- South Bridge The following USB information will display: 
	• USB Module Version 
	• USB Devices Legacy USB Support This feature enables support for USB 2.0 and older. The options are Enabled, Disabled, and Auto. 
	XHCI Hand-off When this feature is disabled, the motherboard will not support USB 3.0. The options are Enabled and Disabled. 
	Port 60/64 Emulation This feature allows legacy I/O support for USB devices like mice and keyboards. The options are Enabled and Disabled. 
	PCIe PLL SSC Use this feature to enable PCIe Phase-locked Loop (PLL) SPread Spectrum Clocking (SSC). The options are Disable and Enable. 
- Server ME Configuration The following General ME Configuration will display: • Oper. Firmware Version • Backup Firmware Version • Recovery Firmware Version • ME Firmware Status #1 • ME Firmware Status #2 • Current State • Error Code 
- PCH SATA Configuration When this submenu is selected, the AMI BIOS automatically detects the presence of the SATA devices that are supported by the Intel PCH chip and displays the following items: SATA Controller This item enables or disables the onboard SATA controller supported by the Intel PCH chip. The options are Disable and Enable. 
- Configure SATA as Select AHCI to configure a SATA drive as an AHCI drive. Select RAID to configure a SATA drive specified as a RAID drive. The options are AHCI and RAID. 
-  HDD Unlock This feature allows you to remove any password-protected SATA disk drives. The options are Enable and Disable. 
- Aggressive Link Power Management When this item is set to Enable, the SATA AHCI controller manages the power usage of the SATA link. The controller will put the link in a low power mode during extended periods of I/O inactivity, and will return the link to an active state when I/O activity resumes. The options are Disable and Enable. *If the item "Configure SATA as" above is set to RAID, the following items will display: SATA RSTe Boot Info Select Enable to provide full int13h support for the devices attached to SATA controller. The options are Disable and Enable. SATA RAID Option ROM/UEFI Driver Select UEFI to load the EFI driver for system boot. Select Legacy to load a legacy driver for system boot. The options are Disable, EFI, and Legacy. SATA Port 0 ~ Port 7 This item displays the information detected on the installed SATA drive on the particular SATA port. • Model number of drive and capacity • Software Preserve Support Port 0 ~ Port 7 Hot Plug Set this item to Enable for hot plug support, which will allow you to replace a SATA drive without shutting down the system. The options are Disable and Enable. Port 0 ~ Port 7 Spin Up Device On an edge detect from 0 to 1, set this item to allow the PCH to initialize the device. The options are Disable and Enable. Port 0 ~ Port 7 SATA Device Type Use this item to specify if the specified SATA port should be connected to a Solid State drive or a Hard Disk Drive. The options are Hard Disk Drive and Solid State Drive. PCH sSATA Configuration When this submenu is selected, the AMI BIOS automatically detects the presence of the SATA devices that are supported by the Intel PCH chip and displays the following items: Super X11SPL-F User's Manual 90 sSATA Controller This item enables or disables the onboard sSATA controller supported by the Intel PCH chip. The options are Enable and Disable. Configure sSATA as Select AHCI to configure an sSATA drive as an AHCI drive. Select RAID to configure an sSATA drive as a RAID drive. The options are AHCI and RAID. SATA HDD Unlock This feature allows you to remove any password-protected SATA disk drives. The options are Disable and Enable. 
- Aggressive Link Power Management When this item is set to Enable, the SATA AHCI controller manages the power usage of the SATA link. The controller will put the link in a low power mode during extended periods of I/O inactivity, and will return the link to an active state when I/O activity resumes. The options are Disable and Enable. *If the item "Configure sSATA as" above is set to RAID, the following items will display: sSATA RSTe Boot Info Select Enable to provide full int13h support for the devices attached to the sSATA controller. The options are Disable and Enable. 
- sSATA RAID Option ROM/UEFI Driver Select UEFI to load the EFI driver for system boot. Select Legacy to load a legacy driver for system boot. The options are Disable, EFI, and Legacy. 
- sSATA Port 2 This item displays the information detected on the installed sSATA drive on the particular sSATA port. • Model number of drive and capacity • Software Preserve Support Hot Plug Set this item to Enable for hot plug support, which will allow you to replace a SATA drive without shutting down the system. The options are Disable and Enable. 
- Spin Up Device On an edge detect from 0 to 1, set this item to allow the PCH to initialize the device. The options are Disable and Enable. 
- sSATA Device Type Use this item to specify if the SATA port specified should be connected to a Solid State drive or a Hard Disk Drive. The options are Hard Disk Drive and Solid State Drive. 
- PCIe/PCI/PnP Configuration The following information will display: • PCI Bus Driver Version • PCI Devices Common Settings: Above 4G Decoding (Available if the system supports 64-bit PCI decoding) Select Enabled to decode a PCI device that supports 64-bit in the space above 4G Address. The options are Disabled and Enabled. 
- SR-IOV Support Use this feature to enable or disable Single Root IO Virtualization Support. The options are Disabled and Enabled. 
- MMIO High Base Use this item to select the base memory size according to memory-address mapping for the IO hub. The options are 56T, 40T, 24T, 16T, 4T, 2T, and 1T. 
- MMIO High Granularity Size Use this item to select the high memory size according to memory-address mapping for the IO hub. The options are 1G, 4G, 16G, 64G, 256G, and 1024G. 
- Maximum Read Request Use this item to select the Maximum Read Request size of the PCIe device, or select Auto to allow the System BIOS to determine the value. The options are Auto, 128 Bytes, 256 Bytes, 512 Bytes, 1024 Bytes, 2048 Bytes, and 4096 Bytes. 
- MMCFG Base Use this item to select the low base address for PCIe adapters to increase base memory. The options are 1G, 1.5G, 1.75G, 2G, 2.25G. and 3G. 
- NVMe Firmware Source Use this item to select the NVMe firmware to support booting. The options are Vendor Defined Firmware and AMI Native Support. The default option, Vendor Defined Firmware, is pre-installed on the drive and may resolve errata or enable innovative functions for the drive. The other option, AMI Native Support, is offered by the BIOS with a generic method. 
- VGA Priority Use this feature to select VGA priority when multiple VGA devices are detected. Select Onboard to give priority to your onboard video device. Select Offboard to give priority to your graphics card. The options are Onboard and Offboard. 
- PCH SLOT1 PCI-E 3.0 X4 (IN X8) OPROM Use this feature to select which firmware type to be loaded for the add-on card in this slot. The options are Disabled, Legacy, and EFI. 
- CPU SLOT2 PCI-E 3.0 X8 OPROM Use this feature to select which firmware type to be loaded for the add-on card in this slot. The options are Disabled, Legacy, and EFI. 
- CPU SLOT3 PCI-E 3.0 X8 OPROM Use this feature to select which firmware type to be loaded for the add-on card in this slot. The options are Disabled, Legacy, and EFI. 
- CPU SLOT4 PCI-E 3.0 X8 (IN X16) OPROM Use this feature to select which firmware type to be loaded for the add-on card in this slot. The options are Disabled, Legacy, and EFI. CPU SLOT5 PCI-E 3.0 X8 OPROM Use this feature to select which firmware type to be loaded for the add-on card in this slot. The options are Disabled, Legacy, and EFI. CPU SLOT6 PCI-E 3.0 X8 (IN X16) - OPROM Use this feature to select which firmware type to be loaded for the add-on card in this slot. The options are Disabled, Legacy, and EFI. 
- CPU SLOT7 PCI-E 3.0 X8 OPROM Use this feature to select which firmware type to be loaded for the add-on card in this slot. The options are Disabled, Legacy, and EFI. 
- M.2 PCI-E 3.0 X4 OPROM Use this feature to select which firmware type to be loaded for the add-on card in this slot. The options are Disabled, Legacy, and EFI. 
- Bus Master Enable This feature enables a device connected to the bus to intiate Direct Memory Access (DMA) transactions. When DIsabled is selected, the PCI Bus Driver disables Bus Master Attribute for Pre-Boot DMA Protection. When Enabled is selected, the PCI Bus Driver enables BUs Master Atribute for DMA transactions. Some devices request Bus Master to be enabled for operations. The options are Disabled and Enabled. 
- Onboard LAN Option ROM Type Use to feature to enable Option ROM support to boot the computer using a network device specified by you. The options are Legacy and EFI. 
- Onboard LAN1 Option ROM Use this feature to select which firmware function to be loaded for LAN Port 1 used for system boot. The options are Disabled, PXE, and iSCSI. 
- Onboard LAN2 Option ROM Use this feature to select which firmware function to be loaded for LAN Port 2 used for system boot. The options are Disabled and PXE. 
- Onboard Video Option ROM Use this item to select the Onboard Video Option ROM type. The options are Disabled, Legacy, and EFI. 
- Network Stack Configuration Network Stack Select Enabled to enable Preboot Execution Environment (PXE) or Unified Extensible Firmware Interface (UEFI) for network stack support. The options are Enabled and Disabled. 
- IPv4 PXE Support Select Enabled to enable IPv4 PXE boot support. The options are Disabled and Enabled. 
- IPv4 HTTP Support Select Enabled to enable IPv4 HTTP boot support. The options are Disabled and Enabled. 
- IPv6 PXE Support Select Enabled to enable IPv6 PXE boot support. The options are Disabled and Enabled.
-  IPv6 HTTP Support Select Enabled to enable IPv6 HTTP boot support. The options are Disabled and Enabled.
-  PXE Boot Wait Time Use this option to specify the wait time to press the ESC key to abort the PXE boot. Press "+" or "-" on your keyboard to change the value. The default setting is 0. Media 
- Detect Count Use this option to specify the number of times media will be checked. Press "+" or "-" on your keyboard to change the value. The default setting is 1. 
- Super IO Configuration The following Super IO information will display: • Super IO Chip AST2500 
- Serial Port 1 Configuration This submenu allows you to configure the settings of Serial Port 1. Serial Port 1 Select Enabled to enable the selected onboard serial port. The options are Disabled and Enabled. 
- Device Settings This item displays the status of the serial port. Change Settings This feature specifies the base I/O port address and the Interrupt Request address of a serial port specified by you. Select Auto to allow the BIOS to automatically assign the base I/O and IRQ address. The options are Auto, (IO=3F8h; IRQ=4;), (IO=2F8h; IRQ=4;), (IO=3E8h; IRQ=4;), and (IO=2E8h; IRQ=4;). 
- Serial Port 2 Configuration This submenu allows you to configure the settings of Serial Port 2. Serial Port 2 Select Enabled to enable the selected onboard serial port. The options are Disabled and Enabled. 
- Device Settings This item displays the status of a serial part specified by you. Change Settings This feature specifies the base I/O port address and the Interrupt Request address of a serial port specified by you. Select Auto to allow the BIOS to automatically assign the base I/O and IRQ address. The options are Auto, (IO=2F8h; IRQ=3;), (IO=3F8h; IRQ=3;), (IO=3E8h; IRQ=3;), and (IO=2E8h; IRQ=3;). Chapter 4: BIOS 95 Serial Port 2 Attribute (Available for Serial Port 2 only) Select SOL to use COM Port 2 as a Serial Over LAN (SOL) port for console redirection. The options are SOL and COM. 
- Serial Port Console Redirection COM1 Console Redirection Select Enabled to enable console redirection support for a serial port specified by you. The options are Enabled and Disabled. *If the item above is set to Enabled, the following items will become available for configuration: 
- COM1 Console Redirection Settings Use this feature to specify how the host computer will exchange data with the client computer, which is the remote computer. 
- COM1 Terminal Type This feature allows you to select the target terminal emulation type for Console Redirection. Select VT100 to use the ASCII Character set. Select VT100+ to add color and function key support. Select ANSI to use the Extended ASCII Character Set. Select VT-UTF8 to use UTF8 encoding to map Unicode characters into one or more bytes. The options are VT100, VT100+, VT-UTF8, and ANSI. 
- COM1 Bits Per Second Use this feature to set the transmission speed for a serial port used in Console Redirection. Make sure that the same speed is used in the host computer and the client computer. A lower transmission speed may be required for long and busy lines. The options are 9600, 19200, 38400, 57600 and 115200 (bits per second). 
- COM1 Data Bits Use this feature to set the data transmission size for Console Redirection. The options are 7 Bits and 8 Bits. 
- COM1 Parity A parity bit can be sent along with regular data bits to detect data transmission errors. Select Even if the parity bit is set to 0, and the number of 1's in data bits is even. Select Odd if the parity bit is set to 0, and the number of 1's in data bits is odd. Select None if you do not want to send a parity bit with your data bits in transmission. Select Mark to add a mark as a parity bit to be sent along with the data bits. Select Space to add a Space as a parity bit to be sent with your data bits. The options are None, Even, Odd, Mark, and Space.  
- COM1 Stop Bits A stop bit indicates the end of a serial data packet. Select 1 Stop Bit for standard serial data communication. Select 2 Stop Bits if slower devices are used. The options are 1 and 2. 
- COM1 Flow Control Use this feature to set the flow control for Console Redirection to prevent data loss caused by buffer overflow. Send a "Stop" signal to stop sending data when the receiving buffer is full. Send a "Start" signal to start sending data when the receiving buffer is empty. The options are None and Hardware 
- RTS/CTS. COM1 VT-UTF8 Combo Key Support Select Enabled to enable VT-UTF8 Combination Key support for ANSI/VT100 terminals. The options are Disabled and Enabled. 
- COM1 Recorder Mode Select Enabled to capture the data displayed on a terminal and send it as text messages to a remote server. The options are Disabled and Enabled. 
- COM1 Resolution 100x31 Select Enabled for extended-terminal resolution support. The options are Disabled and Enabled. 
- COM1 Legacy OS Redirection Resolution Use this feature to select the number of rows and columns used in Console Redirection for legacy OS support. The options are 80x24 and 80x25. 
- COM1 Putty KeyPad This feature selects the settings for Function Keys and KeyPad used for Putty, which is a terminal emulator designed for the Windows OS. The options are VT100, LINUX, XTERMR6, SC0, ESCN, and VT400. 
- COM1 Redirection After BIOS POST Use this feature to enable or disable legacy console redirection after BIOS POST. When set to Bootloader, legacy console redirection is disabled before booting the OS. When set to Always Enable, legacy console redirection remains enabled when booting the OS. The options are Always Enable and Bootloader. 
- SOL/COM2 Console Redirection Select Enabled to use the SOL port for Console Redirection. The options are Disabled and Enabled. *If the item above is set to Enabled, the following items will become available for configuration: 
	- SOL/COM2 Console Redirection Settings Use this feature to specify how the host computer will exchange data with the client computer, which is the remote computer. 
	- COM2 Terminal Type Use this feature to select the target terminal emulation type for Console Redirection. Select VT100 to use the ASCII Character set. Select VT100+ to add color and function key support. Select ANSI to use the Extended ASCII Character Set. Select VT-UTF8 to use UTF8 encoding to map Unicode characters into one or more bytes. The options are ANSI, VT100, 		VT100+, and VT-UTF8. 
	- COM2 Bits Per Second Use this feature to set the transmission speed for a serial port used in Console Redirection. Make sure that the same speed is used in the host computer and the client computer. A lower transmission speed may be required for long and busy lines. The options are 9600, 19200, 38400, 57600 and 115200 (bits per second). 
	- COM2 Data Bits Use this feature to set the data transmission size for Console Redirection. The options are 7 Bits and 8 Bits. 
COM2 Parity A parity bit can be sent along with regular data bits to detect data transmission errors. Select Even if the parity bit is set to 0, and the number of 1's in data bits is even. Select Odd if the parity bit is set to 0, and the number of 1's in data bits is odd. Select None if you do not want to send a parity bit with your data bits in transmission. Select Mark to add a mark as a parity bit to be sent along with the data bits. Select Space to add a Space as a parity bit to be sent with your data bits. The options are None, Even, Odd, Mark and Space. 
- COM2 Stop Bits A stop bit indicates the end of a serial data packet. Select 1 Stop Bit for standard serial data communication. Select 2 Stop Bits if slower devices are used. The options are 1 and 2. 
- COM2 Flow Control Use this feature to set the flow control for Console Redirection to prevent data loss caused by buffer overflow. Send a "Stop" signal to stop sending data when the receiving buffer is full. Send a "Start" signal to start sending data when the receiving buffer is empty. The options are None and Hardware RTS/CTS. 
- COM2 VT-UTF8 Combo Key Support Select Enabled to enable VT-UTF8 Combination Key support for ANSI/VT100 terminals. The options are Disabled and Enabled. 
- COM2 Recorder Mode Select Enabled to capture the data displayed on a terminal and send it as text messages to a remote server. The options are Disabled and Enabled. 
- COM2 Resolution 100x31 Select Enabled for extended-terminal resolution support. The options are Disabled and Enabled. 
- COM2 Legacy OS Redirection Resolution Use this feature to select the number of rows and columns used in Console Redirection for legacy OS support. The options are 80x24 and 80x25. 
- COM2 Putty KeyPad This feature selects Function Keys and KeyPad settings for Putty, which is a terminal emulator designed for the Windows OS. The options are VT100, LINUX, XTERMR6, SCO, ESCN, and VT400. 
- COM2 Redirection After BIOS POST Use this feature to enable or disable legacy Console Redirection after BIOS POST. When set to Bootloader, legacy Console Redirection is disabled before booting the OS. When set to Always Enable, legacy Console Redirection remains enabled when booting the OS. The options are Always Enable and Bootloader. 
- Legacy Console Redirection Legacy Serial Redirection Port Use this feature to select a COM port to display redirection of Legacy OS and Legacy OPROM messages. The options are COM1 and SOL/COM2. 
- EMS (Emergency Management Services) Console Redirection Select Enabled to use a COM port for EMS Console Redirection. The options are Enabled and Disabled. *If the item above is set to Enabled, the following items will become available for configuration: 
- EMS Console Redirection Settings This feature allows you to specify how the host computer will exchange data with the client computer, which is the remote computer. Chapter 4: BIOS 99 Out-of-Band Mgmt Port The feature selects a serial port in a client server to be used by the Microsoft Windows Emergency Management Services (EMS) to communicate with a remote host server. The options are 
- COM1 and SOL/COM2. Terminal Type Use this feature to select the target terminal emulation type for Console Redirection. Select VT100 to use the ASCII character set. Select VT100+ to add color and function key support. Select ANSI to use the extended ASCII character set. Select VT-UTF8 to use UTF8 encoding to map Unicode characters into one or more bytes. The options are VT100, VT100+, VT-UTF8, and ANSI. Bits Per Second This item sets the transmission speed for a serial port used in Console Redirection. Make sure that the same speed is used in the host computer and the client computer. A lower transmission speed may be required for long and busy lines. The options are 9600, 19200, 57600, and 115200 (bits per second). 
- Flow Control Use this item to set the flow control for Console Redirection to prevent data loss caused by buffer overflow. Send a "Stop" signal to stop sending data when the receiving buffer is full. Send a "Start" signal to start sending data when the receiving buffer is empty. The options are None, Hardware RTS/CTS, and Software Xon/Xoff. 
Data Bits, Parity, Stop Bits 
- ACPI Settings 
- WHEA Support Select Enabled to support the Windows Hardware Error Architecture (WHEA) platform and provide a common infrastructure for the system to handle hardware errors within the Windows OS environment to reduce system crashes and to enhance system recovery and health monitoring. The options are Disabled and Enabled. 
- High Precision Event Timer Select Enabled to activate the High Precision Event Timer (HPET) that produces periodic interrupts at a much higher frequency than a Real-time Clock (RTC) does in synchronizing multimedia streams, providing smooth playback and reducing the dependency on other timestamp calculation devices, such as an x86 RDTSC Instruction embedded in the CPU. The High Performance Event Timer is used to replace the 8254 Programmable Interval Timer. The options are Disabled and Enabled. 
- Trusted Computing The X11SPL-F supports TPM 1.2 and 2.0. The following Trusted Platform Module (TPM) information will display if a TPM 2.0 module is detected: • Vendor Name • Firmware Version Security Device Support If this feature and the TPM jumper on the motherboard are both set to Enabled, onboard security devices will be enabled for TPM (Trusted Platform Module) support to enhance data integrity and network security. Please reboot the system for a change on this setting to take effect. The options are Disable and Enable. • Active PCR Bank • SHA256 PCR Bank *If the item above is set to Enable, "SHA-1 PCR Bank" and "SHA256 PCR Bank" will become available for configuration: SHA-1 PCR Bank Use this item to disable or enable the SHA-1 Platform Configuration Register (PCR) bank for the installed TPM device. The options are Disabled and Enabled. 
- SHA256 PCR Bank Use this item to disable or enable the SHA256 Platform Configuration Register (PCR) bank for the installed TPM device. The options are Disabled and Enabled. 
- Pending Operation Use this item to schedule a TPM-related operation to be performed by a security device for system data integrity. Your system will reboot to carry out a pending TPM operation. The options are None and TPM Clear. 
- Platform Hierarchy Use this item to disable or enable platform hierarchy for platform protection. The options are Disabled and Enabled. 
- Storage Hierarchy Use this item to disable or enable storage hieararchy for cryptographic protection. The options are Disabled and Enabled. 
- Endorsement Hierarchy Use this item to disable or enable endorsement hierarchy for privacy control. The options are Disabled and Enabled. 
- PH Randomization Use this item to disable or enable Platform Hiearchy (PH) Randomization. The options are Disabled and Enabled. 
- SMCI Bios-Based TPM Provision Support Use this feature to enable the Supermicro TPM Provision support. The options are Disabled and Enabled. 
- TXT Support Intel Trusted Execution Technology (TXT) helps protect against software-based attacks and ensures protection, confidentiality, and integrity of data stored or created on the system. Use this feature to enable or disable TXT Support. The options are Disabled and Enabled. 
- HTTP Boot Configuration HTTP BOOT Configuration Http Boot One Time Use this feature to create the HTTP boot option. The options are Disabled and Enable. 
- Input the description Highlight the feature and press enter to create a description. Boot URI Highlight the feature and press enter to create a boot URI. 
- TLS Authentication Configuration This submenu allows you to configure Transport Layer Security (TLS) settings. 
- Server CA Configuration *Enroll Certification *Enroll Certification Using File Use this feature to enroll certification from a file. Certification GUID Use this feature to enroll to input the certification GUID. *Commit Changes and Exit Use this feature to enroll to save all changes and exit TLS settings. 
Discard Changes and Exit Use this feature to enroll to discard all changes and exit TLS settings. *Delete Certification Use this feature to delete certification. *iSCSI Configuration iSCSI Initiator Name This feature allows you to enter the unique name of the iSCSI Initiator in IQN format. Once the name of the iSCSI Initiator is entered into the system, configure the proper settings for the following items. *Add an Attempt *Delete Attempts *Change Attempt Order *Driver Health Intel® DCPMM 1.0.0 3429 Driver This feature provides health status for the drivers and controllers. 

Administrator Password Press Enter to create a new, or change an existing, Administrator password. User Password Press Enter to create a new, or change an existing, User password. Password Check Select Setup for the system to check for a password at Setup. Select Always for the system to check for a password at bootup or upon entering the BIOS Setup utility. The options are Setup and Always. 
- Secure Boot This section displays the contents of the following secure boot features: • System Mode • Secure Boot • Vendor Keys Secure Boot Use this item to enable secure boot. The options are Disabled and Enabled. 
- Secure Boot Mode Use this item to configure Secure Boot variables without authentication. The options are Standard and Custom. 
- CSM Support Select Enabled to support the EFI Compatibility Support Module (CSM), which provides compatibility support for traditional legacy BIOS for system boot. The options are Enabled and Disabled. 
- Key Management This submenu allows you to configure the following Key Management settings. Provision Factory Default Keys Select Enabled to install the default Secure Boot keys set by the manufacturer. The options are Disabled and Enabled. 
- Restore Factory Keys Select Yes to force system to install factory default keys. The options are Yes and No. 
- Reset to Setup Mode Select Yes to delete all erase all Secure Boot key databases from NVRAM. The options are Yes and No. 
- Export All Secure Boot Variables This feature allows you to copy all variables onto a file on a separate device. 
- Enroll EFI Image This feature allows the image to run in Secure Boot Mode. Enroll SHA256 Hash Certificate of the image into the Authorized Signature Database. Device Guard Ready 
- Remove 'UEFI CA' from DB Use this feature to remove the Microsoft UEFI CA certificate from the database. The options are Yes and No.
- Restore DB defaults Select Yes to restore the DB defaults. 
Secure Boot variable *Platform Key (PK) This feature allows you to configure the settings of the platform keys. Details Review details on current settings of the platform keys. Export This feature allows you to export Platform Keys to an available file system. Update Select Yes to load the new Platform Keys (PK) from the manufacturer's defaults. Select No to load the Platform Keys from a file. The options are Yes and No. 
Delete Select Yes to confirm deletion of the Platform Key from NVRAM. 
- Key Exchange Key Details Review details on current settings of the Key Exchange Keys. Export This feature allows you to export Key Exchange Keys to an available file system. Update Select Yes to load the KEK from the manufacturer's defaults. Select No to load the KEK from a file. The options are Yes and No. 
Append Select Yes to add the KEK from the manufacturer's defaults list to the existing KEK. Select No to load the KEK from a file. The options are Yes and No. Delete Select Yes to delete the Key Exchange Keys. Select No to delete only a certificate from the key database. The options are Yes and No. 
- Authorized Signatures Details Review details on current settings of the Authorized Signatures. Export This feature allows you to export Authorized Signatures to an available file system. Update Select Yes to load the factory default DB. Select No to load the DB from a external file. The options are Yes and No. Append Select Yes to add the database from the manufacturer's defaults to the existing DB. Select No to load the DB from a file. The options are Yes and No. Delete Select Yes to delete the Authorized Signatures key database. Select No to delete only a certificate from the key database. The options are Yes and No. 
- Forbidden Signatures Details Review details on current settings of the Forbidden Signatures. Export This feature allows you to export Forbidden Signatures to an available file system. Update Select Yes to load the DBX factory default 'dbx.' Select No to load it from an external file. The options are Yes and No. Append Select Yes to add the DBX from the manufacturer's defaults to the existing DBX. Select No to load the DBX from a file. The options are Yes and No. Delete Select Yes to delete the Forbidden Signatures key database. Select No to delete only a certificate from the key database. The options are Yes and No. 
- Authorized TimeStamps Details Review details on current settings of Authorized Time Stamps. Export This feature allows you to export Authorized TimeStamps to an available file system. Update Select Yes to load the DBT from the manufacturer's defaults. Select No to load the DBT from a file. The options are Yes and No. Append Select Yes to add the DBT from the manufacturer's defaults list to the existing DBT. Select No to load the DBT from a file. The options are Yes and No. Delete Select Yes to delete the Authorized TimeStamps key database. Select No to delete only a certificate from the key database. The options are Yes and No. 
- OsRecovery Signature This item uploads and installs an OSRecovery Signature. You may insert a factory default key or load from a file. The file formats accepted are: 1) Public Key Certificate a. EFI Signature List b. EFI CERT X509 (DER Encoded) c. EFI CERT RSA2048 (bin) d. EFI SERT SHA256 (bin) 2) EFI Time Based Authenticated Variable When prompted, select "Yes" to load Factory Defaults or "No' to load from a file. Details Review details on current settings of OsRecovery Signatures. Export This feature allows you to export OsRecovery Signatures to an available file system. Chapter 4: BIOS 113 Set New Select Yes to load the DBR from the manufacturer's defaults. Select No to load the DBR from a file. The options are Yes and No. Append This feature uploads and adds an OsRecovery Signature into the Key Management. You may insert a factory default key or load from a file. When prompted, select "Yes" to load Factory Defaults or "No" to load from a file.


I would also be very grateful if you could take a look at these BIOS settings to maybe give me an idea on what to enable / disable.

Thanks in advance :)

Edited by anullpointerexception
edited text to prevent misunderstandings

Sorry for the confusion, this raw text file should just show all BIOS settings available for my motherboard, I just wanted to give you an overview on what can be enabled / disabled on the motherboard to maybe get some recommendations from you on what I should enable / disable in the BIOS. 

The typical stuff is already disabled: SecureBoot, CSM, Serial Ports, TPM, SR-IOV
-> VGA Priority is set to offboard

-> VT-d enabled

-> Above 4G Decoding enabled
-> Legacy USB support enabled

-> Execute Disable Bit disabled
 

Edited by anullpointerexception

Hello again, 

Sorry for the late reply, I was quite busy last week (work) and I didn't have enough time until now to try your suggestions. I am on holiday this week, therefore I have enough time to test everything.

Here is what I did so far:

- Using SSDTTime to patch IRQ conflicts. 
image.png.b4e3a4216eda64cce03a78ba08829e39.png

 

This is what showed up when using SSDTTime, I did try both options (C and O), however this didn't fix the issue. I am still stuck at [EB|#LOG:EXITBS:START].
I have included all the provided patches from SSDTTime to the config.plist file and added the SSDT_HPET.aml to

EFI/ACPI

I have double checked my BIOS configuration as well, but I will add some screenshots from the BIOS:

Screenshot2024-08-06at15_22_53.png.965b439eb7e60175fd34c66dfbea1134.pngScreenshot2024-08-06at15_32_50.png.35f1073662aae7a26d90a699ca9ccb56.pngScreenshot2024-08-06at15_30_08.png.fb061500f51240c26584b04b04136f9c.pngScreenshot2024-08-06at15_27_06.png.93555eccbfc3d81089e084d7b4b6ee0b.pngScreenshot2024-08-06at15_26_52.png.bac58121c1405ff5eb66a8d82f24ad48.pngScreenshot2024-08-06at15_26_24.png.55072d82a459e6c91026236f62478b71.pngScreenshot2024-08-06at15_26_16.png.0cbb7e43924a539ffe5fdba21d3297d1.pngScreenshot2024-08-06at15_26_09.png.07547c30806efc1b19b14784653a81f4.pngScreenshot2024-08-06at15_26_01.png.2b93b611b2addb7ff4f678b108836c45.pngScreenshot2024-08-06at15_25_54.png.9a58be1daf198cc9e2a81a7a2711df24.pngScreenshot2024-08-06at15_25_46.png.7d3f88fc2c4b94e772e043ca81f9380d.pngScreenshot2024-08-06at15_25_34.png.cb729658a07798c61f9e659adf00f9f9.pngScreenshot2024-08-06at15_25_25.png.6c80b0905144802b3b1b40afb0035c73.pngScreenshot2024-08-06at15_25_14.png.9fdc67fe63786fdf32f0d6fbc035893b.pngScreenshot2024-08-06at15_24_57.png.1e03305c80d8ddbb666d9219962eaa43.pngScreenshot2024-08-06at15_24_46.png.800ade3c3b5dc59db89d86cdd0b0d67e.pngScreenshot2024-08-06at15_24_32.png.997647d191976a0106f528c52879e4c7.pngScreenshot2024-08-06at15_24_21.png.8bcb582ab086ef351a98c4ed2bd7dd7a.pngScreenshot2024-08-06at15_23_58.png.c5da193c7c73ca626add92329856bc9d.pngScreenshot2024-08-06at15_23_16.png.120076cc407c3a7ddd396a1e891cb38d.png

Finally, my latest OpenCore config (that I have rebuilt from scratch again) + its logs are also attached to this post. 

EFI_config.zip

Edited by anullpointerexception

Nothing obviously problematic to me. You can disable EnableSafeModeSlide ("All slices are good!").

SSDT-HPET should obviate the need for 'npci=0x2000'.

MacPro7,1 SMBIOS may need RestrictEvents.kext; iMacPro1,1 doesn't.

 

I would enable VT-d in BIOS, set onboard LAN OpROM to EFI (you need a NIC, don't you?), and disable DisableIoMapper to fully leverage the platform.

 

You may try with Above 4G Decoding on.

You may try disabling ProtectUefiServices.

You may try disabling SyncRuntimePermissions.

Even tough MAT is supported, you may try the alternative set of settings: EnableWriteUnprotector true; RebuildAppleMemoryMap, SetupVirtualMap false.

If none of the combinations work, I'm out of ideas for now.

  • Like 2

@etorix

You are awesome! I was finally able to get past the EXITBS error!!!!

 

The last 5 quirks solved the issue! -> EnableWriteUnprotector = true; RebuildAppleMemoryMap = false and SetupVirtualMap = false, ProtectUefiServices = false, SyncRuntimePermissions = false did the trick!

Edited by anullpointerexception
  • Like 1

I did some further testing and set both ProtectUefiServices and SyncRuntimePermissions to true, it still boots. So EnableWriteUnprotector -> true, RebuildAppleMemoryMap -> false and SetupVirtualMap -> false are required to get past [EB|LOG:EXITBS:START].

 

Edited by anullpointerexception
  • Like 1

@etorix @Balamut Thank you soooo much guys! I was finally able to boot my existing install of macOS Sonoma! I am currently sitting at the desktop writing this message. 

I did have some issues when booting, but I did the following because I did get this error when booting: Generation from SMC Report as 2. -> Added AppleMCEReportDisabler.kext and CpuTscSync.kext (unsure if I need it tbh). 

This system has been a nightmare but with the help of you guys, I finally managed to get it to work. Thank you sooo much again!!!

 

Edited by anullpointerexception
  • Like 1

CpuTscSync was necessary for my Gigabyte C621-SU8. It's an easy one because of the explicit messages in logs about TSC.

 

Your experience seems to be typical: C621 boards can be hacked with very few quirks overall, which is good (the less quirks, the better).

I don't think that, in absolute terms, these boards are especially difficult to hack now that the CPU definition issue is well understood, but there are few users, so little documentation about it, and some settings are different from what is used for regular desktop boards.

 

Enjoy your new system!

  • Like 2

Is native NVRAM working on your machines or do you use emulated NVRAM? Because I have read somewhere that X299 motherboards have issues when using native NVRAM. I have tested it on my machine and NVRAM seems to be broken on my Motherboard because I faced this issue when doing a clean install:
 

Quote

It was discovered that several APTIO IV drivers including the latest one have a variable whitelist implemented and disallow writing anything but the variables from the list and it is unclear whether it was intentional or just a logical mistake.  

Due to this bug, the macOS/OS X cannot be installed using the clean install method. You either need to restore or install the target disk to another working system and once installed, transfer the disk back to the system with broken NVRAM.

 

 

After transfering the disk back to my C621-machine, I enabled emulated NVRAM but I think I made a mistake when setting it up because date and time is always wrong when booting the machine. 

I am also experiencing random crashes, sometimes watchdogd and the sometimes other software (finder, weatherwidget,...). Here is the latest one :

 

-------------------------------------
Translated Report (Full Report Below)
-------------------------------------

Process:               Finder [433]
Path:                  /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
Identifier:            com.apple.finder
Version:               14.6 (1632.6.3)
Build Info:            Finder_FE-1632006003000000~28
Code Type:             X86-64 (Native)
Parent Process:        launchd [1]
User ID:               501

Date/Time:             2024-08-08 14:54:52.9174 +0200
OS Version:            macOS 14.6 (23G80)
Report Version:        12
Anonymous UUID:        DC5B241E-C9D9-CC5F-E344-F768A194E435


Time Awake Since Boot: 200 seconds

System Integrity Protection: enabled

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

Exception Type:        EXC_BAD_ACCESS (SIGKILL (Code Signature Invalid))
Exception Codes:       UNKNOWN_0x32 at 0x000000010e199566
Exception Codes:       0x0000000000000032, 0x000000010e199566

Termination Reason:    Namespace CODESIGNING, Code 2 Invalid Page

VM Region Info: 0x10e199566 is in 0x10e064000-0x10e9fa000;  bytes after start: 1267046  bytes before end: 8784537
      REGION TYPE                    START - END         [ VSIZE] PRT/MAX SHRMOD  REGION DETAIL
      UNUSED SPACE AT START
--->  __TEXT                      10e064000-10e9fa000    [ 9816K] r-x/r-x SM=COW  /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
      __DATA_CONST                10e9fa000-10ea90000    [  600K] r--/rw- SM=COW  /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder

Kernel Triage:
VM - (arg = 0x1) vm_map_copy_overwrite_nested failed when trying partial copy
VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter
VM - (arg = 0x0) A memory corruption was found in executable text


Thread 0 Crashed::  Dispatch queue: com.apple.main-thread
0   Finder                        	       0x10e199566 0x10e064000 + 1267046
1   Finder                        	       0x10e0b533e 0x10e064000 + 332606
2   Finder                        	       0x10e5ccd96 0x10e064000 + 5672342
3   Finder                        	       0x10e1a7f5c 0x10e064000 + 1326940
4   Finder                        	       0x10e1a73fe 0x10e064000 + 1324030
5   Finder                        	       0x10e0b3c27 0x10e064000 + 326695
6   Finder                        	       0x10e0b3a24 0x10e064000 + 326180
7   Finder                        	       0x10e6fde29 0x10e064000 + 6921769
8   Finder                        	       0x10e467d35 0x10e064000 + 4209973
9   Finder                        	       0x10e464509 0x10e064000 + 4195593
10  Finder                        	       0x10e0ab1d3 0x10e064000 + 291283
11  Finder                        	       0x10e0aab41 0x10e064000 + 289601
12  Finder                        	       0x10e0a9657 0x10e064000 + 284247
13  Finder                        	       0x10e0df808 0x10e064000 + 505864
14  Finder                        	       0x10e0df018 0x10e064000 + 503832
15  Finder                        	       0x10e114b74 0x10e064000 + 723828
16  Finder                        	       0x10e43acd1 0x10e064000 + 4025553
17  Finder                        	       0x10e24395b 0x10e064000 + 1964379
18  Finder                        	       0x10e242d3e 0x10e064000 + 1961278
19  Finder                        	       0x10e2432e2 0x10e064000 + 1962722
20  AppKit                        	    0x7ff81413cfee -[NSServiceListener _doInvokeServiceIn:msg:pb:userData:error:unhide:] + 1227
21  AppKit                        	    0x7ff81413d9e2 ___NSServiceMasterCallBack_block_invoke + 93
22  Foundation                    	    0x7ff8118bef33 +[_NSActivityAssertion _performActivityWithOptions:reason:usingBlock:] + 307
23  AppKit                        	    0x7ff81413d16e _NSServiceMasterCallBack + 200
24  CoreFoundation                	    0x7ff8102db2af __CFServiceControllerMessagePortCallBack + 582
25  CoreFoundation                	    0x7ff8102a976b __CFMessagePortPerform + 696
26  CoreFoundation                	    0x7ff8102105b7 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41
27  CoreFoundation                	    0x7ff8102104ee __CFRunLoopDoSource1 + 534
28  CoreFoundation                	    0x7ff81020f166 __CFRunLoopRun + 2700
29  CoreFoundation                	    0x7ff81020e112 CFRunLoopRunSpecific + 557
30  HIToolbox                     	    0x7ff81ac2da09 RunCurrentEventLoopInMode + 292
31  HIToolbox                     	    0x7ff81ac2d816 ReceiveNextEventCommon + 665
32  HIToolbox                     	    0x7ff81ac2d561 _BlockUntilNextEventMatchingListInModeWithFilter + 66
33  AppKit                        	    0x7ff81387e171 _DPSNextEvent + 880
34  AppKit                        	    0x7ff814192af0 -[NSApplication(NSEventRouting) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1273
35  AppKit                        	    0x7ff81386f585 -[NSApplication run] + 603
36  AppKit                        	    0x7ff8138434f3 NSApplicationMain + 816
37  Finder                        	       0x10e06aab6 0x10e064000 + 27318
38  dyld                          	    0x7ff80fda7345 start + 1909

Thread 1:: com.apple.NSEventThread
0   libsystem_kernel.dylib        	    0x7ff8100f308e mach_msg2_trap + 10
1   libsystem_kernel.dylib        	    0x7ff810101878 mach_msg2_internal + 84
2   libsystem_kernel.dylib        	    0x7ff8100fa178 mach_msg_overwrite + 653
3   libsystem_kernel.dylib        	    0x7ff8100f337d mach_msg + 19
4   CoreFoundation                	    0x7ff8102101c5 __CFRunLoopServiceMachPort + 143
5   CoreFoundation                	    0x7ff81020ec35 __CFRunLoopRun + 1371
6   CoreFoundation                	    0x7ff81020e112 CFRunLoopRunSpecific + 557
7   AppKit                        	    0x7ff8139dc29c _NSEventThread + 122
8   libsystem_pthread.dylib       	    0x7ff81013318b _pthread_start + 99
9   libsystem_pthread.dylib       	    0x7ff81012eae3 thread_start + 15

Thread 2:
0   libsystem_pthread.dylib       	    0x7ff81012eac0 start_wqthread + 0

Thread 3:
0   libsystem_pthread.dylib       	    0x7ff81012eac0 start_wqthread + 0

Thread 4:
0   libsystem_pthread.dylib       	    0x7ff81012eac0 start_wqthread + 0

Thread 5:
0   libsystem_pthread.dylib       	    0x7ff81012eac0 start_wqthread + 0

Thread 6:
0   libsystem_pthread.dylib       	    0x7ff81012eac0 start_wqthread + 0

Thread 7:
0   libsystem_pthread.dylib       	    0x7ff81012eac0 start_wqthread + 0


Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x00007fba04c10c18  rbx: 0x00007fba04c10a70  rcx: 0x0000040000000402  rdx: 0x00006000010ecc60
  rdi: 0x0000000000000001  rsi: 0x00007ff7b1e98568  rbp: 0x00007ff7b1e98590  rsp: 0x00007ff7b1e98558
   r8: 0x00006000010ecc58   r9: 0x00000000ffffff00  r10: 0x0000000000000000  r11: 0x0000000000000400
  r12: 0x00007ff7b1e98568  r13: 0x0000000000000000  r14: 0x00007fba04c10c18  r15: 0x0000000000000001
  rip: 0x000000010e199566  rfl: 0x0000000000010202  cr2: 0x000000010e199566
  
Logical CPU:     30
Error Code:      0x00000014 (no mapping for user instruction read)
Trap Number:     14


Binary Images:
       0x10f1b9000 -        0x10f1c5fff libobjc-trampolines.dylib (*) <e554b85a-6614-3883-83d8-8eb3bd70a202> /usr/lib/libobjc-trampolines.dylib
       0x10f0e3000 -        0x10f0e5fff com.apple.icloud.drive.fileprovider.override (1.0) <3f5304d7-2a1e-3582-87f0-b7342e42f730> /System/Library/Frameworks/FileProvider.framework/OverrideBundles/iCloudDriveFileProviderOverride.bundle/Contents/MacOS/iCloudDriveFileProviderOverride
       0x10f1d3000 -        0x10f1eefff com.apple.findersync.fileprovideroverride.FinderSyncCollaborationFileProviderOverride (14.6) <0d0abd82-1cfa-3af7-96f2-6bfd81ba75e0> /System/Library/Frameworks/FileProvider.framework/OverrideBundles/FinderSyncCollaborationFileProviderOverride.bundle/Contents/MacOS/FinderSyncCollaborationFileProviderOverride
       0x10f141000 -        0x10f145fff com.apple.FileProviderOverride (1835.140.3) <0d5cadad-50a6-31d3-92e4-e87359645c66> /System/Library/Frameworks/FileProvider.framework/OverrideBundles/FileProviderOverride.bundle/Contents/MacOS/FileProviderOverride
       0x10f3ad000 -        0x10f45cfff com.apple.TimeMachine.TimelineUI (1.0) <e4cd5528-1287-357b-9866-3a9001ced4d9> /System/Library/PrivateFrameworks/TimelineUI.framework/Versions/A/TimelineUI
       0x10e064000 -        0x10e9f9fff com.apple.finder (14.6) <f16841b7-9eed-3973-af14-68c0b8de3f50> /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    0x7ff81383f000 -     0x7ff814c6fff7 com.apple.AppKit (6.9) <d0e19a37-f677-32b5-b3d2-005e60b90f7f> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7ff811163000 -     0x7ff811d99ffb com.apple.Foundation (6.9) <2f87a303-430f-3ea5-9492-3033f4fee64b> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7ff810194000 -     0x7ff81062effc com.apple.CoreFoundation (6.9) <c5e5acb6-9e44-3aa3-bd21-0a5b4a2eee5e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7ff81abff000 -     0x7ff81ae99ff3 com.apple.HIToolbox (2.1.1) <2aa738bf-9f72-3227-8bba-7eae7b9f080b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7ff80fda1000 -     0x7ff80fe3181f dyld (*) <82f051ed-7518-32ff-9390-65de9ca6bacf> /usr/lib/dyld
               0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???
    0x7ff8100f2000 -     0x7ff81012cff7 libsystem_kernel.dylib (*) <861e8b79-f5c1-3677-8709-4aa33c77673c> /usr/lib/system/libsystem_kernel.dylib
    0x7ff81012d000 -     0x7ff810138ff7 libsystem_pthread.dylib (*) <d70de43a-2804-340a-804c-5d316c1e013b> /usr/lib/system/libsystem_pthread.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=1.1G resident=0K(0%) swapped_out_or_unallocated=1.1G(100%)
Writable regions: Total=926.8M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=926.8M(100%)

                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Accelerate framework               128K        1 
Activity Tracing                   256K        1 
CG image                           240K        4 
ColorSync                          228K       26 
CoreAnimation                      484K       48 
CoreGraphics                        12K        2 
CoreServices                        60K        1 
Foundation                          36K        2 
Kernel Alloc Once                    8K        1 
MALLOC                           913.8M      133 
MALLOC guard page                   32K        8 
Memory Tag 244                       4K        1 
QuickLook Thumbnails                16K        1 
STACK GUARD                       56.0M        8 
Stack                             11.6M        8 
VM_ALLOCATE                        316K       13 
__CTF                               824        1 
__DATA                            47.5M      896 
__DATA_CONST                      64.3M      623 
__DATA_DIRTY                      2553K      336 
__FONT_DATA                        2352        1 
__INFO_FILTER                         8        1 
__LINKEDIT                       181.1M        7 
__OBJC_RO                         71.9M        1 
__OBJC_RW                         2201K        2 
__TEXT                           939.7M      918 
mapped file                      202.1M       50 
shared memory                      780K       16 
===========                     =======  ======= 
TOTAL                              2.4G     3110 



-----------
Full Report
-----------

{"app_name":"Finder","timestamp":"2024-08-08 14:55:07.00 +0200","app_version":"14.6","slice_uuid":"f16841b7-9eed-3973-af14-68c0b8de3f50","build_version":"1632.6.3","platform":1,"bundleID":"com.apple.finder","share_with_app_devs":0,"is_first_party":1,"bug_type":"309","os_version":"macOS 14.6 (23G80)","roots_installed":0,"name":"Finder","incident_id":"36496C40-B59D-48AF-9A1D-5AC069EBE5EB"}
{
  "uptime" : 200,
  "procRole" : "Foreground",
  "version" : 2,
  "userID" : 501,
  "deployVersion" : 210,
  "modelCode" : "MacPro7,1",
  "coalitionID" : 455,
  "osVersion" : {
    "train" : "macOS 14.6",
    "build" : "23G80",
    "releaseType" : "User"
  },
  "captureTime" : "2024-08-08 14:54:52.9174 +0200",
  "codeSigningMonitor" : 0,
  "incident" : "36496C40-B59D-48AF-9A1D-5AC069EBE5EB",
  "pid" : 433,
  "cpuType" : "X86-64",
  "roots_installed" : 0,
  "bug_type" : "309",
  "procLaunch" : "1999-12-31 01:00:29.5510 +0100",
  "procStartAbsTime" : 32632565035,
  "procExitAbsTime" : 205884535708,
  "procName" : "Finder",
  "procPath" : "\/System\/Library\/CoreServices\/Finder.app\/Contents\/MacOS\/Finder",
  "bundleInfo" : {"CFBundleShortVersionString":"14.6","CFBundleVersion":"1632.6.3","CFBundleIdentifier":"com.apple.finder"},
  "buildInfo" : {"ProjectName":"Finder_FE","SourceVersion":"1632006003000000","BuildVersion":"28"},
  "storeInfo" : {"deviceIdentifierForVendor":"F3221EF5-B150-5318-BEA5-17524A4A763E"},
  "parentProc" : "launchd",
  "parentPid" : 1,
  "coalitionName" : "com.apple.finder",
  "crashReporterKey" : "DC5B241E-C9D9-CC5F-E344-F768A194E435",
  "throttleTimeout" : 1,
  "codeSigningID" : "com.apple.finder",
  "codeSigningTeamID" : "",
  "codeSigningFlags" : 587299585,
  "codeSigningValidationCategory" : 1,
  "codeSigningTrustLevel" : 4294967295,
  "sip" : "enabled",
  "vmRegionInfo" : "0x10e199566 is in 0x10e064000-0x10e9fa000;  bytes after start: 1267046  bytes before end: 8784537\n      REGION TYPE                    START - END         [ VSIZE] PRT\/MAX SHRMOD  REGION DETAIL\n      UNUSED SPACE AT START\n--->  __TEXT                      10e064000-10e9fa000    [ 9816K] r-x\/r-x SM=COW  \/System\/Library\/CoreServices\/Finder.app\/Contents\/MacOS\/Finder\n      __DATA_CONST                10e9fa000-10ea90000    [  600K] r--\/rw- SM=COW  \/System\/Library\/CoreServices\/Finder.app\/Contents\/MacOS\/Finder",
  "exception" : {"codes":"0x0000000000000032, 0x000000010e199566","rawCodes":[50,4531524966],"type":"EXC_BAD_ACCESS","signal":"SIGKILL (Code Signature Invalid)","subtype":"UNKNOWN_0x32 at 0x000000010e199566"},
  "termination" : {"flags":0,"code":2,"namespace":"CODESIGNING","indicator":"Invalid Page"},
  "ktriageinfo" : "VM - (arg = 0x1) vm_map_copy_overwrite_nested failed when trying partial copy\nVM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter\nVM - (arg = 0x0) A memory corruption was found in executable text\n",
  "vmregioninfo" : "0x10e199566 is in 0x10e064000-0x10e9fa000;  bytes after start: 1267046  bytes before end: 8784537\n      REGION TYPE                    START - END         [ VSIZE] PRT\/MAX SHRMOD  REGION DETAIL\n      UNUSED SPACE AT START\n--->  __TEXT                      10e064000-10e9fa000    [ 9816K] r-x\/r-x SM=COW  \/System\/Library\/CoreServices\/Finder.app\/Contents\/MacOS\/Finder\n      __DATA_CONST                10e9fa000-10ea90000    [  600K] r--\/rw- SM=COW  \/System\/Library\/CoreServices\/Finder.app\/Contents\/MacOS\/Finder",
  "extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0},
  "faultingThread" : 0,
  "threads" : [{"triggered":true,"id":3426,"threadState":{"r13":{"value":0},"rax":{"value":140436920405016},"rflags":{"value":66050},"cpu":{"value":30},"r14":{"value":140436920405016},"rsi":{"value":140701818520936},"r8":{"value":105553134013528},"cr2":{"value":4531524966},"rdx":{"value":105553134013536},"r10":{"value":0},"r9":{"value":4294967040},"r15":{"value":1},"rbx":{"value":140436920404592},"trap":{"value":14,"description":"(no mapping for user instruction read)"},"err":{"value":20},"r11":{"value":1024},"rip":{"value":4531524966,"matchesCrashFrame":1},"rbp":{"value":140701818520976},"rsp":{"value":140701818520920},"r12":{"value":140701818520936},"rcx":{"value":4398046512130},"flavor":"x86_THREAD_STATE","rdi":{"value":1}},"queue":"com.apple.main-thread","frames":[{"imageOffset":1267046,"imageIndex":5},{"imageOffset":332606,"imageIndex":5},{"imageOffset":5672342,"imageIndex":5},{"imageOffset":1326940,"imageIndex":5},{"imageOffset":1324030,"imageIndex":5},{"imageOffset":326695,"imageIndex":5},{"imageOffset":326180,"imageIndex":5},{"imageOffset":6921769,"imageIndex":5},{"imageOffset":4209973,"imageIndex":5},{"imageOffset":4195593,"imageIndex":5},{"imageOffset":291283,"imageIndex":5},{"imageOffset":289601,"imageIndex":5},{"imageOffset":284247,"imageIndex":5},{"imageOffset":505864,"imageIndex":5},{"imageOffset":503832,"imageIndex":5},{"imageOffset":723828,"imageIndex":5},{"imageOffset":4025553,"imageIndex":5},{"imageOffset":1964379,"imageIndex":5},{"imageOffset":1961278,"imageIndex":5},{"imageOffset":1962722,"imageIndex":5},{"imageOffset":9428974,"symbol":"-[NSServiceListener _doInvokeServiceIn:msg:pb:userData:error:unhide:]","symbolLocation":1227,"imageIndex":6},{"imageOffset":9431522,"symbol":"___NSServiceMasterCallBack_block_invoke","symbolLocation":93,"imageIndex":6},{"imageOffset":7716659,"symbol":"+[_NSActivityAssertion _performActivityWithOptions:reason:usingBlock:]","symbolLocation":307,"imageIndex":7},{"imageOffset":9429358,"symbol":"_NSServiceMasterCallBack","symbolLocation":200,"imageIndex":6},{"imageOffset":1340079,"symbol":"__CFServiceControllerMessagePortCallBack","symbolLocation":582,"imageIndex":8},{"imageOffset":1136491,"symbol":"__CFMessagePortPerform","symbolLocation":696,"imageIndex":8},{"imageOffset":509367,"symbol":"__CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__","symbolLocation":41,"imageIndex":8},{"imageOffset":509166,"symbol":"__CFRunLoopDoSource1","symbolLocation":534,"imageIndex":8},{"imageOffset":504166,"symbol":"__CFRunLoopRun","symbolLocation":2700,"imageIndex":8},{"imageOffset":499986,"symbol":"CFRunLoopRunSpecific","symbolLocation":557,"imageIndex":8},{"imageOffset":190985,"symbol":"RunCurrentEventLoopInMode","symbolLocation":292,"imageIndex":9},{"imageOffset":190486,"symbol":"ReceiveNextEventCommon","symbolLocation":665,"imageIndex":9},{"imageOffset":189793,"symbol":"_BlockUntilNextEventMatchingListInModeWithFilter","symbolLocation":66,"imageIndex":9},{"imageOffset":258417,"symbol":"_DPSNextEvent","symbolLocation":880,"imageIndex":6},{"imageOffset":9779952,"symbol":"-[NSApplication(NSEventRouting) _nextEventMatchingEventMask:untilDate:inMode:dequeue:]","symbolLocation":1273,"imageIndex":6},{"imageOffset":198021,"symbol":"-[NSApplication run]","symbolLocation":603,"imageIndex":6},{"imageOffset":17651,"symbol":"NSApplicationMain","symbolLocation":816,"imageIndex":6},{"imageOffset":27318,"imageIndex":5},{"imageOffset":25413,"symbol":"start","symbolLocation":1909,"imageIndex":10}]},{"id":4849,"name":"com.apple.NSEventThread","threadState":{"r13":{"value":21592279046},"rax":{"value":268451845},"rflags":{"value":518},"cpu":{"value":0},"r14":{"value":2},"rsi":{"value":21592279046},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":8589934592},"r10":{"value":127728032415744},"r9":{"value":127728032415744},"r15":{"value":127728032415744},"rbx":{"value":123145555046496},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":518},"rip":{"value":140703398047886},"rbp":{"value":123145555046336},"rsp":{"value":123145555046232},"r12":{"value":4294967295},"rcx":{"value":123145555046232},"flavor":"x86_THREAD_STATE","rdi":{"value":123145555046496}},"frames":[{"imageOffset":4238,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":12},{"imageOffset":63608,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":12},{"imageOffset":33144,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":12},{"imageOffset":4989,"symbol":"mach_msg","symbolLocation":19,"imageIndex":12},{"imageOffset":508357,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":143,"imageIndex":8},{"imageOffset":502837,"symbol":"__CFRunLoopRun","symbolLocation":1371,"imageIndex":8},{"imageOffset":499986,"symbol":"CFRunLoopRunSpecific","symbolLocation":557,"imageIndex":8},{"imageOffset":1692316,"symbol":"_NSEventThread","symbolLocation":122,"imageIndex":6},{"imageOffset":24971,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":13},{"imageOffset":6883,"symbol":"thread_start","symbolLocation":15,"imageIndex":13}]},{"id":8766,"frames":[{"imageOffset":6848,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":13}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":24351},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145549160448},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145549683576},"rbx":{"value":123145549684736},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703398292160},"rbp":{"value":0},"rsp":{"value":123145549684736},"r12":{"value":5193733},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145549684736}}},{"id":9435,"frames":[{"imageOffset":6848,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":13}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":19067},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145548087296},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145548610424},"rbx":{"value":123145548611584},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703398292160},"rbp":{"value":0},"rsp":{"value":123145548611584},"r12":{"value":5193734},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145548611584}}},{"id":9602,"frames":[{"imageOffset":6848,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":13}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":0},"rsi":{"value":28987},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145548623872},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":0},"rbx":{"value":123145549148160},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703398292160},"rbp":{"value":0},"rsp":{"value":123145549148160},"r12":{"value":0},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145549148160}}},{"id":9768,"frames":[{"imageOffset":6848,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":13}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":83775},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145549697024},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145550220152},"rbx":{"value":123145550221312},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703398292160},"rbp":{"value":0},"rsp":{"value":123145550221312},"r12":{"value":5193732},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145550221312}}},{"id":9769,"frames":[{"imageOffset":6848,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":13}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":11083},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145550233600},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145550756728},"rbx":{"value":123145550757888},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703398292160},"rbp":{"value":0},"rsp":{"value":123145550757888},"r12":{"value":7159813},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145550757888}}},{"id":9770,"frames":[{"imageOffset":6848,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":13}],"threadState":{"r13":{"value":0},"rax":{"value":0},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":0},"rsi":{"value":0},"r8":{"value":278532},"cr2":{"value":0},"rdx":{"value":123145550770176},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":0},"rbx":{"value":0},"trap":{"value":0},"err":{"value":0},"r11":{"value":0},"rip":{"value":140703398292160},"rbp":{"value":0},"rsp":{"value":123145551294464},"r12":{"value":0},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145551294464}}}],
  "usedImages" : [
  {
    "source" : "P",
    "arch" : "x86_64h",
    "base" : 4548431872,
    "size" : 53248,
    "uuid" : "e554b85a-6614-3883-83d8-8eb3bd70a202",
    "path" : "\/usr\/lib\/libobjc-trampolines.dylib",
    "name" : "libobjc-trampolines.dylib"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4547555328,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.icloud.drive.fileprovider.override",
    "size" : 12288,
    "uuid" : "3f5304d7-2a1e-3582-87f0-b7342e42f730",
    "path" : "\/System\/Library\/Frameworks\/FileProvider.framework\/OverrideBundles\/iCloudDriveFileProviderOverride.bundle\/Contents\/MacOS\/iCloudDriveFileProviderOverride",
    "name" : "iCloudDriveFileProviderOverride",
    "CFBundleVersion" : "2720.140.11"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4548538368,
    "CFBundleShortVersionString" : "14.6",
    "CFBundleIdentifier" : "com.apple.findersync.fileprovideroverride.FinderSyncCollaborationFileProviderOverride",
    "size" : 114688,
    "uuid" : "0d0abd82-1cfa-3af7-96f2-6bfd81ba75e0",
    "path" : "\/System\/Library\/Frameworks\/FileProvider.framework\/OverrideBundles\/FinderSyncCollaborationFileProviderOverride.bundle\/Contents\/MacOS\/FinderSyncCollaborationFileProviderOverride",
    "name" : "FinderSyncCollaborationFileProviderOverride",
    "CFBundleVersion" : "1632.6.3"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4547940352,
    "CFBundleShortVersionString" : "1835.140.3",
    "CFBundleIdentifier" : "com.apple.FileProviderOverride",
    "size" : 20480,
    "uuid" : "0d5cadad-50a6-31d3-92e4-e87359645c66",
    "path" : "\/System\/Library\/Frameworks\/FileProvider.framework\/OverrideBundles\/FileProviderOverride.bundle\/Contents\/MacOS\/FileProviderOverride",
    "name" : "FileProviderOverride",
    "CFBundleVersion" : "1835.140.3"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4550479872,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.TimeMachine.TimelineUI",
    "size" : 720896,
    "uuid" : "e4cd5528-1287-357b-9866-3a9001ced4d9",
    "path" : "\/System\/Library\/PrivateFrameworks\/TimelineUI.framework\/Versions\/A\/TimelineUI",
    "name" : "TimelineUI",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4530257920,
    "CFBundleShortVersionString" : "14.6",
    "CFBundleIdentifier" : "com.apple.finder",
    "size" : 10051584,
    "uuid" : "f16841b7-9eed-3973-af14-68c0b8de3f50",
    "path" : "\/System\/Library\/CoreServices\/Finder.app\/Contents\/MacOS\/Finder",
    "name" : "Finder",
    "CFBundleVersion" : "1632.6.3"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703456030720,
    "CFBundleShortVersionString" : "6.9",
    "CFBundleIdentifier" : "com.apple.AppKit",
    "size" : 21172216,
    "uuid" : "d0e19a37-f677-32b5-b3d2-005e60b90f7f",
    "path" : "\/System\/Library\/Frameworks\/AppKit.framework\/Versions\/C\/AppKit",
    "name" : "AppKit",
    "CFBundleVersion" : "2487.70.105"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703415283712,
    "CFBundleShortVersionString" : "6.9",
    "CFBundleIdentifier" : "com.apple.Foundation",
    "size" : 12808188,
    "uuid" : "2f87a303-430f-3ea5-9492-3033f4fee64b",
    "path" : "\/System\/Library\/Frameworks\/Foundation.framework\/Versions\/C\/Foundation",
    "name" : "Foundation",
    "CFBundleVersion" : "2602"
  },
  {
    "source" : "P",
    "arch" : "x86_64h",
    "base" : 140703398707200,
    "CFBundleShortVersionString" : "6.9",
    "CFBundleIdentifier" : "com.apple.CoreFoundation",
    "size" : 4829181,
    "uuid" : "c5e5acb6-9e44-3aa3-bd21-0a5b4a2eee5e",
    "path" : "\/System\/Library\/Frameworks\/CoreFoundation.framework\/Versions\/A\/CoreFoundation",
    "name" : "CoreFoundation",
    "CFBundleVersion" : "2602"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703577403392,
    "CFBundleShortVersionString" : "2.1.1",
    "CFBundleIdentifier" : "com.apple.HIToolbox",
    "size" : 2732020,
    "uuid" : "2aa738bf-9f72-3227-8bba-7eae7b9f080b",
    "path" : "\/System\/Library\/Frameworks\/Carbon.framework\/Versions\/A\/Frameworks\/HIToolbox.framework\/Versions\/A\/HIToolbox",
    "name" : "HIToolbox"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703394566144,
    "size" : 591904,
    "uuid" : "82f051ed-7518-32ff-9390-65de9ca6bacf",
    "path" : "\/usr\/lib\/dyld",
    "name" : "dyld"
  },
  {
    "size" : 0,
    "source" : "A",
    "base" : 0,
    "uuid" : "00000000-0000-0000-0000-000000000000"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703398043648,
    "size" : 241656,
    "uuid" : "861e8b79-f5c1-3677-8709-4aa33c77673c",
    "path" : "\/usr\/lib\/system\/libsystem_kernel.dylib",
    "name" : "libsystem_kernel.dylib"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703398285312,
    "size" : 49144,
    "uuid" : "d70de43a-2804-340a-804c-5d316c1e013b",
    "path" : "\/usr\/lib\/system\/libsystem_pthread.dylib",
    "name" : "libsystem_pthread.dylib"
  }
],
  "sharedCache" : {
  "base" : 140703393869824,
  "size" : 25769803776,
  "uuid" : "693edd13-ec80-3b3f-b8f3-15340ec37b23"
},
  "vmSummary" : "ReadOnly portion of Libraries: Total=1.1G resident=0K(0%) swapped_out_or_unallocated=1.1G(100%)\nWritable regions: Total=926.8M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=926.8M(100%)\n\n                                VIRTUAL   REGION \nREGION TYPE                        SIZE    COUNT (non-coalesced) \n===========                     =======  ======= \nAccelerate framework               128K        1 \nActivity Tracing                   256K        1 \nCG image                           240K        4 \nColorSync                          228K       26 \nCoreAnimation                      484K       48 \nCoreGraphics                        12K        2 \nCoreServices                        60K        1 \nFoundation                          36K        2 \nKernel Alloc Once                    8K        1 \nMALLOC                           913.8M      133 \nMALLOC guard page                   32K        8 \nMemory Tag 244                       4K        1 \nQuickLook Thumbnails                16K        1 \nSTACK GUARD                       56.0M        8 \nStack                             11.6M        8 \nVM_ALLOCATE                        316K       13 \n__CTF                               824        1 \n__DATA                            47.5M      896 \n__DATA_CONST                      64.3M      623 \n__DATA_DIRTY                      2553K      336 \n__FONT_DATA                        2352        1 \n__INFO_FILTER                         8        1 \n__LINKEDIT                       181.1M        7 \n__OBJC_RO                         71.9M        1 \n__OBJC_RW                         2201K        2 \n__TEXT                           939.7M      918 \nmapped file                      202.1M       50 \nshared memory                      780K       16 \n===========                     =======  ======= \nTOTAL                              2.4G     3110 \n",
  "legacyInfo" : {
  "threadTriggered" : {
    "queue" : "com.apple.main-thread"
  }
},
  "logWritingSignature" : "40f589fd7a0bdcfed29073136990a8dd11aff420",
  "trialInfo" : {
  "rollouts" : [
    {
      "rolloutId" : "632c763c58740028737bfdd2",
      "factorPackIds" : {
        "SIRI_DIALOG_ASSETS" : "64a57d23fa6fd41b2353e2ae"
      },
      "deploymentId" : 240000034
    },
    {
      "rolloutId" : "648c94d4ebdf9e3e398fa708",
      "factorPackIds" : {
        "SIRI_UNDERSTANDING_NL_OVERRIDES" : "65a8104b6712a43e7922cab8"
      },
      "deploymentId" : 240000171
    }
  ],
  "experiments" : [

  ]
}
}


I also added some tweaks and modifications to my config.plist. The Xeon Gold 6138 has CPU-ID 0x0050654 and System Profiler shows "Unknown CPU", therefore I have added the following to Kernel -> Emulate in my config.plist:

image.png.e8d86ba78359d85b56674bd1ee0effb0.png
 

Power-Management seems fine, see the following output from IOReg:

image.png.50e0b42c1ea18f1b320713ad54d088a4.png

 

The X86PlatformPlugin is attached to PR00 (fake Processor object) and I have also added CPUFriend and CPUFriendDataProvider (created via CPUFriendFriend.command) to my EFI. 

 

Just a side note: I have also created + added the USBMap.kext for my Motherboard and disabled XHCIPortLimit, all USB ports should be mapped correctly now. 


I am unsure why the system is so unstable. :wacko:


EDIT: Quick Update: I have removed CpuTscSync.kext and replaced it with TSCAdjustReset with modified a IOCPUNumber count. The system runs much smoother now, lets see if I encounter any crashes with TSCAdjustReset.kext

EDIT 2: Still facing some random crashes. 

 

Edited by anullpointerexception
  • Like 1

Back to NVRAM:

I have noticed the following now. I have disabled the emulated NVRAM (removed LogoutHook) and reverted the quirks from my config.plist. From what I can tell, NVRAM is partially working? 

I did try the following:

Via Terminal:

sudo nvram testvar=HelloWorld


After reboot:
 

nvram -p | grep testvar

...which displays:

image.png.5e2bfbcfff0fa4dd14ce324190f9d69d.png

 

So, NVRAM shouldn't be an issue or am I wrong here?


The instability issues are still present, again, kernel panic after some time:

panic(cpu 6 caller 0xffffff8011b7a693): Kernel trap at 0xffffff8011b578b8, type 13=general protection, registers:
CR0: 0x0000000080010033, CR2: 0x000000010b79e000, CR3: 0x00000004295180fd, CR4: 0x00000000003626e0
RAX: 0x000141924400f2d8, RBX: 0x000000010b79e000, RCX: 0x000ffffffffff000, RDX: 0x0000000000000001
RSP: 0xffffffea1debfa50, RBP: 0xffffffea1debfa50, RSI: 0x000000010b79e000, RDI: 0xfffffe9700000000
R8:  0x00000000000002d8, R9:  0xfffffe9200000000, R10: 0x0000000000000000, R11: 0xffffff951853f500
R12: 0x0010000000000000, R13: 0x0000000429518000, R14: 0xffffff951853f500, R15: 0x0000000000000004
RFL: 0x0000000000010206, RIP: 0xffffff8011b578b8, CS:  0x0000000000000008, SS:  0x0000000000000000
Fault CR2: 0x0000000000000000, Error code: 0x0000000000000000, Fault CPU: 0x6, PL: 1, VF: 0

Panicked task 0xffffff99e3eb13d8: 3 threads: pid 499: Dock
Backtrace (CPU 6), panicked thread: 0xffffff904c50d598, Frame : Return Address
0xffffff801170f140 : 0xffffff8011a25561 mach_kernel : _handle_debugger_trap + 0x4b1
0xffffff801170f190 : 0xffffff8011b8ac30 mach_kernel : _kdp_i386_trap + 0x110
0xffffff801170f1d0 : 0xffffff8011b7a1ec mach_kernel : _kernel_trap + 0x55c
0xffffff801170f250 : 0xffffff80119bf971 mach_kernel : _return_from_trap + 0xc1
0xffffff801170f270 : 0xffffff8011a2584d mach_kernel : _DebuggerTrapWithState + 0x5d
0xffffff801170f360 : 0xffffff8011a24ef3 mach_kernel : _panic_trap_to_debugger + 0x1e3
0xffffff801170f3c0 : 0xffffff80121daa0b mach_kernel : _panic + 0x84
0xffffff801170f4b0 : 0xffffff8011b7a693 mach_kernel : _sync_iss_to_iks + 0x2c3
0xffffff801170f630 : 0xffffff8011b7a377 mach_kernel : _kernel_trap + 0x6e7
0xffffff801170f6b0 : 0xffffff80119bf971 mach_kernel : _return_from_trap + 0xc1
0xffffff801170f6d0 : 0xffffff8011b578b8 mach_kernel : _pmap_find_pa + 0x2c8
0xffffffea1debfa50 : 0xffffff8011b57f0b mach_kernel : _pmap_enter_options + 0x13b
0xffffffea1debfb50 : 0xffffff8011acf5b8 mach_kernel : _vm_fault_enter + 0x15d8
0xffffffea1debfbe0 : 0xffffff8011ace118 mach_kernel : _vm_fault_enter + 0x138
0xffffffea1debfc60 : 0xffffff8011accc4b mach_kernel : _vm_fault$XNU_INTERNAL + 0x1e4b
0xffffffea1debfef0 : 0xffffff8011b7a9ee mach_kernel : _user_trap + 0x2ce
0xffffffea1debffa0 : 0xffffff80119bf89f mach_kernel : _hndl_alltraps + 0x5f

Process name corresponding to current thread (0xffffff904c50d598): Dock
Boot args: -v keepsyms=1 debug=0x100 alcid=1 rtcfx_exclude=00-FF

Mac OS version:
23G80

Kernel version:
Darwin Kernel Version 23.6.0: Fri Jul  5 17:54:20 PDT 2024; root:xnu-10063.141.1~2/RELEASE_X86_64
Kernel UUID: EA8D2F2A-36F4-3B0A-9EDA-D2B2698FE2C1
roots installed: 0
KernelCache slide: 0x0000000011600000
KernelCache base:  0xffffff8011800000
Kernel slide:      0x00000000116e4000
Kernel text base:  0xffffff80118e4000
__HIB  text base: 0xffffff8011700000
System model name: iMacPro1,1 (Mac-7BA5B2D9E42DDD94)
System shutdown begun: NO
Panic diags file available: YES (0x0)
Hibernation exit count: 0

System uptime in nanoseconds: 369160254259
Last Sleep:           absolute           base_tsc          base_nano
  Uptime  : 0x00000055f3aa781b
  Sleep   : 0x0000000000000000 0x0000000000000000 0x0000000000000000
  Wake    : 0x0000000000000000 0x0000020b9e02494a 0x0000000000000000
Compressor Info: 0% of compressed pages limit (OK) and 0% of segments limit (OK) with 0 swapfiles and OK swap space
Zone info:
  Zone map: 0xffffff804ac00000 - 0xffffffa04ac00000
  . PGZ   : 0xffffff804ac00000 - 0xffffff804cc01000
  . VM    : 0xffffff804cc01000 - 0xffffff8519400000
  . RO    : 0xffffff8519400000 - 0xffffff86b2c00000
  . GEN0  : 0xffffff86b2c00000 - 0xffffff8b7f400000
  . GEN1  : 0xffffff8b7f400000 - 0xffffff904bc00000
  . GEN2  : 0xffffff904bc00000 - 0xffffff9518400000
  . GEN3  : 0xffffff9518400000 - 0xffffff99e4c00000
  . DATA  : 0xffffff99e4c00000 - 0xffffffa04ac00000
  Metadata: 0xffffffa04b410000 - 0xffffffa06b410000
  Bitmaps : 0xffffffa06b410000 - 0xffffffa06e410000
  Extra   : 0 - 0

 

 

EDIT: And another crash (Safari crashed, system still up tho):
 

-------------------------------------
Translated Report (Full Report Below)
-------------------------------------

Process:               Safari [531]
Path:                  /Volumes/VOLUME/*/Safari.app/Contents/MacOS/Safari
Identifier:            com.apple.Safari
Version:               17.6 (19618.3.11.11.5)
Build Info:            Safari-7618003011011005~1
Code Type:             X86-64 (Native)
Parent Process:        launchd [1]
User ID:               501

Date/Time:             2024-08-08 19:47:53.9099 +0200
OS Version:            macOS 14.6 (23G80)
Report Version:        12
Anonymous UUID:        094AD678-62D9-06C6-4532-B7387DC6989D


Time Awake Since Boot: 230 seconds

System Integrity Protection: enabled

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

Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000000020
Exception Codes:       0x0000000000000001, 0x0000000000000020

Termination Reason:    Namespace SIGNAL, Code 11 Segmentation fault: 11
Terminating Process:   exc handler [531]

VM Region Info: 0x20 is not in any region.  Bytes before following region: 4489711584
      REGION TYPE                    START - END         [ VSIZE] PRT/MAX SHRMOD  REGION DETAIL
      UNUSED SPACE AT START
--->  
      __TEXT                      10b9b9000-10b9ba000    [    4K] r-x/r-x SM=COW  /System/Volumes/Preboot/Cryptexes/App/System/Applications/Safari.app/Contents/MacOS/Safari

Kernel Triage:
VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter
VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter


Thread 0 Crashed::  Dispatch queue: com.apple.main-thread
0   libobjc.A.dylib               	    0x7ff816f7102c objc_retain + 28
1   SafariCore                    	    0x7ff91f0682f8 -[NSDictionary(SafariCoreExtras) safari_dataForKey:] + 28
2   WebBookmarks                  	    0x7ffc279793c6 -[WBLocalTabAttributes initWithDictionaryRepresentation:] + 359
3   WebBookmarks                  	    0x7ffc279043f8 -[WBTab localAttributes] + 76
4   Safari                        	    0x7ff926f37da9 -[BrowserTabPersistentState initWithDataFromTab:encryptionProvider:] + 76
5   Safari                        	    0x7ff92702d207 __97-[BrowserWindowPersistentState initWithBrowserWindowController:encryptionProvider:skipTabStates:]_block_invoke + 60
6   SafariCore                    	    0x7ff91f062451 __78-[NSArray(SafariCoreExtras) safari_mapAndFilterObjectsWithOptions:usingBlock:]_block_invoke + 20
7   CoreFoundation                	    0x7ff817410397 __NSARRAY_IS_CALLING_OUT_TO_A_BLOCK__ + 7
8   CoreFoundation                	    0x7ff817410235 -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 290
9   SafariCore                    	    0x7ff91f0623cb -[NSArray(SafariCoreExtras) safari_mapAndFilterObjectsWithOptions:usingBlock:] + 384
10  SafariCore                    	    0x7ff91f062209 -[NSArray(SafariCoreExtras) safari_mapAndFilterObjectsUsingBlock:] + 113
11  Safari                        	    0x7ff92702ca79 -[BrowserWindowPersistentState initWithBrowserWindowController:encryptionProvider:skipTabStates:] + 1840
12  Safari                        	    0x7ff927029742 -[BrowserWindowController updateWindowStateIncludingTabStates:] + 196
13  Safari                        	    0x7ff926e33b66 __90-[AppController _browserStateFromCurrentSessionIgnoringPrivateWindows:encryptionProvider:]_block_invoke_4 + 254
14  SafariCore                    	    0x7ff91f062451 __78-[NSArray(SafariCoreExtras) safari_mapAndFilterObjectsWithOptions:usingBlock:]_block_invoke + 20
15  CoreFoundation                	    0x7ff817410397 __NSARRAY_IS_CALLING_OUT_TO_A_BLOCK__ + 7
16  CoreFoundation                	    0x7ff8174102a9 -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 406
17  SafariCore                    	    0x7ff91f0623cb -[NSArray(SafariCoreExtras) safari_mapAndFilterObjectsWithOptions:usingBlock:] + 384
18  Safari                        	    0x7ff926e3373a -[AppController _browserStateFromCurrentSessionIgnoringPrivateWindows:encryptionProvider:] + 1232
19  Safari                        	    0x7ff926e33218 __38-[AppController sessionStateDidChange]_block_invoke.1837 + 64
20  Safari                        	    0x7ff92719ca03 -[LastSessionWriter _writeNow] + 41
21  Foundation                    	    0x7ff8183ec4d9 __NSFireDelayedPerform + 438
22  CoreFoundation                	    0x7ff81743744c __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
23  CoreFoundation                	    0x7ff817436ffa __CFRunLoopDoTimer + 785
24  CoreFoundation                	    0x7ff817436c36 __CFRunLoopDoTimers + 285
25  CoreFoundation                	    0x7ff81741af12 __CFRunLoopRun + 2104
26  CoreFoundation                	    0x7ff81741a112 CFRunLoopRunSpecific + 557
27  HIToolbox                     	    0x7ff821e39a09 RunCurrentEventLoopInMode + 292
28  HIToolbox                     	    0x7ff821e39816 ReceiveNextEventCommon + 665
29  HIToolbox                     	    0x7ff821e39561 _BlockUntilNextEventMatchingListInModeWithFilter + 66
30  AppKit                        	    0x7ff81aa8a171 _DPSNextEvent + 880
31  AppKit                        	    0x7ff81b39eaf0 -[NSApplication(NSEventRouting) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1273
32  Safari                        	    0x7ff926ed190c -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 217
33  AppKit                        	    0x7ff81aa7b585 -[NSApplication run] + 603
34  AppKit                        	    0x7ff81aa4f4f3 NSApplicationMain + 816
35  Safari                        	    0x7ff9272adf84 SafariMain + 518
36  dyld                          	    0x7ff816fb3345 start + 1909

Thread 1:: JavaScriptCore libpas scavenger
0   libsystem_kernel.dylib        	    0x7ff817301c3a __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7ff81733f6f3 _pthread_cond_wait + 1211
2   JavaScriptCore                	    0x7ff835cf43d5 scavenger_thread_main + 1541
3   libsystem_pthread.dylib       	    0x7ff81733f18b _pthread_start + 99
4   libsystem_pthread.dylib       	    0x7ff81733aae3 thread_start + 15

Thread 2:: com.apple.coreanimation.render-server
0   libsystem_kernel.dylib        	    0x7ff8172ff08e mach_msg2_trap + 10
1   libsystem_kernel.dylib        	    0x7ff81730d878 mach_msg2_internal + 84
2   libsystem_kernel.dylib        	    0x7ff817306178 mach_msg_overwrite + 653
3   libsystem_kernel.dylib        	    0x7ff8172ff37d mach_msg + 19
4   QuartzCore                    	    0x7ff81fa48eca CA::Render::Server::server_thread(void*) + 664
5   QuartzCore                    	    0x7ff81fa48c1f thread_fun(void*) + 25
6   libsystem_pthread.dylib       	    0x7ff81733f18b _pthread_start + 99
7   libsystem_pthread.dylib       	    0x7ff81733aae3 thread_start + 15

Thread 3:: WebCore: Scrolling
0   libsystem_kernel.dylib        	    0x7ff8172ff08e mach_msg2_trap + 10
1   libsystem_kernel.dylib        	    0x7ff81730d878 mach_msg2_internal + 84
2   libsystem_kernel.dylib        	    0x7ff817306178 mach_msg_overwrite + 653
3   libsystem_kernel.dylib        	    0x7ff8172ff37d mach_msg + 19
4   CoreFoundation                	    0x7ff81741c1c5 __CFRunLoopServiceMachPort + 143
5   CoreFoundation                	    0x7ff81741ac35 __CFRunLoopRun + 1371
6   CoreFoundation                	    0x7ff81741a112 CFRunLoopRunSpecific + 557
7   CoreFoundation                	    0x7ff817495b9e CFRunLoopRun + 40
8   JavaScriptCore                	    0x7ff834576152 WTF::Detail::CallableWrapper<WTF::RunLoop::create(char const*, WTF::ThreadType, WTF::Thread::QOS)::$_1, void>::call() + 82
9   JavaScriptCore                	    0x7ff8345958fd WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*) + 237
10  JavaScriptCore                	    0x7ff834379fb9 WTF::wtfThreadEntryPoint(void*) + 9
11  libsystem_pthread.dylib       	    0x7ff81733f18b _pthread_start + 99
12  libsystem_pthread.dylib       	    0x7ff81733aae3 thread_start + 15

Thread 4:: com.apple.NSEventThread
0   libsystem_kernel.dylib        	    0x7ff8172ff08e mach_msg2_trap + 10
1   libsystem_kernel.dylib        	    0x7ff81730d878 mach_msg2_internal + 84
2   libsystem_kernel.dylib        	    0x7ff817306178 mach_msg_overwrite + 653
3   libsystem_kernel.dylib        	    0x7ff8172ff37d mach_msg + 19
4   CoreFoundation                	    0x7ff81741c1c5 __CFRunLoopServiceMachPort + 143
5   CoreFoundation                	    0x7ff81741ac35 __CFRunLoopRun + 1371
6   CoreFoundation                	    0x7ff81741a112 CFRunLoopRunSpecific + 557
7   AppKit                        	    0x7ff81abe829c _NSEventThread + 122
8   libsystem_pthread.dylib       	    0x7ff81733f18b _pthread_start + 99
9   libsystem_pthread.dylib       	    0x7ff81733aae3 thread_start + 15

Thread 5:: com.apple.CFNetwork.CustomProtocols
0   libsystem_kernel.dylib        	    0x7ff8172ff08e mach_msg2_trap + 10
1   libsystem_kernel.dylib        	    0x7ff81730d878 mach_msg2_internal + 84
2   libsystem_kernel.dylib        	    0x7ff817306178 mach_msg_overwrite + 653
3   libsystem_kernel.dylib        	    0x7ff8172ff37d mach_msg + 19
4   CoreFoundation                	    0x7ff81741c1c5 __CFRunLoopServiceMachPort + 143
5   CoreFoundation                	    0x7ff81741ac35 __CFRunLoopRun + 1371
6   CoreFoundation                	    0x7ff81741a112 CFRunLoopRunSpecific + 557
7   CFNetwork                     	    0x7ff81c7eeb35 0x7ff81c5a7000 + 2390837
8   Foundation                    	    0x7ff8183c48fc __NSThread__start__ + 1013
9   libsystem_pthread.dylib       	    0x7ff81733f18b _pthread_start + 99
10  libsystem_pthread.dylib       	    0x7ff81733aae3 thread_start + 15

Thread 6::  Dispatch queue: com.apple.WebBookmarks.WBTabCollection.databaseQueue.0x6000022cbba0
0   libsqlite3.dylib              	    0x7ff81e280bfe fkParentIsModified + 350
1   libsqlite3.dylib              	    0x7ff81e1cf64a sqlite3FkRequired + 698
2   libsqlite3.dylib              	    0x7ff81e1e17ce sqlite3Update + 1998
3   libsqlite3.dylib              	    0x7ff81e1860da yy_reduce + 9498
4   libsqlite3.dylib              	    0x7ff81e182cf5 sqlite3RunParser + 821
5   libsqlite3.dylib              	    0x7ff81e1821e5 sqlite3Prepare + 597
6   libsqlite3.dylib              	    0x7ff81e181e1b sqlite3LockAndPrepare + 219
7   libsqlite3.dylib              	    0x7ff81e1d725c sqlite3_prepare_v2 + 28
8   WebBookmarks                  	    0x7ffc2791dda9 -[WebBookmarkCollection _saveBookmark:withSpecialID:updateGenerationIfNeeded:] + 1858
9   WebBookmarks                  	    0x7ffc278f516c -[WebBookmarkTabCollection _saveWindowState:] + 156
10  WebBookmarks                  	    0x7ffc27909e5c -[WebBookmarkCollection performDatabaseUpdatesWithTransaction:applyInMemoryChanges:secureDelete:] + 198
11  WebBookmarks                  	    0x7ffc278f5041 -[WebBookmarkTabCollection _saveWindowState:forApplyingInMemoryChanges:] + 136
12  WebBookmarks                  	    0x7ffc27949360 __53-[WBTabCollection saveWindowState:completionHandler:]_block_invoke + 62
13  libdispatch.dylib             	    0x7ff8171aa8f7 _dispatch_block_async_invoke2 + 85
14  libdispatch.dylib             	    0x7ff81719ddbc _dispatch_client_callout + 8
15  libdispatch.dylib             	    0x7ff8171a3eff _dispatch_lane_serial_drain + 800
16  libdispatch.dylib             	    0x7ff8171a4997 _dispatch_lane_invoke + 377
17  libdispatch.dylib             	    0x7ff8171ae414 _dispatch_root_queue_drain_deferred_wlh + 271
18  libdispatch.dylib             	    0x7ff8171add2a _dispatch_workloop_worker_thread + 451
19  libsystem_pthread.dylib       	    0x7ff81733bb84 _pthread_wqthread + 327
20  libsystem_pthread.dylib       	    0x7ff81733aacf start_wqthread + 15

Thread 7:
0   libsystem_pthread.dylib       	    0x7ff81733aac0 start_wqthread + 0

Thread 8:
0   libsystem_pthread.dylib       	    0x7ff81733aac0 start_wqthread + 0

Thread 9:
0   libsystem_pthread.dylib       	    0x7ff81733aac0 start_wqthread + 0

Thread 10:
0   libsystem_pthread.dylib       	    0x7ff81733aac0 start_wqthread + 0

Thread 11:
0   libsystem_pthread.dylib       	    0x7ff81733aac0 start_wqthread + 0


Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x00007ff838142e64  rcx: 0x0000000000000000  rdx: 0x0000000000000003
  rdi: 0x00007f939c9510e0  rsi: 0x00007ff91d774830  rbp: 0x00007ff7b45445e0  rsp: 0x00007ff7b45445c8
   r8: 0x00007ff81761e590   r9: 0x698bfa3f02e2a443  r10: 0x0000000075bf9349  r11: 0x00007ff8173a99cf
  r12: 0x0000600002d55a80  r13: 0x00007ff8381429a5  r14: 0x00007ff838143dd0  r15: 0x00007ff816f71180
  rip: 0x00007ff816f7102c  rfl: 0x0000000000010246  cr2: 0x0000000000000020
  
Logical CPU:     0
Error Code:      0x00000004 (no mapping for user data read)
Trap Number:     14

Thread 0 instruction stream:
  00 00 48 8b 00 eb b8 90-90 90 90 90 90 90 90 90  ..H.............
  48 85 ff 74 7d 89 f8 83-e0 01 75 76 48 8b 07 48  H..t}.....uvH..H
  b9 f8 ff ff ff ff 7f 00-00 48 21 c1[48]8b 51 20  .........H!.H.Q 	<==
  f6 c2 04 74 38 a8 01 74-53 48 b9 00 00 00 00 00  ...t8..tSH......
  00 00 01 48 89 c2 48 c1-ea 37 74 46 48 89 c2 48  ...H..H..7tFH..H
  01 ca 72 12 f0 48 0f b1-17 74 37 a8 01 75 e4 31  ..r..H...t7..u.1
  f6 e9 fa 63 02 00 31 f6-e9 0b 96 00 00 66 83 79  ...c..1......f.y
  1e 00 79 0b 83 e2 02 74-06 f6 41 28 02 75 17 48  ..y....t..A(.u.H
  8b 35 82 3b f9 3f ff 25-84 22 f9 3f f6 41 1e 01  .5.;.?.%.".?.A..
  74 cd 48 89 f8 c3 48 8b-05 2b 70 ba 41 ff e0 90  t.H...H..+p.A...
  90 90 90 90 90 90 90 90-90 90 90 90 90 90 90 90  ................
  90 90 90 90 90 90 90 90-90 90 90 90 90 90 90 90  ................

Binary Images:
       0x128995000 -        0x1289abfff com.apple.security.csparser (3.0) <82c9489d-31b0-3c87-a74b-d1aca5b119f2> /System/Library/Frameworks/Security.framework/Versions/A/PlugIns/csparser.bundle/Contents/MacOS/csparser
       0x123412000 -        0x123416fff libWebKitSwift.dylib (*) <23414e54-3a44-3383-b786-ee5dc8491ee5> /Volumes/VOLUME/*/WebKit.framework/Versions/A/Frameworks/libWebKitSwift.dylib
       0x124ce2000 -        0x125691fff com.apple.audio.codecs.Components (7.0) <ce4f6364-0a9e-3c92-90ed-591469f1b67c> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
       0x12199c000 -        0x121a9cfff com.apple.AMDRadeonX4000GLDriver (5.5.17) <ce617fcf-e6cd-3945-8611-eb3398b4dd47> /System/Library/Extensions/AMDRadeonX4000GLDriver.bundle/Contents/MacOS/AMDRadeonX4000GLDriver
       0x10bdd6000 -        0x10bde2fff libobjc-trampolines.dylib (*) <e554b85a-6614-3883-83d8-8eb3bd70a202> /usr/lib/libobjc-trampolines.dylib
       0x10b9b9000 -        0x10b9b9fff com.apple.Safari (17.6) <de85298a-65cb-362f-8111-68fa2f397a63> /Volumes/VOLUME/*/Safari.app/Contents/MacOS/Safari
    0x7ff816f6b000 -     0x7ff816facfc3 libobjc.A.dylib (*) <a9fd3f0e-8e64-3038-9cc9-569d89224c07> /usr/lib/libobjc.A.dylib
    0x7ff91f02e000 -     0x7ff91f139ff9 com.apple.Safari.Core (19618) <b7ab69df-3fcf-3098-b487-ef2c10ae3249> /System/Library/PrivateFrameworks/SafariCore.framework/Versions/A/SafariCore
    0x7ffc278d4000 -     0x7ffc279beffc com.apple.WebBookmarks (19618) <dd5dab51-168c-3940-8379-8b108fbb9f73> /System/Library/PrivateFrameworks/WebBookmarks.framework/Versions/A/WebBookmarks
    0x7ff926ddb000 -     0x7ff9277b3ffe com.apple.Safari.framework (19618) <4b645146-ed33-3828-ac0c-5e80fcc3e6ae> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
    0x7ff8173a0000 -     0x7ff81783affc com.apple.CoreFoundation (6.9) <c5e5acb6-9e44-3aa3-bd21-0a5b4a2eee5e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7ff81836f000 -     0x7ff818fa5ffb com.apple.Foundation (6.9) <2f87a303-430f-3ea5-9492-3033f4fee64b> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7ff821e0b000 -     0x7ff8220a5ff3 com.apple.HIToolbox (2.1.1) <2aa738bf-9f72-3227-8bba-7eae7b9f080b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7ff81aa4b000 -     0x7ff81be7bff7 com.apple.AppKit (6.9) <d0e19a37-f677-32b5-b3d2-005e60b90f7f> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7ff816fad000 -     0x7ff81703d81f dyld (*) <82f051ed-7518-32ff-9390-65de9ca6bacf> /usr/lib/dyld
               0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???
    0x7ff91d51d000 -     0x7ff91d7dfff3 com.apple.Safari.Shared (19618) <3dc378b4-fa58-347b-a498-c75ceadbf18f> /System/Library/PrivateFrameworks/SafariShared.framework/Versions/A/SafariShared
    0x7ff8172fe000 -     0x7ff817338ff7 libsystem_kernel.dylib (*) <861e8b79-f5c1-3677-8709-4aa33c77673c> /usr/lib/system/libsystem_kernel.dylib
    0x7ff817339000 -     0x7ff817344ff7 libsystem_pthread.dylib (*) <d70de43a-2804-340a-804c-5d316c1e013b> /usr/lib/system/libsystem_pthread.dylib
    0x7ff834377000 -     0x7ff835f21f70 com.apple.JavaScriptCore (19618) <9164ac4e-debe-39c3-81d1-b4ad9bdbea98> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7ff81fa00000 -     0x7ff81fd8affd com.apple.QuartzCore (1.11) <f5c61672-39ab-376a-a414-45ae61cb4471> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7ff81c5a7000 -     0x7ff81c955ff2 com.apple.CFNetwork (1.0) <ee1efa57-0d81-33e2-8087-96dafe9f4da0> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7ff81e179000 -     0x7ff81e33afef libsqlite3.dylib (*) <bd10567f-8ebb-30b1-b1aa-baddf1c39501> /usr/lib/libsqlite3.dylib
    0x7ff81719b000 -     0x7ff8171e1ff1 libdispatch.dylib (*) <ffb968b0-807c-38bf-ae61-50a96c8d310c> /usr/lib/system/libdispatch.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=1.2G resident=0K(0%) swapped_out_or_unallocated=1.2G(100%)
Writable regions: Total=5.2G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=5.2G(100%)

                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Accelerate framework               128K        1 
Activity Tracing                   256K        1 
CG image                           744K       75 
ColorSync                          272K       36 
CoreAnimation                      796K      157 
CoreData Object IDs               4100K        2 
CoreGraphics                        16K        3 
CoreImage                           40K        7 
CoreServices                        80K        1 
CoreUI image data                 1288K       24 
Foundation                          36K        2 
IOKit                             7940K        1 
Image IO                           868K       21 
Kernel Alloc Once                    8K        1 
MALLOC                           964.4M      181 
MALLOC guard page                   48K       12 
SQLite page cache                 2048K       16 
STACK GUARD                       56.0M       12 
Stack                             14.1M       12 
VM_ALLOCATE                      128.3M       17 
VM_ALLOCATE (reserved)             3.9G        1         reserved VM address space (unallocated)
WebKit Malloc                    192.0M        4 
__CTF                               824        1 
__DATA                            50.8M      968 
__DATA_CONST                      88.3M      684 
__DATA_DIRTY                      2901K      372 
__FONT_DATA                        2352        1 
__GLSLBUILTINS                    5174K        1 
__INFO_FILTER                         8        1 
__LINKEDIT                       181.8M        8 
__OBJC_RO                         71.9M        1 
__OBJC_RW                         2201K        2 
__TEXT                             1.0G      983 
libnetwork                         128K        8 
mapped file                      275.9M      142 
shared memory                      784K       17 
===========                     =======  ======= 
TOTAL                              6.9G     3776 
TOTAL, minus reserved VM space     3.0G     3776 



-----------
Full Report
-----------

{"app_name":"Safari","timestamp":"2024-08-08 19:48:06.00 +0200","app_version":"17.6","slice_uuid":"de85298a-65cb-362f-8111-68fa2f397a63","build_version":"19618.3.11.11.5","platform":1,"bundleID":"com.apple.Safari","share_with_app_devs":0,"is_first_party":1,"bug_type":"309","os_version":"macOS 14.6 (23G80)","roots_installed":0,"name":"Safari","incident_id":"72C02740-BA4D-40FB-8794-40ED859CD44E"}
{
  "uptime" : 230,
  "procRole" : "Foreground",
  "version" : 2,
  "userID" : 501,
  "deployVersion" : 210,
  "modelCode" : "iMacPro1,1",
  "coalitionID" : 617,
  "osVersion" : {
    "train" : "macOS 14.6",
    "build" : "23G80",
    "releaseType" : "User"
  },
  "captureTime" : "2024-08-08 19:47:53.9099 +0200",
  "codeSigningMonitor" : 0,
  "incident" : "72C02740-BA4D-40FB-8794-40ED859CD44E",
  "pid" : 531,
  "cpuType" : "X86-64",
  "roots_installed" : 0,
  "bug_type" : "309",
  "procLaunch" : "1999-12-31 01:00:30.3579 +0100",
  "procStartAbsTime" : 33417903700,
  "procExitAbsTime" : 239203537152,
  "procName" : "Safari",
  "procPath" : "\/Volumes\/VOLUME\/*\/Safari.app\/Contents\/MacOS\/Safari",
  "bundleInfo" : {"CFBundleShortVersionString":"17.6","CFBundleVersion":"19618.3.11.11.5","CFBundleIdentifier":"com.apple.Safari"},
  "buildInfo" : {"ProjectName":"Safari","SourceVersion":"7618003011011005","BuildVersion":"1"},
  "storeInfo" : {"deviceIdentifierForVendor":"7509DA50-B6AA-52F7-9CE8-E912B141E513"},
  "parentProc" : "launchd",
  "parentPid" : 1,
  "coalitionName" : "com.apple.Safari",
  "crashReporterKey" : "094AD678-62D9-06C6-4532-B7387DC6989D",
  "codeSigningID" : "com.apple.Safari",
  "codeSigningTeamID" : "",
  "codeSigningFlags" : 570522369,
  "codeSigningValidationCategory" : 1,
  "codeSigningTrustLevel" : 4294967295,
  "sip" : "enabled",
  "vmRegionInfo" : "0x20 is not in any region.  Bytes before following region: 4489711584\n      REGION TYPE                    START - END         [ VSIZE] PRT\/MAX SHRMOD  REGION DETAIL\n      UNUSED SPACE AT START\n--->  \n      __TEXT                      10b9b9000-10b9ba000    [    4K] r-x\/r-x SM=COW  \/System\/Volumes\/Preboot\/Cryptexes\/App\/System\/Applications\/Safari.app\/Contents\/MacOS\/Safari",
  "exception" : {"codes":"0x0000000000000001, 0x0000000000000020","rawCodes":[1,32],"type":"EXC_BAD_ACCESS","signal":"SIGSEGV","subtype":"KERN_INVALID_ADDRESS at 0x0000000000000020"},
  "termination" : {"flags":0,"code":11,"namespace":"SIGNAL","indicator":"Segmentation fault: 11","byProc":"exc handler","byPid":531},
  "ktriageinfo" : "VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter\nVM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter\n",
  "vmregioninfo" : "0x20 is not in any region.  Bytes before following region: 4489711584\n      REGION TYPE                    START - END         [ VSIZE] PRT\/MAX SHRMOD  REGION DETAIL\n      UNUSED SPACE AT START\n--->  \n      __TEXT                      10b9b9000-10b9ba000    [    4K] r-x\/r-x SM=COW  \/System\/Volumes\/Preboot\/Cryptexes\/App\/System\/Applications\/Safari.app\/Contents\/MacOS\/Safari",
  "extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0},
  "faultingThread" : 0,
  "threads" : [{"triggered":true,"id":4553,"instructionState":{"instructionStream":{"bytes":[0,0,72,139,0,235,184,144,144,144,144,144,144,144,144,144,72,133,255,116,125,137,248,131,224,1,117,118,72,139,7,72,185,248,255,255,255,255,127,0,0,72,33,193,72,139,81,32,246,194,4,116,56,168,1,116,83,72,185,0,0,0,0,0,0,0,1,72,137,194,72,193,234,55,116,70,72,137,194,72,1,202,114,18,240,72,15,177,23,116,55,168,1,117,228,49,246,233,250,99,2,0,49,246,233,11,150,0,0,102,131,121,30,0,121,11,131,226,2,116,6,246,65,40,2,117,23,72,139,53,130,59,249,63,255,37,132,34,249,63,246,65,30,1,116,205,72,137,248,195,72,139,5,43,112,186,65,255,224,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144],"offset":44}},"threadState":{"r13":{"value":140704069462437,"objc-selector":"safari_boolForKey:"},"rax":{"value":0},"rflags":{"value":66118},"cpu":{"value":0},"r14":{"value":140704069467600,"objc-selector":"safari_numberForKey:"},"rsi":{"value":140707917940784},"r8":{"value":140703520908688,"symbolLocation":0,"symbol":"__CFMacRomanCharToUnicharTable"},"cr2":{"value":32},"rdx":{"value":3},"r10":{"value":1975489353},"r9":{"value":7605447544283505731},"r15":{"value":140703513907584,"symbolLocation":0,"symbol":"objc_msgSend"},"rbx":{"value":140704069463652,"objc-selector":"safari_dateForKey:"},"trap":{"value":14,"description":"(no mapping for user data read)"},"err":{"value":4},"r11":{"value":140703518333391,"symbolLocation":0,"symbol":"-[__NSCFString hash]"},"rip":{"value":140703513907244,"matchesCrashFrame":1},"rbp":{"value":140701859071456},"rsp":{"value":140701859071432},"r12":{"value":105553163803264},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":140271963934944}},"queue":"com.apple.main-thread","frames":[{"imageOffset":24620,"symbol":"objc_retain","symbolLocation":28,"imageIndex":6},{"imageOffset":238328,"symbol":"-[NSDictionary(SafariCoreExtras) safari_dataForKey:]","symbolLocation":28,"imageIndex":7},{"imageOffset":676806,"symbol":"-[WBLocalTabAttributes initWithDictionaryRepresentation:]","symbolLocation":359,"imageIndex":8},{"imageOffset":197624,"symbol":"-[WBTab localAttributes]","symbolLocation":76,"imageIndex":8},{"imageOffset":1428905,"symbol":"-[BrowserTabPersistentState initWithDataFromTab:encryptionProvider:]","symbolLocation":76,"imageIndex":9},{"imageOffset":2433543,"symbol":"__97-[BrowserWindowPersistentState initWithBrowserWindowController:encryptionProvider:skipTabStates:]_block_invoke","symbolLocation":60,"imageIndex":9},{"imageOffset":214097,"symbol":"__78-[NSArray(SafariCoreExtras) safari_mapAndFilterObjectsWithOptions:usingBlock:]_block_invoke","symbolLocation":20,"imageIndex":7},{"imageOffset":459671,"symbol":"__NSARRAY_IS_CALLING_OUT_TO_A_BLOCK__","symbolLocation":7,"imageIndex":10},{"imageOffset":459317,"symbol":"-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]","symbolLocation":290,"imageIndex":10},{"imageOffset":213963,"symbol":"-[NSArray(SafariCoreExtras) safari_mapAndFilterObjectsWithOptions:usingBlock:]","symbolLocation":384,"imageIndex":7},{"imageOffset":213513,"symbol":"-[NSArray(SafariCoreExtras) safari_mapAndFilterObjectsUsingBlock:]","symbolLocation":113,"imageIndex":7},{"imageOffset":2431609,"symbol":"-[BrowserWindowPersistentState initWithBrowserWindowController:encryptionProvider:skipTabStates:]","symbolLocation":1840,"imageIndex":9},{"imageOffset":2418498,"symbol":"-[BrowserWindowController updateWindowStateIncludingTabStates:]","symbolLocation":196,"imageIndex":9},{"imageOffset":363366,"symbol":"__90-[AppController _browserStateFromCurrentSessionIgnoringPrivateWindows:encryptionProvider:]_block_invoke_4","symbolLocation":254,"imageIndex":9},{"imageOffset":214097,"symbol":"__78-[NSArray(SafariCoreExtras) safari_mapAndFilterObjectsWithOptions:usingBlock:]_block_invoke","symbolLocation":20,"imageIndex":7},{"imageOffset":459671,"symbol":"__NSARRAY_IS_CALLING_OUT_TO_A_BLOCK__","symbolLocation":7,"imageIndex":10},{"imageOffset":459433,"symbol":"-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]","symbolLocation":406,"imageIndex":10},{"imageOffset":213963,"symbol":"-[NSArray(SafariCoreExtras) safari_mapAndFilterObjectsWithOptions:usingBlock:]","symbolLocation":384,"imageIndex":7},{"imageOffset":362298,"symbol":"-[AppController _browserStateFromCurrentSessionIgnoringPrivateWindows:encryptionProvider:]","symbolLocation":1232,"imageIndex":9},{"imageOffset":360984,"symbol":"__38-[AppController sessionStateDidChange]_block_invoke.1837","symbolLocation":64,"imageIndex":9},{"imageOffset":3938819,"symbol":"-[LastSessionWriter _writeNow]","symbolLocation":41,"imageIndex":9},{"imageOffset":513241,"symbol":"__NSFireDelayedPerform","symbolLocation":438,"imageIndex":11},{"imageOffset":619596,"symbol":"__CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__","symbolLocation":20,"imageIndex":10},{"imageOffset":618490,"symbol":"__CFRunLoopDoTimer","symbolLocation":785,"imageIndex":10},{"imageOffset":617526,"symbol":"__CFRunLoopDoTimers","symbolLocation":285,"imageIndex":10},{"imageOffset":503570,"symbol":"__CFRunLoopRun","symbolLocation":2104,"imageIndex":10},{"imageOffset":499986,"symbol":"CFRunLoopRunSpecific","symbolLocation":557,"imageIndex":10},{"imageOffset":190985,"symbol":"RunCurrentEventLoopInMode","symbolLocation":292,"imageIndex":12},{"imageOffset":190486,"symbol":"ReceiveNextEventCommon","symbolLocation":665,"imageIndex":12},{"imageOffset":189793,"symbol":"_BlockUntilNextEventMatchingListInModeWithFilter","symbolLocation":66,"imageIndex":12},{"imageOffset":258417,"symbol":"_DPSNextEvent","symbolLocation":880,"imageIndex":13},{"imageOffset":9779952,"symbol":"-[NSApplication(NSEventRouting) _nextEventMatchingEventMask:untilDate:inMode:dequeue:]","symbolLocation":1273,"imageIndex":13},{"imageOffset":1009932,"symbol":"-[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:]","symbolLocation":217,"imageIndex":9},{"imageOffset":198021,"symbol":"-[NSApplication run]","symbolLocation":603,"imageIndex":13},{"imageOffset":17651,"symbol":"NSApplicationMain","symbolLocation":816,"imageIndex":13},{"imageOffset":5058436,"symbol":"SafariMain","symbolLocation":518,"imageIndex":9},{"imageOffset":25413,"symbol":"start","symbolLocation":1909,"imageIndex":14}]},{"id":4555,"name":"JavaScriptCore libpas scavenger","threadState":{"r13":{"value":1556912760260864},"rax":{"value":260},"rflags":{"value":583},"cpu":{"value":0},"r14":{"value":123145558888448},"rsi":{"value":1556912760260864},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":335360},"r10":{"value":0},"r9":{"value":160},"r15":{"value":335360},"rbx":{"value":22},"trap":{"value":133},"err":{"value":33554737},"r11":{"value":582},"rip":{"value":140703517645882},"rbp":{"value":123145558888256},"rsp":{"value":123145558888104},"r12":{"value":999998944},"rcx":{"value":123145558888104},"flavor":"x86_THREAD_STATE","rdi":{"value":4495571008}},"frames":[{"imageOffset":15418,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":17},{"imageOffset":26355,"symbol":"_pthread_cond_wait","symbolLocation":1211,"imageIndex":18},{"imageOffset":26727381,"symbol":"scavenger_thread_main","symbolLocation":1541,"imageIndex":19},{"imageOffset":24971,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":18},{"imageOffset":6883,"symbol":"thread_start","symbolLocation":15,"imageIndex":18}]},{"id":4575,"name":"com.apple.coreanimation.render-server","threadState":{"r13":{"value":21525170190},"rax":{"value":268451845},"rflags":{"value":514},"cpu":{"value":0},"r14":{"value":2},"rsi":{"value":21525170190},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":8589934592},"r10":{"value":0},"r9":{"value":148446954651648},"r15":{"value":148446954651648},"rbx":{"value":123145563151072},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":514},"rip":{"value":140703517634702},"rbp":{"value":123145563150912},"rsp":{"value":123145563150808},"r12":{"value":0},"rcx":{"value":123145563150808},"flavor":"x86_THREAD_STATE","rdi":{"value":123145563151072}},"frames":[{"imageOffset":4238,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":17},{"imageOffset":63608,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":17},{"imageOffset":33144,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":17},{"imageOffset":4989,"symbol":"mach_msg","symbolLocation":19,"imageIndex":17},{"imageOffset":298698,"symbol":"CA::Render::Server::server_thread(void*)","symbolLocation":664,"imageIndex":20},{"imageOffset":298015,"symbol":"thread_fun(void*)","symbolLocation":25,"imageIndex":20},{"imageOffset":24971,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":18},{"imageOffset":6883,"symbol":"thread_start","symbolLocation":15,"imageIndex":18}]},{"id":4678,"name":"WebCore: Scrolling","threadState":{"r13":{"value":21592279046},"rax":{"value":268451845},"rflags":{"value":518},"cpu":{"value":0},"r14":{"value":2},"rsi":{"value":21592279046},"r8":{"value":1493948768},"cr2":{"value":0},"rdx":{"value":8589934592},"r10":{"value":314473210445824},"r9":{"value":314473210445824},"r15":{"value":314473210445824},"rbx":{"value":123145567457200},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":518},"rip":{"value":140703517634702},"rbp":{"value":123145567457040},"rsp":{"value":123145567456936},"r12":{"value":4294967295},"rcx":{"value":123145567456936},"flavor":"x86_THREAD_STATE","rdi":{"value":123145567457200}},"frames":[{"imageOffset":4238,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":17},{"imageOffset":63608,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":17},{"imageOffset":33144,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":17},{"imageOffset":4989,"symbol":"mach_msg","symbolLocation":19,"imageIndex":17},{"imageOffset":508357,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":143,"imageIndex":10},{"imageOffset":502837,"symbol":"__CFRunLoopRun","symbolLocation":1371,"imageIndex":10},{"imageOffset":499986,"symbol":"CFRunLoopRunSpecific","symbolLocation":557,"imageIndex":10},{"imageOffset":1006494,"symbol":"CFRunLoopRun","symbolLocation":40,"imageIndex":10},{"imageOffset":2093394,"symbol":"WTF::Detail::CallableWrapper<WTF::RunLoop::create(char const*, WTF::ThreadType, WTF::Thread::QOS)::$_1, void>::call()","symbolLocation":82,"imageIndex":19},{"imageOffset":2222333,"symbol":"WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*)","symbolLocation":237,"imageIndex":19},{"imageOffset":12217,"symbol":"WTF::wtfThreadEntryPoint(void*)","symbolLocation":9,"imageIndex":19},{"imageOffset":24971,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":18},{"imageOffset":6883,"symbol":"thread_start","symbolLocation":15,"imageIndex":18}]},{"id":4784,"name":"com.apple.NSEventThread","threadState":{"r13":{"value":21592279046},"rax":{"value":268451845},"rflags":{"value":518},"cpu":{"value":0},"r14":{"value":2},"rsi":{"value":21592279046},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":8589934592},"r10":{"value":390356692631552},"r9":{"value":390356692631552},"r15":{"value":390356692631552},"rbx":{"value":123145568530528},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":518},"rip":{"value":140703517634702},"rbp":{"value":123145568530368},"rsp":{"value":123145568530264},"r12":{"value":4294967295},"rcx":{"value":123145568530264},"flavor":"x86_THREAD_STATE","rdi":{"value":123145568530528}},"frames":[{"imageOffset":4238,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":17},{"imageOffset":63608,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":17},{"imageOffset":33144,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":17},{"imageOffset":4989,"symbol":"mach_msg","symbolLocation":19,"imageIndex":17},{"imageOffset":508357,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":143,"imageIndex":10},{"imageOffset":502837,"symbol":"__CFRunLoopRun","symbolLocation":1371,"imageIndex":10},{"imageOffset":499986,"symbol":"CFRunLoopRunSpecific","symbolLocation":557,"imageIndex":10},{"imageOffset":1692316,"symbol":"_NSEventThread","symbolLocation":122,"imageIndex":13},{"imageOffset":24971,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":18},{"imageOffset":6883,"symbol":"thread_start","symbolLocation":15,"imageIndex":18}]},{"id":5142,"name":"com.apple.CFNetwork.CustomProtocols","threadState":{"r13":{"value":21592279046},"rax":{"value":268451845},"rflags":{"value":518},"cpu":{"value":0},"r14":{"value":2},"rsi":{"value":21592279046},"r8":{"value":266757360},"cr2":{"value":0},"rdx":{"value":8589934592},"r10":{"value":743282745278464},"r9":{"value":743282745278464},"r15":{"value":743282745278464},"rbx":{"value":123145570676032},"trap":{"value":133},"err":{"value":16777263},"r11":{"value":518},"rip":{"value":140703517634702},"rbp":{"value":123145570675872},"rsp":{"value":123145570675768},"r12":{"value":4294967295},"rcx":{"value":123145570675768},"flavor":"x86_THREAD_STATE","rdi":{"value":123145570676032}},"frames":[{"imageOffset":4238,"symbol":"mach_msg2_trap","symbolLocation":10,"imageIndex":17},{"imageOffset":63608,"symbol":"mach_msg2_internal","symbolLocation":84,"imageIndex":17},{"imageOffset":33144,"symbol":"mach_msg_overwrite","symbolLocation":653,"imageIndex":17},{"imageOffset":4989,"symbol":"mach_msg","symbolLocation":19,"imageIndex":17},{"imageOffset":508357,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":143,"imageIndex":10},{"imageOffset":502837,"symbol":"__CFRunLoopRun","symbolLocation":1371,"imageIndex":10},{"imageOffset":499986,"symbol":"CFRunLoopRunSpecific","symbolLocation":557,"imageIndex":10},{"imageOffset":2390837,"imageIndex":21},{"imageOffset":350460,"symbol":"__NSThread__start__","symbolLocation":1013,"imageIndex":11},{"imageOffset":24971,"symbol":"_pthread_start","symbolLocation":99,"imageIndex":18},{"imageOffset":6883,"symbol":"thread_start","symbolLocation":15,"imageIndex":18}]},{"id":9033,"threadState":{"r13":{"value":105},"rax":{"value":105553125664986},"rflags":{"value":514},"cpu":{"value":0},"r14":{"value":105553163061120},"rsi":{"value":105553125664896},"r8":{"value":1},"cr2":{"value":0},"rdx":{"value":140271970436160},"r10":{"value":0},"r9":{"value":33},"r15":{"value":0},"rbx":{"value":26},"trap":{"value":222},"err":{"value":0},"r11":{"value":140703635233360,"symbolLocation":0,"symbol":"sqlite3UpperToLower"},"rip":{"value":140703634557950},"rbp":{"value":123145561564336},"rsp":{"value":123145561564296},"r12":{"value":108},"rcx":{"value":132},"flavor":"x86_THREAD_STATE","rdi":{"value":105553124631296}},"queue":"com.apple.WebBookmarks.WBTabCollection.databaseQueue.0x6000022cbba0","frames":[{"imageOffset":1080318,"symbol":"fkParentIsModified","symbolLocation":350,"imageIndex":22},{"imageOffset":353866,"symbol":"sqlite3FkRequired","symbolLocation":698,"imageIndex":22},{"imageOffset":427982,"symbol":"sqlite3Update","symbolLocation":1998,"imageIndex":22},{"imageOffset":53466,"symbol":"yy_reduce","symbolLocation":9498,"imageIndex":22},{"imageOffset":40181,"symbol":"sqlite3RunParser","symbolLocation":821,"imageIndex":22},{"imageOffset":37349,"symbol":"sqlite3Prepare","symbolLocation":597,"imageIndex":22},{"imageOffset":36379,"symbol":"sqlite3LockAndPrepare","symbolLocation":219,"imageIndex":22},{"imageOffset":385628,"symbol":"sqlite3_prepare_v2","symbolLocation":28,"imageIndex":22},{"imageOffset":302505,"symbol":"-[WebBookmarkCollection _saveBookmark:withSpecialID:updateGenerationIfNeeded:]","symbolLocation":1858,"imageIndex":8},{"imageOffset":135532,"symbol":"-[WebBookmarkTabCollection _saveWindowState:]","symbolLocation":156,"imageIndex":8},{"imageOffset":220764,"symbol":"-[WebBookmarkCollection performDatabaseUpdatesWithTransaction:applyInMemoryChanges:secureDelete:]","symbolLocation":198,"imageIndex":8},{"imageOffset":135233,"symbol":"-[WebBookmarkTabCollection _saveWindowState:forApplyingInMemoryChanges:]","symbolLocation":136,"imageIndex":8},{"imageOffset":480096,"symbol":"__53-[WBTabCollection saveWindowState:completionHandler:]_block_invoke","symbolLocation":62,"imageIndex":8},{"imageOffset":63735,"symbol":"_dispatch_block_async_invoke2","symbolLocation":85,"imageIndex":23},{"imageOffset":11708,"symbol":"_dispatch_client_callout","symbolLocation":8,"imageIndex":23},{"imageOffset":36607,"symbol":"_dispatch_lane_serial_drain","symbolLocation":800,"imageIndex":23},{"imageOffset":39319,"symbol":"_dispatch_lane_invoke","symbolLocation":377,"imageIndex":23},{"imageOffset":78868,"symbol":"_dispatch_root_queue_drain_deferred_wlh","symbolLocation":271,"imageIndex":23},{"imageOffset":77098,"symbol":"_dispatch_workloop_worker_thread","symbolLocation":451,"imageIndex":23},{"imageOffset":11140,"symbol":"_pthread_wqthread","symbolLocation":327,"imageIndex":18},{"imageOffset":6863,"symbol":"start_wqthread","symbolLocation":15,"imageIndex":18}]},{"id":9606,"frames":[{"imageOffset":6848,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":18}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":64895},"r8":{"value":409602},"cr2":{"value":0},"rdx":{"value":123145559437312},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145559960440},"rbx":{"value":123145559961600},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703517878976},"rbp":{"value":0},"rsp":{"value":123145559961600},"r12":{"value":5193733},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145559961600}}},{"id":9708,"frames":[{"imageOffset":6848,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":18}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":143195},"r8":{"value":409602},"cr2":{"value":0},"rdx":{"value":123145560510464},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145561033592},"rbx":{"value":123145561034752},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703517878976},"rbp":{"value":0},"rsp":{"value":123145561034752},"r12":{"value":5193730},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145561034752}}},{"id":9709,"frames":[{"imageOffset":6848,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":18}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":105511},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145561583616},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145562106744},"rbx":{"value":123145562107904},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703517878976},"rbp":{"value":0},"rsp":{"value":123145562107904},"r12":{"value":5193732},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145562107904}}},{"id":9822,"frames":[{"imageOffset":6848,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":18}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":160119},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145558900736},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145559423864},"rbx":{"value":123145559425024},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703517878976},"rbp":{"value":0},"rsp":{"value":123145559425024},"r12":{"value":5193733},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145559425024}}},{"id":9823,"frames":[{"imageOffset":6848,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":18}],"threadState":{"r13":{"value":0},"rax":{"value":0},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":0},"rsi":{"value":0},"r8":{"value":278532},"cr2":{"value":0},"rdx":{"value":123145559973888},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":0},"rbx":{"value":0},"trap":{"value":0},"err":{"value":0},"r11":{"value":0},"rip":{"value":140703517878976},"rbp":{"value":0},"rsp":{"value":123145560498176},"r12":{"value":0},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145560498176}}}],
  "usedImages" : [
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4976103424,
    "CFBundleShortVersionString" : "3.0",
    "CFBundleIdentifier" : "com.apple.security.csparser",
    "size" : 94208,
    "uuid" : "82c9489d-31b0-3c87-a74b-d1aca5b119f2",
    "path" : "\/System\/Library\/Frameworks\/Security.framework\/Versions\/A\/PlugIns\/csparser.bundle\/Contents\/MacOS\/csparser",
    "name" : "csparser",
    "CFBundleVersion" : "61123.140.15"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4886437888,
    "size" : 20480,
    "uuid" : "23414e54-3a44-3383-b786-ee5dc8491ee5",
    "path" : "\/Volumes\/VOLUME\/*\/WebKit.framework\/Versions\/A\/Frameworks\/libWebKitSwift.dylib",
    "name" : "libWebKitSwift.dylib"
  },
  {
    "source" : "P",
    "arch" : "x86_64h",
    "base" : 4912455680,
    "CFBundleShortVersionString" : "7.0",
    "CFBundleIdentifier" : "com.apple.audio.codecs.Components",
    "size" : 10158080,
    "uuid" : "ce4f6364-0a9e-3c92-90ed-591469f1b67c",
    "path" : "\/System\/Library\/Components\/AudioCodecs.component\/Contents\/MacOS\/AudioCodecs",
    "name" : "AudioCodecs",
    "CFBundleVersion" : "7.0"
  },
  {
    "source" : "P",
    "arch" : "x86_64h",
    "base" : 4858691584,
    "CFBundleShortVersionString" : "5.5.17",
    "CFBundleIdentifier" : "com.apple.AMDRadeonX4000GLDriver",
    "size" : 1052672,
    "uuid" : "ce617fcf-e6cd-3945-8611-eb3398b4dd47",
    "path" : "\/System\/Library\/Extensions\/AMDRadeonX4000GLDriver.bundle\/Contents\/MacOS\/AMDRadeonX4000GLDriver",
    "name" : "AMDRadeonX4000GLDriver",
    "CFBundleVersion" : "5.0.5"
  },
  {
    "source" : "P",
    "arch" : "x86_64h",
    "base" : 4494024704,
    "size" : 53248,
    "uuid" : "e554b85a-6614-3883-83d8-8eb3bd70a202",
    "path" : "\/usr\/lib\/libobjc-trampolines.dylib",
    "name" : "libobjc-trampolines.dylib"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4489711616,
    "CFBundleShortVersionString" : "17.6",
    "CFBundleIdentifier" : "com.apple.Safari",
    "size" : 4096,
    "uuid" : "de85298a-65cb-362f-8111-68fa2f397a63",
    "path" : "\/Volumes\/VOLUME\/*\/Safari.app\/Contents\/MacOS\/Safari",
    "name" : "Safari",
    "CFBundleVersion" : "19618.3.11.11.5"
  },
  {
    "source" : "P",
    "arch" : "x86_64h",
    "base" : 140703513882624,
    "size" : 270276,
    "uuid" : "a9fd3f0e-8e64-3038-9cc9-569d89224c07",
    "path" : "\/usr\/lib\/libobjc.A.dylib",
    "name" : "libobjc.A.dylib"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140707943866368,
    "CFBundleShortVersionString" : "19618",
    "CFBundleIdentifier" : "com.apple.Safari.Core",
    "size" : 1097722,
    "uuid" : "b7ab69df-3fcf-3098-b487-ef2c10ae3249",
    "path" : "\/System\/Library\/PrivateFrameworks\/SafariCore.framework\/Versions\/A\/SafariCore",
    "name" : "SafariCore",
    "CFBundleVersion" : "19618.3.11.11.5"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140720972054528,
    "CFBundleShortVersionString" : "19618",
    "CFBundleIdentifier" : "com.apple.WebBookmarks",
    "size" : 962557,
    "uuid" : "dd5dab51-168c-3940-8379-8b108fbb9f73",
    "path" : "\/System\/Library\/PrivateFrameworks\/WebBookmarks.framework\/Versions\/A\/WebBookmarks",
    "name" : "WebBookmarks",
    "CFBundleVersion" : "19618.3.11.11.5"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140708075646976,
    "CFBundleShortVersionString" : "19618",
    "CFBundleIdentifier" : "com.apple.Safari.framework",
    "size" : 10326015,
    "uuid" : "4b645146-ed33-3828-ac0c-5e80fcc3e6ae",
    "path" : "\/System\/Library\/PrivateFrameworks\/Safari.framework\/Versions\/A\/Safari",
    "name" : "Safari",
    "CFBundleVersion" : "19618.3.11.11.5"
  },
  {
    "source" : "P",
    "arch" : "x86_64h",
    "base" : 140703518294016,
    "CFBundleShortVersionString" : "6.9",
    "CFBundleIdentifier" : "com.apple.CoreFoundation",
    "size" : 4829181,
    "uuid" : "c5e5acb6-9e44-3aa3-bd21-0a5b4a2eee5e",
    "path" : "\/System\/Library\/Frameworks\/CoreFoundation.framework\/Versions\/A\/CoreFoundation",
    "name" : "CoreFoundation",
    "CFBundleVersion" : "2602"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703534870528,
    "CFBundleShortVersionString" : "6.9",
    "CFBundleIdentifier" : "com.apple.Foundation",
    "size" : 12808188,
    "uuid" : "2f87a303-430f-3ea5-9492-3033f4fee64b",
    "path" : "\/System\/Library\/Frameworks\/Foundation.framework\/Versions\/C\/Foundation",
    "name" : "Foundation",
    "CFBundleVersion" : "2602"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703696990208,
    "CFBundleShortVersionString" : "2.1.1",
    "CFBundleIdentifier" : "com.apple.HIToolbox",
    "size" : 2732020,
    "uuid" : "2aa738bf-9f72-3227-8bba-7eae7b9f080b",
    "path" : "\/System\/Library\/Frameworks\/Carbon.framework\/Versions\/A\/Frameworks\/HIToolbox.framework\/Versions\/A\/HIToolbox",
    "name" : "HIToolbox"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703575617536,
    "CFBundleShortVersionString" : "6.9",
    "CFBundleIdentifier" : "com.apple.AppKit",
    "size" : 21172216,
    "uuid" : "d0e19a37-f677-32b5-b3d2-005e60b90f7f",
    "path" : "\/System\/Library\/Frameworks\/AppKit.framework\/Versions\/C\/AppKit",
    "name" : "AppKit",
    "CFBundleVersion" : "2487.70.105"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703514152960,
    "size" : 591904,
    "uuid" : "82f051ed-7518-32ff-9390-65de9ca6bacf",
    "path" : "\/usr\/lib\/dyld",
    "name" : "dyld"
  },
  {
    "size" : 0,
    "source" : "A",
    "base" : 0,
    "uuid" : "00000000-0000-0000-0000-000000000000"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140707915485184,
    "CFBundleShortVersionString" : "19618",
    "CFBundleIdentifier" : "com.apple.Safari.Shared",
    "size" : 2895860,
    "uuid" : "3dc378b4-fa58-347b-a498-c75ceadbf18f",
    "path" : "\/System\/Library\/PrivateFrameworks\/SafariShared.framework\/Versions\/A\/SafariShared",
    "name" : "SafariShared",
    "CFBundleVersion" : "19618.3.11.11.5"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703517630464,
    "size" : 241656,
    "uuid" : "861e8b79-f5c1-3677-8709-4aa33c77673c",
    "path" : "\/usr\/lib\/system\/libsystem_kernel.dylib",
    "name" : "libsystem_kernel.dylib"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703517872128,
    "size" : 49144,
    "uuid" : "d70de43a-2804-340a-804c-5d316c1e013b",
    "path" : "\/usr\/lib\/system\/libsystem_pthread.dylib",
    "name" : "libsystem_pthread.dylib"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140704004665344,
    "CFBundleShortVersionString" : "19618",
    "CFBundleIdentifier" : "com.apple.JavaScriptCore",
    "size" : 29011825,
    "uuid" : "9164ac4e-debe-39c3-81d1-b4ad9bdbea98",
    "path" : "\/System\/Library\/Frameworks\/JavaScriptCore.framework\/Versions\/A\/JavaScriptCore",
    "name" : "JavaScriptCore",
    "CFBundleVersion" : "19618.3.11.11.5"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703659196416,
    "CFBundleShortVersionString" : "1.11",
    "CFBundleIdentifier" : "com.apple.QuartzCore",
    "size" : 3715070,
    "uuid" : "f5c61672-39ab-376a-a414-45ae61cb4471",
    "path" : "\/System\/Library\/Frameworks\/QuartzCore.framework\/Versions\/A\/QuartzCore",
    "name" : "QuartzCore",
    "CFBundleVersion" : "1120.34.6"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703604305920,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.CFNetwork",
    "size" : 3862515,
    "uuid" : "ee1efa57-0d81-33e2-8087-96dafe9f4da0",
    "path" : "\/System\/Library\/Frameworks\/CFNetwork.framework\/Versions\/A\/CFNetwork",
    "name" : "CFNetwork",
    "CFBundleVersion" : "1498.700.2"
  },
  {
    "source" : "P",
    "arch" : "x86_64h",
    "base" : 140703633477632,
    "size" : 1843184,
    "uuid" : "bd10567f-8ebb-30b1-b1aa-baddf1c39501",
    "path" : "\/usr\/lib\/libsqlite3.dylib",
    "name" : "libsqlite3.dylib"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140703516176384,
    "size" : 290802,
    "uuid" : "ffb968b0-807c-38bf-ae61-50a96c8d310c",
    "path" : "\/usr\/lib\/system\/libdispatch.dylib",
    "name" : "libdispatch.dylib"
  }
],
  "sharedCache" : {
  "base" : 140703513456640,
  "size" : 25769803776,
  "uuid" : "693edd13-ec80-3b3f-b8f3-15340ec37b23"
},
  "vmSummary" : "ReadOnly portion of Libraries: Total=1.2G resident=0K(0%) swapped_out_or_unallocated=1.2G(100%)\nWritable regions: Total=5.2G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=5.2G(100%)\n\n                                VIRTUAL   REGION \nREGION TYPE                        SIZE    COUNT (non-coalesced) \n===========                     =======  ======= \nAccelerate framework               128K        1 \nActivity Tracing                   256K        1 \nCG image                           744K       75 \nColorSync                          272K       36 \nCoreAnimation                      796K      157 \nCoreData Object IDs               4100K        2 \nCoreGraphics                        16K        3 \nCoreImage                           40K        7 \nCoreServices                        80K        1 \nCoreUI image data                 1288K       24 \nFoundation                          36K        2 \nIOKit                             7940K        1 \nImage IO                           868K       21 \nKernel Alloc Once                    8K        1 \nMALLOC                           964.4M      181 \nMALLOC guard page                   48K       12 \nSQLite page cache                 2048K       16 \nSTACK GUARD                       56.0M       12 \nStack                             14.1M       12 \nVM_ALLOCATE                      128.3M       17 \nVM_ALLOCATE (reserved)             3.9G        1         reserved VM address space (unallocated)\nWebKit Malloc                    192.0M        4 \n__CTF                               824        1 \n__DATA                            50.8M      968 \n__DATA_CONST                      88.3M      684 \n__DATA_DIRTY                      2901K      372 \n__FONT_DATA                        2352        1 \n__GLSLBUILTINS                    5174K        1 \n__INFO_FILTER                         8        1 \n__LINKEDIT                       181.8M        8 \n__OBJC_RO                         71.9M        1 \n__OBJC_RW                         2201K        2 \n__TEXT                             1.0G      983 \nlibnetwork                         128K        8 \nmapped file                      275.9M      142 \nshared memory                      784K       17 \n===========                     =======  ======= \nTOTAL                              6.9G     3776 \nTOTAL, minus reserved VM space     3.0G     3776 \n",
  "legacyInfo" : {
  "threadTriggered" : {
    "queue" : "com.apple.main-thread"
  }
},
  "logWritingSignature" : "505f34f9568f073e3e4f15abd2e80fdda9d9b1f8",
  "trialInfo" : {
  "rollouts" : [
    {
      "rolloutId" : "648c94d4ebdf9e3e398fa708",
      "factorPackIds" : {
        "SIRI_UNDERSTANDING_NL_OVERRIDES" : "65a8104b6712a43e7922cab8"
      },
      "deploymentId" : 240000171
    },
    {
      "rolloutId" : "648a2601f74c42732876cb5b",
      "factorPackIds" : {
        "SIRI_TEXT_TO_SPEECH" : "6699af9588ad313392978dfd"
      },
      "deploymentId" : 240000226
    }
  ],
  "experiments" : [

  ]
}
}

Model: iMacPro1,1, BootROM 2022.100.22.0.0, 20 processors, Unknown, 2 GHz, 16 GB, SMC 
Graphics: AMD Radeon RX 580, AMD Radeon RX 580, PCIe, 8 GB
Display: PL2730H, 1920 x 1080 (1080p FHD - Full High Definition), Main, MirrorOff, Online
Graphics: Display
Memory Module: P0_Node0_Channel0_Dimm0/DIMMA1, 8 GB, DDR4, 2133 MHz, Micron Technology, 18ASF1G72PZ-2G1A2
Memory Module: P0_Node1_Channel0_Dimm0/DIMMD1, 8 GB, DDR4, 2133 MHz, Micron Technology, 18ASF1G72PZ-2G1A2
AirPort: spairport_wireless_card_type_wifi (0x8086, 0x24), itlwm: 2.3.0 fw: 68.01d30b0c.0
Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports
Network Service: Wi-Fi, AirPort, en2
PCI Card: pci1344,5416, NVM Express Controller, CPU SLOT5 PCI-E 3.0 X8@101,0,0
PCI Card: pci8086,2725, Other Network Controller, CPU SLOT5 PCI-E 3.0 X8@23,0,0
PCI Card: AMD Radeon RX 580, Display Controller, Slot-2
PCI Card: pci1002,aaf0, Audio Device, CPU SLOT3 PCI-E 3.0 X8@24,0,1
PCI Card: display, VGA-Compatible Controller, Slot-1
Serial ATA Device: WDC WD10EZEX-00BN5A0, 1 TB
Serial ATA Device: SanDisk SSD PLUS 240GB, 240,06 GB
Serial ATA Device: Samsung SSD 870 QVO 1TB, 1 TB
USB Device: USB30Bus
USB Device: hub_device
USB Device: composite_device
USB Device: Razer DeathAdder Essential
USB Device: bluetooth_device
USB Device: USB 2.0 Hub
USB Device: RK Bluetooth Keyboard
Thunderbolt Bus: 

 

Edited by anullpointerexception

Good morning or evening!

After a few cups of strong coffee, I started to work on fixing RTC write issues (the problem with the clock being wrong on my system is related to RTC). I have followed this guide from dortania and managed to identify the bad regions on my motherboard (0x58-0x59). I have blacklisted them in my config.plist and there are no more CMOS and safe mode errors. Very nice ;)

I did also rebuild my entire config.plist and double checked all my .aml-files, the system is running fine for now.

 

EDIT: System has been running without crashes for a few hours now :)

 

EDIT2: SSDT-DMAR has been added as well, patching DMAR Table was successful. System is super stable now, no crashes so far :)

 

Edited by anullpointerexception
  • Like 1
17 hours ago, anullpointerexception said:

From what I can tell, NVRAM is partially working? 

I blindly made a SSDT-PMC for my C621 hack, but it seems that this not even needed. Native NVRAM.

 

17 hours ago, anullpointerexception said:
Fault CR2: 0x0000000000000000, Error code: 0x0000000000000000, Fault CPU: 0x6, PL: 1, VF: 0

This is what tilted me towerds using WriteUnprotector. If it is already set, I'm unsure what to do.

  • Like 2

@etorix

 

The system is running perfectly fine now, no crashes. The problem was something else, after patching RTC, enabling a different Virtualization feature in the BIOS, the crashes disappeared. I remember that I had to with VT-d being enabled and a certain quirk being misconfigured :).

Final quirks under ACPI/Booter/Quirks
image.png.af72238f6b18e99a5dab7745b3794ab8.png

 

And ACPI/Kernel/Quirks

Bildschirmfoto2024-08-09um14_05_08.png.b56e5979e2110b09a885209a4b392625.png

Edited by anullpointerexception

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...