aboutsummaryrefslogtreecommitdiff
path: root/arch/v1/arch_plots.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'arch/v1/arch_plots.cpp')
-rw-r--r--arch/v1/arch_plots.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/v1/arch_plots.cpp b/arch/v1/arch_plots.cpp
new file mode 100644
index 0000000..fb49816
--- /dev/null
+++ b/arch/v1/arch_plots.cpp
@@ -0,0 +1,18 @@
+std::array g_arch_traces = std::to_array<const char *>({
+#define FOR_CORE(i) \
+ "wmb0_" #i, \
+ "wmb1_" #i, \
+ "wdea_" #i,
+ FOR_CORES
+#undef FOR_CORE
+});
+
+std::array g_arch_plots = std::to_array<Plot>({
+ {"wevs", "general", {
+#define FOR_CORE(i) "wmb0_" #i, "wmb1_" #i, "wdea_" #i,
+ FOR_CORES
+#undef FOR_CORE
+ }},
+});
+
+#define ARCH_PLOT_COUNT g_arch_plots.size()