_gfortran_caf_get
— Getting data from a remote imagevoid _gfortran_caf_get_desc (caf_token_t token, size_t offset,
int image_index, gfc_descriptor_t *src, caf_vector_t *src_vector,
gfc_descriptor_t *dest, int src_kind, int dst_kind, bool may_require_tmp)
token | intent(in) An opaque pointer identifying the coarray.
|
offset | By which amount of bytes the actual data is shifted
compared to the base address of the coarray.
|
image_index | The ID of the remote image; must be a positive
number.
|
dest | intent(in) Array descriptor of the local array to be
transferred to the remote image
|
src | intent(in) Array descriptor for the remote image for the
bounds and the size. The base_addr shall not be accessed.
|
src_vector | intent(int) If not NULL, it contains the vector
subscript of the destination array; the values are relative to the dimension
triplet of the dest argument.
|
dst_kind | Kind of the destination argument
|
src_kind | Kind of the source argument
|
may_require_tmp | The variable is false it is known at compile
time that the dest and src either cannot overlap or overlap (fully
or partially) such that walking src and dest in element wise
element order (honoring the stride value) will not lead to wrong results.
Otherwise, the value is true.
|
memmove
which handles (partially) overlapping memory. If
may_require_tmp is true, the library might additionally create a
temporary variable, unless additional checks show that this is not required
(e.g. because walking backward is possible or because both arrays are
contiguous and memmove
takes care of overlap issues).
Note that the library has to handle numeric-type conversion and for strings, padding and different character kinds.