gimple-streamer.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* Data structures and functions for streaming GIMPLE.
  2. Copyright (C) 2011-2015 Free Software Foundation, Inc.
  3. Contributed by Diego Novillo <dnovillo@google.com>
  4. This file is part of GCC.
  5. GCC is free software; you can redistribute it and/or modify it under
  6. the terms of the GNU General Public License as published by the Free
  7. Software Foundation; either version 3, or (at your option) any later
  8. version.
  9. GCC is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  12. for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with GCC; see the file COPYING3. If not see
  15. <http://www.gnu.org/licenses/>. */
  16. #ifndef GCC_GIMPLE_STREAMER_H
  17. #define GCC_GIMPLE_STREAMER_H
  18. #include "hashtab.h"
  19. #include "hash-set.h"
  20. #include "vec.h"
  21. #include "machmode.h"
  22. #include "tm.h"
  23. #include "hard-reg-set.h"
  24. #include "input.h"
  25. #include "function.h"
  26. #include "lto-streamer.h"
  27. /* In gimple-streamer-in.c */
  28. void input_bb (struct lto_input_block *, enum LTO_tags, struct data_in *,
  29. struct function *, int);
  30. /* In gimple-streamer-out.c */
  31. void output_bb (struct output_block *, basic_block, struct function *);
  32. #endif /* GCC_GIMPLE_STREAMER_H */