11debfc3dSmrg /* Declarations for tree-object-size.c. 2*8feb0f0bSmrg Copyright (C) 2013-2020 Free Software Foundation, Inc. 31debfc3dSmrg 41debfc3dSmrg This file is part of GCC. 51debfc3dSmrg 61debfc3dSmrg GCC is free software; you can redistribute it and/or modify 71debfc3dSmrg it under the terms of the GNU General Public License as published by 81debfc3dSmrg the Free Software Foundation; either version 3, or (at your option) 91debfc3dSmrg any later version. 101debfc3dSmrg 111debfc3dSmrg GCC is distributed in the hope that it will be useful, 121debfc3dSmrg but WITHOUT ANY WARRANTY; without even the implied warranty of 131debfc3dSmrg MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 141debfc3dSmrg GNU General Public License for more details. 151debfc3dSmrg 161debfc3dSmrg You should have received a copy of the GNU General Public License 171debfc3dSmrg along with GCC; see the file COPYING3. If not see 181debfc3dSmrg <http://www.gnu.org/licenses/>. */ 191debfc3dSmrg 201debfc3dSmrg #ifndef GCC_TREE_OBJECT_SIZE_H 211debfc3dSmrg #define GCC_TREE_OBJECT_SIZE_H 221debfc3dSmrg 231debfc3dSmrg extern void init_object_sizes (void); 241debfc3dSmrg extern void fini_object_sizes (void); 25*8feb0f0bSmrg extern bool compute_builtin_object_size (tree, int, unsigned HOST_WIDE_INT *, 26*8feb0f0bSmrg tree * = NULL, tree * = NULL); 271debfc3dSmrg 281debfc3dSmrg #endif // GCC_TREE_OBJECT_SIZE_H 29