【QEMU系统分析之实例篇(三十三)】

系列文章目录

第三十三章 QEMU系统仿真的机器创建分析实例

GSI


文章目录

  • 系列文章目录
    • 第三十三章 QEMU系统仿真的机器创建分析实例
      • GSI
  • 前言
  • 一、QEMU是什么?
  • 二、QEMU系统仿真的机器创建分析实例
    • 1.系统仿真的命令行参数
    • 2. 将当前机器配置导出到文件
      • qmp_x_exit_preconfig()
        • qemu_init_board()
        • gsi_state = pc_gsi_create(&x86ms->gsi, pcmc->pci_enabled)
    • 3.调试输出
  • 总结


前言

本文以 QEMU 8.2.2 为例,分析其作为系统仿真工具的工作过程,并为读者展示各种 QEMU 系统仿真的启动配置实例。
本文读者需要具备一定的 QEMU 系统仿真使用经验,并对 C 语言编程有一定了解。


一、QEMU是什么?

QEMU 是一个通用且开源的机器模拟器和虚拟机。
其官方主页是:https://www.qemu.org/


二、QEMU系统仿真的机器创建分析实例

1.系统仿真的命令行参数

QEMU 作为系统仿真工具,其入口代码在 system/main.c 文件中,初始化函数 qemu_init() 的实现在 system/vl.c 文件中。
前文完成创建目标机器的过程分析,本文将继续后续运行过程的分析,读者需要对 QEMU 系统启动过程的程序代码有所了解,相关内容可以参考《QEMU系统分析之启动篇》系列文章。

..\qemu\8.2.2-qkd\qemu-system-x86_64.exe -cpu "Penryn,vendor=GenuineIntel,+ssse3,+sse4.2" -M  "q35,accel=whpx,smm=off" -object "memory-backend-ram,id=ram0,size=4G,prealloc=on,share=on,merge=off,dump=off"  -object "memory-backend-ram,id=ram1,size=2G,prealloc=on,share=on,merge=off,dump=off" -numa "node,memdev=ram0,cpus=0,nodeid=0" -numa "node,memdev=ram1,cpus=1,nodeid=1" -smp "cpus=2" -m "6G" -audio "sdl,model=hda" -vga "std" -netdev "user,id=mynet0" -device "e1000,id=nic1,netdev=mynet0" -L "data" -qtest "unix:qtest-sock,server,nowait" -drive "file=data/OVMF_CODE_4M.fd,if=pflash,format=raw,readonly=on" -drive "file=data/OVMF_VARS_4M.fd,if=pflash,format=raw,readonly=off"

2. 将当前机器配置导出到文件

这部分代码在 system/vl.c 文件中,实现如下:

int qemu_init(int argc, char **argv)
{
...if (!preconfig_requested) {qmp_x_exit_preconfig(&error_fatal);}
...
}

前文分析了解析机器的存储设备设置的过程,本文将分析解析 NUMA 结点配置项的过程。


qmp_x_exit_preconfig()

函数 qmp_x_exit_preconfig() 代码如下:

void qmp_x_exit_preconfig(Error **errp)
{if (phase_check(PHASE_MACHINE_INITIALIZED)) {error_setg(errp, "The command is permitted only before machine initialization");return;}qemu_init_board();qemu_create_cli_devices();qemu_machine_creation_done();if (loadvm) {load_snapshot(loadvm, NULL, false, NULL, &error_fatal);}if (replay_mode != REPLAY_MODE_NONE) {replay_vmstate_init();}if (incoming) {Error *local_err = NULL;if (strcmp(incoming, "defer") != 0) {qmp_migrate_incoming(incoming, false, NULL, &local_err);if (local_err) {error_reportf_err(local_err, "-incoming %s: ", incoming);exit(1);}}} else if (autostart) {qmp_cont(NULL);}
}

首先,调用函数 qemu_init_board() 初始化机器主板,代码如下:

    qemu_init_board();

qemu_init_board()

代码如下:

static void qemu_init_board(void)
{/* process plugin before CPUs are created, but once -smp has been parsed */qemu_plugin_load_list(&plugin_list, &error_fatal);/* From here on we enter MACHINE_PHASE_INITIALIZED.  */machine_run_board_init(current_machine, mem_path, &error_fatal);drive_check_orphaned();realtime_init();
}

在函数 qemu_init_board() 中,首先运行机器主板的初始化,代码如下:

