aboutsummaryrefslogtreecommitdiff
path: root/gcc/lto-tree-tags.def
blob: e66179b1831c78a46af7ecb8da7fb6bdcd87960a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
/* Declarations and definitions of codes relating to the 
   encoding of gimple into the object files.

   Copyright (C) 2006 Free Software Foundation, Inc.
   Contributed by Kenneth Zadeck <zadeck@naturalbridge.com>

   This file is part of GCC.

   GCC is free software; you can redistribute it and/or modify it under
   the terms of the GNU General Public License as published by the Free
   Software Foundation; either version 2, or (at your option) any later
   version.

   GCC is distributed in the hope that it will be useful, but WITHOUT
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
   License for more details.

   You should have received a copy of the GNU General Public License
   along with GCC; see the file COPYING.  If not, write to the Free
   Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
   02110-1301, USA.  */

/* All of the tree codes can be divided into four groups:

   1) Those that do not occur at lto generation and reading time.
      These are not listed here, they are simply hit as the default
      case in several case statements.  

   2) The tree codes whose portable form can completely mechanically
      derived from the various tables within the compiler.  These tags
      are in the block controlled by the preprocessor symbol
      TREE_SINGLE_MECHANICAL_TRUE.

   3) The tree codes whose portable form cannot be generated from the 
      tables but still have only a single variation.  These tags are
      in the block controlled by TREE_SINGLE_MECHANICAL_FALSE.

   4) The tree codes where there are multiple lto records for a
      single tree form.  These not only cannot be generated
      mechanically but there is a many to one mapping from the lto
      record type to the tree code.  These tags are
      in the block controlled by TREE_MULTIPLE.

   This file is used to generate case labels for the
   TREE_SINGLE_MECHANICAL_TRUE class and the lto record to tree_code
   for TREE_MULTIPLE for TREE_SINGLE_MECHANICAL_TRUE and
   TREE_SINGLE_MECHANICAL_FALSE classes.

   The tree code to lto record mapping can be generated for
   TREE_SINGLE_MECHANICAL_TRUE and TREE_SINGLE_MECHANICAL_FALSE
   classes.  */

#ifdef TREE_MULTIPLE
  MAP_EXPR_TAGS(BIT_FIELD_REF, LTO_bit_field_ref0, 2)
  MAP_EXPR_TAGS(CALL_EXPR, LTO_call_expr0, 2)
  MAP_EXPR_TAGS(CASE_LABEL_EXPR, LTO_case_label_expr0, 4)
  MAP_EXPR_TAGS(COND_EXPR, LTO_cond_expr0, 2)
  MAP_EXPR_TAGS(COMPLEX_CST, LTO_complex_cst0, 2)
  MAP_EXPR_TAGS(RETURN_EXPR, LTO_return_expr0, 3)
  MAP_EXPR_TAGS(VAR_DECL, LTO_var_decl0, 2)
  MAP_EXPR_TAGS(VECTOR_CST, LTO_vector_cst0, 2)
#endif

