1 /* IO Code translation/library interface
2 Copyright (C) 2002-2014 Free Software Foundation, Inc.
3 Contributed by Paul Brook
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
24 #include "coretypes.h"
26 #include "stringpool.h"
27 #include "stor-layout.h"
30 #include "diagnostic-core.h" /* For internal_error. */
32 #include "trans-stmt.h"
33 #include "trans-array.h"
34 #include "trans-types.h"
35 #include "trans-const.h"
37 /* Members of the ioparm structure. */
66 typedef struct GTY(()) gfc_st_parameter_field
{
69 enum ioparam_type param_type
;
70 enum iofield_type type
;
74 gfc_st_parameter_field
;
76 typedef struct GTY(()) gfc_st_parameter
{
84 #define IOPARM(param_type, name, mask, type) IOPARM_##param_type##_##name,
90 static GTY(()) gfc_st_parameter st_parameter
[] =
101 static GTY(()) gfc_st_parameter_field st_parameter_field
[] =
103 #define IOPARM(param_type, name, mask, type) \
104 { #name, mask, IOPARM_ptype_##param_type, IOPARM_type_##type, NULL, NULL },
105 #include "ioparm.def"
107 { NULL
, 0, (enum ioparam_type
) 0, (enum iofield_type
) 0, NULL
, NULL
}
110 /* Library I/O subroutines */
119 IOCALL_X_INTEGER_WRITE
,
121 IOCALL_X_LOGICAL_WRITE
,
123 IOCALL_X_CHARACTER_WRITE
,
124 IOCALL_X_CHARACTER_WIDE
,
125 IOCALL_X_CHARACTER_WIDE_WRITE
,
129 IOCALL_X_COMPLEX_WRITE
,
131 IOCALL_X_REAL128_WRITE
,
133 IOCALL_X_COMPLEX128_WRITE
,
135 IOCALL_X_ARRAY_WRITE
,
140 IOCALL_IOLENGTH_DONE
,
146 IOCALL_SET_NML_VAL_DIM
,
151 static GTY(()) tree iocall
[IOCALL_NUM
];
153 /* Variable for keeping track of what the last data transfer statement
154 was. Used for deciding which subroutine to call when the data
155 transfer is complete. */
156 static enum { READ
, WRITE
, IOLENGTH
} last_dt
;
158 /* The data transfer parameter block that should be shared by all
159 data transfer calls belonging to the same read/write/iolength. */
160 static GTY(()) tree dt_parm
;
161 static stmtblock_t
*dt_post_end_block
;
164 gfc_build_st_parameter (enum ioparam_type ptype
, tree
*types
)
167 gfc_st_parameter_field
*p
;
170 tree t
= make_node (RECORD_TYPE
);
173 len
= strlen (st_parameter
[ptype
].name
);
174 gcc_assert (len
<= sizeof (name
) - sizeof ("__st_parameter_"));
175 memcpy (name
, "__st_parameter_", sizeof ("__st_parameter_"));
176 memcpy (name
+ sizeof ("__st_parameter_") - 1, st_parameter
[ptype
].name
,
178 TYPE_NAME (t
) = get_identifier (name
);
180 for (type
= 0, p
= st_parameter_field
; type
< IOPARM_field_num
; type
++, p
++)
181 if (p
->param_type
== ptype
)
184 case IOPARM_type_int4
:
185 case IOPARM_type_intio
:
186 case IOPARM_type_pint4
:
187 case IOPARM_type_pintio
:
188 case IOPARM_type_parray
:
189 case IOPARM_type_pchar
:
190 case IOPARM_type_pad
:
191 p
->field
= gfc_add_field_to_struct (t
, get_identifier (p
->name
),
192 types
[p
->type
], &chain
);
194 case IOPARM_type_char1
:
195 p
->field
= gfc_add_field_to_struct (t
, get_identifier (p
->name
),
196 pchar_type_node
, &chain
);
198 case IOPARM_type_char2
:
199 len
= strlen (p
->name
);
200 gcc_assert (len
<= sizeof (name
) - sizeof ("_len"));
201 memcpy (name
, p
->name
, len
);
202 memcpy (name
+ len
, "_len", sizeof ("_len"));
203 p
->field_len
= gfc_add_field_to_struct (t
, get_identifier (name
),
204 gfc_charlen_type_node
,
206 if (p
->type
== IOPARM_type_char2
)
207 p
->field
= gfc_add_field_to_struct (t
, get_identifier (p
->name
),
208 pchar_type_node
, &chain
);
210 case IOPARM_type_common
:
212 = gfc_add_field_to_struct (t
,
213 get_identifier (p
->name
),
214 st_parameter
[IOPARM_ptype_common
].type
,
217 case IOPARM_type_num
:
222 st_parameter
[ptype
].type
= t
;
226 /* Build code to test an error condition and call generate_error if needed.
227 Note: This builds calls to generate_error in the runtime library function.
228 The function generate_error is dependent on certain parameters in the
229 st_parameter_common flags to be set. (See libgfortran/runtime/error.c)
230 Therefore, the code to set these flags must be generated before
231 this function is used. */
234 gfc_trans_io_runtime_check (bool has_iostat
, tree cond
, tree var
,
235 int error_code
, const char * msgid
,
236 stmtblock_t
* pblock
)
241 tree arg1
, arg2
, arg3
;
244 if (integer_zerop (cond
))
247 /* The code to generate the error. */
248 gfc_start_block (&block
);
251 gfc_add_expr_to_block (&block
, build_predict_expr (PRED_FORTRAN_FAIL_IO
,
254 gfc_add_expr_to_block (&block
, build_predict_expr (PRED_NORETURN
,
257 arg1
= gfc_build_addr_expr (NULL_TREE
, var
);
259 arg2
= build_int_cst (integer_type_node
, error_code
),
261 asprintf (&message
, "%s", _(msgid
));
262 arg3
= gfc_build_addr_expr (pchar_type_node
,
263 gfc_build_localized_cstring_const (message
));
266 tmp
= build_call_expr_loc (input_location
,
267 gfor_fndecl_generate_error
, 3, arg1
, arg2
, arg3
);
269 gfc_add_expr_to_block (&block
, tmp
);
271 body
= gfc_finish_block (&block
);
273 if (integer_onep (cond
))
275 gfc_add_expr_to_block (pblock
, body
);
279 tmp
= build3_v (COND_EXPR
, cond
, body
, build_empty_stmt (input_location
));
280 gfc_add_expr_to_block (pblock
, tmp
);
285 /* Create function decls for IO library functions. */
288 gfc_build_io_library_fndecls (void)
290 tree types
[IOPARM_type_num
], pad_idx
, gfc_int4_type_node
;
291 tree gfc_intio_type_node
;
292 tree parm_type
, dt_parm_type
;
293 HOST_WIDE_INT pad_size
;
296 types
[IOPARM_type_int4
] = gfc_int4_type_node
= gfc_get_int_type (4);
297 types
[IOPARM_type_intio
] = gfc_intio_type_node
298 = gfc_get_int_type (gfc_intio_kind
);
299 types
[IOPARM_type_pint4
] = build_pointer_type (gfc_int4_type_node
);
300 types
[IOPARM_type_pintio
]
301 = build_pointer_type (gfc_intio_type_node
);
302 types
[IOPARM_type_parray
] = pchar_type_node
;
303 types
[IOPARM_type_pchar
] = pchar_type_node
;
304 pad_size
= 16 * TREE_INT_CST_LOW (TYPE_SIZE_UNIT (pchar_type_node
));
305 pad_size
+= 32 * TREE_INT_CST_LOW (TYPE_SIZE_UNIT (integer_type_node
));
306 pad_idx
= build_index_type (size_int (pad_size
- 1));
307 types
[IOPARM_type_pad
] = build_array_type (char_type_node
, pad_idx
);
309 /* pad actually contains pointers and integers so it needs to have an
310 alignment that is at least as large as the needed alignment for those
311 types. See the st_parameter_dt structure in libgfortran/io/io.h for
312 what really goes into this space. */
313 TYPE_ALIGN (types
[IOPARM_type_pad
]) = MAX (TYPE_ALIGN (pchar_type_node
),
314 TYPE_ALIGN (gfc_get_int_type (gfc_intio_kind
)));
316 for (ptype
= IOPARM_ptype_common
; ptype
< IOPARM_ptype_num
; ptype
++)
317 gfc_build_st_parameter ((enum ioparam_type
) ptype
, types
);
319 /* Define the transfer functions. */
321 dt_parm_type
= build_pointer_type (st_parameter
[IOPARM_ptype_dt
].type
);
323 iocall
[IOCALL_X_INTEGER
] = gfc_build_library_function_decl_with_spec (
324 get_identifier (PREFIX("transfer_integer")), ".wW",
325 void_type_node
, 3, dt_parm_type
, pvoid_type_node
, gfc_int4_type_node
);
327 iocall
[IOCALL_X_INTEGER_WRITE
] = gfc_build_library_function_decl_with_spec (
328 get_identifier (PREFIX("transfer_integer_write")), ".wR",
329 void_type_node
, 3, dt_parm_type
, pvoid_type_node
, gfc_int4_type_node
);
331 iocall
[IOCALL_X_LOGICAL
] = gfc_build_library_function_decl_with_spec (
332 get_identifier (PREFIX("transfer_logical")), ".wW",
333 void_type_node
, 3, dt_parm_type
, pvoid_type_node
, gfc_int4_type_node
);
335 iocall
[IOCALL_X_LOGICAL_WRITE
] = gfc_build_library_function_decl_with_spec (
336 get_identifier (PREFIX("transfer_logical_write")), ".wR",
337 void_type_node
, 3, dt_parm_type
, pvoid_type_node
, gfc_int4_type_node
);
339 iocall
[IOCALL_X_CHARACTER
] = gfc_build_library_function_decl_with_spec (
340 get_identifier (PREFIX("transfer_character")), ".wW",
341 void_type_node
, 3, dt_parm_type
, pvoid_type_node
, gfc_int4_type_node
);
343 iocall
[IOCALL_X_CHARACTER_WRITE
] = gfc_build_library_function_decl_with_spec (
344 get_identifier (PREFIX("transfer_character_write")), ".wR",
345 void_type_node
, 3, dt_parm_type
, pvoid_type_node
, gfc_int4_type_node
);
347 iocall
[IOCALL_X_CHARACTER_WIDE
] = gfc_build_library_function_decl_with_spec (
348 get_identifier (PREFIX("transfer_character_wide")), ".wW",
349 void_type_node
, 4, dt_parm_type
, pvoid_type_node
,
350 gfc_charlen_type_node
, gfc_int4_type_node
);
352 iocall
[IOCALL_X_CHARACTER_WIDE_WRITE
] =
353 gfc_build_library_function_decl_with_spec (
354 get_identifier (PREFIX("transfer_character_wide_write")), ".wR",
355 void_type_node
, 4, dt_parm_type
, pvoid_type_node
,
356 gfc_charlen_type_node
, gfc_int4_type_node
);
358 iocall
[IOCALL_X_REAL
] = gfc_build_library_function_decl_with_spec (
359 get_identifier (PREFIX("transfer_real")), ".wW",
360 void_type_node
, 3, dt_parm_type
, pvoid_type_node
, gfc_int4_type_node
);
362 iocall
[IOCALL_X_REAL_WRITE
] = gfc_build_library_function_decl_with_spec (
363 get_identifier (PREFIX("transfer_real_write")), ".wR",
364 void_type_node
, 3, dt_parm_type
, pvoid_type_node
, gfc_int4_type_node
);
366 iocall
[IOCALL_X_COMPLEX
] = gfc_build_library_function_decl_with_spec (
367 get_identifier (PREFIX("transfer_complex")), ".wW",
368 void_type_node
, 3, dt_parm_type
, pvoid_type_node
, gfc_int4_type_node
);
370 iocall
[IOCALL_X_COMPLEX_WRITE
] = gfc_build_library_function_decl_with_spec (
371 get_identifier (PREFIX("transfer_complex_write")), ".wR",
372 void_type_node
, 3, dt_parm_type
, pvoid_type_node
, gfc_int4_type_node
);
374 /* Version for __float128. */
375 iocall
[IOCALL_X_REAL128
] = gfc_build_library_function_decl_with_spec (
376 get_identifier (PREFIX("transfer_real128")), ".wW",
377 void_type_node
, 3, dt_parm_type
, pvoid_type_node
, gfc_int4_type_node
);
379 iocall
[IOCALL_X_REAL128_WRITE
] = gfc_build_library_function_decl_with_spec (
380 get_identifier (PREFIX("transfer_real128_write")), ".wR",
381 void_type_node
, 3, dt_parm_type
, pvoid_type_node
, gfc_int4_type_node
);
383 iocall
[IOCALL_X_COMPLEX128
] = gfc_build_library_function_decl_with_spec (
384 get_identifier (PREFIX("transfer_complex128")), ".wW",
385 void_type_node
, 3, dt_parm_type
, pvoid_type_node
, gfc_int4_type_node
);
387 iocall
[IOCALL_X_COMPLEX128_WRITE
] = gfc_build_library_function_decl_with_spec (
388 get_identifier (PREFIX("transfer_complex128_write")), ".wR",
389 void_type_node
, 3, dt_parm_type
, pvoid_type_node
, gfc_int4_type_node
);
391 iocall
[IOCALL_X_ARRAY
] = gfc_build_library_function_decl_with_spec (
392 get_identifier (PREFIX("transfer_array")), ".ww",
393 void_type_node
, 4, dt_parm_type
, pvoid_type_node
,
394 integer_type_node
, gfc_charlen_type_node
);
396 iocall
[IOCALL_X_ARRAY_WRITE
] = gfc_build_library_function_decl_with_spec (
397 get_identifier (PREFIX("transfer_array_write")), ".wr",
398 void_type_node
, 4, dt_parm_type
, pvoid_type_node
,
399 integer_type_node
, gfc_charlen_type_node
);
401 /* Library entry points */
403 iocall
[IOCALL_READ
] = gfc_build_library_function_decl_with_spec (
404 get_identifier (PREFIX("st_read")), ".w",
405 void_type_node
, 1, dt_parm_type
);
407 iocall
[IOCALL_WRITE
] = gfc_build_library_function_decl_with_spec (
408 get_identifier (PREFIX("st_write")), ".w",
409 void_type_node
, 1, dt_parm_type
);
411 parm_type
= build_pointer_type (st_parameter
[IOPARM_ptype_open
].type
);
412 iocall
[IOCALL_OPEN
] = gfc_build_library_function_decl_with_spec (
413 get_identifier (PREFIX("st_open")), ".w",
414 void_type_node
, 1, parm_type
);
416 parm_type
= build_pointer_type (st_parameter
[IOPARM_ptype_close
].type
);
417 iocall
[IOCALL_CLOSE
] = gfc_build_library_function_decl_with_spec (
418 get_identifier (PREFIX("st_close")), ".w",
419 void_type_node
, 1, parm_type
);
421 parm_type
= build_pointer_type (st_parameter
[IOPARM_ptype_inquire
].type
);
422 iocall
[IOCALL_INQUIRE
] = gfc_build_library_function_decl_with_spec (
423 get_identifier (PREFIX("st_inquire")), ".w",
424 void_type_node
, 1, parm_type
);
426 iocall
[IOCALL_IOLENGTH
] = gfc_build_library_function_decl_with_spec(
427 get_identifier (PREFIX("st_iolength")), ".w",
428 void_type_node
, 1, dt_parm_type
);
430 /* TODO: Change when asynchronous I/O is implemented. */
431 parm_type
= build_pointer_type (st_parameter
[IOPARM_ptype_wait
].type
);
432 iocall
[IOCALL_WAIT
] = gfc_build_library_function_decl_with_spec (
433 get_identifier (PREFIX("st_wait")), ".X",
434 void_type_node
, 1, parm_type
);
436 parm_type
= build_pointer_type (st_parameter
[IOPARM_ptype_filepos
].type
);
437 iocall
[IOCALL_REWIND
] = gfc_build_library_function_decl_with_spec (
438 get_identifier (PREFIX("st_rewind")), ".w",
439 void_type_node
, 1, parm_type
);
441 iocall
[IOCALL_BACKSPACE
] = gfc_build_library_function_decl_with_spec (
442 get_identifier (PREFIX("st_backspace")), ".w",
443 void_type_node
, 1, parm_type
);
445 iocall
[IOCALL_ENDFILE
] = gfc_build_library_function_decl_with_spec (
446 get_identifier (PREFIX("st_endfile")), ".w",
447 void_type_node
, 1, parm_type
);
449 iocall
[IOCALL_FLUSH
] = gfc_build_library_function_decl_with_spec (
450 get_identifier (PREFIX("st_flush")), ".w",
451 void_type_node
, 1, parm_type
);
453 /* Library helpers */
455 iocall
[IOCALL_READ_DONE
] = gfc_build_library_function_decl_with_spec (
456 get_identifier (PREFIX("st_read_done")), ".w",
457 void_type_node
, 1, dt_parm_type
);
459 iocall
[IOCALL_WRITE_DONE
] = gfc_build_library_function_decl_with_spec (
460 get_identifier (PREFIX("st_write_done")), ".w",
461 void_type_node
, 1, dt_parm_type
);
463 iocall
[IOCALL_IOLENGTH_DONE
] = gfc_build_library_function_decl_with_spec (
464 get_identifier (PREFIX("st_iolength_done")), ".w",
465 void_type_node
, 1, dt_parm_type
);
467 iocall
[IOCALL_SET_NML_VAL
] = gfc_build_library_function_decl_with_spec (
468 get_identifier (PREFIX("st_set_nml_var")), ".w.R",
469 void_type_node
, 6, dt_parm_type
, pvoid_type_node
, pvoid_type_node
,
470 gfc_int4_type_node
, gfc_charlen_type_node
, gfc_int4_type_node
);
472 iocall
[IOCALL_SET_NML_VAL_DIM
] = gfc_build_library_function_decl_with_spec (
473 get_identifier (PREFIX("st_set_nml_var_dim")), ".w",
474 void_type_node
, 5, dt_parm_type
, gfc_int4_type_node
,
475 gfc_array_index_type
, gfc_array_index_type
, gfc_array_index_type
);
479 /* Generate code to store an integer constant into the
480 st_parameter_XXX structure. */
483 set_parameter_const (stmtblock_t
*block
, tree var
, enum iofield type
,
487 gfc_st_parameter_field
*p
= &st_parameter_field
[type
];
489 if (p
->param_type
== IOPARM_ptype_common
)
490 var
= fold_build3_loc (input_location
, COMPONENT_REF
,
491 st_parameter
[IOPARM_ptype_common
].type
,
492 var
, TYPE_FIELDS (TREE_TYPE (var
)), NULL_TREE
);
493 tmp
= fold_build3_loc (input_location
, COMPONENT_REF
, TREE_TYPE (p
->field
),
494 var
, p
->field
, NULL_TREE
);
495 gfc_add_modify (block
, tmp
, build_int_cst (TREE_TYPE (p
->field
), val
));
500 /* Generate code to store a non-string I/O parameter into the
501 st_parameter_XXX structure. This is a pass by value. */
504 set_parameter_value (stmtblock_t
*block
, bool has_iostat
, tree var
,
505 enum iofield type
, gfc_expr
*e
)
509 gfc_st_parameter_field
*p
= &st_parameter_field
[type
];
510 tree dest_type
= TREE_TYPE (p
->field
);
512 gfc_init_se (&se
, NULL
);
513 gfc_conv_expr_val (&se
, e
);
515 /* If we're storing a UNIT number, we need to check it first. */
516 if (type
== IOPARM_common_unit
&& e
->ts
.kind
> 4)
521 /* Don't evaluate the UNIT number multiple times. */
522 se
.expr
= gfc_evaluate_now (se
.expr
, &se
.pre
);
524 /* UNIT numbers should be greater than the min. */
525 i
= gfc_validate_kind (BT_INTEGER
, 4, false);
526 val
= gfc_conv_mpz_to_tree (gfc_integer_kinds
[i
].pedantic_min_int
, 4);
527 cond
= fold_build2_loc (input_location
, LT_EXPR
, boolean_type_node
,
529 fold_convert (TREE_TYPE (se
.expr
), val
));
530 gfc_trans_io_runtime_check (has_iostat
, cond
, var
, LIBERROR_BAD_UNIT
,
531 "Unit number in I/O statement too small",
534 /* UNIT numbers should be less than the max. */
535 val
= gfc_conv_mpz_to_tree (gfc_integer_kinds
[i
].huge
, 4);
536 cond
= fold_build2_loc (input_location
, GT_EXPR
, boolean_type_node
,
538 fold_convert (TREE_TYPE (se
.expr
), val
));
539 gfc_trans_io_runtime_check (has_iostat
, cond
, var
, LIBERROR_BAD_UNIT
,
540 "Unit number in I/O statement too large",
545 se
.expr
= convert (dest_type
, se
.expr
);
546 gfc_add_block_to_block (block
, &se
.pre
);
548 if (p
->param_type
== IOPARM_ptype_common
)
549 var
= fold_build3_loc (input_location
, COMPONENT_REF
,
550 st_parameter
[IOPARM_ptype_common
].type
,
551 var
, TYPE_FIELDS (TREE_TYPE (var
)), NULL_TREE
);
553 tmp
= fold_build3_loc (input_location
, COMPONENT_REF
, dest_type
, var
,
554 p
->field
, NULL_TREE
);
555 gfc_add_modify (block
, tmp
, se
.expr
);
560 /* Generate code to store a non-string I/O parameter into the
561 st_parameter_XXX structure. This is pass by reference. */
564 set_parameter_ref (stmtblock_t
*block
, stmtblock_t
*postblock
,
565 tree var
, enum iofield type
, gfc_expr
*e
)
569 gfc_st_parameter_field
*p
= &st_parameter_field
[type
];
571 gcc_assert (e
->ts
.type
== BT_INTEGER
|| e
->ts
.type
== BT_LOGICAL
);
572 gfc_init_se (&se
, NULL
);
573 gfc_conv_expr_lhs (&se
, e
);
575 gfc_add_block_to_block (block
, &se
.pre
);
577 if (TYPE_MODE (TREE_TYPE (se
.expr
))
578 == TYPE_MODE (TREE_TYPE (TREE_TYPE (p
->field
))))
580 addr
= convert (TREE_TYPE (p
->field
), gfc_build_addr_expr (NULL_TREE
, se
.expr
));
582 /* If this is for the iostat variable initialize the
583 user variable to LIBERROR_OK which is zero. */
584 if (type
== IOPARM_common_iostat
)
585 gfc_add_modify (block
, se
.expr
,
586 build_int_cst (TREE_TYPE (se
.expr
), LIBERROR_OK
));
590 /* The type used by the library has different size
591 from the type of the variable supplied by the user.
592 Need to use a temporary. */
593 tree tmpvar
= gfc_create_var (TREE_TYPE (TREE_TYPE (p
->field
)),
594 st_parameter_field
[type
].name
);
596 /* If this is for the iostat variable, initialize the
597 user variable to LIBERROR_OK which is zero. */
598 if (type
== IOPARM_common_iostat
)
599 gfc_add_modify (block
, tmpvar
,
600 build_int_cst (TREE_TYPE (tmpvar
), LIBERROR_OK
));
602 addr
= gfc_build_addr_expr (NULL_TREE
, tmpvar
);
603 /* After the I/O operation, we set the variable from the temporary. */
604 tmp
= convert (TREE_TYPE (se
.expr
), tmpvar
);
605 gfc_add_modify (postblock
, se
.expr
, tmp
);
608 if (p
->param_type
== IOPARM_ptype_common
)
609 var
= fold_build3_loc (input_location
, COMPONENT_REF
,
610 st_parameter
[IOPARM_ptype_common
].type
,
611 var
, TYPE_FIELDS (TREE_TYPE (var
)), NULL_TREE
);
612 tmp
= fold_build3_loc (input_location
, COMPONENT_REF
, TREE_TYPE (p
->field
),
613 var
, p
->field
, NULL_TREE
);
614 gfc_add_modify (block
, tmp
, addr
);
618 /* Given an array expr, find its address and length to get a string. If the
619 array is full, the string's address is the address of array's first element
620 and the length is the size of the whole array. If it is an element, the
621 string's address is the element's address and the length is the rest size of
625 gfc_convert_array_to_string (gfc_se
* se
, gfc_expr
* e
)
631 tree type
, array
, tmp
;
635 /* If it is an element, we need its address and size of the rest. */
636 gcc_assert (e
->expr_type
== EXPR_VARIABLE
);
637 gcc_assert (e
->ref
->u
.ar
.type
== AR_ELEMENT
);
638 sym
= e
->symtree
->n
.sym
;
639 rank
= sym
->as
->rank
- 1;
640 gfc_conv_expr (se
, e
);
642 array
= sym
->backend_decl
;
643 type
= TREE_TYPE (array
);
645 if (GFC_ARRAY_TYPE_P (type
))
646 size
= GFC_TYPE_ARRAY_SIZE (type
);
649 gcc_assert (GFC_DESCRIPTOR_TYPE_P (type
));
650 size
= gfc_conv_array_stride (array
, rank
);
651 tmp
= fold_build2_loc (input_location
, MINUS_EXPR
,
652 gfc_array_index_type
,
653 gfc_conv_array_ubound (array
, rank
),
654 gfc_conv_array_lbound (array
, rank
));
655 tmp
= fold_build2_loc (input_location
, PLUS_EXPR
,
656 gfc_array_index_type
, tmp
,
658 size
= fold_build2_loc (input_location
, MULT_EXPR
,
659 gfc_array_index_type
, tmp
, size
);
663 size
= fold_build2_loc (input_location
, MINUS_EXPR
,
664 gfc_array_index_type
, size
,
665 TREE_OPERAND (se
->expr
, 1));
666 se
->expr
= gfc_build_addr_expr (NULL_TREE
, se
->expr
);
667 tmp
= TYPE_SIZE_UNIT (gfc_get_element_type (type
));
668 size
= fold_build2_loc (input_location
, MULT_EXPR
,
669 gfc_array_index_type
, size
,
670 fold_convert (gfc_array_index_type
, tmp
));
671 se
->string_length
= fold_convert (gfc_charlen_type_node
, size
);
675 gfc_conv_array_parameter (se
, e
, true, NULL
, NULL
, &size
);
676 se
->string_length
= fold_convert (gfc_charlen_type_node
, size
);
680 /* Generate code to store a string and its length into the
681 st_parameter_XXX structure. */
684 set_string (stmtblock_t
* block
, stmtblock_t
* postblock
, tree var
,
685 enum iofield type
, gfc_expr
* e
)
691 gfc_st_parameter_field
*p
= &st_parameter_field
[type
];
693 gfc_init_se (&se
, NULL
);
695 if (p
->param_type
== IOPARM_ptype_common
)
696 var
= fold_build3_loc (input_location
, COMPONENT_REF
,
697 st_parameter
[IOPARM_ptype_common
].type
,
698 var
, TYPE_FIELDS (TREE_TYPE (var
)), NULL_TREE
);
699 io
= fold_build3_loc (input_location
, COMPONENT_REF
, TREE_TYPE (p
->field
),
700 var
, p
->field
, NULL_TREE
);
701 len
= fold_build3_loc (input_location
, COMPONENT_REF
,
702 TREE_TYPE (p
->field_len
),
703 var
, p
->field_len
, NULL_TREE
);
705 /* Integer variable assigned a format label. */
706 if (e
->ts
.type
== BT_INTEGER
708 && e
->symtree
->n
.sym
->attr
.assign
== 1)
713 gfc_conv_label_variable (&se
, e
);
714 tmp
= GFC_DECL_STRING_LEN (se
.expr
);
715 cond
= fold_build2_loc (input_location
, LT_EXPR
, boolean_type_node
,
716 tmp
, build_int_cst (TREE_TYPE (tmp
), 0));
718 asprintf(&msg
, "Label assigned to variable '%s' (%%ld) is not a format "
719 "label", e
->symtree
->name
);
720 gfc_trans_runtime_check (true, false, cond
, &se
.pre
, &e
->where
, msg
,
721 fold_convert (long_integer_type_node
, tmp
));
724 gfc_add_modify (&se
.pre
, io
,
725 fold_convert (TREE_TYPE (io
), GFC_DECL_ASSIGN_ADDR (se
.expr
)));
726 gfc_add_modify (&se
.pre
, len
, GFC_DECL_STRING_LEN (se
.expr
));
730 /* General character. */
731 if (e
->ts
.type
== BT_CHARACTER
&& e
->rank
== 0)
732 gfc_conv_expr (&se
, e
);
733 /* Array assigned Hollerith constant or character array. */
734 else if (e
->rank
> 0 || (e
->symtree
&& e
->symtree
->n
.sym
->as
->rank
> 0))
735 gfc_convert_array_to_string (&se
, e
);
739 gfc_conv_string_parameter (&se
);
740 gfc_add_modify (&se
.pre
, io
, fold_convert (TREE_TYPE (io
), se
.expr
));
741 gfc_add_modify (&se
.pre
, len
, se
.string_length
);
744 gfc_add_block_to_block (block
, &se
.pre
);
745 gfc_add_block_to_block (postblock
, &se
.post
);
750 /* Generate code to store the character (array) and the character length
751 for an internal unit. */
754 set_internal_unit (stmtblock_t
* block
, stmtblock_t
* post_block
,
755 tree var
, gfc_expr
* e
)
762 gfc_st_parameter_field
*p
;
765 gfc_init_se (&se
, NULL
);
767 p
= &st_parameter_field
[IOPARM_dt_internal_unit
];
769 io
= fold_build3_loc (input_location
, COMPONENT_REF
, TREE_TYPE (p
->field
),
770 var
, p
->field
, NULL_TREE
);
771 len
= fold_build3_loc (input_location
, COMPONENT_REF
, TREE_TYPE (p
->field_len
),
772 var
, p
->field_len
, NULL_TREE
);
773 p
= &st_parameter_field
[IOPARM_dt_internal_unit_desc
];
774 desc
= fold_build3_loc (input_location
, COMPONENT_REF
, TREE_TYPE (p
->field
),
775 var
, p
->field
, NULL_TREE
);
777 gcc_assert (e
->ts
.type
== BT_CHARACTER
);
779 /* Character scalars. */
782 gfc_conv_expr (&se
, e
);
783 gfc_conv_string_parameter (&se
);
785 se
.expr
= build_int_cst (pchar_type_node
, 0);
788 /* Character array. */
789 else if (e
->rank
> 0)
791 if (is_subref_array (e
))
793 /* Use a temporary for components of arrays of derived types
794 or substring array references. */
795 gfc_conv_subref_array_arg (&se
, e
, 0,
796 last_dt
== READ
? INTENT_IN
: INTENT_OUT
, false);
797 tmp
= build_fold_indirect_ref_loc (input_location
,
799 se
.expr
= gfc_build_addr_expr (pchar_type_node
, tmp
);
800 tmp
= gfc_conv_descriptor_data_get (tmp
);
804 /* Return the data pointer and rank from the descriptor. */
805 gfc_conv_expr_descriptor (&se
, e
);
806 tmp
= gfc_conv_descriptor_data_get (se
.expr
);
807 se
.expr
= gfc_build_addr_expr (pchar_type_node
, se
.expr
);
813 /* The cast is needed for character substrings and the descriptor
815 gfc_add_modify (&se
.pre
, io
, fold_convert (TREE_TYPE (io
), tmp
));
816 gfc_add_modify (&se
.pre
, len
,
817 fold_convert (TREE_TYPE (len
), se
.string_length
));
818 gfc_add_modify (&se
.pre
, desc
, se
.expr
);
820 gfc_add_block_to_block (block
, &se
.pre
);
821 gfc_add_block_to_block (post_block
, &se
.post
);
825 /* Add a case to a IO-result switch. */
828 add_case (int label_value
, gfc_st_label
* label
, stmtblock_t
* body
)
833 return; /* No label, no case */
835 value
= build_int_cst (integer_type_node
, label_value
);
837 /* Make a backend label for this case. */
838 tmp
= gfc_build_label_decl (NULL_TREE
);
840 /* And the case itself. */
841 tmp
= build_case_label (value
, NULL_TREE
, tmp
);
842 gfc_add_expr_to_block (body
, tmp
);
844 /* Jump to the label. */
845 tmp
= build1_v (GOTO_EXPR
, gfc_get_label_decl (label
));
846 gfc_add_expr_to_block (body
, tmp
);
850 /* Generate a switch statement that branches to the correct I/O
851 result label. The last statement of an I/O call stores the
852 result into a variable because there is often cleanup that
853 must be done before the switch, so a temporary would have to
854 be created anyway. */
857 io_result (stmtblock_t
* block
, tree var
, gfc_st_label
* err_label
,
858 gfc_st_label
* end_label
, gfc_st_label
* eor_label
)
862 gfc_st_parameter_field
*p
= &st_parameter_field
[IOPARM_common_flags
];
864 /* If no labels are specified, ignore the result instead
865 of building an empty switch. */
866 if (err_label
== NULL
868 && eor_label
== NULL
)
871 /* Build a switch statement. */
872 gfc_start_block (&body
);
874 /* The label values here must be the same as the values
875 in the library_return enum in the runtime library */
876 add_case (1, err_label
, &body
);
877 add_case (2, end_label
, &body
);
878 add_case (3, eor_label
, &body
);
880 tmp
= gfc_finish_block (&body
);
882 var
= fold_build3_loc (input_location
, COMPONENT_REF
,
883 st_parameter
[IOPARM_ptype_common
].type
,
884 var
, TYPE_FIELDS (TREE_TYPE (var
)), NULL_TREE
);
885 rc
= fold_build3_loc (input_location
, COMPONENT_REF
, TREE_TYPE (p
->field
),
886 var
, p
->field
, NULL_TREE
);
887 rc
= fold_build2_loc (input_location
, BIT_AND_EXPR
, TREE_TYPE (rc
),
888 rc
, build_int_cst (TREE_TYPE (rc
),
889 IOPARM_common_libreturn_mask
));
891 tmp
= fold_build3_loc (input_location
, SWITCH_EXPR
, NULL_TREE
,
894 gfc_add_expr_to_block (block
, tmp
);
898 /* Store the current file and line number to variables so that if a
899 library call goes awry, we can tell the user where the problem is. */
902 set_error_locus (stmtblock_t
* block
, tree var
, locus
* where
)
905 tree str
, locus_file
;
907 gfc_st_parameter_field
*p
= &st_parameter_field
[IOPARM_common_filename
];
909 locus_file
= fold_build3_loc (input_location
, COMPONENT_REF
,
910 st_parameter
[IOPARM_ptype_common
].type
,
911 var
, TYPE_FIELDS (TREE_TYPE (var
)), NULL_TREE
);
912 locus_file
= fold_build3_loc (input_location
, COMPONENT_REF
,
913 TREE_TYPE (p
->field
), locus_file
,
914 p
->field
, NULL_TREE
);
916 str
= gfc_build_cstring_const (f
->filename
);
918 str
= gfc_build_addr_expr (pchar_type_node
, str
);
919 gfc_add_modify (block
, locus_file
, str
);
921 line
= LOCATION_LINE (where
->lb
->location
);
922 set_parameter_const (block
, var
, IOPARM_common_line
, line
);
926 /* Translate an OPEN statement. */
929 gfc_trans_open (gfc_code
* code
)
931 stmtblock_t block
, post_block
;
934 unsigned int mask
= 0;
936 gfc_start_block (&block
);
937 gfc_init_block (&post_block
);
939 var
= gfc_create_var (st_parameter
[IOPARM_ptype_open
].type
, "open_parm");
941 set_error_locus (&block
, var
, &code
->loc
);
945 mask
|= set_string (&block
, &post_block
, var
, IOPARM_common_iomsg
,
949 mask
|= set_parameter_ref (&block
, &post_block
, var
, IOPARM_common_iostat
,
953 mask
|= IOPARM_common_err
;
956 mask
|= set_string (&block
, &post_block
, var
, IOPARM_open_file
, p
->file
);
959 mask
|= set_string (&block
, &post_block
, var
, IOPARM_open_status
,
963 mask
|= set_string (&block
, &post_block
, var
, IOPARM_open_access
,
967 mask
|= set_string (&block
, &post_block
, var
, IOPARM_open_form
, p
->form
);
970 mask
|= set_parameter_value (&block
, p
->iostat
, var
, IOPARM_open_recl_in
,
974 mask
|= set_string (&block
, &post_block
, var
, IOPARM_open_blank
,
978 mask
|= set_string (&block
, &post_block
, var
, IOPARM_open_position
,
982 mask
|= set_string (&block
, &post_block
, var
, IOPARM_open_action
,
986 mask
|= set_string (&block
, &post_block
, var
, IOPARM_open_delim
,
990 mask
|= set_string (&block
, &post_block
, var
, IOPARM_open_pad
, p
->pad
);
993 mask
|= set_string (&block
, &post_block
, var
, IOPARM_open_decimal
,
997 mask
|= set_string (&block
, &post_block
, var
, IOPARM_open_encoding
,
1001 mask
|= set_string (&block
, &post_block
, var
, IOPARM_open_round
, p
->round
);
1004 mask
|= set_string (&block
, &post_block
, var
, IOPARM_open_sign
, p
->sign
);
1006 if (p
->asynchronous
)
1007 mask
|= set_string (&block
, &post_block
, var
, IOPARM_open_asynchronous
,
1011 mask
|= set_string (&block
, &post_block
, var
, IOPARM_open_convert
,
1015 mask
|= set_parameter_ref (&block
, &post_block
, var
, IOPARM_open_newunit
,
1018 set_parameter_const (&block
, var
, IOPARM_common_flags
, mask
);
1021 set_parameter_value (&block
, p
->iostat
, var
, IOPARM_common_unit
, p
->unit
);
1023 set_parameter_const (&block
, var
, IOPARM_common_unit
, 0);
1025 tmp
= gfc_build_addr_expr (NULL_TREE
, var
);
1026 tmp
= build_call_expr_loc (input_location
,
1027 iocall
[IOCALL_OPEN
], 1, tmp
);
1028 gfc_add_expr_to_block (&block
, tmp
);
1030 gfc_add_block_to_block (&block
, &post_block
);
1032 io_result (&block
, var
, p
->err
, NULL
, NULL
);
1034 return gfc_finish_block (&block
);
1038 /* Translate a CLOSE statement. */
1041 gfc_trans_close (gfc_code
* code
)
1043 stmtblock_t block
, post_block
;
1046 unsigned int mask
= 0;
1048 gfc_start_block (&block
);
1049 gfc_init_block (&post_block
);
1051 var
= gfc_create_var (st_parameter
[IOPARM_ptype_close
].type
, "close_parm");
1053 set_error_locus (&block
, var
, &code
->loc
);
1054 p
= code
->ext
.close
;
1057 mask
|= set_string (&block
, &post_block
, var
, IOPARM_common_iomsg
,
1061 mask
|= set_parameter_ref (&block
, &post_block
, var
, IOPARM_common_iostat
,
1065 mask
|= IOPARM_common_err
;
1068 mask
|= set_string (&block
, &post_block
, var
, IOPARM_close_status
,
1071 set_parameter_const (&block
, var
, IOPARM_common_flags
, mask
);
1074 set_parameter_value (&block
, p
->iostat
, var
, IOPARM_common_unit
, p
->unit
);
1076 set_parameter_const (&block
, var
, IOPARM_common_unit
, 0);
1078 tmp
= gfc_build_addr_expr (NULL_TREE
, var
);
1079 tmp
= build_call_expr_loc (input_location
,
1080 iocall
[IOCALL_CLOSE
], 1, tmp
);
1081 gfc_add_expr_to_block (&block
, tmp
);
1083 gfc_add_block_to_block (&block
, &post_block
);
1085 io_result (&block
, var
, p
->err
, NULL
, NULL
);
1087 return gfc_finish_block (&block
);
1091 /* Common subroutine for building a file positioning statement. */
1094 build_filepos (tree function
, gfc_code
* code
)
1096 stmtblock_t block
, post_block
;
1099 unsigned int mask
= 0;
1101 p
= code
->ext
.filepos
;
1103 gfc_start_block (&block
);
1104 gfc_init_block (&post_block
);
1106 var
= gfc_create_var (st_parameter
[IOPARM_ptype_filepos
].type
,
1109 set_error_locus (&block
, var
, &code
->loc
);
1112 mask
|= set_string (&block
, &post_block
, var
, IOPARM_common_iomsg
,
1116 mask
|= set_parameter_ref (&block
, &post_block
, var
, IOPARM_common_iostat
,
1120 mask
|= IOPARM_common_err
;
1122 set_parameter_const (&block
, var
, IOPARM_common_flags
, mask
);
1125 set_parameter_value (&block
, p
->iostat
, var
, IOPARM_common_unit
, p
->unit
);
1127 set_parameter_const (&block
, var
, IOPARM_common_unit
, 0);
1129 tmp
= gfc_build_addr_expr (NULL_TREE
, var
);
1130 tmp
= build_call_expr_loc (input_location
,
1132 gfc_add_expr_to_block (&block
, tmp
);
1134 gfc_add_block_to_block (&block
, &post_block
);
1136 io_result (&block
, var
, p
->err
, NULL
, NULL
);
1138 return gfc_finish_block (&block
);
1142 /* Translate a BACKSPACE statement. */
1145 gfc_trans_backspace (gfc_code
* code
)
1147 return build_filepos (iocall
[IOCALL_BACKSPACE
], code
);
1151 /* Translate an ENDFILE statement. */
1154 gfc_trans_endfile (gfc_code
* code
)
1156 return build_filepos (iocall
[IOCALL_ENDFILE
], code
);
1160 /* Translate a REWIND statement. */
1163 gfc_trans_rewind (gfc_code
* code
)
1165 return build_filepos (iocall
[IOCALL_REWIND
], code
);
1169 /* Translate a FLUSH statement. */
1172 gfc_trans_flush (gfc_code
* code
)
1174 return build_filepos (iocall
[IOCALL_FLUSH
], code
);
1178 /* Create a dummy iostat variable to catch any error due to bad unit. */
1181 create_dummy_iostat (void)
1186 gfc_get_ha_sym_tree ("@iostat", &st
);
1187 st
->n
.sym
->ts
.type
= BT_INTEGER
;
1188 st
->n
.sym
->ts
.kind
= gfc_default_integer_kind
;
1189 gfc_set_sym_referenced (st
->n
.sym
);
1190 gfc_commit_symbol (st
->n
.sym
);
1191 st
->n
.sym
->backend_decl
1192 = gfc_create_var (gfc_get_int_type (st
->n
.sym
->ts
.kind
),
1195 e
= gfc_get_expr ();
1196 e
->expr_type
= EXPR_VARIABLE
;
1198 e
->ts
.type
= BT_INTEGER
;
1199 e
->ts
.kind
= st
->n
.sym
->ts
.kind
;
1205 /* Translate the non-IOLENGTH form of an INQUIRE statement. */
1208 gfc_trans_inquire (gfc_code
* code
)
1210 stmtblock_t block
, post_block
;
1213 unsigned int mask
= 0, mask2
= 0;
1215 gfc_start_block (&block
);
1216 gfc_init_block (&post_block
);
1218 var
= gfc_create_var (st_parameter
[IOPARM_ptype_inquire
].type
,
1221 set_error_locus (&block
, var
, &code
->loc
);
1222 p
= code
->ext
.inquire
;
1225 mask
|= set_string (&block
, &post_block
, var
, IOPARM_common_iomsg
,
1229 mask
|= set_parameter_ref (&block
, &post_block
, var
, IOPARM_common_iostat
,
1233 mask
|= IOPARM_common_err
;
1236 if (p
->unit
&& p
->file
)
1237 gfc_error ("INQUIRE statement at %L cannot contain both FILE and UNIT specifiers", &code
->loc
);
1240 mask
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_file
,
1245 mask
|= set_parameter_ref (&block
, &post_block
, var
, IOPARM_inquire_exist
,
1248 if (p
->unit
&& !p
->iostat
)
1250 p
->iostat
= create_dummy_iostat ();
1251 mask
|= set_parameter_ref (&block
, &post_block
, var
,
1252 IOPARM_common_iostat
, p
->iostat
);
1257 mask
|= set_parameter_ref (&block
, &post_block
, var
, IOPARM_inquire_opened
,
1261 mask
|= set_parameter_ref (&block
, &post_block
, var
, IOPARM_inquire_number
,
1265 mask
|= set_parameter_ref (&block
, &post_block
, var
, IOPARM_inquire_named
,
1269 mask
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_name
,
1273 mask
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_access
,
1277 mask
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_sequential
,
1281 mask
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_direct
,
1285 mask
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_form
,
1289 mask
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_formatted
,
1293 mask
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_unformatted
,
1297 mask
|= set_parameter_ref (&block
, &post_block
, var
,
1298 IOPARM_inquire_recl_out
, p
->recl
);
1301 mask
|= set_parameter_ref (&block
, &post_block
, var
,
1302 IOPARM_inquire_nextrec
, p
->nextrec
);
1305 mask
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_blank
,
1309 mask
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_delim
,
1313 mask
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_position
,
1317 mask
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_action
,
1321 mask
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_read
,
1325 mask
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_write
,
1329 mask
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_readwrite
,
1333 mask
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_pad
,
1337 mask
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_convert
,
1341 mask
|= set_parameter_ref (&block
, &post_block
, var
,
1342 IOPARM_inquire_strm_pos_out
, p
->strm_pos
);
1344 /* The second series of flags. */
1345 if (p
->asynchronous
)
1346 mask2
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_asynchronous
,
1350 mask2
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_decimal
,
1354 mask2
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_encoding
,
1358 mask2
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_round
,
1362 mask2
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_sign
,
1366 mask2
|= set_parameter_ref (&block
, &post_block
, var
,
1367 IOPARM_inquire_pending
, p
->pending
);
1370 mask2
|= set_parameter_ref (&block
, &post_block
, var
, IOPARM_inquire_size
,
1374 mask2
|= set_parameter_ref (&block
, &post_block
,var
, IOPARM_inquire_id
,
1377 mask2
|= set_string (&block
, &post_block
, var
, IOPARM_inquire_iqstream
,
1381 mask
|= set_parameter_const (&block
, var
, IOPARM_inquire_flags2
, mask2
);
1383 set_parameter_const (&block
, var
, IOPARM_common_flags
, mask
);
1386 set_parameter_value (&block
, p
->iostat
, var
, IOPARM_common_unit
, p
->unit
);
1388 set_parameter_const (&block
, var
, IOPARM_common_unit
, 0);
1390 tmp
= gfc_build_addr_expr (NULL_TREE
, var
);
1391 tmp
= build_call_expr_loc (input_location
,
1392 iocall
[IOCALL_INQUIRE
], 1, tmp
);
1393 gfc_add_expr_to_block (&block
, tmp
);
1395 gfc_add_block_to_block (&block
, &post_block
);
1397 io_result (&block
, var
, p
->err
, NULL
, NULL
);
1399 return gfc_finish_block (&block
);
1404 gfc_trans_wait (gfc_code
* code
)
1406 stmtblock_t block
, post_block
;
1409 unsigned int mask
= 0;
1411 gfc_start_block (&block
);
1412 gfc_init_block (&post_block
);
1414 var
= gfc_create_var (st_parameter
[IOPARM_ptype_wait
].type
,
1417 set_error_locus (&block
, var
, &code
->loc
);
1420 /* Set parameters here. */
1422 mask
|= set_string (&block
, &post_block
, var
, IOPARM_common_iomsg
,
1426 mask
|= set_parameter_ref (&block
, &post_block
, var
, IOPARM_common_iostat
,
1430 mask
|= IOPARM_common_err
;
1433 mask
|= set_parameter_value (&block
, p
->iostat
, var
, IOPARM_wait_id
, p
->id
);
1435 set_parameter_const (&block
, var
, IOPARM_common_flags
, mask
);
1438 set_parameter_value (&block
, p
->iostat
, var
, IOPARM_common_unit
, p
->unit
);
1440 tmp
= gfc_build_addr_expr (NULL_TREE
, var
);
1441 tmp
= build_call_expr_loc (input_location
,
1442 iocall
[IOCALL_WAIT
], 1, tmp
);
1443 gfc_add_expr_to_block (&block
, tmp
);
1445 gfc_add_block_to_block (&block
, &post_block
);
1447 io_result (&block
, var
, p
->err
, NULL
, NULL
);
1449 return gfc_finish_block (&block
);
1454 /* nml_full_name builds up the fully qualified name of a
1455 derived type component. '+' is used to denote a type extension. */
1458 nml_full_name (const char* var_name
, const char* cmp_name
, bool parent
)
1460 int full_name_length
;
1463 full_name_length
= strlen (var_name
) + strlen (cmp_name
) + 1;
1464 full_name
= XCNEWVEC (char, full_name_length
+ 1);
1465 strcpy (full_name
, var_name
);
1466 full_name
= strcat (full_name
, parent
? "+" : "%");
1467 full_name
= strcat (full_name
, cmp_name
);
1472 /* nml_get_addr_expr builds an address expression from the
1473 gfc_symbol or gfc_component backend_decl's. An offset is
1474 provided so that the address of an element of an array of
1475 derived types is returned. This is used in the runtime to
1476 determine that span of the derived type. */
1479 nml_get_addr_expr (gfc_symbol
* sym
, gfc_component
* c
,
1482 tree decl
= NULL_TREE
;
1487 sym
->attr
.referenced
= 1;
1488 decl
= gfc_get_symbol_decl (sym
);
1490 /* If this is the enclosing function declaration, use
1491 the fake result instead. */
1492 if (decl
== current_function_decl
)
1493 decl
= gfc_get_fake_result_decl (sym
, 0);
1494 else if (decl
== DECL_CONTEXT (current_function_decl
))
1495 decl
= gfc_get_fake_result_decl (sym
, 1);
1498 decl
= c
->backend_decl
;
1500 gcc_assert (decl
&& ((TREE_CODE (decl
) == FIELD_DECL
1501 || TREE_CODE (decl
) == VAR_DECL
1502 || TREE_CODE (decl
) == PARM_DECL
)
1503 || TREE_CODE (decl
) == COMPONENT_REF
));
1507 /* Build indirect reference, if dummy argument. */
1509 if (POINTER_TYPE_P (TREE_TYPE(tmp
)))
1510 tmp
= build_fold_indirect_ref_loc (input_location
, tmp
);
1512 /* Treat the component of a derived type, using base_addr for
1513 the derived type. */
1515 if (TREE_CODE (decl
) == FIELD_DECL
)
1516 tmp
= fold_build3_loc (input_location
, COMPONENT_REF
, TREE_TYPE (tmp
),
1517 base_addr
, tmp
, NULL_TREE
);
1519 if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (tmp
)))
1520 tmp
= gfc_conv_array_data (tmp
);
1523 if (!POINTER_TYPE_P (TREE_TYPE (tmp
)))
1524 tmp
= gfc_build_addr_expr (NULL_TREE
, tmp
);
1526 if (TREE_CODE (TREE_TYPE (tmp
)) == ARRAY_TYPE
)
1527 tmp
= gfc_build_array_ref (tmp
, gfc_index_zero_node
, NULL
);
1529 if (!POINTER_TYPE_P (TREE_TYPE (tmp
)))
1530 tmp
= build_fold_indirect_ref_loc (input_location
,
1534 gcc_assert (tmp
&& POINTER_TYPE_P (TREE_TYPE (tmp
)));
1540 /* For an object VAR_NAME whose base address is BASE_ADDR, generate a
1541 call to iocall[IOCALL_SET_NML_VAL]. For derived type variable, recursively
1542 generate calls to iocall[IOCALL_SET_NML_VAL] for each component. */
1544 #define IARG(i) build_int_cst (gfc_array_index_type, i)
1547 transfer_namelist_element (stmtblock_t
* block
, const char * var_name
,
1548 gfc_symbol
* sym
, gfc_component
* c
,
1551 gfc_typespec
* ts
= NULL
;
1552 gfc_array_spec
* as
= NULL
;
1553 tree addr_expr
= NULL
;
1559 tree decl
= NULL_TREE
;
1560 tree gfc_int4_type_node
= gfc_get_int_type (4);
1565 gcc_assert (sym
|| c
);
1567 /* Build the namelist object name. */
1569 string
= gfc_build_cstring_const (var_name
);
1570 string
= gfc_build_addr_expr (pchar_type_node
, string
);
1572 /* Build ts, as and data address using symbol or component. */
1574 ts
= (sym
) ? &sym
->ts
: &c
->ts
;
1575 as
= (sym
) ? sym
->as
: c
->as
;
1577 addr_expr
= nml_get_addr_expr (sym
, c
, base_addr
);
1584 decl
= (sym
) ? sym
->backend_decl
: c
->backend_decl
;
1585 if (sym
&& sym
->attr
.dummy
)
1586 decl
= build_fold_indirect_ref_loc (input_location
, decl
);
1587 dt
= TREE_TYPE (decl
);
1588 dtype
= gfc_get_dtype (dt
);
1593 dtype
= IARG (itype
<< GFC_DTYPE_TYPE_SHIFT
);
1596 /* Build up the arguments for the transfer call.
1597 The call for the scalar part transfers:
1598 (address, name, type, kind or string_length, dtype) */
1600 dt_parm_addr
= gfc_build_addr_expr (NULL_TREE
, dt_parm
);
1602 if (ts
->type
== BT_CHARACTER
)
1603 tmp
= ts
->u
.cl
->backend_decl
;
1605 tmp
= build_int_cst (gfc_charlen_type_node
, 0);
1606 tmp
= build_call_expr_loc (input_location
,
1607 iocall
[IOCALL_SET_NML_VAL
], 6,
1608 dt_parm_addr
, addr_expr
, string
,
1609 build_int_cst (gfc_int4_type_node
, ts
->kind
),
1611 gfc_add_expr_to_block (block
, tmp
);
1613 /* If the object is an array, transfer rank times:
1614 (null pointer, name, stride, lbound, ubound) */
1616 for ( n_dim
= 0 ; n_dim
< rank
; n_dim
++ )
1618 tmp
= build_call_expr_loc (input_location
,
1619 iocall
[IOCALL_SET_NML_VAL_DIM
], 5,
1621 build_int_cst (gfc_int4_type_node
, n_dim
),
1622 gfc_conv_array_stride (decl
, n_dim
),
1623 gfc_conv_array_lbound (decl
, n_dim
),
1624 gfc_conv_array_ubound (decl
, n_dim
));
1625 gfc_add_expr_to_block (block
, tmp
);
1628 if (ts
->type
== BT_DERIVED
&& ts
->u
.derived
->components
)
1632 /* Provide the RECORD_TYPE to build component references. */
1634 tree expr
= build_fold_indirect_ref_loc (input_location
,
1637 for (cmp
= ts
->u
.derived
->components
; cmp
; cmp
= cmp
->next
)
1639 char *full_name
= nml_full_name (var_name
, cmp
->name
,
1640 ts
->u
.derived
->attr
.extension
);
1641 transfer_namelist_element (block
,
1651 /* Create a data transfer statement. Not all of the fields are valid
1652 for both reading and writing, but improper use has been filtered
1656 build_dt (tree function
, gfc_code
* code
)
1658 stmtblock_t block
, post_block
, post_end_block
, post_iu_block
;
1663 unsigned int mask
= 0;
1665 gfc_start_block (&block
);
1666 gfc_init_block (&post_block
);
1667 gfc_init_block (&post_end_block
);
1668 gfc_init_block (&post_iu_block
);
1670 var
= gfc_create_var (st_parameter
[IOPARM_ptype_dt
].type
, "dt_parm");
1672 set_error_locus (&block
, var
, &code
->loc
);
1674 if (last_dt
== IOLENGTH
)
1678 inq
= code
->ext
.inquire
;
1680 /* First check that preconditions are met. */
1681 gcc_assert (inq
!= NULL
);
1682 gcc_assert (inq
->iolength
!= NULL
);
1684 /* Connect to the iolength variable. */
1685 mask
|= set_parameter_ref (&block
, &post_end_block
, var
,
1686 IOPARM_dt_iolength
, inq
->iolength
);
1692 gcc_assert (dt
!= NULL
);
1695 if (dt
&& dt
->io_unit
)
1697 if (dt
->io_unit
->ts
.type
== BT_CHARACTER
)
1699 mask
|= set_internal_unit (&block
, &post_iu_block
,
1701 set_parameter_const (&block
, var
, IOPARM_common_unit
,
1702 dt
->io_unit
->ts
.kind
== 1 ? 0 : -1);
1706 set_parameter_const (&block
, var
, IOPARM_common_unit
, 0);
1711 mask
|= set_string (&block
, &post_block
, var
, IOPARM_common_iomsg
,
1715 mask
|= set_parameter_ref (&block
, &post_end_block
, var
,
1716 IOPARM_common_iostat
, dt
->iostat
);
1719 mask
|= IOPARM_common_err
;
1722 mask
|= IOPARM_common_eor
;
1725 mask
|= IOPARM_common_end
;
1728 mask
|= set_parameter_ref (&block
, &post_end_block
, var
,
1729 IOPARM_dt_id
, dt
->id
);
1732 mask
|= set_parameter_value (&block
, dt
->iostat
, var
, IOPARM_dt_pos
,
1735 if (dt
->asynchronous
)
1736 mask
|= set_string (&block
, &post_block
, var
, IOPARM_dt_asynchronous
,
1740 mask
|= set_string (&block
, &post_block
, var
, IOPARM_dt_blank
,
1744 mask
|= set_string (&block
, &post_block
, var
, IOPARM_dt_decimal
,
1748 mask
|= set_string (&block
, &post_block
, var
, IOPARM_dt_delim
,
1752 mask
|= set_string (&block
, &post_block
, var
, IOPARM_dt_pad
,
1756 mask
|= set_string (&block
, &post_block
, var
, IOPARM_dt_round
,
1760 mask
|= set_string (&block
, &post_block
, var
, IOPARM_dt_sign
,
1764 mask
|= set_parameter_value (&block
, dt
->iostat
, var
, IOPARM_dt_rec
,
1768 mask
|= set_string (&block
, &post_block
, var
, IOPARM_dt_advance
,
1771 if (dt
->format_expr
)
1772 mask
|= set_string (&block
, &post_end_block
, var
, IOPARM_dt_format
,
1775 if (dt
->format_label
)
1777 if (dt
->format_label
== &format_asterisk
)
1778 mask
|= IOPARM_dt_list_format
;
1780 mask
|= set_string (&block
, &post_block
, var
, IOPARM_dt_format
,
1781 dt
->format_label
->format
);
1785 mask
|= set_parameter_ref (&block
, &post_end_block
, var
,
1786 IOPARM_dt_size
, dt
->size
);
1790 if (dt
->format_expr
|| dt
->format_label
)
1791 gfc_internal_error ("build_dt: format with namelist");
1793 nmlname
= gfc_get_character_expr (gfc_default_character_kind
, NULL
,
1795 strlen (dt
->namelist
->name
));
1797 mask
|= set_string (&block
, &post_block
, var
, IOPARM_dt_namelist_name
,
1800 gfc_free_expr (nmlname
);
1802 if (last_dt
== READ
)
1803 mask
|= IOPARM_dt_namelist_read_mode
;
1805 set_parameter_const (&block
, var
, IOPARM_common_flags
, mask
);
1809 for (nml
= dt
->namelist
->namelist
; nml
; nml
= nml
->next
)
1810 transfer_namelist_element (&block
, nml
->sym
->name
, nml
->sym
,
1814 set_parameter_const (&block
, var
, IOPARM_common_flags
, mask
);
1816 if (dt
->io_unit
&& dt
->io_unit
->ts
.type
== BT_INTEGER
)
1817 set_parameter_value (&block
, dt
->iostat
, var
, IOPARM_common_unit
,
1821 set_parameter_const (&block
, var
, IOPARM_common_flags
, mask
);
1823 tmp
= gfc_build_addr_expr (NULL_TREE
, var
);
1824 tmp
= build_call_expr_loc (UNKNOWN_LOCATION
,
1826 gfc_add_expr_to_block (&block
, tmp
);
1828 gfc_add_block_to_block (&block
, &post_block
);
1831 dt_post_end_block
= &post_end_block
;
1833 /* Set implied do loop exit condition. */
1834 if (last_dt
== READ
|| last_dt
== WRITE
)
1836 gfc_st_parameter_field
*p
= &st_parameter_field
[IOPARM_common_flags
];
1838 tmp
= fold_build3_loc (input_location
, COMPONENT_REF
,
1839 st_parameter
[IOPARM_ptype_common
].type
,
1840 dt_parm
, TYPE_FIELDS (TREE_TYPE (dt_parm
)),
1842 tmp
= fold_build3_loc (input_location
, COMPONENT_REF
,
1843 TREE_TYPE (p
->field
), tmp
, p
->field
, NULL_TREE
);
1844 tmp
= fold_build2_loc (input_location
, BIT_AND_EXPR
, TREE_TYPE (tmp
),
1845 tmp
, build_int_cst (TREE_TYPE (tmp
),
1846 IOPARM_common_libreturn_mask
));
1851 gfc_add_expr_to_block (&block
, gfc_trans_code_cond (code
->block
->next
, tmp
));
1853 gfc_add_block_to_block (&block
, &post_iu_block
);
1856 dt_post_end_block
= NULL
;
1858 return gfc_finish_block (&block
);
1862 /* Translate the IOLENGTH form of an INQUIRE statement. We treat
1863 this as a third sort of data transfer statement, except that
1864 lengths are summed instead of actually transferring any data. */
1867 gfc_trans_iolength (gfc_code
* code
)
1870 return build_dt (iocall
[IOCALL_IOLENGTH
], code
);
1874 /* Translate a READ statement. */
1877 gfc_trans_read (gfc_code
* code
)
1880 return build_dt (iocall
[IOCALL_READ
], code
);
1884 /* Translate a WRITE statement */
1887 gfc_trans_write (gfc_code
* code
)
1890 return build_dt (iocall
[IOCALL_WRITE
], code
);
1894 /* Finish a data transfer statement. */
1897 gfc_trans_dt_end (gfc_code
* code
)
1902 gfc_init_block (&block
);
1907 function
= iocall
[IOCALL_READ_DONE
];
1911 function
= iocall
[IOCALL_WRITE_DONE
];
1915 function
= iocall
[IOCALL_IOLENGTH_DONE
];
1922 tmp
= gfc_build_addr_expr (NULL_TREE
, dt_parm
);
1923 tmp
= build_call_expr_loc (input_location
,
1925 gfc_add_expr_to_block (&block
, tmp
);
1926 gfc_add_block_to_block (&block
, dt_post_end_block
);
1927 gfc_init_block (dt_post_end_block
);
1929 if (last_dt
!= IOLENGTH
)
1931 gcc_assert (code
->ext
.dt
!= NULL
);
1932 io_result (&block
, dt_parm
, code
->ext
.dt
->err
,
1933 code
->ext
.dt
->end
, code
->ext
.dt
->eor
);
1936 return gfc_finish_block (&block
);
1940 transfer_expr (gfc_se
* se
, gfc_typespec
* ts
, tree addr_expr
, gfc_code
* code
);
1942 /* Given an array field in a derived type variable, generate the code
1943 for the loop that iterates over array elements, and the code that
1944 accesses those array elements. Use transfer_expr to generate code
1945 for transferring that element. Because elements may also be
1946 derived types, transfer_expr and transfer_array_component are mutually
1950 transfer_array_component (tree expr
, gfc_component
* cm
, locus
* where
)
1959 gfc_array_info
*ss_array
;
1961 gfc_start_block (&block
);
1962 gfc_init_se (&se
, NULL
);
1964 /* Create and initialize Scalarization Status. Unlike in
1965 gfc_trans_transfer, we can't simply use gfc_walk_expr to take
1966 care of this task, because we don't have a gfc_expr at hand.
1967 Build one manually, as in gfc_trans_subarray_assign. */
1969 ss
= gfc_get_array_ss (gfc_ss_terminator
, NULL
, cm
->as
->rank
,
1971 ss_array
= &ss
->info
->data
.array
;
1972 ss_array
->shape
= gfc_get_shape (cm
->as
->rank
);
1973 ss_array
->descriptor
= expr
;
1974 ss_array
->data
= gfc_conv_array_data (expr
);
1975 ss_array
->offset
= gfc_conv_array_offset (expr
);
1976 for (n
= 0; n
< cm
->as
->rank
; n
++)
1978 ss_array
->start
[n
] = gfc_conv_array_lbound (expr
, n
);
1979 ss_array
->stride
[n
] = gfc_index_one_node
;
1981 mpz_init (ss_array
->shape
[n
]);
1982 mpz_sub (ss_array
->shape
[n
], cm
->as
->upper
[n
]->value
.integer
,
1983 cm
->as
->lower
[n
]->value
.integer
);
1984 mpz_add_ui (ss_array
->shape
[n
], ss_array
->shape
[n
], 1);
1987 /* Once we got ss, we use scalarizer to create the loop. */
1989 gfc_init_loopinfo (&loop
);
1990 gfc_add_ss_to_loop (&loop
, ss
);
1991 gfc_conv_ss_startstride (&loop
);
1992 gfc_conv_loop_setup (&loop
, where
);
1993 gfc_mark_ss_chain_used (ss
, 1);
1994 gfc_start_scalarized_body (&loop
, &body
);
1996 gfc_copy_loopinfo_to_se (&se
, &loop
);
1999 /* gfc_conv_tmp_array_ref assumes that se.expr contains the array. */
2001 gfc_conv_tmp_array_ref (&se
);
2003 /* Now se.expr contains an element of the array. Take the address and pass
2004 it to the IO routines. */
2005 tmp
= gfc_build_addr_expr (NULL_TREE
, se
.expr
);
2006 transfer_expr (&se
, &cm
->ts
, tmp
, NULL
);
2008 /* We are done now with the loop body. Wrap up the scalarizer and
2011 gfc_add_block_to_block (&body
, &se
.pre
);
2012 gfc_add_block_to_block (&body
, &se
.post
);
2014 gfc_trans_scalarizing_loops (&loop
, &body
);
2016 gfc_add_block_to_block (&block
, &loop
.pre
);
2017 gfc_add_block_to_block (&block
, &loop
.post
);
2019 gcc_assert (ss_array
->shape
!= NULL
);
2020 gfc_free_shape (&ss_array
->shape
, cm
->as
->rank
);
2021 gfc_cleanup_loop (&loop
);
2023 return gfc_finish_block (&block
);
2026 /* Generate the call for a scalar transfer node. */
2029 transfer_expr (gfc_se
* se
, gfc_typespec
* ts
, tree addr_expr
, gfc_code
* code
)
2031 tree tmp
, function
, arg2
, arg3
, field
, expr
;
2035 /* It is possible to get a C_NULL_PTR or C_NULL_FUNPTR expression here if
2036 the user says something like: print *, 'c_null_ptr: ', c_null_ptr
2037 We need to translate the expression to a constant if it's either
2038 C_NULL_PTR or C_NULL_FUNPTR. We could also get a user variable of
2039 type C_PTR or C_FUNPTR, in which case the ts->type may no longer be
2040 BT_DERIVED (could have been changed by gfc_conv_expr). */
2041 if ((ts
->type
== BT_DERIVED
|| ts
->type
== BT_INTEGER
)
2042 && ts
->u
.derived
!= NULL
2043 && (ts
->is_iso_c
== 1 || ts
->u
.derived
->ts
.is_iso_c
== 1))
2045 ts
->type
= BT_INTEGER
;
2046 ts
->kind
= gfc_index_integer_kind
;
2057 arg2
= build_int_cst (integer_type_node
, kind
);
2058 if (last_dt
== READ
)
2059 function
= iocall
[IOCALL_X_INTEGER
];
2061 function
= iocall
[IOCALL_X_INTEGER_WRITE
];
2066 arg2
= build_int_cst (integer_type_node
, kind
);
2067 if (last_dt
== READ
)
2069 if (gfc_real16_is_float128
&& ts
->kind
== 16)
2070 function
= iocall
[IOCALL_X_REAL128
];
2072 function
= iocall
[IOCALL_X_REAL
];
2076 if (gfc_real16_is_float128
&& ts
->kind
== 16)
2077 function
= iocall
[IOCALL_X_REAL128_WRITE
];
2079 function
= iocall
[IOCALL_X_REAL_WRITE
];
2085 arg2
= build_int_cst (integer_type_node
, kind
);
2086 if (last_dt
== READ
)
2088 if (gfc_real16_is_float128
&& ts
->kind
== 16)
2089 function
= iocall
[IOCALL_X_COMPLEX128
];
2091 function
= iocall
[IOCALL_X_COMPLEX
];
2095 if (gfc_real16_is_float128
&& ts
->kind
== 16)
2096 function
= iocall
[IOCALL_X_COMPLEX128_WRITE
];
2098 function
= iocall
[IOCALL_X_COMPLEX_WRITE
];
2104 arg2
= build_int_cst (integer_type_node
, kind
);
2105 if (last_dt
== READ
)
2106 function
= iocall
[IOCALL_X_LOGICAL
];
2108 function
= iocall
[IOCALL_X_LOGICAL_WRITE
];
2115 if (se
->string_length
)
2116 arg2
= se
->string_length
;
2119 tmp
= build_fold_indirect_ref_loc (input_location
,
2121 gcc_assert (TREE_CODE (TREE_TYPE (tmp
)) == ARRAY_TYPE
);
2122 arg2
= TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (tmp
)));
2123 arg2
= fold_convert (gfc_charlen_type_node
, arg2
);
2125 arg3
= build_int_cst (integer_type_node
, kind
);
2126 if (last_dt
== READ
)
2127 function
= iocall
[IOCALL_X_CHARACTER_WIDE
];
2129 function
= iocall
[IOCALL_X_CHARACTER_WIDE_WRITE
];
2131 tmp
= gfc_build_addr_expr (NULL_TREE
, dt_parm
);
2132 tmp
= build_call_expr_loc (input_location
,
2133 function
, 4, tmp
, addr_expr
, arg2
, arg3
);
2134 gfc_add_expr_to_block (&se
->pre
, tmp
);
2135 gfc_add_block_to_block (&se
->pre
, &se
->post
);
2140 if (se
->string_length
)
2141 arg2
= se
->string_length
;
2144 tmp
= build_fold_indirect_ref_loc (input_location
,
2146 gcc_assert (TREE_CODE (TREE_TYPE (tmp
)) == ARRAY_TYPE
);
2147 arg2
= TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (tmp
)));
2149 if (last_dt
== READ
)
2150 function
= iocall
[IOCALL_X_CHARACTER
];
2152 function
= iocall
[IOCALL_X_CHARACTER_WRITE
];
2157 if (ts
->u
.derived
->components
== NULL
)
2160 /* Recurse into the elements of the derived type. */
2161 expr
= gfc_evaluate_now (addr_expr
, &se
->pre
);
2162 expr
= build_fold_indirect_ref_loc (input_location
,
2165 /* Make sure that the derived type has been built. An external
2166 function, if only referenced in an io statement, requires this
2167 check (see PR58771). */
2168 if (ts
->u
.derived
->backend_decl
== NULL_TREE
)
2169 (void) gfc_typenode_for_spec (ts
);
2171 for (c
= ts
->u
.derived
->components
; c
; c
= c
->next
)
2173 field
= c
->backend_decl
;
2174 gcc_assert (field
&& TREE_CODE (field
) == FIELD_DECL
);
2176 tmp
= fold_build3_loc (UNKNOWN_LOCATION
,
2177 COMPONENT_REF
, TREE_TYPE (field
),
2178 expr
, field
, NULL_TREE
);
2180 if (c
->attr
.dimension
)
2182 tmp
= transfer_array_component (tmp
, c
, & code
->loc
);
2183 gfc_add_expr_to_block (&se
->pre
, tmp
);
2187 if (!c
->attr
.pointer
)
2188 tmp
= gfc_build_addr_expr (NULL_TREE
, tmp
);
2189 transfer_expr (se
, &c
->ts
, tmp
, code
);
2195 internal_error ("Bad IO basetype (%d)", ts
->type
);
2198 tmp
= gfc_build_addr_expr (NULL_TREE
, dt_parm
);
2199 tmp
= build_call_expr_loc (input_location
,
2200 function
, 3, tmp
, addr_expr
, arg2
);
2201 gfc_add_expr_to_block (&se
->pre
, tmp
);
2202 gfc_add_block_to_block (&se
->pre
, &se
->post
);
2207 /* Generate a call to pass an array descriptor to the IO library. The
2208 array should be of one of the intrinsic types. */
2211 transfer_array_desc (gfc_se
* se
, gfc_typespec
* ts
, tree addr_expr
)
2213 tree tmp
, charlen_arg
, kind_arg
, io_call
;
2215 if (ts
->type
== BT_CHARACTER
)
2216 charlen_arg
= se
->string_length
;
2218 charlen_arg
= build_int_cst (gfc_charlen_type_node
, 0);
2220 kind_arg
= build_int_cst (integer_type_node
, ts
->kind
);
2222 tmp
= gfc_build_addr_expr (NULL_TREE
, dt_parm
);
2223 if (last_dt
== READ
)
2224 io_call
= iocall
[IOCALL_X_ARRAY
];
2226 io_call
= iocall
[IOCALL_X_ARRAY_WRITE
];
2228 tmp
= build_call_expr_loc (UNKNOWN_LOCATION
,
2230 tmp
, addr_expr
, kind_arg
, charlen_arg
);
2231 gfc_add_expr_to_block (&se
->pre
, tmp
);
2232 gfc_add_block_to_block (&se
->pre
, &se
->post
);
2236 /* gfc_trans_transfer()-- Translate a TRANSFER code node */
2239 gfc_trans_transfer (gfc_code
* code
)
2241 stmtblock_t block
, body
;
2250 gfc_start_block (&block
);
2251 gfc_init_block (&body
);
2255 gfc_init_se (&se
, NULL
);
2257 if (expr
->rank
== 0)
2259 /* Transfer a scalar value. */
2260 gfc_conv_expr_reference (&se
, expr
);
2261 transfer_expr (&se
, &expr
->ts
, se
.expr
, code
);
2265 /* Transfer an array. If it is an array of an intrinsic
2266 type, pass the descriptor to the library. Otherwise
2267 scalarize the transfer. */
2268 if (expr
->ref
&& !gfc_is_proc_ptr_comp (expr
))
2270 for (ref
= expr
->ref
; ref
&& ref
->type
!= REF_ARRAY
;
2272 gcc_assert (ref
&& ref
->type
== REF_ARRAY
);
2275 if (expr
->ts
.type
!= BT_DERIVED
2276 && ref
&& ref
->next
== NULL
2277 && !is_subref_array (expr
))
2279 bool seen_vector
= false;
2281 if (ref
&& ref
->u
.ar
.type
== AR_SECTION
)
2283 for (n
= 0; n
< ref
->u
.ar
.dimen
; n
++)
2284 if (ref
->u
.ar
.dimen_type
[n
] == DIMEN_VECTOR
)
2291 if (seen_vector
&& last_dt
== READ
)
2293 /* Create a temp, read to that and copy it back. */
2294 gfc_conv_subref_array_arg (&se
, expr
, 0, INTENT_OUT
, false);
2299 /* Get the descriptor. */
2300 gfc_conv_expr_descriptor (&se
, expr
);
2301 tmp
= gfc_build_addr_expr (NULL_TREE
, se
.expr
);
2304 transfer_array_desc (&se
, &expr
->ts
, tmp
);
2305 goto finish_block_label
;
2308 /* Initialize the scalarizer. */
2309 ss
= gfc_walk_expr (expr
);
2310 gfc_init_loopinfo (&loop
);
2311 gfc_add_ss_to_loop (&loop
, ss
);
2313 /* Initialize the loop. */
2314 gfc_conv_ss_startstride (&loop
);
2315 gfc_conv_loop_setup (&loop
, &code
->expr1
->where
);
2317 /* The main loop body. */
2318 gfc_mark_ss_chain_used (ss
, 1);
2319 gfc_start_scalarized_body (&loop
, &body
);
2321 gfc_copy_loopinfo_to_se (&se
, &loop
);
2324 gfc_conv_expr_reference (&se
, expr
);
2325 transfer_expr (&se
, &expr
->ts
, se
.expr
, code
);
2330 gfc_add_block_to_block (&body
, &se
.pre
);
2331 gfc_add_block_to_block (&body
, &se
.post
);
2334 tmp
= gfc_finish_block (&body
);
2337 gcc_assert (expr
->rank
!= 0);
2338 gcc_assert (se
.ss
== gfc_ss_terminator
);
2339 gfc_trans_scalarizing_loops (&loop
, &body
);
2341 gfc_add_block_to_block (&loop
.pre
, &loop
.post
);
2342 tmp
= gfc_finish_block (&loop
.pre
);
2343 gfc_cleanup_loop (&loop
);
2346 gfc_add_expr_to_block (&block
, tmp
);
2348 return gfc_finish_block (&block
);
2351 #include "gt-fortran-trans-io.h"