diff options
author | Andreas Sandberg <andreas.sandberg@arm.com> | 2017-01-03 12:03:45 +0000 |
---|---|---|
committer | Andreas Sandberg <andreas.sandberg@arm.com> | 2017-01-03 12:03:45 +0000 |
commit | c8b1e8f1cfdb5b66bacbbbd23dcf9ebb5a0f3b95 (patch) | |
tree | d5d367cc362881d9e00d2c881d86698549a735bd /src/python/swig | |
parent | abe7ef95cb89c68c6385162cb801bab8b27a585b (diff) | |
download | gem5-c8b1e8f1cfdb5b66bacbbbd23dcf9ebb5a0f3b95.tar.xz |
python: Don't use Swig to cast stats
Call the stat visitor from the stat itself rather than casting stats
in Python. This reduces the number of ways visitors are called.
Change-Id: Ic4d0b7b32e3ab9897b9a34cd22d353f4da62d738
Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com>
Reviewed-by: Sascha Bischoff <sascha.bischoff@arm.com>
Reviewed-by: Curtis Dunham <curtis.dunham@arm.com>
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Reviewed-by: Joe Gross <joseph.gross@amd.com>
Diffstat (limited to 'src/python/swig')
-rw-r--r-- | src/python/swig/stats.i | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/python/swig/stats.i b/src/python/swig/stats.i index 41115445c..b9da5a5ad 100644 --- a/src/python/swig/stats.i +++ b/src/python/swig/stats.i @@ -46,12 +46,6 @@ #include "sim/stat_register.hh" namespace Stats { -template <class T> -inline T -cast_info(Info *info) -{ - return dynamic_cast<T>(info); -} inline FlagsType Stats_Info_flags_get(Info *info) @@ -124,16 +118,6 @@ namespace std { namespace Stats { -template <class T> T cast_info(Info *info); - -%template(dynamic_ScalarInfo) cast_info<ScalarInfo *>; -%template(dynamic_VectorInfo) cast_info<VectorInfo *>; -%template(dynamic_DistInfo) cast_info<DistInfo *>; -%template(dynamic_VectorDistInfo) cast_info<VectorDistInfo *>; -%template(dynamic_Vector2dInfo) cast_info<Vector2dInfo *>; -%template(dynamic_FormulaInfo) cast_info<FormulaInfo *>; -%template(dynamic_SparseHistInfo) cast_info<SparseHistInfo *>; - void initSimStats(); Output *initText(const std::string &filename, bool desc); |