void machine_run_board_init(MachineState *machine, const char *mem_path, Error **errp)
{ERRP_GUARD();MachineClass *machine_class = MACHINE_GET_CLASS(machine);ObjectClass *oc = object_class_by_name(machine->cpu_type);CPUClass *cc;/* This checkpoint is required by replay to separate prior clockreading from the other reads, because timer polling functions queryclock values from the log. */replay_checkpoint(CHECKPOINT_INIT);if (!xen_enabled()) {/* On 32-bit hosts, QEMU is limited by virtual address space */if (machine->ram_size > (2047 << 20) && HOST_LONG_BITS == 32) {error_setg(errp, "at most 2047 MB RAM can be simulated");return;}}if (machine->memdev) {ram_addr_t backend_size = object_property_get_uint(OBJECT(machine->memdev),"size",  &error_abort);if (backend_size != machine->ram_size) {error_setg(errp, "Machine memory size does not match the size of the memory backend");return;}} else if (machine_class->default_ram_id && machine->ram_size &&numa_uses_legacy_mem()) {if (object_property_find(object_get_objects_root(),machine_class->default_ram_id)) {error_setg(errp, "object's id '%s' is reserved for the default"" RAM backend, it can't be used for any other purposes",machine_class->default_ram_id);error_append_hint(errp,"Change the object's 'id' to something else or disable"" automatic creation of the default RAM backend by setting"" 'memory-backend=%s' with '-machine'.\n",machine_class->default_ram_id);return;}if (!create_default_memdev(current_machine, mem_path, errp)) {return;}}if (machine->numa_state) {numa_complete_configuration(machine);if (machine->numa_state->num_nodes) {machine_numa_finish_cpu_init(machine);if (machine_class->cpu_cluster_has_numa_boundary) {validate_cpu_cluster_to_numa_boundary(machine);}}}if (!machine->ram && machine->memdev) {machine->ram = machine_consume_memdev(machine, machine->memdev);}/* If the machine supports the valid_cpu_types check and the user* specified a CPU with -cpu check here that the user CPU is supported.*/if (machine_class->valid_cpu_types && machine->cpu_type) {int i;for (i = 0; machine_class->valid_cpu_types[i]; i++) {if (object_class_dynamic_cast(oc,machine_class->valid_cpu_types[i])) {/* The user specified CPU is in the valid field, we are* good to go.*/break;}}if (!machine_class->valid_cpu_types[i]) {/* The user specified CPU is not valid */error_report("Invalid CPU type: %s", machine->cpu_type);error_printf("The valid types are: %s",machine_class->valid_cpu_types[0]);for (i = 1; machine_class->valid_cpu_types[i]; i++) {error_printf(", %s", machine_class->valid_cpu_types[i]);}error_printf("\n");exit(1);}}/* Check if CPU type is deprecated and warn if so */cc = CPU_CLASS(oc);if (cc && cc->deprecation_note) {warn_report("CPU model %s is deprecated -- %s", machine->cpu_type,cc->deprecation_note);}if (machine->cgs) {/** With confidential guests, the host can't see the real* contents of RAM, so there's no point in it trying to merge* areas.*/machine_set_mem_merge(OBJECT(machine), false, &error_abort);/** Virtio devices can't count on directly accessing guest* memory, so they need iommu_platform=on to use normal DMA* mechanisms.  That requires also disabling legacy virtio* support for those virtio pci devices which allow it.*/object_register_sugar_prop(TYPE_VIRTIO_PCI, "disable-legacy","on", true);object_register_sugar_prop(TYPE_VIRTIO_DEVICE, "iommu_platform","on", false);}accel_init_interfaces(ACCEL_GET_CLASS(machine->accelerator));machine_class->init(machine);phase_advance(PHASE_MACHINE_INITIALIZED);
}

跟踪调式进入函数 machine_class->init(machine),代码如下:

void machine_run_board_init(MachineState *machine, const char *mem_path, Error **errp)
{
...machine_class->init(machine);
...
}

在本例中,machine_class->init() 实际调用函数 pc_q35_init(),代码如下:

/* PC hardware initialisation */
static void pc_q35_init(MachineState *machine)
{PCMachineState *pcms = PC_MACHINE(machine);PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(pcms);X86MachineState *x86ms = X86_MACHINE(machine);Object *phb;PCIBus *host_bus;PCIDevice *lpc;DeviceState *lpc_dev;BusState *idebus[MAX_SATA_PORTS];ISADevice *rtc_state;MemoryRegion *system_memory = get_system_memory();MemoryRegion *system_io = get_system_io();MemoryRegion *pci_memory;MemoryRegion *rom_memory;GSIState *gsi_state;ISABus *isa_bus;int i;PCIDevice *ahci;ram_addr_t lowmem;DriveInfo *hd[MAX_SATA_PORTS];MachineClass *mc = MACHINE_GET_CLASS(machine);bool acpi_pcihp;bool keep_pci_slot_hpc;uint64_t pci_hole64_size = 0;HUEDBG("enter\n");/* Check whether RAM fits below 4G (leaving 1/2 GByte for IO memory* and 256 Mbytes for PCI Express Enhanced Configuration Access Mapping* also known as MMCFG).* If it doesn't, we need to split it in chunks below and above 4G.* In any case, try to make sure that guest addresses aligned at* 1G boundaries get mapped to host addresses aligned at 1G boundaries.*/if (machine->ram_size >= 0xb0000000) {lowmem = 0x80000000;} else {lowmem = 0xb0000000;}/* Handle the machine opt max-ram-below-4g.  It is basically doing* min(qemu limit, user limit).*/if (!pcms->max_ram_below_4g) {pcms->max_ram_below_4g = 4 * GiB;}if (lowmem > pcms->max_ram_below_4g) {lowmem = pcms->max_ram_below_4g;if (machine->ram_size - lowmem > lowmem &&lowmem & (1 * GiB - 1)) {warn_report("There is possibly poor performance as the ram size "" (0x%" PRIx64 ") is more then twice the size of"" max-ram-below-4g (%"PRIu64") and"" max-ram-below-4g is not a multiple of 1G.",(uint64_t)machine->ram_size, pcms->max_ram_below_4g);}}if (machine->ram_size >= lowmem) {x86ms->above_4g_mem_size = machine->ram_size - lowmem;x86ms->below_4g_mem_size = lowmem;} else {x86ms->above_4g_mem_size = 0;x86ms->below_4g_mem_size = machine->ram_size;}HUEDBG("\n");pc_machine_init_sgx_epc(pcms);HUEDBG("\n");x86_cpus_init(x86ms, pcmc->default_cpu_version);HUEDBG("\n");if (kvm_enabled()) {kvmclock_create(pcmc->kvmclock_create_always);}HUEDBG("\n");/* pci enabled */if (pcmc->pci_enabled) {huedbg_flag = 1;HUEDBG("\n");pci_memory = g_new(MemoryRegion, 1);memory_region_init(pci_memory, NULL, "pci", UINT64_MAX);rom_memory = pci_memory;HUEDBG("\n");huedbg_flag = 0;} else {pci_memory = NULL;rom_memory = system_memory;}HUEDBG("\n");pc_guest_info_init(pcms);if (pcmc->smbios_defaults) {/* These values are guest ABI, do not change */smbios_set_defaults("QEMU", mc->desc,mc->name, pcmc->smbios_legacy_mode,pcmc->smbios_uuid_encoded,pcms->smbios_entry_point_type);}HUEDBG("\n");/* create pci host bus */phb = OBJECT(qdev_new(TYPE_Q35_HOST_DEVICE));if (pcmc->pci_enabled) {pci_hole64_size = object_property_get_uint(phb,PCI_HOST_PROP_PCI_HOLE64_SIZE,&error_abort);}HUEDBG("\n");/* allocate ram and load rom/bios */pc_memory_init(pcms, system_memory, rom_memory, pci_hole64_size);object_property_add_child(OBJECT(machine), "q35", phb);object_property_set_link(phb, PCI_HOST_PROP_RAM_MEM,OBJECT(machine->ram), NULL);object_property_set_link(phb, PCI_HOST_PROP_PCI_MEM,OBJECT(pci_memory), NULL);object_property_set_link(phb, PCI_HOST_PROP_SYSTEM_MEM,OBJECT(system_memory), NULL);object_property_set_link(phb, PCI_HOST_PROP_IO_MEM,OBJECT(system_io), NULL);object_property_set_int(phb, PCI_HOST_BELOW_4G_MEM_SIZE,x86ms->below_4g_mem_size, NULL);object_property_set_int(phb, PCI_HOST_ABOVE_4G_MEM_SIZE,x86ms->above_4g_mem_size, NULL);object_property_set_bool(phb, PCI_HOST_BYPASS_IOMMU,pcms->default_bus_bypass_iommu, NULL);sysbus_realize_and_unref(SYS_BUS_DEVICE(phb), &error_fatal);HUEDBG("\n");/* pci */host_bus = PCI_BUS(qdev_get_child_bus(DEVICE(phb), "pcie.0"));pcms->bus = host_bus;HUEDBG("\n");/* irq lines */gsi_state = pc_gsi_create(&x86ms->gsi, pcmc->pci_enabled);HUEDBG("\n");/* create ISA bus */lpc = pci_new_multifunction(PCI_DEVFN(ICH9_LPC_DEV, ICH9_LPC_FUNC),TYPE_ICH9_LPC_DEVICE);HUEDBG("\n");qdev_prop_set_bit(DEVICE(lpc), "smm-enabled",x86_machine_is_smm_enabled(x86ms));HUEDBG("\n");lpc_dev = DEVICE(lpc);HUEDBG("\n");for (i = 0; i < IOAPIC_NUM_PINS; i++) {qdev_connect_gpio_out_named(lpc_dev, ICH9_GPIO_GSI, i, x86ms->gsi[i]);}HUEDBG("\n");pci_realize_and_unref(lpc, host_bus, &error_fatal);rtc_state = ISA_DEVICE(object_resolve_path_component(OBJECT(lpc), "rtc"));object_property_add_link(OBJECT(machine), PC_MACHINE_ACPI_DEVICE_PROP,TYPE_HOTPLUG_HANDLER,(Object **)&x86ms->acpi_dev,object_property_allow_set_link,OBJ_PROP_LINK_STRONG);object_property_set_link(OBJECT(machine), PC_MACHINE_ACPI_DEVICE_PROP,OBJECT(lpc), &error_abort);HUEDBG("\n");acpi_pcihp = object_property_get_bool(OBJECT(lpc),ACPI_PM_PROP_ACPI_PCIHP_BRIDGE,NULL);HUEDBG("\n");keep_pci_slot_hpc = object_property_get_bool(OBJECT(lpc),"x-keep-pci-slot-hpc",NULL);if (!keep_pci_slot_hpc && acpi_pcihp) {object_register_sugar_prop(TYPE_PCIE_SLOT,"x-do-not-expose-native-hotplug-cap","true", true);}HUEDBG("\n");isa_bus = ISA_BUS(qdev_get_child_bus(lpc_dev, "isa.0"));HUEDBG("\n");if (x86ms->pic == ON_OFF_AUTO_ON || x86ms->pic == ON_OFF_AUTO_AUTO) {pc_i8259_create(isa_bus, gsi_state->i8259_irq);}HUEDBG("\n");if (pcmc->pci_enabled) {ioapic_init_gsi(gsi_state, "q35");}HUEDBG("\n");if (tcg_enabled()) {x86_register_ferr_irq(x86ms->gsi[13]);}assert(pcms->vmport != ON_OFF_AUTO__MAX);if (pcms->vmport == ON_OFF_AUTO_AUTO) {pcms->vmport = ON_OFF_AUTO_ON;}HUEDBG("\n");/* init basic PC hardware */pc_basic_device_init(pcms, isa_bus, x86ms->gsi, rtc_state, !mc->no_floppy,0xff0104);HUEDBG("\n");if (pcms->sata_enabled) {/* ahci and SATA device, for q35 1 ahci controller is built-in */ahci = pci_create_simple_multifunction(host_bus,PCI_DEVFN(ICH9_SATA1_DEV,ICH9_SATA1_FUNC),"ich9-ahci");idebus[0] = qdev_get_child_bus(&ahci->qdev, "ide.0");idebus[1] = qdev_get_child_bus(&ahci->qdev, "ide.1");g_assert(MAX_SATA_PORTS == ahci_get_num_ports(ahci));ide_drive_get(hd, ahci_get_num_ports(ahci));ahci_ide_create_devs(ahci, hd);} else {idebus[0] = idebus[1] = NULL;}HUEDBG("\n");if (machine_usb(machine)) {/* Should we create 6 UHCI according to ich9 spec? */ehci_create_ich9_with_companions(host_bus, 0x1d);}HUEDBG("\n");if (pcms->smbus_enabled) {PCIDevice *smb;/* TODO: Populate SPD eeprom data.  */smb = pci_create_simple_multifunction(host_bus,PCI_DEVFN(ICH9_SMB_DEV,ICH9_SMB_FUNC),TYPE_ICH9_SMB_DEVICE);pcms->smbus = I2C_BUS(qdev_get_child_bus(DEVICE(smb), "i2c"));smbus_eeprom_init(pcms->smbus, 8, NULL, 0);}HUEDBG("\n");pc_cmos_init(pcms, idebus[0], idebus[1], rtc_state);HUEDBG("\n");/* the rest devices to which pci devfn is automatically assigned */pc_vga_init(isa_bus, host_bus);pc_nic_init(pcmc, isa_bus, host_bus, pcms->xenbus);HUEDBG("\n");if (machine->nvdimms_state->is_enabled) {nvdimm_init_acpi_state(machine->nvdimms_state, system_io,x86_nvdimm_acpi_dsmio,x86ms->fw_cfg, OBJECT(pcms));}HUEDBG("exit\n");
}