#ifdef TREE_SINGLE_MECHANICAL_FALSE
  MAP_EXPR_TAG(ARRAY_RANGE_REF, LTO_array_range_ref)
  MAP_EXPR_TAG(ARRAY_REF, LTO_array_ref)
  MAP_EXPR_TAG(ASM_EXPR, LTO_asm_expr)
  MAP_EXPR_TAG(COMPONENT_REF, LTO_component_ref)
  MAP_EXPR_TAG(CONST_DECL, LTO_const_decl)
  MAP_EXPR_TAG(CONSTRUCTOR, LTO_constructor)
  MAP_EXPR_TAG(FIELD_DECL, LTO_field_decl)
  MAP_EXPR_TAG(FIXED_CST, LTO_fixed_cst)
  MAP_EXPR_TAG(FUNCTION_DECL, LTO_function_decl)
  MAP_EXPR_TAG(GIMPLE_MODIFY_STMT, LTO_gimple_modify_stmt)
  MAP_EXPR_TAG(IDENTIFIER_NODE, LTO_identifier_node)
  MAP_EXPR_TAG(INTEGER_CST, LTO_integer_cst)
  MAP_EXPR_TAG(LABEL_DECL, LTO_label_decl)
  MAP_EXPR_TAG(LABEL_EXPR, LTO_label_expr)
  MAP_EXPR_TAG(NAMESPACE_DECL, LTO_namespace_decl)
  MAP_EXPR_TAG(PARM_DECL, LTO_parm_decl)
  MAP_EXPR_TAG(PHI_NODE, LTO_phi_node)
  MAP_EXPR_TAG(RANGE_EXPR, LTO_range_expr)
  MAP_EXPR_TAG(REAL_CST, LTO_real_cst)
  MAP_EXPR_TAG(RESULT_DECL, LTO_result_decl)
  MAP_EXPR_TAG(RESX_EXPR, LTO_resx_expr)
  MAP_EXPR_TAG(SSA_NAME, LTO_ssa_name)
  MAP_EXPR_TAG(STRING_CST, LTO_string_cst)
  MAP_EXPR_TAG(SWITCH_EXPR, LTO_switch_expr)
  MAP_EXPR_TAG(TRANSLATION_UNIT_DECL, LTO_translation_unit_decl)
  MAP_EXPR_TAG(TREE_BINFO, LTO_tree_binfo)
  MAP_EXPR_TAG(TREE_LIST, LTO_tree_list)
  MAP_EXPR_TAG(TREE_VEC, LTO_tree_vec)
  MAP_EXPR_TAG(TYPE_DECL, LTO_type_decl)
  /* ### types -- should move into alphabetical order */
  MAP_EXPR_TAG(VOID_TYPE, LTO_void_type)
  MAP_EXPR_TAG(INTEGER_TYPE, LTO_integer_type)
  MAP_EXPR_TAG(REAL_TYPE, LTO_real_type)
  MAP_EXPR_TAG(FIXED_POINT_TYPE, LTO_fixed_point_type)
  MAP_EXPR_TAG(COMPLEX_TYPE, LTO_complex_type)
  MAP_EXPR_TAG(BOOLEAN_TYPE, LTO_boolean_type)
  MAP_EXPR_TAG(OFFSET_TYPE, LTO_offset_type)
  MAP_EXPR_TAG(ENUMERAL_TYPE, LTO_enumeral_type)
  MAP_EXPR_TAG(POINTER_TYPE, LTO_pointer_type)
  MAP_EXPR_TAG(REFERENCE_TYPE, LTO_reference_type)
  MAP_EXPR_TAG(VECTOR_TYPE, LTO_vector_type)
  MAP_EXPR_TAG(ARRAY_TYPE, LTO_array_type)
  MAP_EXPR_TAG(RECORD_TYPE, LTO_record_type)
  MAP_EXPR_TAG(UNION_TYPE, LTO_union_type)
  MAP_EXPR_TAG(QUAL_UNION_TYPE, LTO_qual_union_type)
  MAP_EXPR_TAG(FUNCTION_TYPE, LTO_function_type)
  MAP_EXPR_TAG(METHOD_TYPE, LTO_method_type)
#endif /* TREE_SINGLE_MECHANICAL_FALSE */

