cpu.c (48c1a3e303b5a2cca48679645ad3fbb914db741a) cpu.c (e124536f37377cff5d68925d4976ad604d0ebf3a)
1/*
2 * QEMU S/390 CPU
3 *
4 * Copyright (c) 2009 Ulrich Hecht
5 * Copyright (c) 2011 Alexander Graf
6 * Copyright (c) 2012 SUSE LINUX Products GmbH
7 * Copyright (c) 2012 IBM Corp.
8 *

--- 502 unchanged lines hidden (view full) ---

511 cc->tcg_ops.cpu_exec_interrupt = s390_cpu_exec_interrupt;
512 cc->debug_excp_handler = s390x_cpu_debug_excp_handler;
513 cc->do_unaligned_access = s390x_cpu_do_unaligned_access;
514#endif
515#endif
516 cc->disas_set_info = s390_cpu_disas_set_info;
517#ifdef CONFIG_TCG
518 cc->tcg_ops.initialize = s390x_translate_init;
1/*
2 * QEMU S/390 CPU
3 *
4 * Copyright (c) 2009 Ulrich Hecht
5 * Copyright (c) 2011 Alexander Graf
6 * Copyright (c) 2012 SUSE LINUX Products GmbH
7 * Copyright (c) 2012 IBM Corp.
8 *

--- 502 unchanged lines hidden (view full) ---

511 cc->tcg_ops.cpu_exec_interrupt = s390_cpu_exec_interrupt;
512 cc->debug_excp_handler = s390x_cpu_debug_excp_handler;
513 cc->do_unaligned_access = s390x_cpu_do_unaligned_access;
514#endif
515#endif
516 cc->disas_set_info = s390_cpu_disas_set_info;
517#ifdef CONFIG_TCG
518 cc->tcg_ops.initialize = s390x_translate_init;
519 cc->tlb_fill = s390_cpu_tlb_fill;
519 cc->tcg_ops.tlb_fill = s390_cpu_tlb_fill;
520#endif
521
522 cc->gdb_num_core_regs = S390_NUM_CORE_REGS;
523 cc->gdb_core_xml_file = "s390x-core64.xml";
524 cc->gdb_arch_name = s390_gdb_arch_name;
525
526 s390_cpu_model_class_register_props(oc);
527}

--- 19 unchanged lines hidden ---
520#endif
521
522 cc->gdb_num_core_regs = S390_NUM_CORE_REGS;
523 cc->gdb_core_xml_file = "s390x-core64.xml";
524 cc->gdb_arch_name = s390_gdb_arch_name;
525
526 s390_cpu_model_class_register_props(oc);
527}

--- 19 unchanged lines hidden ---