]> Git Repo - qemu.git/blob - target/loongarch/op_helper.c
903810951e43ea9120179fa5f1cf72e53511b083
[qemu.git] / target / loongarch / op_helper.c
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * LoongArch emulation helpers for QEMU.
4  *
5  * Copyright (c) 2021 Loongson Technology Corporation Limited
6  */
7
8 #include "qemu/osdep.h"
9 #include "qemu/main-loop.h"
10 #include "cpu.h"
11 #include "qemu/host-utils.h"
12 #include "exec/helper-proto.h"
13 #include "exec/exec-all.h"
14 #include "exec/cpu_ldst.h"
15 #include "internals.h"
16
17 /* Exceptions helpers */
18 void helper_raise_exception(CPULoongArchState *env, uint32_t exception)
19 {
20     do_raise_exception(env, exception, GETPC());
21 }
This page took 0.017744 seconds and 2 git commands to generate.