#ifdef TREE_SINGLE_MECHANICAL_TRUE
  MAP_EXPR_TAG(ABS_EXPR, LTO_abs_expr)
  MAP_EXPR_TAG(ADDR_EXPR, LTO_addr_expr)
  MAP_EXPR_TAG(ALIGN_INDIRECT_REF, LTO_align_indirect_ref)
  MAP_EXPR_TAG(ASSERT_EXPR, LTO_assert_expr)
  MAP_EXPR_TAG(BIT_AND_EXPR, LTO_bit_and_expr)
  MAP_EXPR_TAG(BIT_IOR_EXPR, LTO_bit_ior_expr)
  MAP_EXPR_TAG(BIT_NOT_EXPR, LTO_bit_not_expr)
  MAP_EXPR_TAG(BIT_XOR_EXPR, LTO_bit_xor_expr)
  MAP_EXPR_TAG(CEIL_DIV_EXPR, LTO_ceil_div_expr)
  MAP_EXPR_TAG(CEIL_MOD_EXPR, LTO_ceil_mod_expr)
  MAP_EXPR_TAG(COMPLEX_EXPR, LTO_complex_expr)
  MAP_EXPR_TAG(COMPOUND_EXPR, LTO_compound_expr)
  MAP_EXPR_TAG(CONJ_EXPR, LTO_conj_expr)
  MAP_EXPR_TAG(CONVERT_EXPR, LTO_convert_expr)
  MAP_EXPR_TAG(DOT_PROD_EXPR, LTO_dot_prod_expr)
  MAP_EXPR_TAG(EQ_EXPR, LTO_eq_expr)
  MAP_EXPR_TAG(EXACT_DIV_EXPR, LTO_exact_div_expr)
  MAP_EXPR_TAG(EXC_PTR_EXPR, LTO_exc_ptr_expr)
  MAP_EXPR_TAG(FILTER_EXPR, LTO_filter_expr)
  MAP_EXPR_TAG(FIXED_CONVERT_EXPR, LTO_fixed_convert_expr)
  MAP_EXPR_TAG(FIX_TRUNC_EXPR, LTO_fix_trunc_expr)
  MAP_EXPR_TAG(FLOAT_EXPR, LTO_float_expr)
  MAP_EXPR_TAG(FLOOR_DIV_EXPR, LTO_floor_div_expr)
  MAP_EXPR_TAG(FLOOR_MOD_EXPR, LTO_floor_mod_expr)
  MAP_EXPR_TAG(GE_EXPR, LTO_ge_expr)
  MAP_EXPR_TAG(GOTO_EXPR, LTO_goto_expr)
  MAP_EXPR_TAG(GT_EXPR, LTO_gt_expr)
  MAP_EXPR_TAG(IMAGPART_EXPR, LTO_imagpart_expr)
  MAP_EXPR_TAG(INDIRECT_REF, LTO_indirect_ref)
  MAP_EXPR_TAG(LE_EXPR, LTO_le_expr)
  MAP_EXPR_TAG(LROTATE_EXPR, LTO_lrotate_expr)
  MAP_EXPR_TAG(LSHIFT_EXPR, LTO_lshift_expr)
  MAP_EXPR_TAG(LT_EXPR, LTO_lt_expr)
  MAP_EXPR_TAG(LTGT_EXPR, LTO_ltgt_expr)
  MAP_EXPR_TAG(MAX_EXPR, LTO_max_expr)
  MAP_EXPR_TAG(MIN_EXPR, LTO_min_expr)
  MAP_EXPR_TAG(MINUS_EXPR, LTO_minus_expr)
  MAP_EXPR_TAG(MISALIGNED_INDIRECT_REF, LTO_misaligned_indirect_ref)
  MAP_EXPR_TAG(MODIFY_EXPR, LTO_modify_expr)
  MAP_EXPR_TAG(MULT_EXPR, LTO_mult_expr)
  MAP_EXPR_TAG(NE_EXPR, LTO_ne_expr)
  MAP_EXPR_TAG(NEGATE_EXPR, LTO_negate_expr)
  MAP_EXPR_TAG(NON_LVALUE_EXPR, LTO_non_lvalue_expr)
  MAP_EXPR_TAG(NOP_EXPR, LTO_nop_expr)
  MAP_EXPR_TAG(OBJ_TYPE_REF, LTO_obj_type_ref)
  MAP_EXPR_TAG(ORDERED_EXPR, LTO_ordered_expr)
  MAP_EXPR_TAG(PAREN_EXPR, LTO_paren_expr)
  MAP_EXPR_TAG(POINTER_PLUS_EXPR, LTO_pointer_plus_expr)
  MAP_EXPR_TAG(PLUS_EXPR, LTO_plus_expr)
  MAP_EXPR_TAG(PREDICT_EXPR, LTO_predict_expr)
  MAP_EXPR_TAG(RDIV_EXPR, LTO_rdiv_expr)
  MAP_EXPR_TAG(REALIGN_LOAD_EXPR, LTO_realign_load_expr)
  MAP_EXPR_TAG(REALPART_EXPR, LTO_realpart_expr)
  MAP_EXPR_TAG(REDUC_MAX_EXPR, LTO_reduc_max_expr)
  MAP_EXPR_TAG(REDUC_MIN_EXPR, LTO_reduc_min_expr)
  MAP_EXPR_TAG(REDUC_PLUS_EXPR, LTO_reduc_plus_expr)
  MAP_EXPR_TAG(ROUND_DIV_EXPR, LTO_round_div_expr)
  MAP_EXPR_TAG(ROUND_MOD_EXPR, LTO_round_mod_expr)
  MAP_EXPR_TAG(RROTATE_EXPR, LTO_rrotate_expr)
  MAP_EXPR_TAG(RSHIFT_EXPR, LTO_rshift_expr)
  MAP_EXPR_TAG(TRUNC_DIV_EXPR, LTO_trunc_div_expr)
  MAP_EXPR_TAG(TRUNC_MOD_EXPR, LTO_trunc_mod_expr)
  MAP_EXPR_TAG(TRUTH_AND_EXPR, LTO_truth_and_expr)
  MAP_EXPR_TAG(TRUTH_NOT_EXPR, LTO_truth_not_expr)
  MAP_EXPR_TAG(TRUTH_OR_EXPR, LTO_truth_or_expr)
  MAP_EXPR_TAG(TRUTH_XOR_EXPR, LTO_truth_xor_expr)
  MAP_EXPR_TAG(UNEQ_EXPR, LTO_uneq_expr)
  MAP_EXPR_TAG(UNGE_EXPR, LTO_unge_expr)
  MAP_EXPR_TAG(UNGT_EXPR, LTO_ungt_expr)
  MAP_EXPR_TAG(UNLE_EXPR, LTO_unle_expr)
  MAP_EXPR_TAG(UNLT_EXPR, LTO_unlt_expr)
  MAP_EXPR_TAG(UNORDERED_EXPR, LTO_unordered_expr)
  MAP_EXPR_TAG(VEC_COND_EXPR, LTO_vec_cond_expr)
  MAP_EXPR_TAG(VEC_LSHIFT_EXPR, LTO_vec_lshift_expr)
  MAP_EXPR_TAG(VEC_RSHIFT_EXPR, LTO_vec_rshift_expr)
  MAP_EXPR_TAG(VIEW_CONVERT_EXPR, LTO_view_convert_expr)
  MAP_EXPR_TAG(WIDEN_MULT_EXPR, LTO_widen_mult_expr)
  MAP_EXPR_TAG(WIDEN_SUM_EXPR, LTO_widen_sum_expr)
  MAP_EXPR_TAG(WITH_SIZE_EXPR, LTO_with_size_expr)