完成函数 pc_memory_init() 后,继续进入 PCI 设置,代码如下:


gsi_state = pc_gsi_create(&x86ms->gsi, pcmc->pci_enabled)
/* PC hardware initialisation */
static void pc_q35_init(MachineState *machine)
{
.../* irq lines */gsi_state = pc_gsi_create(&x86ms->gsi, pcmc->pci_enabled);
...
}

3.调试输出

首先,添加跟踪调试信息,修改后的代码如下:

/* PC hardware initialisation */
static void pc_q35_init(MachineState *machine)
{
.../* irq lines */huedbg_flag = 1;HUEDBG("\n");gsi_state = pc_gsi_create(&x86ms->gsi, pcmc->pci_enabled);huedbg_dump_GSIState(gsi_state, 9);HUEDBG("\n");huedbg_flag = 0;
...
}

运行后,输出信息如下:


D:\qkd-app\vmos>..\qemu\8.2.2-qkd\qemu-system-x86_64.exe -cpu "Penryn,vendor=GenuineIntel,+ssse3,+sse4.2" -M  "q35,accel=whpx,smm=off" -object "memory-backend-ram,id=ram0,size=4G,prealloc=on,share=on,merge=off,dump=off"  -object "memory-backend-ram,id=ram1,size=2G,prealloc=on,share=on,merge=off,dump=off" -numa "node,memdev=ram0,cpus=0,nodeid=0" -numa "node,memdev=ram1,cpus=1,nodeid=1" -smp "cpus=2" -m "6G" -audio "sdl,model=hda" -vga "std" -netdev "user,id=mynet0" -device "e1000,id=nic1,netdev=mynet0" -L "data" -qtest "unix:qtest-sock,server,nowait" -drive "file=data/OVMF_CODE_4M.fd,if=pflash,format=raw,readonly=on" -drive "file=data/OVMF_VARS_4M.fd,if=pflash,format=raw,readonly=off"
[25044]../util/qemu-thread-win32.c/qemu_thread_create(488):name=[call_rcu]
[25044]../util/qemu-thread-win32.c/qemu_thread_create(519):tid=[7968]
[7968]../util/rcu.c/call_rcu_thread(259):enter!
WHPX: setting APIC emulation mode in the hypervisor
Windows Hypervisor Platform accelerator is operational
[25044]../util/qemu-thread-win32.c/qemu_thread_create(488):name=[CPU 0/WHPX]
[25044]../util/qemu-thread-win32.c/qemu_thread_create(519):tid=[15504]
[15504]../target/i386/whpx/whpx-accel-ops.c/whpx_cpu_thread_fn(29):enter!
[25044]../util/qemu-thread-win32.c/qemu_thread_create(488):name=[CPU 1/WHPX]
[25044]../util/qemu-thread-win32.c/qemu_thread_create(519):tid=[19696]
[19696]../target/i386/whpx/whpx-accel-ops.c/whpx_cpu_thread_fn(29):enter!
[25044]../util/qemu-thread-win32.c/qemu_thread_create(488):name=[worker]
[25044]../util/qemu-thread-win32.c/qemu_thread_create(519):tid=[21160]
[21160]../util/thread-pool.c/worker_thread(83):enter!
..\qemu\8.2.2-qkd\qemu-system-x86_64.exe: warning: WHPX: ROMD [system.flash0] region 0x00000000ffc84000->0x0000000100000000
..\qemu\8.2.2-qkd\qemu-system-x86_64.exe: warning: WHPX: ROMD [system.flash0] region 0x00000000ffc84000->0x0000000100000000
..\qemu\8.2.2-qkd\qemu-system-x86_64.exe: warning: WHPX: ROMD [system.flash0] region 0x00000000ffc84000->0x0000000100000000
..\qemu\8.2.2-qkd\qemu-system-x86_64.exe: warning: WHPX: ROMD [system.flash0] region 0x00000000ffc84000->0x0000000100000000
..\qemu\8.2.2-qkd\qemu-system-x86_64.exe: warning: WHPX: ROMD [system.flash1] region 0x00000000ffc00000->0x00000000ffc84000
..\qemu\8.2.2-qkd\qemu-system-x86_64.exe: warning: WHPX: ROMD [system.flash1] region 0x00000000ffc00000->0x00000000ffc84000
..\qemu\8.2.2-qkd\qemu-system-x86_64.exe: warning: WHPX: ROMD [system.flash1] region 0x00000000ffc00000->0x00000000ffc84000
..\qemu\8.2.2-qkd\qemu-system-x86_64.exe: warning: WHPX: ROMD [system.flash1] region 0x00000000ffc00000->0x00000000ffc84000
[25044]../hw/i386/pc_q35.c/pc_q35_init(271):
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../qom/object.c/type_table_lookup(103):lookup type(irq) in hash table
[25044]../qom/object.c/object_new_with_type(799):try type_initialize(irq)
[25044]../qom/object.c/object_new_with_type(809):obj(irq) alloc
[25044]../qom/object.c/object_new_with_type(818):try object_initialize_with_type(irq)
[25044]../qom/object.c/object_initialize_with_type(573):obj with type(irq) enter
[25044]../qom/object.c/object_initialize_with_type(581):mapping obj(irq).class with type(irq).class
[25044]../qom/object.c/object_initialize_with_type(584):try object_class_property_init_all(irq)
[25044]../qom/object.c/object_class_property_init_all(554):obj(irq) enter
[25044]../qom/object.c/object_class_property_iter_init(1517):objclass{irq} enter
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_class_get_parent(1168):objclass(irq) has parent(object)
[25044]../qom/object.c/object_class_get_parent(1171):objclass(irq) return
[25044]../qom/object.c/object_class_property_iter_init(1520):objclass{irq} return
[25044]../qom/object.c/object_class_get_parent(1157):enter
[25044]../qom/object.c/type_get_parent(196):no parent_type
[25044]../qom/object.c/object_class_get_parent(1161):objclass(object) has no parent return
[25044]../qom/object.c/object_class_property_init_all(557):prop name=[type] type=[string] desc=[(null)] init=[0000000000000000]
[25044]../qom/object.c/object_class_property_init_all(565):obj(irq) return
[25044]../qom/object.c/object_initialize_with_type(588):try object_init_with_type(irq)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_init_with_type(416):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[object] return
[25044]../qom/object.c/object_init_with_type(427):obj->class->type->name=[irq] ti->name=[irq] return
[25044]../qom/object.c/object_initialize_with_type(590):try object_post_init_with_type(irq)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[irq] enter
[25044]../qom/object.c/type_get_parent(194):parent_type(object)
[25044]../qom/object.c/object_post_init_with_type(433):obj->class->type->name=[irq] ti->name=[object] enter
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_post_init_with_type(444):return
[25044]../qom/object.c/object_initialize_with_type(592):obj(irq) return
[25044]../qom/object.c/object_new_with_type(822):obj(irq) return
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(173):<<<deep>>>=[9] gsi=[0000023ed4db8aa0]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(176):i8259_irq=[0000023ed4db8aa0]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(179):i8259_irq[0]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(179):i8259_irq[1]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(179):i8259_irq[2]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(179):i8259_irq[3]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(179):i8259_irq[4]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(179):i8259_irq[5]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(179):i8259_irq[6]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(179):i8259_irq[7]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(179):i8259_irq[8]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(179):i8259_irq[9]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(179):i8259_irq[10]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(179):i8259_irq[11]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(179):i8259_irq[12]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(179):i8259_irq[13]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(179):i8259_irq[14]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(179):i8259_irq[15]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(185):ioapic_irq=[0000023ed4db8b20]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[0]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[1]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[2]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[3]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[4]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[5]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[6]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[7]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[8]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[9]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[10]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[11]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[12]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[13]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[14]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[15]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[16]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[17]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[18]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[19]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[20]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[21]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[22]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(188):ioapic_irq[23]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(194):ioapic2_irq=[0000023ed4db8be0]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[0]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[1]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[2]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[3]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[4]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[5]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[6]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[7]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[8]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[9]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[10]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[11]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[12]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[13]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[14]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[15]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[16]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[17]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[18]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[19]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[20]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[21]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[22]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(197):ioapic2_irq[23]=[0000000000000000]
[25044]../util/huedbg-x86.c/huedbg_dump_GSIState(204):
[25044]../hw/i386/pc_q35.c/pc_q35_init(274):

