util: Move the m5ops.h file to a shared directory
The header file m5ops.h contains a list of constants that should be
shared between the simulator and utilities. Move this header file to a
new top-level directory for shared files and rename constants to make
them suitable for inclusion in the main simulator.
The structure of the shared include directory is as follows:
include/gem5: Files that can be included from C code.
include/gem5/asm: Files that can be included from assembly code.
asm/generic/: Files that aren't guest ISA specific
asm/${isa}/: Files that are guest ISA specific
Change-Id: I1aa511057bcaa80cc2d566109ff26581558c4a41
Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com>
Reviewed-by: Jose Marinho <jose.marinho@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/4261
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
This commit is contained in:
@@ -43,7 +43,7 @@
|
||||
* Andreas Sandberg
|
||||
*/
|
||||
|
||||
#include "m5ops.h"
|
||||
#include <gem5/asm/generic/m5ops.h>
|
||||
|
||||
#ifdef M5OP_ADDR
|
||||
.macro m5op_func, name, func, subfunc
|
||||
@@ -65,7 +65,7 @@
|
||||
|
||||
.text
|
||||
#define M5OP(name, func, subfunc) m5op_func name, func, subfunc
|
||||
FOREACH_M5OP
|
||||
M5OP_FOREACH
|
||||
|
||||
#define M5_ANNOTATION(name, ann) m5op_func name, annotate_func, ann
|
||||
FOREACH_M5_ANNOTATION
|
||||
#define M5_ANNOTATION(name, ann) m5op_func name, M5OP_ANNOTATE, ann
|
||||
M5OP_FOREACH_ANNOTATION
|
||||
|
||||
Reference in New Issue
Block a user