1 /* 2 * This file is part of cparser. 3 * Copyright (C) 2007-2010 Matthias Braun <matze@braunis.de> 4 * 5 * This program is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU General Public License 7 * as published by the Free Software Foundation; either version 2 8 * of the License, or (at your option) any later version. 9 * 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program; if not, write to the Free Software 17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 18 * 02111-1307, USA. 19 */ 20 #ifndef BUILTINS_H 21 #define BUILTINS_H 22 23 #include <stdbool.h> 24 25 typedef enum { 26 BUILTIN_NONE, 27 BUILTIN_ALLOCA, 28 BUILTIN_INF, 29 BUILTIN_NAN, 30 BUILTIN_EXPECT, 31 BUILTIN_VA_END, 32 BUILTIN_OBJECT_SIZE, 33 BUILTIN_ROTL, 34 BUILTIN_ROTR, 35 BUILTIN_LIBC, 36 BUILTIN_LIBC_CHECK, 37 BUILTIN_FIRM, 38 } builtin_kind_t; 39 40 /** 41 * Create predefined gnu builtins. 42 */ 43 void create_gnu_builtins(void); 44 45 /** 46 * Create predefined MS intrinsics. 47 */ 48 void create_microsoft_intrinsics(void); 49 50 /** 51 * Some functions like setjmp,longjmp are known from libc and need special 52 * attributes like noreturn or returns_twice. 53 * (Adding __attribute__(())s in the libc headers would be enough but apparently 54 * this is not done in most cases since people rely on a list of hardcoded 55 * names in gcc, so we have to duplicate this here) 56 */ 57 void adapt_special_functions(function_t *function); 58 59 #endif 60