aboutsummaryrefslogtreecommitdiff
path: root/target/avr/cpu.c
AgeCommit message (Expand)AuthorFilesLines
2024-07-11target: Set TCGCPUOps::cpu_exec_halt to target's has_work implementationPeter Maydell1-0/+1
2024-05-06accel/tcg: Access tcg_cflags with getter / setterPhilippe Mathieu-Daudé1-1/+1
2024-04-25hw, target: Add ResetType argument to hold and exit phase methodsPeter Maydell1-2/+2
2024-03-12target/avr: Prefer fast cpu_env() over slower CPU QOM cast macroPhilippe Mathieu-Daudé1-20/+7
2024-03-12target: Replace CPU_GET_CLASS(cpu -> obj) in cpu_reset_hold() handlerPhilippe Mathieu-Daudé1-1/+1
2024-02-28gdbstub: Infer number of core registers from XMLAkihiko Odaki1-1/+0
2024-02-03target/avr: Populate CPUClass.mmu_indexRichard Henderson1-0/+6
2024-01-29include/qemu: Add TCGCPUOps typedef to typedefs.hRichard Henderson1-1/+1
2024-01-05target/avr: Use generic cpu_list()Gavin Shan1-15/+0
2024-01-05cpu: Call object_class_dynamic_cast() once in cpu_class_by_name()Philippe Mathieu-Daudé1-7/+1
2023-11-28hw/avr/atmega: Fix wrong initial value of stack pointerGihun Nam1-1/+9
2023-11-07hw/cpu: Call object_class_is_abstract() once in cpu_class_by_name()Philippe Mathieu-Daudé1-2/+1
2023-10-04accel/tcg: Remove cpu_set_cpustate_pointersRichard Henderson1-2/+0
2023-10-03target/*: Add instance_align to all cpu base classesRichard Henderson1-0/+1
2023-06-05target/*: Add missing includes of tcg/debug-assert.hRichard Henderson1-0/+1
2023-03-01target/avr: Replace `tb_pc()` with `tb->pc`Anton Johansson1-1/+2
2022-12-16target/avr: Convert to 3-phase resetPeter Maydell1-4/+9
2022-10-26target/avr: Convert to tcg_ops restore_state_to_opcRichard Henderson1-0/+11
2022-10-04accel/tcg: Introduce tb_pc and log_pcRichard Henderson1-1/+1
2022-10-04hw/core: Add CPUClass.get_pcRichard Henderson1-0/+8
2022-06-20target/avr: Drop avr_cpu_memory_rw_debug()Bin Meng1-1/+0
2021-09-14target/avr: Remove pointless use of CONFIG_USER_ONLY definitionPhilippe Mathieu-Daudé1-3/+0
2021-07-21target/avr: Implement gdb_adjust_breakpointRichard Henderson1-0/+1
2021-05-26hw/core: Constify TCGCPUOpsRichard Henderson1-1/+1
2021-05-26cpu: Move CPUClass::get_phys_page_debug to SysemuCPUOpsPhilippe Mathieu-Daudé1-1/+1
2021-05-26cpu: Introduce SysemuCPUOps structurePhilippe Mathieu-Daudé1-0/+6
2021-05-26cpu: Move AVR target vmsd field from CPUClass to DeviceClassPhilippe Mathieu-Daudé1-1/+1
2021-05-26cpu: Rename CPUClass vmsd -> legacy_vmsdPhilippe Mathieu-Daudé1-1/+1
2021-02-20target/avr/cpu: Use device_class_set_parent_realize()Philippe Mathieu-Daudé1-3/+1
2021-02-05cpu: tcg_ops: move to tcg-cpu-ops.h, keep a pointer in CPUClassClaudio Fontana1-5/+14
2021-02-05cpu: move cc->do_interrupt to tcg_opsClaudio Fontana1-1/+1
2021-02-05cpu: Move tlb_fill to tcg_opsEduardo Habkost1-1/+1
2021-02-05cpu: Move cpu_exec_* to tcg_opsEduardo Habkost1-1/+1
2021-02-05cpu: Move synchronize_from_tb() to tcg_opsEduardo Habkost1-1/+1
2021-02-05cpu: Introduce TCGCpuOperations structEduardo Habkost1-1/+1
2021-01-07tcg: Make tb arg to synchronize_from_tb constRichard Henderson1-1/+2
2020-07-11target/avr/cpu: Fix $PC displayed addressPhilippe Mathieu-Daudé1-1/+1
2020-07-11target/avr/cpu: Drop tlb_flush() in avr_cpu_reset()Philippe Mathieu-Daudé1-2/+0
2020-07-11target/avr: Add support for disassembling via option '-d in_asm'Michael Rolnik1-1/+1
2020-07-10target/avr: Add definitions of AVR core typesMichael Rolnik1-0/+151
2020-07-10target/avr: CPU class: Add GDB supportMichael Rolnik1-0/+4
2020-07-10target/avr: CPU class: Add migration supportMichael Rolnik1-0/+1
2020-07-10target/avr: CPU class: Add memory management supportMichael Rolnik1-0/+3
2020-07-10target/avr: CPU class: Add interrupt handling supportMichael Rolnik1-0/+2
2020-07-10target/avr: Introduce basic CPU class objectMichael Rolnik1-0/+207