#endif /* TREE_SINGLE_MECHANICAL_TRUE  */

#ifdef LTO_STREAM_DEBUGGING_INIT_NAMES
  SET_NAME (LTO_bb0, "bb0")
  SET_NAME (LTO_bb1, "bb1")
  SET_NAME (LTO_set_eh0, "set_eh0")
  SET_NAME (LTO_set_eh1, "set_eh1")
  SET_NAME (LTO_abs_expr, "abs_expr")
  SET_NAME (LTO_addr_expr, "addr_expr")
  SET_NAME (LTO_align_indirect_ref, "align_indirect_ref")
  SET_NAME (LTO_array_range_ref, "array_range_ref")
  SET_NAME (LTO_array_ref, "array_ref")
  SET_NAME (LTO_asm_expr, "asm_expr")
  SET_NAME (LTO_assert_expr, "assert_expr")
  SET_NAME (LTO_bit_and_expr, "bit_and_expr")
  SET_NAME (LTO_bit_ior_expr, "bit_ior_expr")
  SET_NAME (LTO_bit_field_ref0, "bit_field_ref0")
  SET_NAME (LTO_bit_field_ref1, "bit_field_ref1")
  SET_NAME (LTO_bit_not_expr, "bit_not_expr")
  SET_NAME (LTO_bit_xor_expr, "bit_xor_expr")
  SET_NAME (LTO_call_expr0, "call_expr0")
  SET_NAME (LTO_call_expr1, "call_expr1")
  SET_NAME (LTO_case_label_expr0, "case_label_expr0")
  SET_NAME (LTO_case_label_expr1, "case_label_expr1")
  SET_NAME (LTO_case_label_expr2, "case_label_expr2")
  SET_NAME (LTO_case_label_expr3, "case_label_expr3")
  SET_NAME (LTO_ceil_div_expr, "ceil_div_expr")
  SET_NAME (LTO_ceil_mod_expr, "ceil_mod_expr")
  SET_NAME (LTO_change_dynamic_type_expr, "change_dynamic_type_expr")
  SET_NAME (LTO_complex_cst0, "complex_cst0")
  SET_NAME (LTO_complex_cst1, "complex_cst1")
  SET_NAME (LTO_complex_expr, "complex_expr")
  SET_NAME (LTO_component_ref, "component_ref")
  SET_NAME (LTO_compound_expr, "compound_expr")
  SET_NAME (LTO_cond_expr0, "cond_expr0")
  SET_NAME (LTO_cond_expr1, "cond_expr1")
  SET_NAME (LTO_conj_expr, "conj_expr")
  SET_NAME (LTO_const_decl, "const_decl")
  SET_NAME (LTO_constructor, "constructor")
  SET_NAME (LTO_convert_expr, "convert_expr")
  SET_NAME (LTO_dot_prod_expr, "dot_prod_expr")
  SET_NAME (LTO_eq_expr, "eq_expr")
  SET_NAME (LTO_exact_div_expr, "exact_div_expr")
  SET_NAME (LTO_exc_ptr_expr, "exc_ptr_expr")
  SET_NAME (LTO_field_decl, "field_decl")
  SET_NAME (LTO_filter_expr, "filter_expr")
  SET_NAME (LTO_fix_trunc_expr, "fix_trunc_expr")
  SET_NAME (LTO_fixed_cst, "fixed_cst")
  SET_NAME (LTO_fixed_convert_expr, "fixed_convert_expr")
  SET_NAME (LTO_float_expr, "float_expr")
  SET_NAME (LTO_floor_div_expr, "floor_div_expr")
  SET_NAME (LTO_floor_mod_expr, "floor_mod_expr")
  SET_NAME (LTO_function_decl, "function_decl")
  SET_NAME (LTO_ge_expr, "ge_expr")
  SET_NAME (LTO_gimple_modify_stmt, "gimple_modify_stmt")
  SET_NAME (LTO_goto_expr, "goto_expr")
  SET_NAME (LTO_gt_expr, "gt_expr")
  SET_NAME (LTO_imagpart_expr, "imagpart_expr")
  SET_NAME (LTO_identifier_node, "identifier_node")
  SET_NAME (LTO_indirect_ref, "indirect_ref")
  SET_NAME (LTO_integer_cst, "integer_cst")
  SET_NAME (LTO_label_decl, "label_decl")
  SET_NAME (LTO_label_expr, "label_expr")
  SET_NAME (LTO_le_expr, "le_expr")
  SET_NAME (LTO_lrotate_expr, "lrotate_expr")
  SET_NAME (LTO_lshift_expr, "lshift_expr")
  SET_NAME (LTO_lt_expr, "lt_expr")
  SET_NAME (LTO_ltgt_expr, "ltgt_expr")
  SET_NAME (LTO_max_expr, "max_expr")
  SET_NAME (LTO_min_expr, "min_expr")
  SET_NAME (LTO_minus_expr, "minus_expr")
  SET_NAME (LTO_misaligned_indirect_ref, "misaligned_indirect_ref")
  SET_NAME (LTO_modify_expr, "modify_expr")
  SET_NAME (LTO_mult_expr, "mult_expr")
  SET_NAME (LTO_ne_expr, "ne_expr")
  SET_NAME (LTO_negate_expr, "negate_expr")
  SET_NAME (LTO_non_lvalue_expr, "non_lvalue_expr")
  SET_NAME (LTO_nop_expr, "nop_expr")
  SET_NAME (LTO_obj_type_ref, "obj_type_ref")
  SET_NAME (LTO_ordered_expr, "ordered_expr")
  SET_NAME (LTO_paren_expr, "paren_expr")
  SET_NAME (LTO_parm_decl, "parm_decl")
  SET_NAME (LTO_phi_node, "phi_node")
  SET_NAME (LTO_pointer_plus_expr, "pointer_plus_expr")
  SET_NAME (LTO_plus_expr, "plus_expr")
  SET_NAME (LTO_predict_expr, "predict_expr")
  SET_NAME (LTO_range_expr, "range_expr")
  SET_NAME (LTO_rdiv_expr, "rdiv_expr")
  SET_NAME (LTO_real_cst, "real_cst")
  SET_NAME (LTO_realign_load_expr, "realign_load_expr")
  SET_NAME (LTO_realpart_expr, "realpart_expr")
  SET_NAME (LTO_reduc_max_expr, "reduc_max_expr")
  SET_NAME (LTO_reduc_min_expr, "reduc_min_expr")
  SET_NAME (LTO_reduc_plus_expr, "reduc_plus_expr")
  SET_NAME (LTO_result_decl, "result_decl")
  SET_NAME (LTO_return_expr0, "return_expr0")
  SET_NAME (LTO_return_expr1, "return_expr1")
  SET_NAME (LTO_return_expr2, "return_expr2")
  SET_NAME (LTO_resx_expr, "resx_expr")
  SET_NAME (LTO_round_div_expr, "round_div_expr")
  SET_NAME (LTO_round_mod_expr, "round_mod_expr")
  SET_NAME (LTO_rrotate_expr, "rrotate_expr")
  SET_NAME (LTO_rshift_expr, "rshift_expr")
  SET_NAME (LTO_ssa_name, "ssa_name")
  SET_NAME (LTO_string_cst, "string_cst")
  SET_NAME (LTO_switch_expr, "switch_expr")
  SET_NAME (LTO_translation_unit_decl, "translation_unit_decl")
  SET_NAME (LTO_tree_binfo, "tree_binfo")
  SET_NAME (LTO_tree_list, "tree_list")
  SET_NAME (LTO_tree_vec, "tree_vec")
  SET_NAME (LTO_trunc_div_expr, "trunc_div_expr")
  SET_NAME (LTO_trunc_mod_expr, "trunc_mod_expr")
  SET_NAME (LTO_truth_and_expr, "truth_and_expr")
  SET_NAME (LTO_truth_not_expr, "truth_not_expr")
  SET_NAME (LTO_truth_or_expr, "truth_or_expr")
  SET_NAME (LTO_truth_xor_expr, "truth_xor_expr")
  SET_NAME (LTO_type_decl, "type_decl")
  SET_NAME (LTO_namespace_decl, "namespace_decl")
  SET_NAME (LTO_uneq_expr, "uneq_expr")
  SET_NAME (LTO_unge_expr, "unge_expr")
  SET_NAME (LTO_ungt_expr, "ungt_expr")
  SET_NAME (LTO_unle_expr, "unle_expr")
  SET_NAME (LTO_unlt_expr, "unlt_expr")
  SET_NAME (LTO_unordered_expr, "unordered_expr")
  SET_NAME (LTO_var_decl0, "var_decl0")
  SET_NAME (LTO_var_decl1, "var_decl1")
  SET_NAME (LTO_vec_cond_expr, "vec_cond_expr")
  SET_NAME (LTO_vec_lshift_expr, "vec_lshift_expr")
  SET_NAME (LTO_vec_rshift_expr, "vec_rshift_expr")
  SET_NAME (LTO_vector_cst0, "vector_cst0")
  SET_NAME (LTO_vector_cst1, "vector_cst1")
  SET_NAME (LTO_view_convert_expr, "view_convert_expr")
  SET_NAME (LTO_widen_mult_expr, "widen_mult_expr")
  SET_NAME (LTO_widen_sum_expr, "widen_sum_expr")
  SET_NAME (LTO_with_size_expr, "with_size_expr")

  /* ### Should put these in alphabetical order as above. */
  SET_NAME (LTO_asm_inputs, "asm_inputs")		/* ### used? */
  SET_NAME (LTO_asm_outputs, "asm_outputs")		/* ### used? */
  SET_NAME (LTO_asm_clobbers, "asm_clobbers")		/* ### used? */
  SET_NAME (LTO_function, "function")
  SET_NAME (LTO_type, "type")

  /* ### Should put these in alphabetical order as above. */
  SET_NAME (LTO_void_type, "void_type")
  SET_NAME (LTO_integer_type, "integer_type")
  SET_NAME (LTO_real_type, "real_type")
  SET_NAME (LTO_fixed_point_type, "fixed_point_type")
  SET_NAME (LTO_complex_type, "complex_type")
  SET_NAME (LTO_boolean_type, "boolean_type")
  SET_NAME (LTO_offset_type, "offset_type")
  SET_NAME (LTO_enumeral_type, "enumeral_type")
  SET_NAME (LTO_pointer_type, "pointer_type")
  SET_NAME (LTO_reference_type, "reference_type")
  SET_NAME (LTO_vector_type, "vector_type")
  SET_NAME (LTO_array_type, "array_type")
  SET_NAME (LTO_record_type, "record_type")
  SET_NAME (LTO_union_type, "union_type")
  SET_NAME (LTO_qual_union_type, "qual_union_type")
  SET_NAME (LTO_function_type, "function_type")
  SET_NAME (LTO_method_type, "method_type")

  SET_NAME (LTO_eh_table, "eh_table")
  SET_NAME (LTO_eh_table_cleanup0, "eh_table_cleanup0")
  SET_NAME (LTO_eh_table_cleanup1, "eh_table_cleanup1")
  SET_NAME (LTO_eh_table_cleanup2, "eh_table_cleanup2")
  SET_NAME (LTO_eh_table_cleanup3, "eh_table_cleanup3")
  SET_NAME (LTO_eh_table_try0, "eh_table_try0")
  SET_NAME (LTO_eh_table_try1, "eh_table_try1")
  SET_NAME (LTO_eh_table_try2, "eh_table_try2")
  SET_NAME (LTO_eh_table_try3, "eh_table_try3")
  SET_NAME (LTO_eh_table_catch0, "eh_table_catch0")
  SET_NAME (LTO_eh_table_catch1, "eh_table_catch1")
  SET_NAME (LTO_eh_table_catch2, "eh_table_catch2")
  SET_NAME (LTO_eh_table_catch3, "eh_table_catch3")
  SET_NAME (LTO_eh_table_allowed0, "eh_table_allowed0")
  SET_NAME (LTO_eh_table_allowed1, "eh_table_allowed1")
  SET_NAME (LTO_eh_table_allowed2, "eh_table_allowed2")
  SET_NAME (LTO_eh_table_allowed3, "eh_table_allowed3")
  SET_NAME (LTO_eh_table_must_not_throw0, "eh_table_must_not_throw0")
  SET_NAME (LTO_eh_table_must_not_throw1, "eh_table_must_not_throw1")
  SET_NAME (LTO_eh_table_must_not_throw2, "eh_table_must_not_throw2")
  SET_NAME (LTO_eh_table_must_not_throw3, "eh_table_must_not_throw3")

  /* ### */
  /* Special for the global streamer.  */
  SET_NAME (LTO_tree_pickle_reference, "tree_pickle_reference")

  /* ### */
  /* The globals and types streamer uses the same tags used by
     the local streamer to represent references to represent the
     actual declarations instead.  This was consistent with reusing
     existing code that maps tags to tree codes before further
     case analysis.  We may want to introduce new tags, however,
     so that we can use the same system of tag variants used
     in the function body streamer in order to compress the
     stream data somewhat.  At present, however, the tags below
     are used only by the function body streamer.  */

  SET_NAME (LTO_local_var_decl_body0+0x0, "local_var_decl_body0")
  SET_NAME (LTO_local_var_decl_body0+0x1, "local_var_decl_body1")
  SET_NAME (LTO_local_var_decl_body0+0x2, "local_var_decl_body2")
  SET_NAME (LTO_local_var_decl_body0+0x3, "local_var_decl_body3")
  SET_NAME (LTO_local_var_decl_body0+0x4, "local_var_decl_body4")
  SET_NAME (LTO_local_var_decl_body0+0x5, "local_var_decl_body5")
  SET_NAME (LTO_local_var_decl_body0+0x6, "local_var_decl_body6")
  SET_NAME (LTO_local_var_decl_body0+0x7, "local_var_decl_body7")
  SET_NAME (LTO_local_var_decl_body0+0x8, "local_var_decl_body8")
  SET_NAME (LTO_local_var_decl_body0+0x9, "local_var_decl_body9")
  SET_NAME (LTO_local_var_decl_body0+0xa, "local_var_decl_bodya")
  SET_NAME (LTO_local_var_decl_body0+0xb, "local_var_decl_bodyb")
  SET_NAME (LTO_local_var_decl_body0+0xc, "local_var_decl_bodyc")
  SET_NAME (LTO_local_var_decl_body0+0xd, "local_var_decl_bodyd")
  SET_NAME (LTO_local_var_decl_body0+0xe, "local_var_decl_bodye")
  SET_NAME (LTO_local_var_decl_body0+0xf, "local_var_decl_bodyf")
  SET_NAME (LTO_parm_decl_body0+0x0, "parm_decl_body0")
  SET_NAME (LTO_parm_decl_body0+0x1, "parm_decl_body1")
  SET_NAME (LTO_parm_decl_body0+0x2, "parm_decl_body2")
  SET_NAME (LTO_parm_decl_body0+0x3, "parm_decl_body3")
  SET_NAME (LTO_parm_decl_body0+0x4, "parm_decl_body4")
  SET_NAME (LTO_parm_decl_body0+0x5, "parm_decl_body5")
  SET_NAME (LTO_parm_decl_body0+0x6, "parm_decl_body6")
  SET_NAME (LTO_parm_decl_body0+0x7, "parm_decl_body7")
  SET_NAME (LTO_parm_decl_body0+0x8, "parm_decl_body8")
  SET_NAME (LTO_parm_decl_body0+0x9, "parm_decl_body9")
  SET_NAME (LTO_parm_decl_body0+0xa, "parm_decl_bodya")
  SET_NAME (LTO_parm_decl_body0+0xb, "parm_decl_bodyb")
  SET_NAME (LTO_parm_decl_body0+0xc, "parm_decl_bodyc")
  SET_NAME (LTO_parm_decl_body0+0xd, "parm_decl_bodyd")
  SET_NAME (LTO_parm_decl_body0+0xe, "parm_decl_bodye")
  SET_NAME (LTO_parm_decl_body0+0xf, "parm_decl_bodyf")
#endif