cyc_complexity_plugin.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * Copyright 2011-2016 by Emese Revfy <[email protected]>
  3. * Licensed under the GPL v2, or (at your option) v3
  4. *
  5. * Homepage:
  6. * https://github.com/ephox-gcc-plugins/cyclomatic_complexity
  7. *
  8. * http://en.wikipedia.org/wiki/Cyclomatic_complexity
  9. * The complexity M is then defined as:
  10. * M = E - N + 2P
  11. * where
  12. *
  13. * E = the number of edges of the graph
  14. * N = the number of nodes of the graph
  15. * P = the number of connected components (exit nodes).
  16. *
  17. * Usage (4.5 - 5):
  18. * $ make clean; make run
  19. */
  20. #include "gcc-common.h"
  21. __visible int plugin_is_GPL_compatible;
  22. static struct plugin_info cyc_complexity_plugin_info = {
  23. .version = "20160225",
  24. .help = "Cyclomatic Complexity\n",
  25. };
  26. static unsigned int cyc_complexity_execute(void)
  27. {
  28. int complexity;
  29. expanded_location xloc;
  30. /* M = E - N + 2P */
  31. complexity = n_edges_for_fn(cfun) - n_basic_blocks_for_fn(cfun) + 2;
  32. xloc = expand_location(DECL_SOURCE_LOCATION(current_function_decl));
  33. fprintf(stderr, "Cyclomatic Complexity %d %s:%s\n", complexity,
  34. xloc.file, DECL_NAME_POINTER(current_function_decl));
  35. return 0;
  36. }
  37. #define PASS_NAME cyc_complexity
  38. #define NO_GATE
  39. #define TODO_FLAGS_FINISH TODO_dump_func
  40. #include "gcc-generate-gimple-pass.h"
  41. __visible int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gcc_version *version)
  42. {
  43. const char * const plugin_name = plugin_info->base_name;
  44. struct register_pass_info cyc_complexity_pass_info;
  45. cyc_complexity_pass_info.pass = make_cyc_complexity_pass();
  46. cyc_complexity_pass_info.reference_pass_name = "ssa";
  47. cyc_complexity_pass_info.ref_pass_instance_number = 1;
  48. cyc_complexity_pass_info.pos_op = PASS_POS_INSERT_AFTER;
  49. if (!plugin_default_version_check(version, &gcc_version)) {
  50. error(G_("incompatible gcc/plugin versions"));
  51. return 1;
  52. }
  53. register_callback(plugin_name, PLUGIN_INFO, NULL,
  54. &cyc_complexity_plugin_info);
  55. register_callback(plugin_name, PLUGIN_PASS_MANAGER_SETUP, NULL,
  56. &cyc_complexity_pass_info);
  57. return 0;
  58. }