cpu.c (d780d056f8acdee73a1c34d95733851d58aecd60) | cpu.c (f4f318b41abe76a68ec1d616744ab9d6ec839abc) |
---|---|
1/* 2 * QEMU ARM CPU 3 * 4 * Copyright (c) 2012 SUSE LINUX Products GmbH 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version 2 --- 35 unchanged lines hidden (view full) --- 44#include "sysemu/tcg.h" 45#include "sysemu/qtest.h" 46#include "sysemu/hw_accel.h" 47#include "kvm_arm.h" 48#include "disas/capstone.h" 49#include "fpu/softfloat.h" 50#include "cpregs.h" 51#include "target/arm/cpu-qom.h" | 1/* 2 * QEMU ARM CPU 3 * 4 * Copyright (c) 2012 SUSE LINUX Products GmbH 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version 2 --- 35 unchanged lines hidden (view full) --- 44#include "sysemu/tcg.h" 45#include "sysemu/qtest.h" 46#include "sysemu/hw_accel.h" 47#include "kvm_arm.h" 48#include "disas/capstone.h" 49#include "fpu/softfloat.h" 50#include "cpregs.h" 51#include "target/arm/cpu-qom.h" |
52#include "target/arm/gtimer.h" |
|
52 53static void arm_cpu_set_pc(CPUState *cs, vaddr value) 54{ 55 ARMCPU *cpu = ARM_CPU(cs); 56 CPUARMState *env = &cpu->env; 57 58 if (is_a64(env)) { 59 env->pc = value; --- 2507 unchanged lines hidden --- | 53 54static void arm_cpu_set_pc(CPUState *cs, vaddr value) 55{ 56 ARMCPU *cpu = ARM_CPU(cs); 57 CPUARMState *env = &cpu->env; 58 59 if (is_a64(env)) { 60 env->pc = value; --- 2507 unchanged lines hidden --- |