gcc-plugin.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* Public header file for plugins to include.
  2. Copyright (C) 2009-2019 Free Software Foundation, Inc.
  3. This file is part of GCC.
  4. GCC is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 3, or (at your option)
  7. any later version.
  8. GCC is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GCC; see the file COPYING3. If not see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef GCC_PLUGIN_H
  16. #define GCC_PLUGIN_H
  17. #ifndef IN_GCC
  18. #define IN_GCC
  19. #endif
  20. #include "config.h"
  21. #include "system.h"
  22. #include "coretypes.h"
  23. #include "backend.h"
  24. #include "cfghooks.h"
  25. #include "hard-reg-set.h"
  26. #include "cfgrtl.h"
  27. #include "cfganal.h"
  28. #include "lcm.h"
  29. #include "cfgbuild.h"
  30. #include "cfgcleanup.h"
  31. #include "plugin-api.h"
  32. #include "ipa-ref.h"
  33. #include "alias.h"
  34. #include "flags.h"
  35. #include "tree-core.h"
  36. #include "fold-const.h"
  37. #include "tree-check.h"
  38. #include "plugin.h"
  39. #endif /* GCC_PLUGIN_H */