LCOV - code coverage report
Current view: top level - gcc - cppbuiltin.cc (source / functions) Coverage Total Hit
Test: gcc.info Lines: 98.0 % 98 96
Test Date: 2024-04-13 14:00:49 Functions: 100.0 % 6 6
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: - 0 0

             Branch data     Line data    Source code
       1                 :             : /* Define builtin-in macros for all front ends that perform preprocessing
       2                 :             :    Copyright (C) 2010-2024 Free Software Foundation, Inc.
       3                 :             : 
       4                 :             : This file is part of GCC.
       5                 :             : 
       6                 :             : GCC is free software; you can redistribute it and/or modify it under
       7                 :             : the terms of the GNU General Public License as published by the Free
       8                 :             : Software Foundation; either version 3, or (at your option) any later
       9                 :             : version.
      10                 :             : 
      11                 :             : GCC is distributed in the hope that it will be useful, but WITHOUT ANY
      12                 :             : WARRANTY; without even the implied warranty of MERCHANTABILITY or
      13                 :             : FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
      14                 :             : for more details.
      15                 :             : 
      16                 :             : You should have received a copy of the GNU General Public License
      17                 :             : along with GCC; see the file COPYING3.  If not see
      18                 :             : <http://www.gnu.org/licenses/>.  */
      19                 :             : 
      20                 :             : #include "config.h"
      21                 :             : #include "system.h"
      22                 :             : #include "coretypes.h"
      23                 :             : #include "memmodel.h"
      24                 :             : #include "target.h"
      25                 :             : #include "tree.h"
      26                 :             : #include "version.h"
      27                 :             : #include "flags.h"
      28                 :             : #include "cpplib.h"
      29                 :             : #include "cppbuiltin.h"
      30                 :             : 
      31                 :             : 
      32                 :             : /* Parse a BASEVER version string of the format "major.minor.patchlevel"
      33                 :             :    or "major.minor" to extract its components.  */
      34                 :             : void
      35                 :      307883 : parse_basever (int *major, int *minor, int *patchlevel)
      36                 :             : {
      37                 :      307883 :   static int s_major = -1, s_minor, s_patchlevel;
      38                 :             : 
      39                 :      307883 :   if (s_major == -1)
      40                 :      206951 :     if (sscanf (BASEVER, "%d.%d.%d", &s_major, &s_minor, &s_patchlevel) != 3)
      41                 :             :       {
      42                 :           0 :         sscanf (BASEVER, "%d.%d", &s_major, &s_minor);
      43                 :           0 :         s_patchlevel = 0;
      44                 :             :       }
      45                 :             : 
      46                 :      307883 :   if (major)
      47                 :      307883 :     *major = s_major;
      48                 :             : 
      49                 :      307883 :   if (minor)
      50                 :      206993 :     *minor = s_minor;
      51                 :             : 
      52                 :      307883 :   if (patchlevel)
      53                 :      206993 :     *patchlevel = s_patchlevel;
      54                 :      307883 : }
      55                 :             : 
      56                 :             : 
      57                 :             : /* Define __GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__ and __VERSION__.  */
      58                 :             : static void
      59                 :      206948 : define__GNUC__ (cpp_reader *pfile)
      60                 :             : {
      61                 :      206948 :   int major, minor, patchlevel;
      62                 :             : 
      63                 :      206948 :   parse_basever (&major, &minor, &patchlevel);
      64                 :      206948 :   cpp_define_formatted (pfile, "__GNUC__=%d", major);
      65                 :      206948 :   cpp_define_formatted (pfile, "__GNUC_MINOR__=%d", minor);
      66                 :      206948 :   cpp_define_formatted (pfile, "__GNUC_PATCHLEVEL__=%d", patchlevel);
      67                 :      206948 :   cpp_define_formatted (pfile, "__VERSION__=\"%s\"", version_string);
      68                 :      206948 :   cpp_define_formatted (pfile, "__ATOMIC_RELAXED=%d", MEMMODEL_RELAXED);
      69                 :      206948 :   cpp_define_formatted (pfile, "__ATOMIC_SEQ_CST=%d", MEMMODEL_SEQ_CST);
      70                 :      206948 :   cpp_define_formatted (pfile, "__ATOMIC_ACQUIRE=%d", MEMMODEL_ACQUIRE);
      71                 :      206948 :   cpp_define_formatted (pfile, "__ATOMIC_RELEASE=%d", MEMMODEL_RELEASE);
      72                 :      206948 :   cpp_define_formatted (pfile, "__ATOMIC_ACQ_REL=%d", MEMMODEL_ACQ_REL);
      73                 :      206948 :   cpp_define_formatted (pfile, "__ATOMIC_CONSUME=%d", MEMMODEL_CONSUME);
      74                 :      206948 : }
      75                 :             : 
      76                 :             : 
      77                 :             : /* Define various built-in CPP macros that depend on language-independent
      78                 :             :    compilation flags.  */
      79                 :             : static void
      80                 :      206948 : define_builtin_macros_for_compilation_flags (cpp_reader *pfile)
      81                 :             : {
      82                 :      206948 :   if (flag_pic)
      83                 :             :     {
      84                 :        6498 :       cpp_define_formatted (pfile, "__pic__=%d", flag_pic);
      85                 :        6498 :       cpp_define_formatted (pfile, "__PIC__=%d", flag_pic);
      86                 :             :     }
      87                 :      206948 :   if (flag_pie)
      88                 :             :     {
      89                 :         246 :       cpp_define_formatted (pfile, "__pie__=%d", flag_pie);
      90                 :         246 :       cpp_define_formatted (pfile, "__PIE__=%d", flag_pie);
      91                 :             :     }
      92                 :             : 
      93                 :      206948 :   if (flag_sanitize & SANITIZE_ADDRESS)
      94                 :        2286 :     cpp_define (pfile, "__SANITIZE_ADDRESS__");
      95                 :             : 
      96                 :      206948 :   if (flag_sanitize & SANITIZE_HWADDRESS)
      97                 :         386 :     cpp_define (pfile, "__SANITIZE_HWADDRESS__");
      98                 :             : 
      99                 :      206948 :   if (flag_sanitize & SANITIZE_THREAD)
     100                 :         376 :     cpp_define (pfile, "__SANITIZE_THREAD__");
     101                 :             : 
     102                 :      206948 :   if (optimize_size)
     103                 :        8726 :     cpp_define (pfile, "__OPTIMIZE_SIZE__");
     104                 :      206948 :   if (optimize)
     105                 :      109299 :     cpp_define (pfile, "__OPTIMIZE__");
     106                 :             : 
     107                 :      206948 :   if (fast_math_flags_set_p (&global_options))
     108                 :        1368 :     cpp_define (pfile, "__FAST_MATH__");
     109                 :      206948 :   if (flag_signaling_nans)
     110                 :         293 :     cpp_define (pfile, "__SUPPORT_SNAN__");
     111                 :      206948 :   if (!flag_errno_math)
     112                 :        2546 :     cpp_define (pfile, "__NO_MATH_ERRNO__");
     113                 :      206948 :   if (flag_reciprocal_math)
     114                 :        1440 :     cpp_define (pfile, "__RECIPROCAL_MATH__");
     115                 :      206948 :   if (!flag_signed_zeros)
     116                 :        1457 :     cpp_define (pfile, "__NO_SIGNED_ZEROS__");
     117                 :      206948 :   if (!flag_trapping_math)
     118                 :        1495 :     cpp_define (pfile, "__NO_TRAPPING_MATH__");
     119                 :      206948 :   if (flag_associative_math)
     120                 :        1407 :     cpp_define (pfile, "__ASSOCIATIVE_MATH__");
     121                 :      206948 :   if (flag_rounding_math)
     122                 :         178 :     cpp_define (pfile, "__ROUNDING_MATH__");
     123                 :             : 
     124                 :      206948 :   cpp_define_formatted (pfile, "__FINITE_MATH_ONLY__=%d",
     125                 :             :                         flag_finite_math_only);
     126                 :      206948 : }
     127                 :             : 
     128                 :             : 
     129                 :             : /* Define built-in macros for LP64 targets. */
     130                 :             : static void
     131                 :      206948 : define_builtin_macros_for_lp64 (cpp_reader *pfile)
     132                 :             : {
     133                 :      206948 :   if (TYPE_PRECISION (long_integer_type_node) == 64
     134                 :      201439 :       && POINTER_SIZE == 64
     135                 :      408387 :       && TYPE_PRECISION (integer_type_node) == 32)
     136                 :             :     {
     137                 :      201439 :       cpp_define (pfile, "_LP64");
     138                 :      201439 :       cpp_define (pfile, "__LP64__");
     139                 :             :     }
     140                 :      206948 : }
     141                 :             : 
     142                 :             : 
     143                 :             : /* Define macros for size of basic C types.  */
     144                 :             : static void
     145                 :      206948 : define_builtin_macros_for_type_sizes (cpp_reader *pfile)
     146                 :             : {
     147                 :             : #define define_type_sizeof(NAME, TYPE)                             \
     148                 :             :     cpp_define_formatted (pfile, NAME"=" HOST_WIDE_INT_PRINT_DEC,   \
     149                 :             :                           tree_to_uhwi (TYPE_SIZE_UNIT (TYPE)))
     150                 :             : 
     151                 :      206948 :   define_type_sizeof ("__SIZEOF_INT__", integer_type_node);
     152                 :      206948 :   define_type_sizeof ("__SIZEOF_LONG__", long_integer_type_node);
     153                 :      206948 :   define_type_sizeof ("__SIZEOF_LONG_LONG__", long_long_integer_type_node);
     154                 :      206948 :   define_type_sizeof ("__SIZEOF_SHORT__", short_integer_type_node);
     155                 :      206948 :   define_type_sizeof ("__SIZEOF_FLOAT__", float_type_node);
     156                 :      206948 :   define_type_sizeof ("__SIZEOF_DOUBLE__", double_type_node);
     157                 :      206948 :   define_type_sizeof ("__SIZEOF_LONG_DOUBLE__", long_double_type_node);
     158                 :      206948 :   define_type_sizeof ("__SIZEOF_SIZE_T__", size_type_node);
     159                 :             : 
     160                 :             : #undef define_type_sizeof
     161                 :             : 
     162                 :      413896 :   cpp_define_formatted (pfile, "__CHAR_BIT__=%u",
     163                 :      206948 :                         TYPE_PRECISION (char_type_node));
     164                 :      206948 :   cpp_define_formatted (pfile, "__BIGGEST_ALIGNMENT__=%d",
     165                 :      206948 :                         BIGGEST_ALIGNMENT / BITS_PER_UNIT);
     166                 :             : 
     167                 :             :   /* Define constants useful for implementing endian.h.  */
     168                 :      206948 :   cpp_define (pfile, "__ORDER_LITTLE_ENDIAN__=1234");
     169                 :      206948 :   cpp_define (pfile, "__ORDER_BIG_ENDIAN__=4321");
     170                 :      206948 :   cpp_define (pfile, "__ORDER_PDP_ENDIAN__=3412");
     171                 :             : 
     172                 :      206948 :   if (WORDS_BIG_ENDIAN == BYTES_BIG_ENDIAN)
     173                 :      206948 :     cpp_define_formatted (pfile, "__BYTE_ORDER__=%s",
     174                 :             :                           (WORDS_BIG_ENDIAN
     175                 :             :                            ? "__ORDER_BIG_ENDIAN__"
     176                 :             :                            : "__ORDER_LITTLE_ENDIAN__"));
     177                 :             :   else
     178                 :             :     {
     179                 :             :       /* Assert that we're only dealing with the PDP11 case.  */
     180                 :             :       gcc_assert (!BYTES_BIG_ENDIAN);
     181                 :             :       gcc_assert (WORDS_BIG_ENDIAN);
     182                 :             : 
     183                 :             :       cpp_define (pfile, "__BYTE_ORDER__=__ORDER_PDP_ENDIAN__");
     184                 :             :     }
     185                 :             : 
     186                 :      413896 :   cpp_define_formatted (pfile, "__FLOAT_WORD_ORDER__=%s",
     187                 :      206948 :                         (targetm.float_words_big_endian ()
     188                 :             :                          ? "__ORDER_BIG_ENDIAN__"
     189                 :             :                          : "__ORDER_LITTLE_ENDIAN__"));
     190                 :             : 
     191                 :             :   /* ptr_type_node can't be used here since ptr_mode is only set when
     192                 :             :      toplev calls backend_init which is not done with -E switch.  */
     193                 :      206948 :   cpp_define_formatted (pfile, "__SIZEOF_POINTER__=%d",
     194                 :      206948 :                         1 << ceil_log2 ((POINTER_SIZE + BITS_PER_UNIT - 1) / BITS_PER_UNIT));
     195                 :      206948 : }
     196                 :             : 
     197                 :             : 
     198                 :             : /* Define macros builtins common to all language performing CPP
     199                 :             :    preprocessing.  */
     200                 :             : void
     201                 :      206948 : define_language_independent_builtin_macros (cpp_reader *pfile)
     202                 :             : {
     203                 :      206948 :   define__GNUC__ (pfile);
     204                 :      206948 :   define_builtin_macros_for_compilation_flags (pfile);
     205                 :      206948 :   define_builtin_macros_for_lp64 (pfile);
     206                 :      206948 :   define_builtin_macros_for_type_sizes (pfile);
     207                 :      206948 : }
        

Generated by: LCOV version 2.1-beta

LCOV profile is generated on x86_64 machine using following configure options: configure --disable-bootstrap --enable-coverage=opt --enable-languages=c,c++,fortran,go,jit,lto,rust,m2 --enable-host-shared. GCC test suite is run with the built compiler.