总结

以上分析了系统初始化过程中对目标机器初始化 PCIE 总线的初始化配置。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/11837.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【机器学习】机器学习与人工智能融合新篇章:自适应智能代理在多元化复杂环境中的创新应用与演进趋势

&#x1f512;文章目录&#xff1a; &#x1f4a5;1.引言 &#x1f68b;1.1 机器学习与人工智能的发展背景 &#x1f68c;1.2 自适应智能代理的概念与重要性 &#x1f690;1.3 研究目的与意义 ☔2.自适应智能代理的关键技术 &#x1f6e3;️2.1 环境感知与信息处理技术 …

根据间隔获取一段时间内的所有时间(附String,Date,LocalDateTime 之间的转换)

根据间隔获取一段时间内的所有时间 public static List<LocalDateTime> getTimeIntervals(LocalDateTime startTime, LocalDateTime endTime, int interval, String intervalType) {List<LocalDateTime> timeIntervals new ArrayList<>();switch (interval…

RelationMap图谱--VUE,真实项目提供mock数据

RelationMap官网&#xff1a; 在线配置官网&#xff08;可以把数据放进去&#xff0c;直接看效果&#xff09; VUE2 效果&#xff1a;左侧列表栏&#xff0c;点击右侧显示对应的图谱 代码&#xff1a;按照代码直接贴过去&#xff0c;直接出效果 relationMap/index.vue <te…

泽攸科技无掩模光刻机:引领微纳制造新纪元

在当今科技迅猛发展的时代&#xff0c;微纳制造技术正变得越来越重要。泽攸科技作为这一领域的先行者&#xff0c;推出了其创新的无掩模光刻机&#xff0c;这一设备在微电子制造、微纳加工、MEMS、LED、生物芯片等多个高科技领域展现出了其独特的价值和广泛的应用前景。 技术革…

Python-VBA函数之旅-tuple函数

目录 一、tuple函数的常见应用场景 二、tuple函数使用注意事项 三、如何用好tuple函数&#xff1f; 1、tuple函数&#xff1a; 1-1、Python&#xff1a; 1-2、VBA&#xff1a; 2、推荐阅读&#xff1a; 个人主页&#xff1a; https://myelsa1024.blog.csdn.net/ 一、tu…

爱普生推出适用于物联网小尺寸温补晶振TG1612SLN

爱普生推出一款小尺寸温补晶振TG1612SLN&#xff0c;之前推出的小尺寸温补晶振TG2016SLN&#xff0c;封装2016已经是很小了&#xff0c;而TG1612SLN的尺寸仅为1.6x1.2x0.45毫米&#xff0c;不得不佩服爱普生的研发能力。 温度补偿晶体振荡器TG1612SLN使用爱普生开发和制造…

打造微信小程序简易视频编辑应用:从入门到实践

打造微信小程序简易视频编辑应用&#xff1a;从入门到实践 引言 随着社交媒体的兴起&#xff0c;视频已成为人们表达自我、分享生活的重要形式。微信小程序作为一个轻量级的应用平台&#xff0c;为用户提供了随时随地创作和分享视频的便捷途径。本文将带你一起探索如何使用微…

程序员的神奇应用:从代码创造到问题解决的魔法世界之持续集成/持续部署

文章目录 持续集成/持续部署 在软件开发的海洋中&#xff0c;程序员的实用神器如同航海中的指南针&#xff0c;帮助他们导航、加速开发、优化代码质量&#xff0c;并最终抵达成功的彼岸。这些工具覆盖了从代码编写、版本控制到测试和部署的各个环节。 在当今数字化的世界里&…

Llama 3 是怎么回事?Arena 数据分析

4 月 18 日,Meta 发布了他们最新的开放权重大型语言模型 Llama 3。从那时起,Llama 3-70B 就在 English Chatbot Arena 排行榜上迅速上升,拥有超过 50,000 次对战。Meta 的这一非凡成就对开源社区来说是个好消息。在这篇博文中,我们旨在深入探讨为什么用户将 Llama 3-70b 与 GPT…

Linux信息显示相关指令

1、查看cpu 查看cpu信息:cat /proc/cpuinfo 查看cpu个数:nproc cat /proc/cpuinfo | grep "physical id" | uniq | wc -l uniq命令:删除重复行;wc –l命令:统计行数 查看CPU核数 cat /proc/cpuinfo | grep "cpu cores" | uniq 2、查看内存 cat /pr…

SpringSecurity多表,多端账户登录

本文章对应视频SpringSecurity6多端账号登录&#xff0c;可无限扩展教程&#xff0c;记得三连哦&#xff0c;这对我很重要呢&#xff01; 温馨提示&#xff1a;视频与文章相辅相成&#xff0c;结合学习效果更强哦&#xff01;更多视频教程可移步B站【石添的编程哲学】 SpringSe…

快解析Tplink端口映射如何设置

Tplink作为国内知名路由器品牌&#xff0c;有着广泛的用户群体。使用快解析端口映射是实现内网服务器被外网访问必须要做的设置&#xff0c;很多对网络不懂得小白不知道该到哪里去做&#xff0c;下面我就讲解一下tplink路由器如何做端口映射。 1&#xff1a;访问路由器 &#…

uboot 顶层 Makefile 逐行分析

文章目录 0001-00080009-00180019-00510052-00920093-01070108-01230124-01770178-21350178-01810182-01860187-02020203-02450246-02620263-02720273-03370338-03830384-03870388-04250426-04490450-04740475-04860487-04980499-05340535-05500551-05650566-221822192220-2332…

想半天憋不出几个字?试试AI扩写

大家在写文章时是否也经常这样&#xff1f;想了半天&#xff0c;结果只能写出几个字&#xff0c;但是要求往往又是几百多个字&#xff0c;那么有没有啥工具可以帮我们在原文的基础上扩写一下文章字数&#xff0c;让我们达到字数要求呢&#xff1f; 下面给大家介绍一下如何扩写文…

Django开发实战之定制管理后台界面及知识梳理(下)

接上一篇&#xff1a;Django开发实战之定制管理后台界面及知识梳理&#xff08;中&#xff09; 1、前台设置 1、隐藏路由 当你输入一个错误地址时&#xff0c;可以看到这样的报错&#xff1a; 从这样的报错中&#xff0c;我们可以看到&#xff0c;这个报错页面暴漏了路由&a…

江西省生态环境工程技术人员职称申报条件

江西省生态环境工程技术人员职称申报条件评审文件链接江西省生态环境厅 其它通知、公示信息 关于印发《江西省生态环境工程技术人员职称申报条件&#xff08;试行&#xff09;》的通知评审工作的通知江西省生态环境厅 其它通知、公示信息 江西省生态环境厅关于做好2024年工程系…

到底什么是离岸账户?

离岸账户&#xff0c;顾名思义就是银行为非居民开设的账户&#xff0c;举个例子&#xff0c;英国公司在香港汇丰开设账户或者香港公司在大陆的平安银行开设账户&#xff0c;就属于离岸账户&#xff0c;如果是中国居民想要开设离岸账户&#xff0c;只能先注册一个其属地的离岸公…

FullCalendar日历组件集成实战(1)

背景 有一些应用系统或应用功能&#xff0c;如日程管理、任务管理需要使用到日历组件。虽然Element Plus也提供了日历组件&#xff0c;但功能比较简单&#xff0c;用来做数据展现勉强可用。但如果需要进行复杂的数据展示&#xff0c;以及互动操作如通过点击添加事件&#xff0…

python数据可视化:从n个点中挑选m组3个点绘制m个三角形matplotlib.pyplot.triplot()

【小白从小学Python、C、Java】 【考研初试复试毕业设计】 【Python基础AI数据分析】 python数据可视化&#xff1a; 从n个点中挑选m组3个点 绘制m个三角形 matplotlib.pyplot.triplot() [太阳]选择题 以下关于matplotlib.pyplot.triplot()函数说法正确的是&#xff1f; impor…

Linux---windows 机器和远端的 Linux 机器如何通过 XShell 传输文件

一、关于rzsz 这个工具用于 windows 机器和远端的 Linux 机器通过 Xshell 传输文件. 二、下载rzsz软件 用root输入命令&#xff1a; sudo yum install -y lrzsz下载完成&#xff1a; 三、如何传输 有图形化界面 1、从Windows机器传输给远端Linux机器 ① 直接拖拽 直接将…