[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v8 05/62] target/riscv: add an internals.h header
From: |
LIU Zhiwei |
Subject: |
[PATCH v8 05/62] target/riscv: add an internals.h header |
Date: |
Thu, 21 May 2020 17:43:16 +0800 |
The internals.h keeps things that are not relevant to the actual architecture,
only to the implementation, separate.
Signed-off-by: LIU Zhiwei <address@hidden>
Reviewed-by: Alistair Francis <address@hidden>
Reviewed-by: Richard Henderson <address@hidden>
---
target/riscv/internals.h | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 target/riscv/internals.h
diff --git a/target/riscv/internals.h b/target/riscv/internals.h
new file mode 100644
index 0000000000..0f75634b6c
--- /dev/null
+++ b/target/riscv/internals.h
@@ -0,0 +1,24 @@
+/*
+ * QEMU RISC-V CPU -- internal functions and types
+ *
+ * Copyright (c) 2020 T-Head Semiconductor Co., Ltd. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms and conditions of the GNU General Public License,
+ * version 2 or later, as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef RISCV_CPU_INTERNALS_H
+#define RISCV_CPU_INTERNALS_H
+
+#include "hw/registerfields.h"
+
+#endif
--
2.23.0
- [PATCH v8 00/62] target/riscv: support vector extension v0.7.1, LIU Zhiwei, 2020/05/21
- [PATCH v8 00/62] target/riscv: support vector extension v0.7.1, LIU Zhiwei, 2020/05/21
- [PATCH v8 01/62] target/riscv: add vector extension field in CPURISCVState, LIU Zhiwei, 2020/05/21
- [PATCH v8 02/62] target/riscv: implementation-defined constant parameters, LIU Zhiwei, 2020/05/21
- [PATCH v8 03/62] target/riscv: support vector extension csr, LIU Zhiwei, 2020/05/21
- [PATCH v8 04/62] target/riscv: add vector configure instruction, LIU Zhiwei, 2020/05/21
- [PATCH v8 05/62] target/riscv: add an internals.h header,
LIU Zhiwei <=
- [PATCH v8 06/62] target/riscv: add vector stride load and store instructions, LIU Zhiwei, 2020/05/21
- [PATCH v8 07/62] target/riscv: add vector index load and store instructions, LIU Zhiwei, 2020/05/21
- [PATCH v8 08/62] target/riscv: add fault-only-first unit stride load, LIU Zhiwei, 2020/05/21
- [PATCH v8 09/62] target/riscv: add vector amo operations, LIU Zhiwei, 2020/05/21
- [PATCH v8 10/62] target/riscv: vector single-width integer add and subtract, LIU Zhiwei, 2020/05/21
- [PATCH v8 11/62] target/riscv: vector widening integer add and subtract, LIU Zhiwei, 2020/05/21
- [PATCH v8 12/62] target/riscv: vector integer add-with-carry / subtract-with-borrow instructions, LIU Zhiwei, 2020/05/21
- [PATCH v8 13/62] target/riscv: vector bitwise logical instructions, LIU Zhiwei, 2020/05/21
- [PATCH v8 14/62] target/riscv: vector single-width bit shift instructions, LIU Zhiwei, 2020/05/21
- [PATCH v8 15/62] target/riscv: vector narrowing integer right shift instructions, LIU Zhiwei, 2020/05/21