diff options
author | Alexander Graf <agraf@suse.de> | 2013-12-17 19:42:32 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2013-12-17 19:42:32 +0000 |
commit | d3e35a1fe4562ee3f9f1af91ab02d62cf31b9488 (patch) | |
tree | 7a343ffcc5b5fa25dfccac55f815b6fde23de7f3 /target-arm/helper-a64.c | |
parent | 6a66942735569ec7f8b761c1205e6f4c50962fe4 (diff) | |
download | qemu-d3e35a1fe4562ee3f9f1af91ab02d62cf31b9488.zip qemu-d3e35a1fe4562ee3f9f1af91ab02d62cf31b9488.tar.gz qemu-d3e35a1fe4562ee3f9f1af91ab02d62cf31b9488.tar.bz2 |
target-arm: A64: add stubs for a64 specific helpers
We will need helpers that only make sense with AArch64. Add
helper-a64.{c,h} files as stubs that we can fill with these
helpers in the following patches.
Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-arm/helper-a64.c')
-rw-r--r-- | target-arm/helper-a64.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/target-arm/helper-a64.c b/target-arm/helper-a64.c new file mode 100644 index 0000000..adb8428 --- /dev/null +++ b/target-arm/helper-a64.c @@ -0,0 +1,25 @@ +/* + * AArch64 specific helpers + * + * Copyright (c) 2013 Alexander Graf <agraf@suse.de> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, see <http://www.gnu.org/licenses/>. + */ + +#include "cpu.h" +#include "exec/gdbstub.h" +#include "helper.h" +#include "qemu/host-utils.h" +#include "sysemu/sysemu.h" +#include "qemu/bitops.h" |