perfmon: add membw-bound bundle
[vpp.git] / src / plugins / perfmon / CMakeLists.txt
index 30e1f2c..6b8e7c8 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (c) 2018 Cisco and/or its affiliates.
+# Copyright (c) 2020 Cisco and/or its affiliates.
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 # You may obtain a copy of the License at:
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+if(NOT CMAKE_SYSTEM_PROCESSOR MATCHES "amd64.*|x86_64.*|AMD64.*")
+  return()
+endif()
+
 add_vpp_plugin(perfmon
   SOURCES
+  cli.c
+  dispatch_wrapper.c
+  linux.c
   perfmon.c
-  perfmon_periodic.c
-  parse_util.c
+  table.c
+  intel/core.c
+  intel/uncore.c
+  intel/bundle/membw_bound.c
+  intel/bundle/inst_and_clock.c
+  intel/bundle/load_blocks.c
+  intel/bundle/mem_bw.c
+  intel/bundle/cache_hit_miss.c
+  intel/bundle/branch_mispred.c
+  intel/bundle/power_license.c
+  intel/bundle/topdown_metrics.c
 )
-
-# Reenable / extend when .json file license issue fixed
-#
-# set (PERFMON_JSON_FILES
-#  haswell_core_v28.json
-#  haswellx_core_v20.json
-#  ivybridge_core_v21.json
-#  ivytown_core_v20.json
-#  jaketown_core_v20.json
-#  sandybridge_core_v16.json
-#  skylake_core_v42.json
-#  skylakex_core_v1.12.json
-# )
-
-# install(
-#  FILES ${PERFMON_JSON_FILES}
-#  DESTINATION share/vpp/plugins/perfmon
-#  COMPONENT vpp-dev
-# )