| /src/external/gpl3/gcc/dist/gcc/ |
| cppbuiltin.cc | 59 define__GNUC__ (cpp_reader *pfile) 64 cpp_define_formatted (pfile, "__GNUC__=%d", major); 65 cpp_define_formatted (pfile, "__GNUC_MINOR__=%d", minor); 66 cpp_define_formatted (pfile, "__GNUC_PATCHLEVEL__=%d", patchlevel); 67 cpp_define_formatted (pfile, "__VERSION__=\"%s\"", version_string); 68 cpp_define_formatted (pfile, "__ATOMIC_RELAXED=%d", MEMMODEL_RELAXED); 69 cpp_define_formatted (pfile, "__ATOMIC_SEQ_CST=%d", MEMMODEL_SEQ_CST); 70 cpp_define_formatted (pfile, "__ATOMIC_ACQUIRE=%d", MEMMODEL_ACQUIRE); 71 cpp_define_formatted (pfile, "__ATOMIC_RELEASE=%d", MEMMODEL_RELEASE); 72 cpp_define_formatted (pfile, "__ATOMIC_ACQ_REL=%d", MEMMODEL_ACQ_REL) [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| cppbuiltin.cc | 59 define__GNUC__ (cpp_reader *pfile) 64 cpp_define_formatted (pfile, "__GNUC__=%d", major); 65 cpp_define_formatted (pfile, "__GNUC_MINOR__=%d", minor); 66 cpp_define_formatted (pfile, "__GNUC_PATCHLEVEL__=%d", patchlevel); 67 cpp_define_formatted (pfile, "__VERSION__=\"%s\"", version_string); 68 cpp_define_formatted (pfile, "__ATOMIC_RELAXED=%d", MEMMODEL_RELAXED); 69 cpp_define_formatted (pfile, "__ATOMIC_SEQ_CST=%d", MEMMODEL_SEQ_CST); 70 cpp_define_formatted (pfile, "__ATOMIC_ACQUIRE=%d", MEMMODEL_ACQUIRE); 71 cpp_define_formatted (pfile, "__ATOMIC_RELEASE=%d", MEMMODEL_RELEASE); 72 cpp_define_formatted (pfile, "__ATOMIC_ACQ_REL=%d", MEMMODEL_ACQ_REL) [all...] |
| /src/external/gpl3/gcc.old/dist/libcpp/ |
| init.cc | 131 cpp_set_lang (cpp_reader *pfile, enum c_lang lang) 135 CPP_OPTION (pfile, lang) = lang; 137 CPP_OPTION (pfile, c99) = l->c99; 138 CPP_OPTION (pfile, cplusplus) = l->cplusplus; 139 CPP_OPTION (pfile, extended_numbers) = l->extended_numbers; 140 CPP_OPTION (pfile, extended_identifiers) = l->extended_identifiers; 141 CPP_OPTION (pfile, c11_identifiers) = l->c11_identifiers; 142 CPP_OPTION (pfile, std) = l->std; 143 CPP_OPTION (pfile, digraphs) = l->digraphs; 144 CPP_OPTION (pfile, uliterals) = l->uliterals 186 cpp_reader *pfile; local [all...] |
| identifiers.cc | 39 node = XOBNEW (&table->pfile->hash_ob, cpp_hashnode); 47 _cpp_init_hashtable (cpp_reader *pfile, cpp_hash_table *table) 53 pfile->our_hashtable = 1; 57 obstack_specify_allocation (&pfile->hash_ob, 0, 0, xmalloc, free); 60 table->pfile = pfile; 61 pfile->hash_table = table; 64 _cpp_init_directives (pfile); 65 _cpp_init_internal_pragmas (pfile); 67 s = &pfile->spec_nodes [all...] |
| directives.cc | 217 skip_rest_of_line (cpp_reader *pfile) 220 while (pfile->context->prev) 221 _cpp_pop_context (pfile); 225 while (_cpp_lex_token (pfile)->type != CPP_EOF) 232 check_eol_1 (cpp_reader *pfile, bool expand, enum cpp_warning_reason reason) 235 ? cpp_get_token (pfile) 236 : _cpp_lex_token (pfile))->type != CPP_EOF) 237 cpp_pedwarning (pfile, reason, "extra tokens at end of #%s directive", 238 pfile->directive->name); 244 check_eol_endif_labels (cpp_reader *pfile) [all...] |
| traditional.cc | 103 check_output_buffer (cpp_reader *pfile, size_t n) 109 if (n > (size_t) (pfile->out.limit - pfile->out.cur)) 111 size_t size = pfile->out.cur - pfile->out.base; 114 pfile->out.base = XRESIZEVEC (unsigned char, pfile->out.base, new_size); 115 pfile->out.limit = pfile->out.base + new_size; 116 pfile->out.cur = pfile->out.base + size [all...] |
| errors.cc | 30 /* Get a location_t for the current location in PFILE, 34 cpp_diagnostic_get_current_location (cpp_reader *pfile) 36 if (CPP_OPTION (pfile, traditional)) 38 if (pfile->state.in_directive) 39 return pfile->directive_line; 41 return pfile->line_table->highest_line; 45 else if (pfile->cur_token == pfile->cur_run->base) 51 return pfile->cur_token[-1].src_loc; 59 cpp_diagnostic_at (cpp_reader * pfile, enum cpp_diagnostic_level level [all...] |
| files.cc | 171 static bool pch_open_file (cpp_reader *pfile, _cpp_file *file, 173 static bool find_file_in_dir (cpp_reader *pfile, _cpp_file *file, 175 static bool read_file_guts (cpp_reader *pfile, _cpp_file *file, 177 static bool read_file (cpp_reader *pfile, _cpp_file *file, 182 static void open_file_failed (cpp_reader *pfile, _cpp_file *file, int, 189 static void allocate_file_hash_entries (cpp_reader *pfile); 190 static struct cpp_file_hash_entry *new_file_hash_entry (cpp_reader *pfile); 196 static char *remap_filename (cpp_reader *pfile, _cpp_file *file); 289 validity using PFILE->cb.valid_pch. Return true iff a valid file is 293 pch_open_file (cpp_reader *pfile, _cpp_file *file, bool *invalid_pch 1525 cpp_reader *pfile; member in struct:report_missing_guard_data [all...] |
| /src/external/gpl3/gcc/dist/libcpp/ |
| identifiers.cc | 36 const auto node = XOBNEW (&table->pfile->hash_ob, Node); 44 _cpp_init_hashtable (cpp_reader *pfile, cpp_hash_table *table, 51 pfile->our_hashtable = 1; 58 pfile->our_extra_hashtable = true; 63 if (pfile->our_hashtable || pfile->our_extra_hashtable) 64 obstack_specify_allocation (&pfile->hash_ob, 0, 0, xmalloc, free); 66 table->pfile = pfile; 67 extra_table->pfile = pfile [all...] |
| init.cc | 137 cpp_set_lang (cpp_reader *pfile, enum c_lang lang) 141 CPP_OPTION (pfile, lang) = lang; 143 CPP_OPTION (pfile, c99) = l->c99; 144 CPP_OPTION (pfile, cplusplus) = l->cplusplus; 145 CPP_OPTION (pfile, extended_numbers) = l->extended_numbers; 146 CPP_OPTION (pfile, extended_identifiers) = l->extended_identifiers; 147 CPP_OPTION (pfile, c11_identifiers) = l->c11_identifiers; 148 CPP_OPTION (pfile, xid_identifiers) = l->xid_identifiers; 149 CPP_OPTION (pfile, std) = l->std; 150 CPP_OPTION (pfile, digraphs) = l->digraphs 196 cpp_reader *pfile; local [all...] |
| directives.cc | 217 skip_rest_of_line (cpp_reader *pfile) 220 while (pfile->context->prev) 221 _cpp_pop_context (pfile); 225 while (_cpp_lex_token (pfile)->type != CPP_EOF) 232 check_eol_1 (cpp_reader *pfile, bool expand, enum cpp_warning_reason reason) 235 ? cpp_get_token (pfile) 236 : _cpp_lex_token (pfile))->type != CPP_EOF) 237 cpp_pedwarning (pfile, reason, "extra tokens at end of #%s directive", 238 pfile->directive->name); 244 check_eol_endif_labels (cpp_reader *pfile) [all...] |
| traditional.cc | 103 check_output_buffer (cpp_reader *pfile, size_t n) 109 if (n > (size_t) (pfile->out.limit - pfile->out.cur)) 111 size_t size = pfile->out.cur - pfile->out.base; 114 pfile->out.base = XRESIZEVEC (unsigned char, pfile->out.base, new_size); 115 pfile->out.limit = pfile->out.base + new_size; 116 pfile->out.cur = pfile->out.base + size [all...] |
| errors.cc | 30 /* Get a location_t for the current location in PFILE, 34 cpp_diagnostic_get_current_location (cpp_reader *pfile) 36 if (CPP_OPTION (pfile, traditional)) 38 if (pfile->state.in_directive) 39 return pfile->directive_line; 41 return pfile->line_table->highest_line; 45 else if (pfile->cur_token == pfile->cur_run->base) 51 return pfile->cur_token[-1].src_loc; 59 cpp_diagnostic_at (cpp_reader * pfile, enum cpp_diagnostic_level level [all...] |
| files.cc | 175 static bool pch_open_file (cpp_reader *pfile, _cpp_file *file, 177 static bool find_file_in_dir (cpp_reader *pfile, _cpp_file *file, 179 static bool read_file_guts (cpp_reader *pfile, _cpp_file *file, 181 static bool read_file (cpp_reader *pfile, _cpp_file *file, 187 static void open_file_failed (cpp_reader *pfile, _cpp_file *file, int, 194 static void allocate_file_hash_entries (cpp_reader *pfile); 195 static struct cpp_file_hash_entry *new_file_hash_entry (cpp_reader *pfile); 201 static char *remap_filename (cpp_reader *pfile, _cpp_file *file); 294 validity using PFILE->cb.valid_pch. Return true iff a valid file is 298 pch_open_file (cpp_reader *pfile, _cpp_file *file, bool *invalid_pch 1547 cpp_reader *pfile; member in struct:report_missing_guard_data [all...] |
| lex.cc | 939 _cpp_clean_line (cpp_reader *pfile) 945 buffer = pfile->buffer; 977 if (CPP_OPTION (pfile, trigraphs)) 1054 if (CPP_OPTION (pfile, trigraphs)) 1081 static bool get_fresh_line_impl (cpp_reader *pfile); 1086 warn_in_comment (cpp_reader *pfile, _cpp_line_note *note) 1098 if (CPP_OPTION (pfile, trigraphs)) 1114 _cpp_process_line_notes (cpp_reader *pfile, int in_comment) 1116 cpp_buffer *buffer = pfile->buffer; 1132 cpp_error_with_line (pfile, CPP_DL_WARNING, pfile->line_table->highest_line, col [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/config/aarch64/ |
| aarch64-c.cc | 37 #define builtin_define(TXT) cpp_define (pfile, TXT) 38 #define builtin_assert(TXT) cpp_assert (pfile, TXT) 42 aarch64_def_or_undef (bool def_p, const char *macro, cpp_reader *pfile) 45 cpp_define (pfile, macro); 47 cpp_undef (pfile, macro); 53 aarch64_define_unconditional_macros (cpp_reader *pfile) 81 aarch64_update_cpp_builtins (cpp_reader *pfile) 83 aarch64_def_or_undef (flag_unsafe_math_optimizations, "__ARM_FP_FAST", pfile); 89 aarch64_def_or_undef (TARGET_BIG_END, "__AARCH64EB__", pfile); 90 aarch64_def_or_undef (TARGET_BIG_END, "__ARM_BIG_ENDIAN", pfile); 183 "__ARM_FEATURE_BTI_DEFAULT", pfile); local [all...] |
| /src/external/gpl3/gcc/dist/gcc/config/arc/ |
| arc-c.cc | 33 #define builtin_define(TXT) cpp_define (pfile, TXT) 34 #define builtin_assert(TXT) cpp_assert (pfile, TXT) 39 def_or_undef_macro (cpp_reader* pfile, const char *name, bool def_p) 42 cpp_define (pfile, name); 44 cpp_undef (pfile, name); 50 arc_cpu_cpp_builtins (cpp_reader * pfile) 59 def_or_undef_macro (pfile, NAME, CONDITION);
|
| /src/external/gpl3/gcc.old/dist/gcc/config/arc/ |
| arc-c.cc | 33 #define builtin_define(TXT) cpp_define (pfile, TXT) 34 #define builtin_assert(TXT) cpp_assert (pfile, TXT) 39 def_or_undef_macro (cpp_reader* pfile, const char *name, bool def_p) 42 cpp_define (pfile, name); 44 cpp_undef (pfile, name); 50 arc_cpu_cpp_builtins (cpp_reader * pfile) 59 def_or_undef_macro (pfile, NAME, CONDITION);
|
| /src/external/gpl3/gcc/dist/gcc/config/aarch64/ |
| aarch64-c.cc | 37 #define builtin_define(TXT) cpp_define (pfile, TXT) 38 #define builtin_assert(TXT) cpp_assert (pfile, TXT) 42 aarch64_def_or_undef (bool def_p, const char *macro, cpp_reader *pfile) 45 cpp_define (pfile, macro); 47 cpp_undef (pfile, macro); 53 aarch64_define_unconditional_macros (cpp_reader *pfile) 130 aarch64_update_cpp_builtins (cpp_reader *pfile) 132 aarch64_def_or_undef (flag_unsafe_math_optimizations, "__ARM_FP_FAST", pfile); 134 cpp_undef (pfile, "__ARM_ARCH"); 139 aarch64_def_or_undef (TARGET_BIG_END, "__AARCH64EB__", pfile); 233 "__ARM_FEATURE_BTI_DEFAULT", pfile); local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/config/tilegx/ |
| tilegx-c.cc | 30 # define builtin_define(TXT) cpp_define (pfile, TXT) 31 # define builtin_assert(TXT) cpp_assert (pfile, TXT) 36 tilegx_cpu_cpp_builtins (struct cpp_reader *pfile)
|
| /src/external/gpl3/gcc.old/dist/gcc/config/tilepro/ |
| tilepro-c.cc | 30 # define builtin_define(TXT) cpp_define (pfile, TXT) 31 # define builtin_assert(TXT) cpp_assert (pfile, TXT) 36 tilepro_cpu_cpp_builtins (struct cpp_reader *pfile)
|
| /src/external/gpl3/gcc/dist/gcc/config/arm/ |
| arm-c.cc | 207 #define builtin_define(TXT) cpp_define (pfile, TXT) 208 #define builtin_assert(TXT) cpp_assert (pfile, TXT) 214 def_or_undef_macro(struct cpp_reader* pfile, const char *name, bool def_p) 217 cpp_define (pfile, name); 219 cpp_undef (pfile, name); 223 arm_cpu_builtins (struct cpp_reader* pfile) 225 def_or_undef_macro (pfile, "__ARM_FEATURE_DSP", TARGET_DSP_MULTIPLY); 226 def_or_undef_macro (pfile, "__ARM_FEATURE_QBIT", TARGET_ARM_QBIT); 227 def_or_undef_macro (pfile, "__ARM_FEATURE_SAT", TARGET_ARM_SAT); 228 def_or_undef_macro (pfile, "__ARM_FEATURE_CRYPTO", TARGET_CRYPTO) [all...] |
| /src/external/gpl3/gcc/dist/gcc/config/avr/ |
| avr-c.cc | 293 avr_cpu_cpp_builtins (struct cpp_reader *pfile) 301 cpp_define_formatted (pfile, "__AVR_ARCH__=%s", avr_arch->macro); 302 if (AVR_HAVE_RAMPD) cpp_define (pfile, "__AVR_HAVE_RAMPD__"); 303 if (AVR_HAVE_RAMPX) cpp_define (pfile, "__AVR_HAVE_RAMPX__"); 304 if (AVR_HAVE_RAMPY) cpp_define (pfile, "__AVR_HAVE_RAMPY__"); 305 if (AVR_HAVE_RAMPZ) cpp_define (pfile, "__AVR_HAVE_RAMPZ__"); 306 if (AVR_HAVE_ELPM) cpp_define (pfile, "__AVR_HAVE_ELPM__"); 307 if (AVR_HAVE_ELPMX) cpp_define (pfile, "__AVR_HAVE_ELPMX__"); 308 if (AVR_HAVE_MOVW) cpp_define (pfile, "__AVR_HAVE_MOVW__"); 309 if (AVR_HAVE_LPMX) cpp_define (pfile, "__AVR_HAVE_LPMX__") [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/config/arm/ |
| arm-c.cc | 183 #define builtin_define(TXT) cpp_define (pfile, TXT) 184 #define builtin_assert(TXT) cpp_assert (pfile, TXT) 190 def_or_undef_macro(struct cpp_reader* pfile, const char *name, bool def_p) 193 cpp_define (pfile, name); 195 cpp_undef (pfile, name); 199 arm_cpu_builtins (struct cpp_reader* pfile) 201 def_or_undef_macro (pfile, "__ARM_FEATURE_DSP", TARGET_DSP_MULTIPLY); 202 def_or_undef_macro (pfile, "__ARM_FEATURE_QBIT", TARGET_ARM_QBIT); 203 def_or_undef_macro (pfile, "__ARM_FEATURE_SAT", TARGET_ARM_SAT); 204 def_or_undef_macro (pfile, "__ARM_FEATURE_CRYPTO", TARGET_CRYPTO) [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/config/avr/ |
| avr-c.cc | 293 avr_cpu_cpp_builtins (struct cpp_reader *pfile) 301 cpp_define_formatted (pfile, "__AVR_ARCH__=%s", avr_arch->macro); 302 if (AVR_HAVE_RAMPD) cpp_define (pfile, "__AVR_HAVE_RAMPD__"); 303 if (AVR_HAVE_RAMPX) cpp_define (pfile, "__AVR_HAVE_RAMPX__"); 304 if (AVR_HAVE_RAMPY) cpp_define (pfile, "__AVR_HAVE_RAMPY__"); 305 if (AVR_HAVE_RAMPZ) cpp_define (pfile, "__AVR_HAVE_RAMPZ__"); 306 if (AVR_HAVE_ELPM) cpp_define (pfile, "__AVR_HAVE_ELPM__"); 307 if (AVR_HAVE_ELPMX) cpp_define (pfile, "__AVR_HAVE_ELPMX__"); 308 if (AVR_HAVE_MOVW) cpp_define (pfile, "__AVR_HAVE_MOVW__"); 309 if (AVR_HAVE_LPMX) cpp_define (pfile, "__AVR_HAVE_LPMX__") [all...] |