]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/fortran/interface.c
Update copyright years.
[thirdparty/gcc.git] / gcc / fortran / interface.c
index 6f40ba76e686cb42c0ac615e339b11bc17a3f322..5cf02371f805df1627b905662ed31f2eec5c28e0 100644 (file)
@@ -1,7 +1,5 @@
 /* Deal with interfaces.
-   Copyright (C) 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009,
-   2010, 2011, 2012
-   Free Software Foundation, Inc.
+   Copyright (C) 2000-2017 Free Software Foundation, Inc.
    Contributed by Andy Vaught
 
 This file is part of GCC.
@@ -68,6 +66,7 @@ along with GCC; see the file COPYING3.  If not see
 #include "config.h"
 #include "system.h"
 #include "coretypes.h"
+#include "options.h"
 #include "gfortran.h"
 #include "match.h"
 #include "arith.h"
@@ -116,6 +115,21 @@ fold_unary_intrinsic (gfc_intrinsic_op op)
 }
 
 
+/* Return the operator depending on the DTIO moded string.  Note that
+   these are not operators in the normal sense and so have been placed
+   beyond GFC_INTRINSIC_END in gfortran.h:enum gfc_intrinsic_op.  */
+
+static gfc_intrinsic_op
+dtio_op (char* mode)
+{
+  if (strncmp (mode, "formatted", 9) == 0)
+    return INTRINSIC_FORMATTED;
+  if (strncmp (mode, "unformatted", 9) == 0)
+    return INTRINSIC_UNFORMATTED;
+  return INTRINSIC_NONE;
+}
+
+
 /* Match a generic specification.  Depending on which type of
    interface is found, the 'name' or 'op' pointers may be set.
    This subroutine doesn't return MATCH_NO.  */
@@ -163,6 +177,40 @@ gfc_match_generic_spec (interface_type *type,
       return MATCH_YES;
     }
 
+  if (gfc_match (" read ( %n )", buffer) == MATCH_YES)
+    {
+      *op = dtio_op (buffer);
+      if (*op == INTRINSIC_FORMATTED)
+       {
+         strcpy (name, gfc_code2string (dtio_procs, DTIO_RF));
+         *type = INTERFACE_DTIO;
+       }
+      if (*op == INTRINSIC_UNFORMATTED)
+       {
+         strcpy (name, gfc_code2string (dtio_procs, DTIO_RUF));
+         *type = INTERFACE_DTIO;
+       }
+      if (*op != INTRINSIC_NONE)
+       return MATCH_YES;
+    }
+
+  if (gfc_match (" write ( %n )", buffer) == MATCH_YES)
+    {
+      *op = dtio_op (buffer);
+      if (*op == INTRINSIC_FORMATTED)
+       {
+         strcpy (name, gfc_code2string (dtio_procs, DTIO_WF));
+         *type = INTERFACE_DTIO;
+       }
+      if (*op == INTRINSIC_UNFORMATTED)
+       {
+         strcpy (name, gfc_code2string (dtio_procs, DTIO_WUF));
+         *type = INTERFACE_DTIO;
+       }
+      if (*op != INTRINSIC_NONE)
+       return MATCH_YES;
+    }
+
   if (gfc_match_name (buffer) == MATCH_YES)
     {
       strcpy (name, buffer);
@@ -210,17 +258,18 @@ gfc_match_interface (void)
 
   switch (type)
     {
+    case INTERFACE_DTIO:
     case INTERFACE_GENERIC:
       if (gfc_get_symbol (name, NULL, &sym))
        return MATCH_ERROR;
 
-      if (!sym->attr.generic 
-         && gfc_add_generic (&sym->attr, sym->name, NULL) == FAILURE)
+      if (!sym->attr.generic
+         && !gfc_add_generic (&sym->attr, sym->name, NULL))
        return MATCH_ERROR;
 
       if (sym->attr.dummy)
        {
-         gfc_error ("Dummy procedure '%s' at %C cannot have a "
+         gfc_error ("Dummy procedure %qs at %C cannot have a "
                     "generic interface", sym->name);
          return MATCH_ERROR;
        }
@@ -253,8 +302,7 @@ gfc_match_abstract_interface (void)
 {
   match m;
 
-  if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: ABSTRACT INTERFACE at %C")
-                     == FAILURE)
+  if (!gfc_notify_std (GFC_STD_F2003, "ABSTRACT INTERFACE at %C"))
     return MATCH_ERROR;
 
   m = gfc_match_eos ();
@@ -318,7 +366,7 @@ gfc_match_end_interface (void)
          if (current_interface.op == INTRINSIC_ASSIGN)
            {
              m = MATCH_ERROR;
-             gfc_error ("Expected 'END INTERFACE ASSIGNMENT (=)' at %C");
+             gfc_error ("Expected %<END INTERFACE ASSIGNMENT (=)%> at %C");
            }
          else
            {
@@ -328,30 +376,34 @@ gfc_match_end_interface (void)
 
              /* The following if-statements are used to enforce C1202
                 from F2003.  */
-             if ((strcmp(s1, "==") == 0 && strcmp(s2, ".eq.") == 0)
-                 || (strcmp(s1, ".eq.") == 0 && strcmp(s2, "==") == 0))
+             if ((strcmp(s1, "==") == 0 && strcmp (s2, ".eq.") == 0)
+                 || (strcmp(s1, ".eq.") == 0 && strcmp (s2, "==") == 0))
                break;
-             if ((strcmp(s1, "/=") == 0 && strcmp(s2, ".ne.") == 0)
-                 || (strcmp(s1, ".ne.") == 0 && strcmp(s2, "/=") == 0))
+             if ((strcmp(s1, "/=") == 0 && strcmp (s2, ".ne.") == 0)
+                 || (strcmp(s1, ".ne.") == 0 && strcmp (s2, "/=") == 0))
                break;
-             if ((strcmp(s1, "<=") == 0 && strcmp(s2, ".le.") == 0)
-                 || (strcmp(s1, ".le.") == 0 && strcmp(s2, "<=") == 0))
+             if ((strcmp(s1, "<=") == 0 && strcmp (s2, ".le.") == 0)
+                 || (strcmp(s1, ".le.") == 0 && strcmp (s2, "<=") == 0))
                break;
-             if ((strcmp(s1, "<") == 0 && strcmp(s2, ".lt.") == 0)
-                 || (strcmp(s1, ".lt.") == 0 && strcmp(s2, "<") == 0))
+             if ((strcmp(s1, "<") == 0 && strcmp (s2, ".lt.") == 0)
+                 || (strcmp(s1, ".lt.") == 0 && strcmp (s2, "<") == 0))
                break;
-             if ((strcmp(s1, ">=") == 0 && strcmp(s2, ".ge.") == 0)
-                 || (strcmp(s1, ".ge.") == 0 && strcmp(s2, ">=") == 0))
+             if ((strcmp(s1, ">=") == 0 && strcmp (s2, ".ge.") == 0)
+                 || (strcmp(s1, ".ge.") == 0 && strcmp (s2, ">=") == 0))
                break;
-             if ((strcmp(s1, ">") == 0 && strcmp(s2, ".gt.") == 0)
-                 || (strcmp(s1, ".gt.") == 0 && strcmp(s2, ">") == 0))
+             if ((strcmp(s1, ">") == 0 && strcmp (s2, ".gt.") == 0)
+                 || (strcmp(s1, ".gt.") == 0 && strcmp (s2, ">") == 0))
                break;
 
              m = MATCH_ERROR;
-             gfc_error ("Expecting 'END INTERFACE OPERATOR (%s)' at %C, "
-                        "but got %s", s1, s2);
+             if (strcmp(s2, "none") == 0)
+               gfc_error ("Expecting %<END INTERFACE OPERATOR (%s)%> "
+                          "at %C, ", s1);
+             else
+               gfc_error ("Expecting %<END INTERFACE OPERATOR (%s)%> at %C, "
+                          "but got %s", s1, s2);
            }
-               
+
        }
 
       break;
@@ -362,18 +414,19 @@ gfc_match_end_interface (void)
       if (type != current_interface.type
          || strcmp (current_interface.uop->name, name) != 0)
        {
-         gfc_error ("Expecting 'END INTERFACE OPERATOR (.%s.)' at %C",
+         gfc_error ("Expecting %<END INTERFACE OPERATOR (.%s.)%> at %C",
                     current_interface.uop->name);
          m = MATCH_ERROR;
        }
 
       break;
 
+    case INTERFACE_DTIO:
     case INTERFACE_GENERIC:
       if (type != current_interface.type
          || strcmp (current_interface.sym->name, name) != 0)
        {
-         gfc_error ("Expecting 'END INTERFACE %s' at %C",
+         gfc_error ("Expecting %<END INTERFACE %s%> at %C",
                     current_interface.sym->name);
          m = MATCH_ERROR;
        }
@@ -385,97 +438,250 @@ gfc_match_end_interface (void)
 }
 
 
+/* Return whether the component was defined anonymously.  */
+
+static bool
+is_anonymous_component (gfc_component *cmp)
+{
+  /* Only UNION and MAP components are anonymous.  In the case of a MAP,
+     the derived type symbol is FL_STRUCT and the component name looks like mM*.
+     This is the only case in which the second character of a component name is
+     uppercase.  */
+  return cmp->ts.type == BT_UNION
+    || (cmp->ts.type == BT_DERIVED
+        && cmp->ts.u.derived->attr.flavor == FL_STRUCT
+        && cmp->name[0] && cmp->name[1] && ISUPPER (cmp->name[1]));
+}
+
+
+/* Return whether the derived type was defined anonymously.  */
+
+static bool
+is_anonymous_dt (gfc_symbol *derived)
+{
+  /* UNION and MAP types are always anonymous. Otherwise, only nested STRUCTURE
+     types can be anonymous.  For anonymous MAP/STRUCTURE, we have FL_STRUCT
+     and the type name looks like XX*.  This is the only case in which the
+     second character of a type name is uppercase.  */
+  return derived->attr.flavor == FL_UNION
+    || (derived->attr.flavor == FL_STRUCT
+        && derived->name[0] && derived->name[1] && ISUPPER (derived->name[1]));
+}
+
+
+/* Compare components according to 4.4.2 of the Fortran standard.  */
+
+static bool
+compare_components (gfc_component *cmp1, gfc_component *cmp2,
+    gfc_symbol *derived1, gfc_symbol *derived2)
+{
+  /* Compare names, but not for anonymous components such as UNION or MAP.  */
+  if (!is_anonymous_component (cmp1) && !is_anonymous_component (cmp2)
+      && strcmp (cmp1->name, cmp2->name) != 0)
+    return false;
+
+  if (cmp1->attr.access != cmp2->attr.access)
+    return false;
+
+  if (cmp1->attr.pointer != cmp2->attr.pointer)
+    return false;
+
+  if (cmp1->attr.dimension != cmp2->attr.dimension)
+    return false;
+
+  if (cmp1->attr.allocatable != cmp2->attr.allocatable)
+    return false;
+
+  if (cmp1->attr.dimension && gfc_compare_array_spec (cmp1->as, cmp2->as) == 0)
+    return false;
+
+  if (cmp1->ts.type == BT_CHARACTER && cmp2->ts.type == BT_CHARACTER)
+    {
+      gfc_charlen *l1 = cmp1->ts.u.cl;
+      gfc_charlen *l2 = cmp2->ts.u.cl;
+      if (l1 && l2 && l1->length && l2->length
+          && l1->length->expr_type == EXPR_CONSTANT
+          && l2->length->expr_type == EXPR_CONSTANT
+          && gfc_dep_compare_expr (l1->length, l2->length) != 0)
+        return false;
+    }
+
+  /* Make sure that link lists do not put this function into an
+     endless recursive loop!  */
+  if (!(cmp1->ts.type == BT_DERIVED && derived1 == cmp1->ts.u.derived)
+      && !(cmp2->ts.type == BT_DERIVED && derived2 == cmp2->ts.u.derived)
+      && !gfc_compare_types (&cmp1->ts, &cmp2->ts))
+    return false;
+
+  else if ( (cmp1->ts.type == BT_DERIVED && derived1 == cmp1->ts.u.derived)
+        && !(cmp2->ts.type == BT_DERIVED && derived2 == cmp2->ts.u.derived))
+    return false;
+
+  else if (!(cmp1->ts.type == BT_DERIVED && derived1 == cmp1->ts.u.derived)
+        &&  (cmp2->ts.type == BT_DERIVED && derived2 == cmp2->ts.u.derived))
+    return false;
+
+  return true;
+}
+
+
+/* Compare two union types by comparing the components of their maps.
+   Because unions and maps are anonymous their types get special internal
+   names; therefore the usual derived type comparison will fail on them.
+
+   Returns nonzero if equal, as with gfc_compare_derived_types. Also as with
+   gfc_compare_derived_types, 'equal' is closer to meaning 'duplicate
+   definitions' than 'equivalent structure'. */
+
+static bool
+compare_union_types (gfc_symbol *un1, gfc_symbol *un2)
+{
+  gfc_component *map1, *map2, *cmp1, *cmp2;
+  gfc_symbol *map1_t, *map2_t;
+
+  if (un1->attr.flavor != FL_UNION || un2->attr.flavor != FL_UNION)
+    return false;
+
+  if (un1->attr.zero_comp != un2->attr.zero_comp)
+    return false;
+
+  if (un1->attr.zero_comp)
+    return true;
+
+  map1 = un1->components;
+  map2 = un2->components;
+
+  /* In terms of 'equality' here we are worried about types which are
+     declared the same in two places, not types that represent equivalent
+     structures. (This is common because of FORTRAN's weird scoping rules.)
+     Though two unions with their maps in different orders could be equivalent,
+     we will say they are not equal for the purposes of this test; therefore
+     we compare the maps sequentially. */
+  for (;;)
+    {
+      map1_t = map1->ts.u.derived;
+      map2_t = map2->ts.u.derived;
+
+      cmp1 = map1_t->components;
+      cmp2 = map2_t->components;
+
+      /* Protect against null components.  */
+      if (map1_t->attr.zero_comp != map2_t->attr.zero_comp)
+       return false;
+
+      if (map1_t->attr.zero_comp)
+       return true;
+
+      for (;;)
+       {
+         /* No two fields will ever point to the same map type unless they are
+            the same component, because one map field is created with its type
+            declaration. Therefore don't worry about recursion here. */
+         /* TODO: worry about recursion into parent types of the unions? */
+         if (!compare_components (cmp1, cmp2, map1_t, map2_t))
+           return false;
+
+         cmp1 = cmp1->next;
+         cmp2 = cmp2->next;
+
+         if (cmp1 == NULL && cmp2 == NULL)
+           break;
+         if (cmp1 == NULL || cmp2 == NULL)
+           return false;
+       }
+
+      map1 = map1->next;
+      map2 = map2->next;
+
+      if (map1 == NULL && map2 == NULL)
+       break;
+      if (map1 == NULL || map2 == NULL)
+       return false;
+    }
+
+  return true;
+}
+
+
+
 /* Compare two derived types using the criteria in 4.4.2 of the standard,
    recursing through gfc_compare_types for the components.  */
 
-int
+bool
 gfc_compare_derived_types (gfc_symbol *derived1, gfc_symbol *derived2)
 {
-  gfc_component *dt1, *dt2;
+  gfc_component *cmp1, *cmp2;
 
   if (derived1 == derived2)
-    return 1;
+    return true;
+
+  if (!derived1 || !derived2)
+    gfc_internal_error ("gfc_compare_derived_types: invalid derived type");
+
+  /* Compare UNION types specially.  */
+  if (derived1->attr.flavor == FL_UNION || derived2->attr.flavor == FL_UNION)
+    return compare_union_types (derived1, derived2);
 
   /* Special case for comparing derived types across namespaces.  If the
      true names and module names are the same and the module name is
      nonnull, then they are equal.  */
-  if (derived1 != NULL && derived2 != NULL
-      && strcmp (derived1->name, derived2->name) == 0
+  if (strcmp (derived1->name, derived2->name) == 0
       && derived1->module != NULL && derived2->module != NULL
       && strcmp (derived1->module, derived2->module) == 0)
-    return 1;
+    return true;
 
   /* Compare type via the rules of the standard.  Both types must have
-     the SEQUENCE or BIND(C) attribute to be equal.  */
+     the SEQUENCE or BIND(C) attribute to be equal. STRUCTUREs are special
+     because they can be anonymous; therefore two structures with different
+     names may be equal.  */
 
-  if (strcmp (derived1->name, derived2->name))
-    return 0;
+  /* Compare names, but not for anonymous types such as UNION or MAP.  */
+  if (!is_anonymous_dt (derived1) && !is_anonymous_dt (derived2)
+      && strcmp (derived1->name, derived2->name) != 0)
+    return false;
 
   if (derived1->component_access == ACCESS_PRIVATE
       || derived2->component_access == ACCESS_PRIVATE)
-    return 0;
+    return false;
 
   if (!(derived1->attr.sequence && derived2->attr.sequence)
       && !(derived1->attr.is_bind_c && derived2->attr.is_bind_c))
-    return 0;
+    return false;
+
+  /* Protect against null components.  */
+  if (derived1->attr.zero_comp != derived2->attr.zero_comp)
+    return false;
+
+  if (derived1->attr.zero_comp)
+    return true;
 
-  dt1 = derived1->components;
-  dt2 = derived2->components;
+  cmp1 = derived1->components;
+  cmp2 = derived2->components;
 
   /* Since subtypes of SEQUENCE types must be SEQUENCE types as well, a
      simple test can speed things up.  Otherwise, lots of things have to
      match.  */
   for (;;)
     {
-      if (strcmp (dt1->name, dt2->name) != 0)
-       return 0;
-
-      if (dt1->attr.access != dt2->attr.access)
-       return 0;
+      if (!compare_components (cmp1, cmp2, derived1, derived2))
+        return false;
 
-      if (dt1->attr.pointer != dt2->attr.pointer)
-       return 0;
-
-      if (dt1->attr.dimension != dt2->attr.dimension)
-       return 0;
-
-     if (dt1->attr.allocatable != dt2->attr.allocatable)
-       return 0;
-
-      if (dt1->attr.dimension && gfc_compare_array_spec (dt1->as, dt2->as) == 0)
-       return 0;
-
-      /* Make sure that link lists do not put this function into an 
-        endless recursive loop!  */
-      if (!(dt1->ts.type == BT_DERIVED && derived1 == dt1->ts.u.derived)
-           && !(dt1->ts.type == BT_DERIVED && derived1 == dt1->ts.u.derived)
-           && gfc_compare_types (&dt1->ts, &dt2->ts) == 0)
-       return 0;
-
-      else if ((dt1->ts.type == BT_DERIVED && derived1 == dt1->ts.u.derived)
-               && !(dt1->ts.type == BT_DERIVED && derived1 == dt1->ts.u.derived))
-       return 0;
-
-      else if (!(dt1->ts.type == BT_DERIVED && derived1 == dt1->ts.u.derived)
-               && (dt1->ts.type == BT_DERIVED && derived1 == dt1->ts.u.derived))
-       return 0;
-
-      dt1 = dt1->next;
-      dt2 = dt2->next;
+      cmp1 = cmp1->next;
+      cmp2 = cmp2->next;
 
-      if (dt1 == NULL && dt2 == NULL)
+      if (cmp1 == NULL && cmp2 == NULL)
        break;
-      if (dt1 == NULL || dt2 == NULL)
-       return 0;
+      if (cmp1 == NULL || cmp2 == NULL)
+       return false;
     }
 
-  return 1;
+  return true;
 }
 
 
 /* Compare two typespecs, recursively if necessary.  */
 
-int
+bool
 gfc_compare_types (gfc_typespec *ts1, gfc_typespec *ts2)
 {
   /* See if one of the typespecs is a BT_VOID, which is what is being used
@@ -483,83 +689,134 @@ gfc_compare_types (gfc_typespec *ts1, gfc_typespec *ts2)
      TODO: Possibly should narrow this to just the one typespec coming in
      that is for the formal arg, but oh well.  */
   if (ts1->type == BT_VOID || ts2->type == BT_VOID)
-    return 1;
-   
+    return true;
+
+  /* The _data component is not always present, therefore check for its
+     presence before assuming, that its derived->attr is available.
+     When the _data component is not present, then nevertheless the
+     unlimited_polymorphic flag may be set in the derived type's attr.  */
+  if (ts1->type == BT_CLASS && ts1->u.derived->components
+      && ((ts1->u.derived->attr.is_class
+          && ts1->u.derived->components->ts.u.derived->attr
+                                                 .unlimited_polymorphic)
+         || ts1->u.derived->attr.unlimited_polymorphic))
+    return true;
+
+  /* F2003: C717  */
+  if (ts2->type == BT_CLASS && ts1->type == BT_DERIVED
+      && ts2->u.derived->components
+      && ((ts2->u.derived->attr.is_class
+          && ts2->u.derived->components->ts.u.derived->attr
+                                                 .unlimited_polymorphic)
+         || ts2->u.derived->attr.unlimited_polymorphic)
+      && (ts1->u.derived->attr.sequence || ts1->u.derived->attr.is_bind_c))
+    return true;
+
   if (ts1->type != ts2->type
       && ((ts1->type != BT_DERIVED && ts1->type != BT_CLASS)
          || (ts2->type != BT_DERIVED && ts2->type != BT_CLASS)))
-    return 0;
+    return false;
+
+  if (ts1->type == BT_UNION)
+    return compare_union_types (ts1->u.derived, ts2->u.derived);
+
   if (ts1->type != BT_DERIVED && ts1->type != BT_CLASS)
     return (ts1->kind == ts2->kind);
 
   /* Compare derived types.  */
-  if (gfc_type_compatible (ts1, ts2))
-    return 1;
-
-  return gfc_compare_derived_types (ts1->u.derived ,ts2->u.derived);
+  return gfc_type_compatible (ts1, ts2);
 }
 
 
-/* Given two symbols that are formal arguments, compare their ranks
-   and types.  Returns nonzero if they have the same rank and type,
-   zero otherwise.  */
+static bool
+compare_type (gfc_symbol *s1, gfc_symbol *s2)
+{
+  if (s2->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
+    return true;
 
-static int
-compare_type_rank (gfc_symbol *s1, gfc_symbol *s2)
+  /* TYPE and CLASS of the same declared type are type compatible,
+     but have different characteristics.  */
+  if ((s1->ts.type == BT_CLASS && s2->ts.type == BT_DERIVED)
+      || (s1->ts.type == BT_DERIVED && s2->ts.type == BT_CLASS))
+    return false;
+
+  return gfc_compare_types (&s1->ts, &s2->ts) || s2->ts.type == BT_ASSUMED;
+}
+
+
+static bool
+compare_rank (gfc_symbol *s1, gfc_symbol *s2)
 {
+  gfc_array_spec *as1, *as2;
   int r1, r2;
 
-  r1 = (s1->as != NULL) ? s1->as->rank : 0;
-  r2 = (s2->as != NULL) ? s2->as->rank : 0;
+  if (s2->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
+    return true;
+
+  as1 = (s1->ts.type == BT_CLASS) ? CLASS_DATA (s1)->as : s1->as;
+  as2 = (s2->ts.type == BT_CLASS) ? CLASS_DATA (s2)->as : s2->as;
+
+  r1 = as1 ? as1->rank : 0;
+  r2 = as2 ? as2->rank : 0;
+
+  if (r1 != r2 && (!as2 || as2->type != AS_ASSUMED_RANK))
+    return false;  /* Ranks differ.  */
+
+  return true;
+}
 
-  if (r1 != r2)
-    return 0;                  /* Ranks differ.  */
 
-  return gfc_compare_types (&s1->ts, &s2->ts)
-        || s1->ts.type == BT_ASSUMED || s2->ts.type == BT_ASSUMED; 
+/* Given two symbols that are formal arguments, compare their ranks
+   and types.  Returns true if they have the same rank and type,
+   false otherwise.  */
+
+static bool
+compare_type_rank (gfc_symbol *s1, gfc_symbol *s2)
+{
+  return compare_type (s1, s2) && compare_rank (s1, s2);
 }
 
 
 /* Given two symbols that are formal arguments, compare their types
    and rank and their formal interfaces if they are both dummy
-   procedures.  Returns nonzero if the same, zero if different.  */
+   procedures.  Returns true if the same, false if different.  */
 
-static int
+static bool
 compare_type_rank_if (gfc_symbol *s1, gfc_symbol *s2)
 {
   if (s1 == NULL || s2 == NULL)
-    return s1 == s2 ? 1 : 0;
+    return (s1 == s2);
 
   if (s1 == s2)
-    return 1;
+    return true;
 
   if (s1->attr.flavor != FL_PROCEDURE && s2->attr.flavor != FL_PROCEDURE)
     return compare_type_rank (s1, s2);
 
   if (s1->attr.flavor != FL_PROCEDURE || s2->attr.flavor != FL_PROCEDURE)
-    return 0;
+    return false;
 
   /* At this point, both symbols are procedures.  It can happen that
      external procedures are compared, where one is identified by usage
      to be a function or subroutine but the other is not.  Check TKR
      nonetheless for these cases.  */
   if (s1->attr.function == 0 && s1->attr.subroutine == 0)
-    return s1->attr.external == 1 ? compare_type_rank (s1, s2) : 0;
+    return s1->attr.external ? compare_type_rank (s1, s2) : false;
 
   if (s2->attr.function == 0 && s2->attr.subroutine == 0)
-    return s2->attr.external == 1 ? compare_type_rank (s1, s2) : 0;
+    return s2->attr.external ? compare_type_rank (s1, s2) : false;
 
   /* Now the type of procedure has been identified.  */
   if (s1->attr.function != s2->attr.function
       || s1->attr.subroutine != s2->attr.subroutine)
-    return 0;
+    return false;
 
-  if (s1->attr.function && compare_type_rank (s1, s2) == 0)
-    return 0;
+  if (s1->attr.function && !compare_type_rank (s1, s2))
+    return false;
 
   /* Originally, gfortran recursed here to check the interfaces of passed
      procedures.  This is explicitly not required by the standard.  */
-  return 1;
+  return true;
 }
 
 
@@ -601,7 +858,7 @@ gfc_check_operator_interface (gfc_symbol *sym, gfc_intrinsic_op op,
   r1 = r2 = -1;
   k1 = k2 = -1;
 
-  for (formal = sym->formal; formal; formal = formal->next)
+  for (formal = gfc_sym_get_dummy_args (sym); formal; formal = formal->next)
     {
       gfc_symbol *fsym = formal->sym;
       if (fsym == NULL)
@@ -634,8 +891,12 @@ gfc_check_operator_interface (gfc_symbol *sym, gfc_intrinsic_op op,
                                && op != INTRINSIC_NOT)
       || (args == 2 && op == INTRINSIC_NOT))
     {
-      gfc_error ("Operator interface at %L has the wrong number of arguments",
-                &sym->declared_at);
+      if (op == INTRINSIC_ASSIGN)
+       gfc_error ("Assignment operator interface at %L must have "
+                  "two arguments", &sym->declared_at);
+      else
+       gfc_error ("Operator interface at %L has the wrong number of arguments",
+                  &sym->declared_at);
       return false;
     }
 
@@ -643,30 +904,27 @@ gfc_check_operator_interface (gfc_symbol *sym, gfc_intrinsic_op op,
      INTRINSIC_ASSIGN which should map to a subroutine.  */
   if (op == INTRINSIC_ASSIGN)
     {
+      gfc_formal_arglist *dummy_args;
+
       if (!sym->attr.subroutine)
        {
          gfc_error ("Assignment operator interface at %L must be "
                     "a SUBROUTINE", &sym->declared_at);
          return false;
        }
-      if (args != 2)
-       {
-         gfc_error ("Assignment operator interface at %L must have "
-                    "two arguments", &sym->declared_at);
-         return false;
-       }
 
       /* Allowed are (per F2003, 12.3.2.1.2 Defined assignments):
         - First argument an array with different rank than second,
         - First argument is a scalar and second an array,
         - Types and kinds do not conform, or
         - First argument is of derived type.  */
-      if (sym->formal->sym->ts.type != BT_DERIVED
-         && sym->formal->sym->ts.type != BT_CLASS
+      dummy_args = gfc_sym_get_dummy_args (sym);
+      if (dummy_args->sym->ts.type != BT_DERIVED
+         && dummy_args->sym->ts.type != BT_CLASS
          && (r2 == 0 || r1 == r2)
-         && (sym->formal->sym->ts.type == sym->formal->next->sym->ts.type
-             || (gfc_numeric_ts (&sym->formal->sym->ts)
-                 && gfc_numeric_ts (&sym->formal->next->sym->ts))))
+         && (dummy_args->sym->ts.type == dummy_args->next->sym->ts.type
+             || (gfc_numeric_ts (&dummy_args->sym->ts)
+                 && gfc_numeric_ts (&dummy_args->next->sym->ts))))
        {
          gfc_error ("Assignment operator interface at %L must not redefine "
                     "an INTRINSIC type assignment", &sym->declared_at);
@@ -831,11 +1089,11 @@ bad_repl:
    by this test. This subroutine implements rule 1 of section F03:16.2.3.
    'p1' and 'p2' are the PASS arguments of both procedures (if applicable).  */
 
-static int
+static bool
 count_types_test (gfc_formal_arglist *f1, gfc_formal_arglist *f2,
                  const char *p1, const char *p2)
 {
-  int rc, ac1, ac2, i, j, k, n1;
+  int ac1, ac2, i, j, k, n1;
   gfc_formal_arglist *f;
 
   typedef struct
@@ -890,7 +1148,7 @@ count_types_test (gfc_formal_arglist *f1, gfc_formal_arglist *f2,
 
   /* Now loop over each distinct type found in f1.  */
   k = 0;
-  rc = 0;
+  bool rc = false;
 
   for (i = 0; i < n1; i++)
     {
@@ -914,7 +1172,7 @@ count_types_test (gfc_formal_arglist *f1, gfc_formal_arglist *f2,
 
       if (ac1 > ac2)
        {
-         rc = 1;
+         rc = true;
          break;
        }
 
@@ -927,9 +1185,9 @@ count_types_test (gfc_formal_arglist *f1, gfc_formal_arglist *f2,
 }
 
 
-/* Perform the correspondence test in rule 3 of section F03:16.2.3.
-   Returns zero if no argument is found that satisfies rule 3, nonzero
-   otherwise. 'p1' and 'p2' are the PASS arguments of both procedures
+/* Perform the correspondence test in rule (3) of F08:C1215.
+   Returns zero if no argument is found that satisfies this rule,
+   nonzero otherwise. 'p1' and 'p2' are the PASS arguments of both procedures
    (if applicable).
 
    This test is also not symmetric in f1 and f2 and must be called
@@ -937,18 +1195,18 @@ count_types_test (gfc_formal_arglist *f1, gfc_formal_arglist *f2,
    argument list with keywords.  For example:
 
    INTERFACE FOO
-       SUBROUTINE F1(A, B)
-          INTEGER :: A ; REAL :: B
-       END SUBROUTINE F1
+     SUBROUTINE F1(A, B)
+       INTEGER :: A ; REAL :: B
+     END SUBROUTINE F1
 
-       SUBROUTINE F2(B, A)
-          INTEGER :: A ; REAL :: B
-       END SUBROUTINE F1
+     SUBROUTINE F2(B, A)
+       INTEGER :: A ; REAL :: B
+     END SUBROUTINE F1
    END INTERFACE FOO
 
    At this point, 'CALL FOO(A=1, B=1.0)' is ambiguous.  */
 
-static int
+static bool
 generic_correspondence (gfc_formal_arglist *f1, gfc_formal_arglist *f2,
                        const char *p1, const char *p2)
 {
@@ -968,7 +1226,10 @@ generic_correspondence (gfc_formal_arglist *f1, gfc_formal_arglist *f2,
        f2 = f2->next;
 
       if (f2 != NULL && (compare_type_rank (f1->sym, f2->sym)
-                        || compare_type_rank (f2->sym, f1->sym)))
+                        || compare_type_rank (f2->sym, f1->sym))
+         && !((gfc_option.allow_std & GFC_STD_F2008)
+              && ((f1->sym->attr.allocatable && f2->sym->attr.pointer)
+                  || (f2->sym->attr.allocatable && f1->sym->attr.pointer))))
        goto next;
 
       /* Now search for a disambiguating keyword argument starting at
@@ -979,8 +1240,11 @@ generic_correspondence (gfc_formal_arglist *f1, gfc_formal_arglist *f2,
            continue;
 
          sym = find_keyword_arg (g->sym->name, f2_save);
-         if (sym == NULL || !compare_type_rank (g->sym, sym))
-           return 1;
+         if (sym == NULL || !compare_type_rank (g->sym, sym)
+             || ((gfc_option.allow_std & GFC_STD_F2008)
+                 && ((sym->attr.allocatable && g->sym->attr.pointer)
+                     || (sym->attr.pointer && g->sym->attr.allocatable))))
+           return true;
        }
 
     next:
@@ -990,24 +1254,45 @@ generic_correspondence (gfc_formal_arglist *f1, gfc_formal_arglist *f2,
        f2 = f2->next;
     }
 
-  return 0;
+  return false;
+}
+
+
+static int
+symbol_rank (gfc_symbol *sym)
+{
+  gfc_array_spec *as;
+  as = (sym->ts.type == BT_CLASS) ? CLASS_DATA (sym)->as : sym->as;
+  return as ? as->rank : 0;
 }
 
 
 /* Check if the characteristics of two dummy arguments match,
    cf. F08:12.3.2.  */
 
-static gfc_try
-check_dummy_characteristics (gfc_symbol *s1, gfc_symbol *s2,
-                            bool type_must_agree, char *errmsg, int err_len)
+bool
+gfc_check_dummy_characteristics (gfc_symbol *s1, gfc_symbol *s2,
+                                bool type_must_agree, char *errmsg,
+                                int err_len)
 {
+  if (s1 == NULL || s2 == NULL)
+    return s1 == s2 ? true : false;
+
   /* Check type and rank.  */
-  if (type_must_agree && !compare_type_rank (s2, s1))
+  if (type_must_agree)
     {
-      if (errmsg != NULL)
-       snprintf (errmsg, err_len, "Type/rank mismatch in argument '%s'",
-                 s1->name);
-      return FAILURE;
+      if (!compare_type (s1, s2) || !compare_type (s2, s1))
+       {
+         snprintf (errmsg, err_len, "Type mismatch in argument '%s' (%s/%s)",
+                   s1->name, gfc_typename (&s1->ts), gfc_typename (&s2->ts));
+         return false;
+       }
+      if (!compare_rank (s1, s2))
+       {
+         snprintf (errmsg, err_len, "Rank mismatch in argument '%s' (%i/%i)",
+                   s1->name, symbol_rank (s1), symbol_rank (s2));
+         return false;
+       }
     }
 
   /* Check INTENT.  */
@@ -1015,7 +1300,7 @@ check_dummy_characteristics (gfc_symbol *s1, gfc_symbol *s2,
     {
       snprintf (errmsg, err_len, "INTENT mismatch in argument '%s'",
                s1->name);
-      return FAILURE;
+      return false;
     }
 
   /* Check OPTIONAL attribute.  */
@@ -1023,7 +1308,7 @@ check_dummy_characteristics (gfc_symbol *s1, gfc_symbol *s2,
     {
       snprintf (errmsg, err_len, "OPTIONAL mismatch in argument '%s'",
                s1->name);
-      return FAILURE;
+      return false;
     }
 
   /* Check ALLOCATABLE attribute.  */
@@ -1031,7 +1316,7 @@ check_dummy_characteristics (gfc_symbol *s1, gfc_symbol *s2,
     {
       snprintf (errmsg, err_len, "ALLOCATABLE mismatch in argument '%s'",
                s1->name);
-      return FAILURE;
+      return false;
     }
 
   /* Check POINTER attribute.  */
@@ -1039,7 +1324,7 @@ check_dummy_characteristics (gfc_symbol *s1, gfc_symbol *s2,
     {
       snprintf (errmsg, err_len, "POINTER mismatch in argument '%s'",
                s1->name);
-      return FAILURE;
+      return false;
     }
 
   /* Check TARGET attribute.  */
@@ -1047,11 +1332,53 @@ check_dummy_characteristics (gfc_symbol *s1, gfc_symbol *s2,
     {
       snprintf (errmsg, err_len, "TARGET mismatch in argument '%s'",
                s1->name);
-      return FAILURE;
+      return false;
+    }
+
+  /* Check ASYNCHRONOUS attribute.  */
+  if (s1->attr.asynchronous != s2->attr.asynchronous)
+    {
+      snprintf (errmsg, err_len, "ASYNCHRONOUS mismatch in argument '%s'",
+               s1->name);
+      return false;
+    }
+
+  /* Check CONTIGUOUS attribute.  */
+  if (s1->attr.contiguous != s2->attr.contiguous)
+    {
+      snprintf (errmsg, err_len, "CONTIGUOUS mismatch in argument '%s'",
+               s1->name);
+      return false;
+    }
+
+  /* Check VALUE attribute.  */
+  if (s1->attr.value != s2->attr.value)
+    {
+      snprintf (errmsg, err_len, "VALUE mismatch in argument '%s'",
+               s1->name);
+      return false;
+    }
+
+  /* Check VOLATILE attribute.  */
+  if (s1->attr.volatile_ != s2->attr.volatile_)
+    {
+      snprintf (errmsg, err_len, "VOLATILE mismatch in argument '%s'",
+               s1->name);
+      return false;
     }
 
-  /* FIXME: Do more comprehensive testing of attributes, like e.g.
-           ASYNCHRONOUS, CONTIGUOUS, VALUE, VOLATILE, etc.  */
+  /* Check interface of dummy procedures.  */
+  if (s1->attr.flavor == FL_PROCEDURE)
+    {
+      char err[200];
+      if (!gfc_compare_interfaces (s1, s2, s2->name, 0, 1, err, sizeof(err),
+                                  NULL, NULL))
+       {
+         snprintf (errmsg, err_len, "Interface mismatch in dummy procedure "
+                   "'%s': %s", s1->name, err);
+         return false;
+       }
+    }
 
   /* Check string length.  */
   if (s1->ts.type == BT_CHARACTER
@@ -1067,11 +1394,11 @@ check_dummy_characteristics (gfc_symbol *s1, gfc_symbol *s2,
        case -3:
          snprintf (errmsg, err_len, "Character length mismatch "
                    "in argument '%s'", s1->name);
-         return FAILURE;
+         return false;
 
        case -2:
          /* FIXME: Implement a warning for this case.
-         gfc_warning ("Possible character length mismatch in argument '%s'",
+         gfc_warning (0, "Possible character length mismatch in argument %qs",
                       s1->name);*/
          break;
 
@@ -1095,11 +1422,18 @@ check_dummy_characteristics (gfc_symbol *s1, gfc_symbol *s2,
        {
          snprintf (errmsg, err_len, "Shape mismatch in argument '%s'",
                    s1->name);
-         return FAILURE;
+         return false;
+       }
+
+      if (s1->as->corank != s2->as->corank)
+       {
+         snprintf (errmsg, err_len, "Corank mismatch in argument '%s' (%i/%i)",
+                   s1->name, s1->as->corank, s2->as->corank);
+         return false;
        }
 
       if (s1->as->type == AS_EXPLICIT)
-       for (i = 0; i < s1->as->rank + s1->as->corank; i++)
+       for (i = 0; i < s1->as->rank + MAX (0, s1->as->corank-1); i++)
          {
            shape1 = gfc_subtract (gfc_copy_expr (s1->as->upper[i]),
                                  gfc_copy_expr (s1->as->lower[i]));
@@ -1113,13 +1447,17 @@ check_dummy_characteristics (gfc_symbol *s1, gfc_symbol *s2,
              case -1:
              case  1:
              case -3:
-               snprintf (errmsg, err_len, "Shape mismatch in dimension %i of "
-                         "argument '%s'", i + 1, s1->name);
-               return FAILURE;
+               if (i < s1->as->rank)
+                 snprintf (errmsg, err_len, "Shape mismatch in dimension %i of"
+                           " argument '%s'", i + 1, s1->name);
+               else
+                 snprintf (errmsg, err_len, "Shape mismatch in codimension %i "
+                           "of argument '%s'", i - s1->as->rank + 1, s1->name);
+               return false;
 
              case -2:
                /* FIXME: Implement a warning for this case.
-               gfc_warning ("Possible shape mismatch in argument '%s'",
+               gfc_warning (0, "Possible shape mismatch in argument %qs",
                            s1->name);*/
                break;
 
@@ -1134,94 +1472,255 @@ check_dummy_characteristics (gfc_symbol *s1, gfc_symbol *s2,
            }
          }
     }
-    
-  return SUCCESS;
+
+  return true;
 }
 
 
-/* 'Compare' two formal interfaces associated with a pair of symbols.
-   We return nonzero if there exists an actual argument list that
-   would be ambiguous between the two interfaces, zero otherwise.
-   'strict_flag' specifies whether all the characteristics are
-   required to match, which is not the case for ambiguity checks.
-   'p1' and 'p2' are the PASS arguments of both procedures (if applicable).  */
+/* Check if the characteristics of two function results match,
+   cf. F08:12.3.3.  */
 
-int
-gfc_compare_interfaces (gfc_symbol *s1, gfc_symbol *s2, const char *name2,
-                       int generic_flag, int strict_flag,
-                       char *errmsg, int err_len,
-                       const char *p1, const char *p2)
+bool
+gfc_check_result_characteristics (gfc_symbol *s1, gfc_symbol *s2,
+                             char *errmsg, int err_len)
 {
-  gfc_formal_arglist *f1, *f2;
+  gfc_symbol *r1, *r2;
 
-  gcc_assert (name2 != NULL);
+  if (s1->ts.interface && s1->ts.interface->result)
+    r1 = s1->ts.interface->result;
+  else
+    r1 = s1->result ? s1->result : s1;
 
-  if (s1->attr.function && (s2->attr.subroutine
-      || (!s2->attr.function && s2->ts.type == BT_UNKNOWN
-         && gfc_get_default_type (name2, s2->ns)->type == BT_UNKNOWN)))
+  if (s2->ts.interface && s2->ts.interface->result)
+    r2 = s2->ts.interface->result;
+  else
+    r2 = s2->result ? s2->result : s2;
+
+  if (r1->ts.type == BT_UNKNOWN)
+    return true;
+
+  /* Check type and rank.  */
+  if (!compare_type (r1, r2))
     {
-      if (errmsg != NULL)
-       snprintf (errmsg, err_len, "'%s' is not a function", name2);
-      return 0;
+      snprintf (errmsg, err_len, "Type mismatch in function result (%s/%s)",
+               gfc_typename (&r1->ts), gfc_typename (&r2->ts));
+      return false;
+    }
+  if (!compare_rank (r1, r2))
+    {
+      snprintf (errmsg, err_len, "Rank mismatch in function result (%i/%i)",
+               symbol_rank (r1), symbol_rank (r2));
+      return false;
     }
 
-  if (s1->attr.subroutine && s2->attr.function)
+  /* Check ALLOCATABLE attribute.  */
+  if (r1->attr.allocatable != r2->attr.allocatable)
     {
-      if (errmsg != NULL)
-       snprintf (errmsg, err_len, "'%s' is not a subroutine", name2);
-      return 0;
+      snprintf (errmsg, err_len, "ALLOCATABLE attribute mismatch in "
+               "function result");
+      return false;
     }
 
-  /* Do strict checks on all characteristics
-     (for dummy procedures and procedure pointer assignments).  */
-  if (!generic_flag && strict_flag)
+  /* Check POINTER attribute.  */
+  if (r1->attr.pointer != r2->attr.pointer)
     {
-      if (s1->attr.function && s2->attr.function)
+      snprintf (errmsg, err_len, "POINTER attribute mismatch in "
+               "function result");
+      return false;
+    }
+
+  /* Check CONTIGUOUS attribute.  */
+  if (r1->attr.contiguous != r2->attr.contiguous)
+    {
+      snprintf (errmsg, err_len, "CONTIGUOUS attribute mismatch in "
+               "function result");
+      return false;
+    }
+
+  /* Check PROCEDURE POINTER attribute.  */
+  if (r1 != s1 && r1->attr.proc_pointer != r2->attr.proc_pointer)
+    {
+      snprintf (errmsg, err_len, "PROCEDURE POINTER mismatch in "
+               "function result");
+      return false;
+    }
+
+  /* Check string length.  */
+  if (r1->ts.type == BT_CHARACTER && r1->ts.u.cl && r2->ts.u.cl)
+    {
+      if (r1->ts.deferred != r2->ts.deferred)
+       {
+         snprintf (errmsg, err_len, "Character length mismatch "
+                   "in function result");
+         return false;
+       }
+
+      if (r1->ts.u.cl->length && r2->ts.u.cl->length)
+       {
+         int compval = gfc_dep_compare_expr (r1->ts.u.cl->length,
+                                             r2->ts.u.cl->length);
+         switch (compval)
+         {
+           case -1:
+           case  1:
+           case -3:
+             snprintf (errmsg, err_len, "Character length mismatch "
+                       "in function result");
+             return false;
+
+           case -2:
+             /* FIXME: Implement a warning for this case.
+             snprintf (errmsg, err_len, "Possible character length mismatch "
+                       "in function result");*/
+             break;
+
+           case 0:
+             break;
+
+           default:
+             gfc_internal_error ("check_result_characteristics (1): Unexpected "
+                                 "result %i of gfc_dep_compare_expr", compval);
+             break;
+         }
+       }
+    }
+
+  /* Check array shape.  */
+  if (!r1->attr.allocatable && !r1->attr.pointer && r1->as && r2->as)
+    {
+      int i, compval;
+      gfc_expr *shape1, *shape2;
+
+      if (r1->as->type != r2->as->type)
        {
-         /* If both are functions, check result type.  */
-         if (s1->ts.type == BT_UNKNOWN)
-           return 1;
-         if (!compare_type_rank (s1,s2))
+         snprintf (errmsg, err_len, "Shape mismatch in function result");
+         return false;
+       }
+
+      if (r1->as->type == AS_EXPLICIT)
+       for (i = 0; i < r1->as->rank + r1->as->corank; i++)
+         {
+           shape1 = gfc_subtract (gfc_copy_expr (r1->as->upper[i]),
+                                  gfc_copy_expr (r1->as->lower[i]));
+           shape2 = gfc_subtract (gfc_copy_expr (r2->as->upper[i]),
+                                  gfc_copy_expr (r2->as->lower[i]));
+           compval = gfc_dep_compare_expr (shape1, shape2);
+           gfc_free_expr (shape1);
+           gfc_free_expr (shape2);
+           switch (compval)
            {
-             if (errmsg != NULL)
-               snprintf (errmsg, err_len, "Type/rank mismatch in return value "
-                         "of '%s'", name2);
-             return 0;
+             case -1:
+             case  1:
+             case -3:
+               snprintf (errmsg, err_len, "Shape mismatch in dimension %i of "
+                         "function result", i + 1);
+               return false;
+
+             case -2:
+               /* FIXME: Implement a warning for this case.
+               gfc_warning (0, "Possible shape mismatch in return value");*/
+               break;
+
+             case 0:
+               break;
+
+             default:
+               gfc_internal_error ("check_result_characteristics (2): "
+                                   "Unexpected result %i of "
+                                   "gfc_dep_compare_expr", compval);
+               break;
            }
+         }
+    }
+
+  return true;
+}
+
+
+/* 'Compare' two formal interfaces associated with a pair of symbols.
+   We return true if there exists an actual argument list that
+   would be ambiguous between the two interfaces, zero otherwise.
+   'strict_flag' specifies whether all the characteristics are
+   required to match, which is not the case for ambiguity checks.
+   'p1' and 'p2' are the PASS arguments of both procedures (if applicable).  */
+
+bool
+gfc_compare_interfaces (gfc_symbol *s1, gfc_symbol *s2, const char *name2,
+                       int generic_flag, int strict_flag,
+                       char *errmsg, int err_len,
+                       const char *p1, const char *p2)
+{
+  gfc_formal_arglist *f1, *f2;
+
+  gcc_assert (name2 != NULL);
+
+  if (s1->attr.function && (s2->attr.subroutine
+      || (!s2->attr.function && s2->ts.type == BT_UNKNOWN
+         && gfc_get_default_type (name2, s2->ns)->type == BT_UNKNOWN)))
+    {
+      if (errmsg != NULL)
+       snprintf (errmsg, err_len, "'%s' is not a function", name2);
+      return false;
+    }
+
+  if (s1->attr.subroutine && s2->attr.function)
+    {
+      if (errmsg != NULL)
+       snprintf (errmsg, err_len, "'%s' is not a subroutine", name2);
+      return false;
+    }
 
-         /* FIXME: Check array bounds and string length of result.  */
+  /* Do strict checks on all characteristics
+     (for dummy procedures and procedure pointer assignments).  */
+  if (!generic_flag && strict_flag)
+    {
+      if (s1->attr.function && s2->attr.function)
+       {
+         /* If both are functions, check result characteristics.  */
+         if (!gfc_check_result_characteristics (s1, s2, errmsg, err_len)
+             || !gfc_check_result_characteristics (s2, s1, errmsg, err_len))
+           return false;
        }
 
       if (s1->attr.pure && !s2->attr.pure)
        {
          snprintf (errmsg, err_len, "Mismatch in PURE attribute");
-         return 0;
+         return false;
        }
       if (s1->attr.elemental && !s2->attr.elemental)
        {
          snprintf (errmsg, err_len, "Mismatch in ELEMENTAL attribute");
-         return 0;
+         return false;
        }
     }
 
   if (s1->attr.if_source == IFSRC_UNKNOWN
       || s2->attr.if_source == IFSRC_UNKNOWN)
-    return 1;
+    return true;
 
-  f1 = s1->formal;
-  f2 = s2->formal;
+  f1 = gfc_sym_get_dummy_args (s1);
+  f2 = gfc_sym_get_dummy_args (s2);
 
+  /* Special case: No arguments.  */
   if (f1 == NULL && f2 == NULL)
-    return 1;                  /* Special case: No arguments.  */
+    return true;
 
   if (generic_flag)
     {
       if (count_types_test (f1, f2, p1, p2)
          || count_types_test (f2, f1, p2, p1))
-       return 0;
+       return false;
+
+      /* Special case: alternate returns.  If both f1->sym and f2->sym are
+        NULL, then the leading formal arguments are alternate returns.
+        The previous conditional should catch argument lists with
+        different number of argument.  */
+      if (f1 && f1->sym == NULL && f2 && f2->sym == NULL)
+       return true;
+
       if (generic_correspondence (f1, f2, p1, p2)
          || generic_correspondence (f2, f1, p2, p1))
-       return 0;
+       return false;
     }
   else
     /* Perform the abbreviated correspondence test for operators (the
@@ -1229,49 +1728,57 @@ gfc_compare_interfaces (gfc_symbol *s1, gfc_symbol *s2, const char *name2,
        This is also done when comparing interfaces for dummy procedures and in
        procedure pointer assignments.  */
 
-    for (;;)
+    for (; f1 || f2; f1 = f1->next, f2 = f2->next)
       {
        /* Check existence.  */
-       if (f1 == NULL && f2 == NULL)
-         break;
        if (f1 == NULL || f2 == NULL)
          {
            if (errmsg != NULL)
              snprintf (errmsg, err_len, "'%s' has the wrong number of "
                        "arguments", name2);
-           return 0;
+           return false;
          }
 
        if (strict_flag)
          {
            /* Check all characteristics.  */
-           if (check_dummy_characteristics (f1->sym, f2->sym,
-                                            true, errmsg, err_len) == FAILURE)
-             return 0;
+           if (!gfc_check_dummy_characteristics (f1->sym, f2->sym, true,
+                                             errmsg, err_len))
+             return false;
          }
-       else if (!compare_type_rank (f2->sym, f1->sym))
+       else
          {
            /* Only check type and rank.  */
-           if (errmsg != NULL)
-             snprintf (errmsg, err_len, "Type/rank mismatch in argument '%s'",
-                       f1->sym->name);
-           return 0;
+           if (!compare_type (f2->sym, f1->sym))
+             {
+               if (errmsg != NULL)
+                 snprintf (errmsg, err_len, "Type mismatch in argument '%s' "
+                           "(%s/%s)", f1->sym->name,
+                           gfc_typename (&f1->sym->ts),
+                           gfc_typename (&f2->sym->ts));
+               return false;
+             }
+           if (!compare_rank (f2->sym, f1->sym))
+             {
+               if (errmsg != NULL)
+                 snprintf (errmsg, err_len, "Rank mismatch in argument '%s' "
+                           "(%i/%i)", f1->sym->name, symbol_rank (f1->sym),
+                           symbol_rank (f2->sym));
+               return false;
+             }
          }
-
-       f1 = f1->next;
-       f2 = f2->next;
       }
 
-  return 1;
+  return true;
 }
 
 
 /* Given a pointer to an interface pointer, remove duplicate
    interfaces and make sure that all symbols are either functions
-   or subroutines, and all of the same kind.  Returns nonzero if
+   or subroutines, and all of the same kind.  Returns true if
    something goes wrong.  */
 
-static int
+static bool
 check_interface0 (gfc_interface *p, const char *interface_name)
 {
   gfc_interface *psave, *q, *qlast;
@@ -1283,40 +1790,40 @@ check_interface0 (gfc_interface *p, const char *interface_name)
         functions or subroutines.  */
       if (((!p->sym->attr.function && !p->sym->attr.subroutine)
           || !p->sym->attr.if_source)
-         && p->sym->attr.flavor != FL_DERIVED)
+         && !gfc_fl_struct (p->sym->attr.flavor))
        {
          if (p->sym->attr.external)
-           gfc_error ("Procedure '%s' in %s at %L has no explicit interface",
+           gfc_error ("Procedure %qs in %s at %L has no explicit interface",
                       p->sym->name, interface_name, &p->sym->declared_at);
          else
-           gfc_error ("Procedure '%s' in %s at %L is neither function nor "
+           gfc_error ("Procedure %qs in %s at %L is neither function nor "
                       "subroutine", p->sym->name, interface_name,
                      &p->sym->declared_at);
-         return 1;
+         return true;
        }
 
       /* Verify that procedures are either all SUBROUTINEs or all FUNCTIONs.  */
       if ((psave->sym->attr.function && !p->sym->attr.function
-          && p->sym->attr.flavor != FL_DERIVED)
+          && !gfc_fl_struct (p->sym->attr.flavor))
          || (psave->sym->attr.subroutine && !p->sym->attr.subroutine))
        {
-         if (p->sym->attr.flavor != FL_DERIVED)
+         if (!gfc_fl_struct (p->sym->attr.flavor))
            gfc_error ("In %s at %L procedures must be either all SUBROUTINEs"
                       " or all FUNCTIONs", interface_name,
                       &p->sym->declared_at);
-         else
+         else if (p->sym->attr.flavor == FL_DERIVED)
            gfc_error ("In %s at %L procedures must be all FUNCTIONs as the "
                       "generic name is also the name of a derived type",
                       interface_name, &p->sym->declared_at);
-         return 1;
+         return true;
        }
 
       /* F2003, C1207. F2008, C1207.  */
       if (p->sym->attr.proc == PROC_INTERNAL
-         && gfc_notify_std (GFC_STD_F2008, "Fortran 2008: Internal procedure "
-                            "'%s' in %s at %L", p->sym->name, interface_name,
-                            &p->sym->declared_at) == FAILURE)
-       return 1;
+         && !gfc_notify_std (GFC_STD_F2008, "Internal procedure "
+                             "%qs in %s at %L", p->sym->name,
+                             interface_name, &p->sym->declared_at))
+       return true;
     }
   p = psave;
 
@@ -1342,14 +1849,14 @@ check_interface0 (gfc_interface *p, const char *interface_name)
        }
     }
 
-  return 0;
+  return false;
 }
 
 
 /* Check lists of interfaces to make sure that no two interfaces are
    ambiguous.  Duplicate interfaces (from the same symbol) are OK here.  */
 
-static int
+static bool
 check_interface1 (gfc_interface *p, gfc_interface *q0,
                  int generic_flag, const char *interface_name,
                  bool referenced)
@@ -1364,26 +1871,28 @@ check_interface1 (gfc_interface *p, gfc_interface *q0,
        if (p->sym->name == q->sym->name && p->sym->module == q->sym->module)
          continue;
 
-       if (p->sym->attr.flavor != FL_DERIVED
-           && q->sym->attr.flavor != FL_DERIVED
+       if (!gfc_fl_struct (p->sym->attr.flavor)
+           && !gfc_fl_struct (q->sym->attr.flavor)
            && gfc_compare_interfaces (p->sym, q->sym, q->sym->name,
                                       generic_flag, 0, NULL, 0, NULL, NULL))
          {
            if (referenced)
-             gfc_error ("Ambiguous interfaces '%s' and '%s' in %s at %L",
-                        p->sym->name, q->sym->name, interface_name,
-                        &p->where);
+             gfc_error ("Ambiguous interfaces in %s for %qs at %L "
+                        "and %qs at %L", interface_name,
+                        q->sym->name, &q->sym->declared_at,
+                        p->sym->name, &p->sym->declared_at);
            else if (!p->sym->attr.use_assoc && q->sym->attr.use_assoc)
-             gfc_warning ("Ambiguous interfaces '%s' and '%s' in %s at %L",
-                          p->sym->name, q->sym->name, interface_name,
-                          &p->where);
+             gfc_warning (0, "Ambiguous interfaces in %s for %qs at %L "
+                        "and %qs at %L", interface_name,
+                        q->sym->name, &q->sym->declared_at,
+                        p->sym->name, &p->sym->declared_at);
            else
-             gfc_warning ("Although not referenced, '%s' has ambiguous "
+             gfc_warning (0, "Although not referenced, %qs has ambiguous "
                           "interfaces at %L", interface_name, &p->where);
-           return 1;
+           return true;
          }
       }
-  return 0;
+  return false;
 }
 
 
@@ -1408,14 +1917,12 @@ check_sym_interfaces (gfc_symbol *sym)
 
       for (p = sym->generic; p; p = p->next)
        {
-         if (sym->attr.access != ACCESS_PRIVATE)
-           p->sym->attr.public_used = 1;
-
          if (p->sym->attr.mod_proc
+             && !p->sym->attr.module_procedure
              && (p->sym->attr.if_source != IFSRC_DECL
                  || p->sym->attr.procedure))
            {
-             gfc_error ("'%s' at %L is not a module procedure",
+             gfc_error ("%qs at %L is not a module procedure",
                         p->sym->name, &p->where);
              return;
            }
@@ -1436,16 +1943,11 @@ check_uop_interfaces (gfc_user_op *uop)
   char interface_name[100];
   gfc_user_op *uop2;
   gfc_namespace *ns;
-  gfc_interface *p;
 
   sprintf (interface_name, "operator interface '%s'", uop->name);
   if (check_interface0 (uop->op, interface_name))
     return;
 
-  if (uop->access != ACCESS_PRIVATE)
-    for (p = uop->op; p; p = p->next)
-      p->sym->attr.public_used = 1;
-
   for (ns = gfc_current_ns; ns; ns = ns->parent)
     {
       uop2 = gfc_find_uop (uop->name, ns);
@@ -1515,7 +2017,6 @@ void
 gfc_check_interfaces (gfc_namespace *ns)
 {
   gfc_namespace *old_ns, *ns2;
-  gfc_interface *p;
   char interface_name[100];
   int i;
 
@@ -1540,10 +2041,6 @@ gfc_check_interfaces (gfc_namespace *ns)
       if (check_interface0 (ns->op[i], interface_name))
        continue;
 
-      for (p = ns->op[i]; p; p = p->next)
-       p->sym->attr.public_used = 1;
-
-
       if (ns->op[i])
        gfc_check_operator_interface (ns->op[i]->sym, (gfc_intrinsic_op) i,
                                      ns->op[i]->where);
@@ -1551,7 +2048,7 @@ gfc_check_interfaces (gfc_namespace *ns)
       for (ns2 = ns; ns2; ns2 = ns2->parent)
        {
          gfc_intrinsic_op other_op;
-         
+
          if (check_interface1 (ns->op[i], ns2->op[i], 0,
                                interface_name, true))
            goto done;
@@ -1571,34 +2068,24 @@ done:
 }
 
 
-static int
-symbol_rank (gfc_symbol *sym)
-{
-  if (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as)
-    return CLASS_DATA (sym)->as->rank;
-
-  return (sym->as == NULL) ? 0 : sym->as->rank;
-}
-
-
 /* Given a symbol of a formal argument list and an expression, if the
    formal argument is allocatable, check that the actual argument is
-   allocatable. Returns nonzero if compatible, zero if not compatible.  */
+   allocatable. Returns true if compatible, zero if not compatible.  */
 
-static int
+static bool
 compare_allocatable (gfc_symbol *formal, gfc_expr *actual)
 {
-  symbol_attribute attr;
-
   if (formal->attr.allocatable
       || (formal->ts.type == BT_CLASS && CLASS_DATA (formal)->attr.allocatable))
     {
-      attr = gfc_expr_attr (actual);
-      if (!attr.allocatable)
-       return 0;
+      symbol_attribute attr = gfc_expr_attr (actual);
+      if (actual->ts.type == BT_CLASS && !attr.class_ok)
+       return true;
+      else if (!attr.allocatable)
+       return false;
     }
 
-  return 1;
+  return true;
 }
 
 
@@ -1635,46 +2122,47 @@ static void
 argument_rank_mismatch (const char *name, locus *where,
                        int rank1, int rank2)
 {
-  if (rank1 == 0)
-    {
-      gfc_error ("Rank mismatch in argument '%s' at %L "
-                "(scalar and rank-%d)", name, where, rank2);
-    }
+
+  /* TS 29113, C407b.  */
+  if (rank2 == -1)
+    gfc_error ("The assumed-rank array at %L requires that the dummy argument"
+              " %qs has assumed-rank", where, name);
+  else if (rank1 == 0)
+    gfc_error_opt (OPT_Wargument_mismatch, "Rank mismatch in argument %qs "
+                  "at %L (scalar and rank-%d)", name, where, rank2);
   else if (rank2 == 0)
-    {
-      gfc_error ("Rank mismatch in argument '%s' at %L "
-                "(rank-%d and scalar)", name, where, rank1);
-    }
+    gfc_error_opt (OPT_Wargument_mismatch, "Rank mismatch in argument %qs "
+                  "at %L (rank-%d and scalar)", name, where, rank1);
   else
-    {    
-      gfc_error ("Rank mismatch in argument '%s' at %L "
-                "(rank-%d and rank-%d)", name, where, rank1, rank2);
-    }
+    gfc_error_opt (OPT_Wargument_mismatch, "Rank mismatch in argument %qs "
+                  "at %L (rank-%d and rank-%d)", name, where, rank1, rank2);
 }
 
 
 /* Given a symbol of a formal argument list and an expression, see if
-   the two are compatible as arguments.  Returns nonzero if
-   compatible, zero if not compatible.  */
+   the two are compatible as arguments.  Returns true if
+   compatible, false if not compatible.  */
 
-static int
+static bool
 compare_parameter (gfc_symbol *formal, gfc_expr *actual,
                   int ranks_must_agree, int is_elemental, locus *where)
 {
   gfc_ref *ref;
   bool rank_check, is_pointer;
+  char err[200];
+  gfc_component *ppc;
 
   /* If the formal arg has type BT_VOID, it's to one of the iso_c_binding
      procs c_f_pointer or c_f_procpointer, and we need to accept most
      pointers the user could give us.  This should allow that.  */
   if (formal->ts.type == BT_VOID)
-    return 1;
+    return true;
 
   if (formal->ts.type == BT_DERIVED
       && formal->ts.u.derived && formal->ts.u.derived->ts.is_iso_c
       && actual->ts.type == BT_DERIVED
       && actual->ts.u.derived && actual->ts.u.derived->ts.is_iso_c)
-    return 1;
+    return true;
 
   if (formal->ts.type == BT_CLASS && actual->ts.type == BT_DERIVED)
     /* Make sure the vtab symbol is present when
@@ -1683,23 +2171,23 @@ compare_parameter (gfc_symbol *formal, gfc_expr *actual,
 
   if (actual->ts.type == BT_PROCEDURE)
     {
-      char err[200];
       gfc_symbol *act_sym = actual->symtree->n.sym;
 
       if (formal->attr.flavor != FL_PROCEDURE)
        {
          if (where)
            gfc_error ("Invalid procedure argument at %L", &actual->where);
-         return 0;
+         return false;
        }
 
       if (!gfc_compare_interfaces (formal, act_sym, act_sym->name, 0, 1, err,
                                   sizeof(err), NULL, NULL))
        {
          if (where)
-           gfc_error ("Interface mismatch in dummy procedure '%s' at %L: %s",
-                      formal->name, &actual->where, err);
-         return 0;
+           gfc_error_opt (OPT_Wargument_mismatch,
+                          "Interface mismatch in dummy procedure %qs at %L:"
+                          " %s", formal->name, &actual->where, err);
+         return false;
        }
 
       if (formal->attr.function && !act_sym->attr.function)
@@ -1707,70 +2195,119 @@ compare_parameter (gfc_symbol *formal, gfc_expr *actual,
          gfc_add_function (&act_sym->attr, act_sym->name,
          &act_sym->declared_at);
          if (act_sym->ts.type == BT_UNKNOWN
-             && gfc_set_default_type (act_sym, 1, act_sym->ns) == FAILURE)
-           return 0;
+             && !gfc_set_default_type (act_sym, 1, act_sym->ns))
+           return false;
        }
       else if (formal->attr.subroutine && !act_sym->attr.subroutine)
        gfc_add_subroutine (&act_sym->attr, act_sym->name,
                            &act_sym->declared_at);
 
-      return 1;
+      return true;
+    }
+
+  ppc = gfc_get_proc_ptr_comp (actual);
+  if (ppc && ppc->ts.interface)
+    {
+      if (!gfc_compare_interfaces (formal, ppc->ts.interface, ppc->name, 0, 1,
+                                  err, sizeof(err), NULL, NULL))
+       {
+         if (where)
+           gfc_error_opt (OPT_Wargument_mismatch,
+                          "Interface mismatch in dummy procedure %qs at %L:"
+                          " %s", formal->name, &actual->where, err);
+         return false;
+       }
     }
 
   /* F2008, C1241.  */
   if (formal->attr.pointer && formal->attr.contiguous
-      && !gfc_is_simply_contiguous (actual, true))
+      && !gfc_is_simply_contiguous (actual, true, false))
     {
       if (where)
-       gfc_error ("Actual argument to contiguous pointer dummy '%s' at %L "
-                  "must be simply contigous", formal->name, &actual->where);
-      return 0;
+       gfc_error ("Actual argument to contiguous pointer dummy %qs at %L "
+                  "must be simply contiguous", formal->name, &actual->where);
+      return false;
     }
 
+  symbol_attribute actual_attr = gfc_expr_attr (actual);
+  if (actual->ts.type == BT_CLASS && !actual_attr.class_ok)
+    return true;
+
   if ((actual->expr_type != EXPR_NULL || actual->ts.type != BT_UNKNOWN)
       && actual->ts.type != BT_HOLLERITH
       && formal->ts.type != BT_ASSUMED
+      && !(formal->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
       && !gfc_compare_types (&formal->ts, &actual->ts)
       && !(formal->ts.type == BT_DERIVED && actual->ts.type == BT_CLASS
-          && gfc_compare_derived_types (formal->ts.u.derived, 
+          && gfc_compare_derived_types (formal->ts.u.derived,
                                         CLASS_DATA (actual)->ts.u.derived)))
     {
       if (where)
-       gfc_error ("Type mismatch in argument '%s' at %L; passed %s to %s",
-                  formal->name, &actual->where, gfc_typename (&actual->ts),
-                  gfc_typename (&formal->ts));
-      return 0;
+       gfc_error_opt (OPT_Wargument_mismatch,
+                      "Type mismatch in argument %qs at %L; passed %s to %s",
+                      formal->name, where, gfc_typename (&actual->ts),
+                      gfc_typename (&formal->ts));
+      return false;
+    }
+
+  if (actual->ts.type == BT_ASSUMED && formal->ts.type != BT_ASSUMED)
+    {
+      if (where)
+       gfc_error ("Assumed-type actual argument at %L requires that dummy "
+                  "argument %qs is of assumed type", &actual->where,
+                  formal->name);
+      return false;
     }
 
   /* F2008, 12.5.2.5; IR F08/0073.  */
-  if (formal->ts.type == BT_CLASS
+  if (formal->ts.type == BT_CLASS && formal->attr.class_ok
+      && actual->expr_type != EXPR_NULL
       && ((CLASS_DATA (formal)->attr.class_pointer
-          && !formal->attr.intent == INTENT_IN)
+          && formal->attr.intent != INTENT_IN)
           || CLASS_DATA (formal)->attr.allocatable))
     {
       if (actual->ts.type != BT_CLASS)
        {
          if (where)
-           gfc_error ("Actual argument to '%s' at %L must be polymorphic",
+           gfc_error ("Actual argument to %qs at %L must be polymorphic",
                        formal->name, &actual->where);
-         return 0;
+         return false;
        }
-      if (!gfc_compare_derived_types (CLASS_DATA (actual)->ts.u.derived,
-                                     CLASS_DATA (formal)->ts.u.derived))
+
+      if ((!UNLIMITED_POLY (formal) || !UNLIMITED_POLY(actual))
+         && !gfc_compare_derived_types (CLASS_DATA (actual)->ts.u.derived,
+                                        CLASS_DATA (formal)->ts.u.derived))
        {
          if (where)
-           gfc_error ("Actual argument to '%s' at %L must have the same "
+           gfc_error ("Actual argument to %qs at %L must have the same "
                       "declared type", formal->name, &actual->where);
-         return 0;
+         return false;
        }
     }
 
+  /* F08: 12.5.2.5 Allocatable and pointer dummy variables.  However, this
+     is necessary also for F03, so retain error for both.
+     NOTE: Other type/kind errors pre-empt this error.  Since they are F03
+     compatible, no attempt has been made to channel to this one.  */
+  if (UNLIMITED_POLY (formal) && !UNLIMITED_POLY (actual)
+      && (CLASS_DATA (formal)->attr.allocatable
+         ||CLASS_DATA (formal)->attr.class_pointer))
+    {
+      if (where)
+       gfc_error ("Actual argument to %qs at %L must be unlimited "
+                  "polymorphic since the formal argument is a "
+                  "pointer or allocatable unlimited polymorphic "
+                  "entity [F2008: 12.5.2.5]", formal->name,
+                  &actual->where);
+      return false;
+    }
+
   if (formal->attr.codimension && !gfc_is_coarray (actual))
     {
       if (where)
-       gfc_error ("Actual argument to '%s' at %L must be a coarray",
+       gfc_error ("Actual argument to %qs at %L must be a coarray",
                       formal->name, &actual->where);
-      return 0;
+      return false;
     }
 
   if (formal->attr.codimension && formal->attr.allocatable)
@@ -1787,26 +2324,28 @@ compare_parameter (gfc_symbol *formal, gfc_expr *actual,
              && actual->symtree->n.sym->as->corank != formal->as->corank))
        {
          if (where)
-           gfc_error ("Corank mismatch in argument '%s' at %L (%d and %d)",
+           gfc_error ("Corank mismatch in argument %qs at %L (%d and %d)",
                   formal->name, &actual->where, formal->as->corank,
                   last ? last->u.c.component->as->corank
                        : actual->symtree->n.sym->as->corank);
-         return 0;
+         return false;
        }
     }
 
   if (formal->attr.codimension)
     {
-      /* F2008, 12.5.2.8.  */
+      /* F2008, 12.5.2.8 + Corrig 2 (IR F08/0048).  */
+      /* F2015, 12.5.2.8.  */
       if (formal->attr.dimension
          && (formal->attr.contiguous || formal->as->type != AS_ASSUMED_SHAPE)
-         && gfc_expr_attr (actual).dimension
-         && !gfc_is_simply_contiguous (actual, true))
+         && actual_attr.dimension
+         && !gfc_is_simply_contiguous (actual, true, true))
        {
          if (where)
-           gfc_error ("Actual argument to '%s' at %L must be simply "
-                      "contiguous", formal->name, &actual->where);
-         return 0;
+           gfc_error ("Actual argument to %qs at %L must be simply "
+                      "contiguous or an element of such an array",
+                      formal->name, &actual->where);
+         return false;
        }
 
       /* F2008, C1303 and C1304.  */
@@ -1818,10 +2357,25 @@ compare_parameter (gfc_symbol *formal, gfc_expr *actual,
 
        {
          if (where)
-           gfc_error ("Actual argument to non-INTENT(INOUT) dummy '%s' at %L, "
+           gfc_error ("Actual argument to non-INTENT(INOUT) dummy %qs at %L, "
                       "which is LOCK_TYPE or has a LOCK_TYPE component",
                       formal->name, &actual->where);
-         return 0;
+         return false;
+       }
+
+      /* TS18508, C702/C703.  */
+      if (formal->attr.intent != INTENT_INOUT
+         && (((formal->ts.type == BT_DERIVED || formal->ts.type == BT_CLASS)
+              && formal->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
+              && formal->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
+             || formal->attr.event_comp))
+
+       {
+         if (where)
+           gfc_error ("Actual argument to non-INTENT(INOUT) dummy %qs at %L, "
+                      "which is EVENT_TYPE or has a EVENT_TYPE component",
+                      formal->name, &actual->where);
+         return false;
        }
     }
 
@@ -1830,48 +2384,51 @@ compare_parameter (gfc_symbol *formal, gfc_expr *actual,
       && (actual->symtree->n.sym->attr.asynchronous
          || actual->symtree->n.sym->attr.volatile_)
       &&  (formal->attr.asynchronous || formal->attr.volatile_)
-      && actual->rank && !gfc_is_simply_contiguous (actual, true)
-      && ((formal->as->type != AS_ASSUMED_SHAPE && !formal->attr.pointer)
+      && actual->rank && formal->as
+      && !gfc_is_simply_contiguous (actual, true, false)
+      && ((formal->as->type != AS_ASSUMED_SHAPE
+          && formal->as->type != AS_ASSUMED_RANK && !formal->attr.pointer)
          || formal->attr.contiguous))
     {
       if (where)
-       gfc_error ("Dummy argument '%s' has to be a pointer or assumed-shape "
-                  "array without CONTIGUOUS attribute - as actual argument at"
-                  " %L is not simply contiguous and both are ASYNCHRONOUS "
-                  "or VOLATILE", formal->name, &actual->where);
-      return 0;
+       gfc_error ("Dummy argument %qs has to be a pointer, assumed-shape or "
+                  "assumed-rank array without CONTIGUOUS attribute - as actual"
+                  " argument at %L is not simply contiguous and both are "
+                  "ASYNCHRONOUS or VOLATILE", formal->name, &actual->where);
+      return false;
     }
 
   if (formal->attr.allocatable && !formal->attr.codimension
-      && gfc_expr_attr (actual).codimension)
+      && actual_attr.codimension)
     {
       if (formal->attr.intent == INTENT_OUT)
        {
          if (where)
            gfc_error ("Passing coarray at %L to allocatable, noncoarray, "
-                      "INTENT(OUT) dummy argument '%s'", &actual->where,
+                      "INTENT(OUT) dummy argument %qs", &actual->where,
                       formal->name);
-           return 0;
+         return false;
        }
-      else if (gfc_option.warn_surprising && where
-              && formal->attr.intent != INTENT_IN)
-       gfc_warning ("Passing coarray at %L to allocatable, noncoarray dummy "
-                    "argument '%s', which is invalid if the allocation status"
+      else if (warn_surprising && where && formal->attr.intent != INTENT_IN)
+       gfc_warning (OPT_Wsurprising,
+                    "Passing coarray at %L to allocatable, noncoarray dummy "
+                    "argument %qs, which is invalid if the allocation status"
                     " is modified",  &actual->where, formal->name);
     }
 
-  if (symbol_rank (formal) == actual->rank)
-    return 1;
-
-  if (actual->ts.type == BT_CLASS && CLASS_DATA (actual)->as
-       && CLASS_DATA (actual)->as->rank == symbol_rank (formal))
-    return 1;
+  /* If the rank is the same or the formal argument has assumed-rank.  */
+  if (symbol_rank (formal) == actual->rank || symbol_rank (formal) == -1)
+    return true;
 
   rank_check = where != NULL && !is_elemental && formal->as
               && (formal->as->type == AS_ASSUMED_SHAPE
                   || formal->as->type == AS_DEFERRED)
               && actual->expr_type != EXPR_NULL;
 
+  /* Skip rank checks for NO_ARG_CHECK.  */
+  if (formal->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
+    return true;
+
   /* Scalar & coindexed, see: F2008, Section 12.5.2.4.  */
   if (rank_check || ranks_must_agree
       || (formal->attr.pointer && actual->expr_type != EXPR_NULL)
@@ -1888,10 +2445,10 @@ compare_parameter (gfc_symbol *formal, gfc_expr *actual,
       if (where)
        argument_rank_mismatch (formal->name, &actual->where,
                                symbol_rank (formal), actual->rank);
-      return 0;
+      return false;
     }
   else if (actual->rank != 0 && (is_elemental || formal->attr.dimension))
-    return 1;
+    return true;
 
   /* At this point, we are considering a scalar passed to an array.   This
      is valid (cf. F95 12.4.1.1, F2003 12.4.1.2, and F2008 12.5.2.4),
@@ -1909,7 +2466,7 @@ compare_parameter (gfc_symbol *formal, gfc_expr *actual,
        is_pointer = ref->u.c.component->attr.pointer;
       else if (ref->type == REF_ARRAY && ref->u.ar.type == AR_ELEMENT
               && ref->u.ar.dimen > 0
-              && (!ref->next 
+              && (!ref->next
                   || (ref->next->type == REF_SUBSTRING && !ref->next->next)))
         break;
     }
@@ -1917,9 +2474,9 @@ compare_parameter (gfc_symbol *formal, gfc_expr *actual,
   if (actual->ts.type == BT_CLASS && actual->expr_type != EXPR_NULL)
     {
       if (where)
-       gfc_error ("Polymorphic scalar passed to array dummy argument '%s' "
+       gfc_error ("Polymorphic scalar passed to array dummy argument %qs "
                   "at %L", formal->name, &actual->where);
-      return 0;
+      return false;
     }
 
   if (actual->expr_type != EXPR_NULL && ref && actual->ts.type != BT_CHARACTER
@@ -1927,9 +2484,9 @@ compare_parameter (gfc_symbol *formal, gfc_expr *actual,
     {
       if (where)
        gfc_error ("Element of assumed-shaped or pointer "
-                  "array passed to array dummy argument '%s' at %L",
+                  "array passed to array dummy argument %qs at %L",
                   formal->name, &actual->where);
-      return 0;
+      return false;
     }
 
   if (actual->ts.type == BT_CHARACTER && actual->expr_type != EXPR_NULL
@@ -1940,21 +2497,19 @@ compare_parameter (gfc_symbol *formal, gfc_expr *actual,
          if (where)
            gfc_error ("Extension: Scalar non-default-kind, non-C_CHAR-kind "
                       "CHARACTER actual argument with array dummy argument "
-                      "'%s' at %L", formal->name, &actual->where);
-         return 0;
+                      "%qs at %L", formal->name, &actual->where);
+         return false;
        }
 
       if (where && (gfc_option.allow_std & GFC_STD_F2003) == 0)
        {
          gfc_error ("Fortran 2003: Scalar CHARACTER actual argument with "
-                    "array dummy argument '%s' at %L",
+                    "array dummy argument %qs at %L",
                     formal->name, &actual->where);
-         return 0;
+         return false;
        }
-      else if ((gfc_option.allow_std & GFC_STD_F2003) == 0)
-       return 0;
       else
-       return 1;
+       return ((gfc_option.allow_std & GFC_STD_F2003) != 0);
     }
 
   if (ref == NULL && actual->expr_type != EXPR_NULL)
@@ -1962,10 +2517,10 @@ compare_parameter (gfc_symbol *formal, gfc_expr *actual,
       if (where)
        argument_rank_mismatch (formal->name, &actual->where,
                                symbol_rank (formal), actual->rank);
-      return 0;
+      return false;
     }
 
-  return 1;
+  return true;
 }
 
 
@@ -1987,7 +2542,7 @@ get_sym_storage_size (gfc_symbol *sym)
        return 0;
     }
   else
-    strlen = 1; 
+    strlen = 1;
 
   if (symbol_rank (sym) == 0)
     return strlen;
@@ -1997,7 +2552,7 @@ get_sym_storage_size (gfc_symbol *sym)
     return 0;
   for (i = 0; i < sym->as->rank; i++)
     {
-      if (!sym->as || sym->as->upper[i]->expr_type != EXPR_CONSTANT
+      if (sym->as->upper[i]->expr_type != EXPR_CONSTANT
          || sym->as->lower[i]->expr_type != EXPR_CONSTANT)
        return 0;
 
@@ -2025,7 +2580,7 @@ get_expr_storage_size (gfc_expr *e)
 
   if (e == NULL)
     return 0;
-  
+
   if (e->ts.type == BT_CHARACTER)
     {
       if (e->ts.u.cl && e->ts.u.cl->length
@@ -2072,9 +2627,7 @@ get_expr_storage_size (gfc_expr *e)
          continue;
        }
 
-      if (ref->type == REF_ARRAY && ref->u.ar.type == AR_SECTION
-         && ref->u.ar.start && ref->u.ar.end && ref->u.ar.stride
-         && ref->u.ar.as->upper)
+      if (ref->type == REF_ARRAY && ref->u.ar.type == AR_SECTION)
        for (i = 0; i < ref->u.ar.dimen; i++)
          {
            long int start, end, stride;
@@ -2116,13 +2669,14 @@ get_expr_storage_size (gfc_expr *e)
 
            elements *= (end - start)/stride + 1L;
          }
-      else if (ref->type == REF_ARRAY && ref->u.ar.type == AR_FULL
-              && ref->u.ar.as->lower && ref->u.ar.as->upper)
+      else if (ref->type == REF_ARRAY && ref->u.ar.type == AR_FULL)
        for (i = 0; i < ref->u.ar.as->rank; i++)
          {
            if (ref->u.ar.as->lower[i] && ref->u.ar.as->upper[i]
                && ref->u.ar.as->lower[i]->expr_type == EXPR_CONSTANT
-               && ref->u.ar.as->upper[i]->expr_type == EXPR_CONSTANT)
+               && ref->u.ar.as->lower[i]->ts.type == BT_INTEGER
+               && ref->u.ar.as->upper[i]->expr_type == EXPR_CONSTANT
+               && ref->u.ar.as->upper[i]->ts.type == BT_INTEGER)
              elements *= mpz_get_si (ref->u.ar.as->upper[i]->value.integer)
                          - mpz_get_si (ref->u.ar.as->lower[i]->value.integer)
                          + 1L;
@@ -2161,6 +2715,24 @@ get_expr_storage_size (gfc_expr *e)
                        - mpz_get_si (ref->u.ar.as->lower[i]->value.integer));
            }
         }
+      else if (ref->type == REF_COMPONENT && ref->u.c.component->attr.function
+              && ref->u.c.component->attr.proc_pointer
+              && ref->u.c.component->attr.dimension)
+       {
+         /* Array-valued procedure-pointer components.  */
+         gfc_array_spec *as = ref->u.c.component->as;
+         for (i = 0; i < as->rank; i++)
+           {
+             if (!as->upper[i] || !as->lower[i]
+                 || as->upper[i]->expr_type != EXPR_CONSTANT
+                 || as->lower[i]->expr_type != EXPR_CONSTANT)
+               return 0;
+
+             elements = elements
+                        * (mpz_get_si (as->upper[i]->value.integer)
+                           - mpz_get_si (as->lower[i]->value.integer) + 1L);
+           }
+       }
     }
 
   if (substrlen)
@@ -2172,25 +2744,36 @@ get_expr_storage_size (gfc_expr *e)
 
 
 /* Given an expression, check whether it is an array section
-   which has a vector subscript. If it has, one is returned,
-   otherwise zero.  */
+   which has a vector subscript.  */
 
-int
+bool
 gfc_has_vector_subscript (gfc_expr *e)
 {
   int i;
   gfc_ref *ref;
 
   if (e == NULL || e->rank == 0 || e->expr_type != EXPR_VARIABLE)
-    return 0;
+    return false;
 
   for (ref = e->ref; ref; ref = ref->next)
     if (ref->type == REF_ARRAY && ref->u.ar.type == AR_SECTION)
       for (i = 0; i < ref->u.ar.dimen; i++)
        if (ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
-         return 1;
+         return true;
+
+  return false;
+}
+
 
-  return 0;
+static bool
+is_procptr_result (gfc_expr *expr)
+{
+  gfc_component *c = gfc_get_proc_ptr_comp (expr);
+  if (c)
+    return (c->ts.interface && (c->ts.interface->attr.proc_pointer == 1));
+  else
+    return ((expr->symtree->n.sym->result != expr->symtree->n.sym)
+           && (expr->symtree->n.sym->result->attr.proc_pointer == 1));
 }
 
 
@@ -2201,20 +2784,21 @@ gfc_has_vector_subscript (gfc_expr *e)
    errors when things don't match instead of just returning the status
    code.  */
 
-static int
+static bool
 compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
                       int ranks_must_agree, int is_elemental, locus *where)
 {
-  gfc_actual_arglist **new_arg, *a, *actual, temp;
+  gfc_actual_arglist **new_arg, *a, *actual;
   gfc_formal_arglist *f;
   int i, n, na;
   unsigned long actual_size, formal_size;
   bool full_array = false;
+  gfc_array_ref *actual_arr_ref;
 
   actual = *ap;
 
   if (actual == NULL && formal == NULL)
-    return 1;
+    return true;
 
   n = 0;
   for (f = formal; f; f = f->next)
@@ -2246,18 +2830,18 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
          if (f == NULL)
            {
              if (where)
-               gfc_error ("Keyword argument '%s' at %L is not in "
+               gfc_error ("Keyword argument %qs at %L is not in "
                           "the procedure", a->name, &a->expr->where);
-             return 0;
+             return false;
            }
 
          if (new_arg[i] != NULL)
            {
              if (where)
-               gfc_error ("Keyword argument '%s' at %L is already associated "
+               gfc_error ("Keyword argument %qs at %L is already associated "
                           "with another actual argument", a->name,
                           &a->expr->where);
-             return 0;
+             return false;
            }
        }
 
@@ -2267,7 +2851,7 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
            gfc_error ("More actual than formal arguments in procedure "
                       "call at %L", where);
 
-         return 0;
+         return false;
        }
 
       if (f->sym == NULL && a->expr == NULL)
@@ -2278,7 +2862,7 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
          if (where)
            gfc_error ("Missing alternate return spec in subroutine call "
                       "at %L", where);
-         return 0;
+         return false;
        }
 
       if (a->expr == NULL)
@@ -2286,26 +2870,43 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
          if (where)
            gfc_error ("Unexpected alternate return spec in subroutine "
                       "call at %L", where);
-         return 0;
+         return false;
        }
 
-      if (a->expr->expr_type == EXPR_NULL && !f->sym->attr.pointer
-         && (f->sym->attr.allocatable || !f->sym->attr.optional
-             || (gfc_option.allow_std & GFC_STD_F2008) == 0))
+      /* Make sure that intrinsic vtables exist for calls to unlimited
+        polymorphic formal arguments.  */
+      if (UNLIMITED_POLY (f->sym)
+         && a->expr->ts.type != BT_DERIVED
+         && a->expr->ts.type != BT_CLASS)
+       gfc_find_vtab (&a->expr->ts);
+
+      if (a->expr->expr_type == EXPR_NULL
+         && ((f->sym->ts.type != BT_CLASS && !f->sym->attr.pointer
+              && (f->sym->attr.allocatable || !f->sym->attr.optional
+                  || (gfc_option.allow_std & GFC_STD_F2008) == 0))
+             || (f->sym->ts.type == BT_CLASS
+                 && !CLASS_DATA (f->sym)->attr.class_pointer
+                 && (CLASS_DATA (f->sym)->attr.allocatable
+                     || !f->sym->attr.optional
+                     || (gfc_option.allow_std & GFC_STD_F2008) == 0))))
        {
-         if (where && (f->sym->attr.allocatable || !f->sym->attr.optional))
-           gfc_error ("Unexpected NULL() intrinsic at %L to dummy '%s'",
+         if (where
+             && (!f->sym->attr.optional
+                 || (f->sym->ts.type != BT_CLASS && f->sym->attr.allocatable)
+                 || (f->sym->ts.type == BT_CLASS
+                        && CLASS_DATA (f->sym)->attr.allocatable)))
+           gfc_error ("Unexpected NULL() intrinsic at %L to dummy %qs",
                       where, f->sym->name);
          else if (where)
            gfc_error ("Fortran 2008: Null pointer at %L to non-pointer "
-                      "dummy '%s'", where, f->sym->name);
+                      "dummy %qs", where, f->sym->name);
 
-         return 0;
+         return false;
        }
-      
+
       if (!compare_parameter (f->sym, a->expr, ranks_must_agree,
                              is_elemental, where))
-       return 0;
+       return false;
 
       /* TS 29113, 6.3p2.  */
       if (f->sym->ts.type == BT_ASSUMED
@@ -2324,7 +2925,7 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
              gfc_error ("Actual argument at %L to assumed-type dummy is of "
                         "derived type with type-bound or FINAL procedures",
                         &a->expr->where);
-             return FAILURE;
+             return false;
            }
        }
 
@@ -2332,42 +2933,45 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
         and assumed-shape dummies, the string length needs to match
         exactly.  */
       if (a->expr->ts.type == BT_CHARACTER
-          && a->expr->ts.u.cl && a->expr->ts.u.cl->length
-          && a->expr->ts.u.cl->length->expr_type == EXPR_CONSTANT
-          && f->sym->ts.u.cl && f->sym->ts.u.cl && f->sym->ts.u.cl->length
-          && f->sym->ts.u.cl->length->expr_type == EXPR_CONSTANT
-          && (f->sym->attr.pointer || f->sym->attr.allocatable
-              || (f->sym->as && f->sym->as->type == AS_ASSUMED_SHAPE))
-          && (mpz_cmp (a->expr->ts.u.cl->length->value.integer,
-                       f->sym->ts.u.cl->length->value.integer) != 0))
-        {
-          if (where && (f->sym->attr.pointer || f->sym->attr.allocatable))
-            gfc_warning ("Character length mismatch (%ld/%ld) between actual "
-                         "argument and pointer or allocatable dummy argument "
-                         "'%s' at %L",
-                         mpz_get_si (a->expr->ts.u.cl->length->value.integer),
-                         mpz_get_si (f->sym->ts.u.cl->length->value.integer),
-                         f->sym->name, &a->expr->where);
-          else if (where)
-            gfc_warning ("Character length mismatch (%ld/%ld) between actual "
-                         "argument and assumed-shape dummy argument '%s' "
-                         "at %L",
-                         mpz_get_si (a->expr->ts.u.cl->length->value.integer),
-                         mpz_get_si (f->sym->ts.u.cl->length->value.integer),
-                         f->sym->name, &a->expr->where);
-          return 0;
-        }
+         && a->expr->ts.u.cl && a->expr->ts.u.cl->length
+         && a->expr->ts.u.cl->length->expr_type == EXPR_CONSTANT
+         && f->sym->ts.type == BT_CHARACTER && f->sym->ts.u.cl
+         && f->sym->ts.u.cl->length
+         && f->sym->ts.u.cl->length->expr_type == EXPR_CONSTANT
+         && (f->sym->attr.pointer || f->sym->attr.allocatable
+             || (f->sym->as && f->sym->as->type == AS_ASSUMED_SHAPE))
+         && (mpz_cmp (a->expr->ts.u.cl->length->value.integer,
+                      f->sym->ts.u.cl->length->value.integer) != 0))
+       {
+         if (where && (f->sym->attr.pointer || f->sym->attr.allocatable))
+           gfc_warning (OPT_Wargument_mismatch,
+                        "Character length mismatch (%ld/%ld) between actual "
+                        "argument and pointer or allocatable dummy argument "
+                        "%qs at %L",
+                        mpz_get_si (a->expr->ts.u.cl->length->value.integer),
+                        mpz_get_si (f->sym->ts.u.cl->length->value.integer),
+                        f->sym->name, &a->expr->where);
+         else if (where)
+           gfc_warning (OPT_Wargument_mismatch,
+                        "Character length mismatch (%ld/%ld) between actual "
+                        "argument and assumed-shape dummy argument %qs "
+                        "at %L",
+                        mpz_get_si (a->expr->ts.u.cl->length->value.integer),
+                        mpz_get_si (f->sym->ts.u.cl->length->value.integer),
+                        f->sym->name, &a->expr->where);
+         return false;
+       }
 
       if ((f->sym->attr.pointer || f->sym->attr.allocatable)
-           && f->sym->ts.deferred != a->expr->ts.deferred
-           && a->expr->ts.type == BT_CHARACTER)
+         && f->sym->ts.deferred != a->expr->ts.deferred
+         && a->expr->ts.type == BT_CHARACTER)
        {
          if (where)
            gfc_error ("Actual argument at %L to allocatable or "
-                      "pointer dummy argument '%s' must have a deferred "
+                      "pointer dummy argument %qs must have a deferred "
                       "length type parameter if and only if the dummy has one",
                       &a->expr->where, f->sym->name);
-         return 0;
+         return false;
        }
 
       if (f->sym->ts.type == BT_CLASS)
@@ -2380,45 +2984,51 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
          && f->sym->attr.flavor != FL_PROCEDURE)
        {
          if (a->expr->ts.type == BT_CHARACTER && !f->sym->as && where)
-           gfc_warning ("Character length of actual argument shorter "
-                        "than of dummy argument '%s' (%lu/%lu) at %L",
+           gfc_warning (OPT_Wargument_mismatch,
+                        "Character length of actual argument shorter "
+                        "than of dummy argument %qs (%lu/%lu) at %L",
                         f->sym->name, actual_size, formal_size,
                         &a->expr->where);
           else if (where)
-           gfc_warning ("Actual argument contains too few "
-                        "elements for dummy argument '%s' (%lu/%lu) at %L",
+           gfc_warning (OPT_Wargument_mismatch,
+                        "Actual argument contains too few "
+                        "elements for dummy argument %qs (%lu/%lu) at %L",
                         f->sym->name, actual_size, formal_size,
                         &a->expr->where);
-         return  0;
+         return false;
        }
 
      skip_size_check:
 
-      /* Satisfy 12.4.1.3 by ensuring that a procedure pointer actual argument
-        is provided for a procedure pointer formal argument.  */
+      /* Satisfy F03:12.4.1.3 by ensuring that a procedure pointer actual
+         argument is provided for a procedure pointer formal argument.  */
       if (f->sym->attr.proc_pointer
          && !((a->expr->expr_type == EXPR_VARIABLE
-               && a->expr->symtree->n.sym->attr.proc_pointer)
+               && (a->expr->symtree->n.sym->attr.proc_pointer
+                   || gfc_is_proc_ptr_comp (a->expr)))
               || (a->expr->expr_type == EXPR_FUNCTION
-                  && a->expr->symtree->n.sym->result->attr.proc_pointer)
-              || gfc_is_proc_ptr_comp (a->expr, NULL)))
+                  && is_procptr_result (a->expr))))
        {
          if (where)
-           gfc_error ("Expected a procedure pointer for argument '%s' at %L",
+           gfc_error ("Expected a procedure pointer for argument %qs at %L",
                       f->sym->name, &a->expr->where);
-         return 0;
+         return false;
        }
 
-      /* Satisfy 12.4.1.2 by ensuring that a procedure actual argument is
+      /* Satisfy F03:12.4.1.3 by ensuring that a procedure actual argument is
         provided for a procedure formal argument.  */
-      if (a->expr->ts.type != BT_PROCEDURE && !gfc_is_proc_ptr_comp (a->expr, NULL)
-         && a->expr->expr_type == EXPR_VARIABLE
-         && f->sym->attr.flavor == FL_PROCEDURE)
+      if (f->sym->attr.flavor == FL_PROCEDURE
+         && !((a->expr->expr_type == EXPR_VARIABLE
+               && (a->expr->symtree->n.sym->attr.flavor == FL_PROCEDURE
+                   || a->expr->symtree->n.sym->attr.proc_pointer
+                   || gfc_is_proc_ptr_comp (a->expr)))
+              || (a->expr->expr_type == EXPR_FUNCTION
+                  && is_procptr_result (a->expr))))
        {
          if (where)
-           gfc_error ("Expected a procedure for argument '%s' at %L",
+           gfc_error ("Expected a procedure for argument %qs at %L",
                       f->sym->name, &a->expr->where);
-         return 0;
+         return false;
        }
 
       if (f->sym->as && f->sym->as->type == AS_ASSUMED_SHAPE
@@ -2430,18 +3040,18 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
                  && a->expr->ref->u.ar.type == AR_FULL)))
        {
          if (where)
-           gfc_error ("Actual argument for '%s' cannot be an assumed-size"
+           gfc_error ("Actual argument for %qs cannot be an assumed-size"
                       " array at %L", f->sym->name, where);
-         return 0;
+         return false;
        }
 
       if (a->expr->expr_type != EXPR_NULL
          && compare_pointer (f->sym, a->expr) == 0)
        {
          if (where)
-           gfc_error ("Actual argument for '%s' must be a pointer at %L",
+           gfc_error ("Actual argument for %qs must be a pointer at %L",
                       f->sym->name, &a->expr->where);
-         return 0;
+         return false;
        }
 
       if (a->expr->expr_type != EXPR_NULL
@@ -2450,19 +3060,19 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
        {
          if (where)
            gfc_error ("Fortran 2008: Non-pointer actual argument at %L to "
-                      "pointer dummy '%s'", &a->expr->where,f->sym->name);
-         return 0;
+                      "pointer dummy %qs", &a->expr->where,f->sym->name);
+         return false;
        }
-       
+
 
       /* Fortran 2008, C1242.  */
       if (f->sym->attr.pointer && gfc_is_coindexed (a->expr))
        {
          if (where)
            gfc_error ("Coindexed actual argument at %L to pointer "
-                      "dummy '%s'",
+                      "dummy %qs",
                       &a->expr->where, f->sym->name);
-         return 0;
+         return false;
        }
 
       /* Fortran 2008, 12.5.2.5 (no constraint).  */
@@ -2473,9 +3083,9 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
        {
          if (where)
            gfc_error ("Coindexed actual argument at %L to allocatable "
-                      "dummy '%s' requires INTENT(IN)",
+                      "dummy %qs requires INTENT(IN)",
                       &a->expr->where, f->sym->name);
-         return 0;
+         return false;
        }
 
       /* Fortran 2008, C1237.  */
@@ -2487,10 +3097,10 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
        {
          if (where)
            gfc_error ("Coindexed ASYNCHRONOUS or VOLATILE actual argument at "
-                      "%L requires that dummy '%s' has neither "
+                      "%L requires that dummy %qs has neither "
                       "ASYNCHRONOUS nor VOLATILE", &a->expr->where,
                       f->sym->name);
-         return 0;
+         return false;
        }
 
       /* Fortran 2008, 12.5.2.4 (no constraint).  */
@@ -2501,9 +3111,9 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
        {
          if (where)
            gfc_error ("Coindexed actual argument at %L with allocatable "
-                      "ultimate component to dummy '%s' requires either VALUE "
+                      "ultimate component to dummy %qs requires either VALUE "
                       "or INTENT(IN)", &a->expr->where, f->sym->name);
-         return 0;
+         return false;
        }
 
      if (f->sym->ts.type == BT_CLASS
@@ -2512,19 +3122,19 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
           && !full_array)
        {
          if (where)
-           gfc_error ("Actual CLASS array argument for '%s' must be a full "
+           gfc_error ("Actual CLASS array argument for %qs must be a full "
                       "array at %L", f->sym->name, &a->expr->where);
-         return 0;
+         return false;
        }
 
 
       if (a->expr->expr_type != EXPR_NULL
-         && compare_allocatable (f->sym, a->expr) == 0)
+         && !compare_allocatable (f->sym, a->expr))
        {
          if (where)
-           gfc_error ("Actual argument for '%s' must be ALLOCATABLE at %L",
+           gfc_error ("Actual argument for %qs must be ALLOCATABLE at %L",
                       f->sym->name, &a->expr->where);
-         return 0;
+         return false;
        }
 
       /* Check intent = OUT/INOUT for definable actual argument.  */
@@ -2538,12 +3148,10 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
          if (((f->sym->ts.type == BT_CLASS && f->sym->attr.class_ok
                && CLASS_DATA (f->sym)->attr.class_pointer)
               || (f->sym->ts.type != BT_CLASS && f->sym->attr.pointer))
-             && gfc_check_vardef_context (a->expr, true, false, context)
-                  == FAILURE)
-           return 0;
-         if (gfc_check_vardef_context (a->expr, false, false, context)
-               == FAILURE)
-           return 0;
+             && !gfc_check_vardef_context (a->expr, true, false, false, context))
+           return false;
+         if (!gfc_check_vardef_context (a->expr, false, false, false, context))
+           return false;
        }
 
       if ((f->sym->attr.intent == INTENT_OUT
@@ -2556,9 +3164,9 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
            gfc_error ("Array-section actual argument with vector "
                       "subscripts at %L is incompatible with INTENT(OUT), "
                       "INTENT(INOUT), VOLATILE or ASYNCHRONOUS attribute "
-                      "of the dummy argument '%s'",
+                      "of the dummy argument %qs",
                       &a->expr->where, f->sym->name);
-         return 0;
+         return false;
        }
 
       /* C1232 (R1221) For an actual argument which is an array section or
@@ -2566,6 +3174,7 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
         shape array, if the dummy argument has the VOLATILE attribute.  */
 
       if (f->sym->attr.volatile_
+         && a->expr->expr_type == EXPR_VARIABLE
          && a->expr->symtree->n.sym->as
          && a->expr->symtree->n.sym->as->type == AS_ASSUMED_SHAPE
          && !(f->sym->as && f->sym->as->type == AS_ASSUMED_SHAPE))
@@ -2573,21 +3182,26 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
          if (where)
            gfc_error ("Assumed-shape actual argument at %L is "
                       "incompatible with the non-assumed-shape "
-                      "dummy argument '%s' due to VOLATILE attribute",
+                      "dummy argument %qs due to VOLATILE attribute",
                       &a->expr->where,f->sym->name);
-         return 0;
+         return false;
        }
 
+      /* Find the last array_ref.  */
+      actual_arr_ref = NULL;
+      if (a->expr->ref)
+       actual_arr_ref = gfc_find_array_ref (a->expr, true);
+
       if (f->sym->attr.volatile_
-         && a->expr->ref && a->expr->ref->u.ar.type == AR_SECTION
+         && actual_arr_ref && actual_arr_ref->type == AR_SECTION
          && !(f->sym->as && f->sym->as->type == AS_ASSUMED_SHAPE))
        {
          if (where)
            gfc_error ("Array-section actual argument at %L is "
                       "incompatible with the non-assumed-shape "
-                      "dummy argument '%s' due to VOLATILE attribute",
-                      &a->expr->where,f->sym->name);
-         return 0;
+                      "dummy argument %qs due to VOLATILE attribute",
+                      &a->expr->where, f->sym->name);
+         return false;
        }
 
       /* C1233 (R1221) For an actual argument which is a pointer array, the
@@ -2595,6 +3209,7 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
         dummy argument has the VOLATILE attribute.  */
 
       if (f->sym->attr.volatile_
+         && a->expr->expr_type == EXPR_VARIABLE
          && a->expr->symtree->n.sym->attr.pointer
          && a->expr->symtree->n.sym->as
          && !(f->sym->as
@@ -2604,9 +3219,9 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
          if (where)
            gfc_error ("Pointer-array actual argument at %L requires "
                       "an assumed-shape or pointer-array dummy "
-                      "argument '%s' due to VOLATILE attribute",
+                      "argument %qs due to VOLATILE attribute",
                       &a->expr->where,f->sym->name);
-         return 0;
+         return false;
        }
 
     match:
@@ -2627,14 +3242,14 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
          if (where)
            gfc_error ("Missing alternate return spec in subroutine call "
                       "at %L", where);
-         return 0;
+         return false;
        }
       if (!f->sym->attr.optional)
        {
          if (where)
-           gfc_error ("Missing actual argument for argument '%s' at %L",
+           gfc_error ("Missing actual argument for argument %qs at %L",
                       f->sym->name, where);
-         return 0;
+         return false;
        }
     }
 
@@ -2647,13 +3262,8 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
 
   if (na != 0)
     {
-      temp = *new_arg[0];
-      *new_arg[0] = *actual;
-      *actual = temp;
-
-      a = new_arg[0];
-      new_arg[0] = new_arg[na];
-      new_arg[na] = a;
+      std::swap (*new_arg[0], *actual);
+      std::swap (new_arg[0], new_arg[na]);
     }
 
   for (i = 0; i < n - 1; i++)
@@ -2669,7 +3279,7 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
     if (a->expr == NULL && a->label == NULL)
       a->missing_arg_type = f->sym->ts.type;
 
-  return 1;
+  return true;
 }
 
 
@@ -2716,9 +3326,9 @@ pair_cmp (const void *p1, const void *p2)
 
 /* Given two expressions from some actual arguments, test whether they
    refer to the same expression. The analysis is conservative.
-   Returning FAILURE will produce no warning.  */
+   Returning false will produce no warning.  */
 
-static gfc_try
+static bool
 compare_actual_expr (gfc_expr *e1, gfc_expr *e2)
 {
   const gfc_ref *r1, *r2;
@@ -2727,39 +3337,39 @@ compare_actual_expr (gfc_expr *e1, gfc_expr *e2)
       || e1->expr_type != EXPR_VARIABLE
       || e2->expr_type != EXPR_VARIABLE
       || e1->symtree->n.sym != e2->symtree->n.sym)
-    return FAILURE;
+    return false;
 
   /* TODO: improve comparison, see expr.c:show_ref().  */
   for (r1 = e1->ref, r2 = e2->ref; r1 && r2; r1 = r1->next, r2 = r2->next)
     {
       if (r1->type != r2->type)
-       return FAILURE;
+       return false;
       switch (r1->type)
        {
        case REF_ARRAY:
          if (r1->u.ar.type != r2->u.ar.type)
-           return FAILURE;
+           return false;
          /* TODO: At the moment, consider only full arrays;
             we could do better.  */
          if (r1->u.ar.type != AR_FULL || r2->u.ar.type != AR_FULL)
-           return FAILURE;
+           return false;
          break;
 
        case REF_COMPONENT:
          if (r1->u.c.component != r2->u.c.component)
-           return FAILURE;
+           return false;
          break;
 
        case REF_SUBSTRING:
-         return FAILURE;
+         return false;
 
        default:
          gfc_internal_error ("compare_actual_expr(): Bad component code");
        }
     }
   if (!r1 && !r2)
-    return SUCCESS;
-  return FAILURE;
+    return true;
+  return false;
 }
 
 
@@ -2767,7 +3377,7 @@ compare_actual_expr (gfc_expr *e1, gfc_expr *e2)
    another, check that identical actual arguments aren't not
    associated with some incompatible INTENTs.  */
 
-static gfc_try
+static bool
 check_some_aliasing (gfc_formal_arglist *f, gfc_actual_arglist *a)
 {
   sym_intent f1_intent, f2_intent;
@@ -2775,7 +3385,7 @@ check_some_aliasing (gfc_formal_arglist *f, gfc_actual_arglist *a)
   gfc_actual_arglist *a1;
   size_t n, i, j;
   argpair *p;
-  gfc_try t = SUCCESS;
+  bool t = true;
 
   n = 0;
   for (f1 = f, a1 = a;; f1 = f1->next, a1 = a1->next)
@@ -2812,18 +3422,19 @@ check_some_aliasing (gfc_formal_arglist *f, gfc_actual_arglist *a)
            gfc_internal_error ("check_some_aliasing(): corrupted data");
 
          /* Are the expression the same?  */
-         if (compare_actual_expr (p[i].a->expr, p[j].a->expr) == FAILURE)
+         if (!compare_actual_expr (p[i].a->expr, p[j].a->expr))
            break;
          f2_intent = p[j].f->sym->attr.intent;
          if ((f1_intent == INTENT_IN && f2_intent == INTENT_OUT)
-             || (f1_intent == INTENT_OUT && f2_intent == INTENT_IN))
+             || (f1_intent == INTENT_OUT && f2_intent == INTENT_IN)
+             || (f1_intent == INTENT_OUT && f2_intent == INTENT_OUT))
            {
-             gfc_warning ("Same actual argument associated with INTENT(%s) "
-                          "argument '%s' and INTENT(%s) argument '%s' at %L",
+             gfc_warning (0, "Same actual argument associated with INTENT(%s) "
+                          "argument %qs and INTENT(%s) argument %qs at %L",
                           gfc_intent_string (f1_intent), p[i].f->sym->name,
                           gfc_intent_string (f2_intent), p[j].f->sym->name,
                           &p[i].a->expr->where);
-             t = FAILURE;
+             t = false;
            }
        }
     }
@@ -2836,24 +3447,33 @@ check_some_aliasing (gfc_formal_arglist *f, gfc_actual_arglist *a)
    another, check that they are compatible in the sense that intents
    are not mismatched.  */
 
-static gfc_try
+static bool
 check_intents (gfc_formal_arglist *f, gfc_actual_arglist *a)
 {
   sym_intent f_intent;
 
   for (;; f = f->next, a = a->next)
     {
+      gfc_expr *expr;
+
       if (f == NULL && a == NULL)
        break;
       if (f == NULL || a == NULL)
        gfc_internal_error ("check_intents(): List mismatch");
 
-      if (a->expr == NULL || a->expr->expr_type != EXPR_VARIABLE)
+      if (a->expr && a->expr->expr_type == EXPR_FUNCTION
+         && a->expr->value.function.isym
+         && a->expr->value.function.isym->id == GFC_ISYM_CAF_GET)
+       expr = a->expr->value.function.actual->expr;
+      else
+       expr = a->expr;
+
+      if (expr == NULL || expr->expr_type != EXPR_VARIABLE)
        continue;
 
       f_intent = f->sym->attr.intent;
 
-      if (gfc_pure (NULL) && gfc_impure_variable (a->expr->symtree->n.sym))
+      if (gfc_pure (NULL) && gfc_impure_variable (expr->symtree->n.sym))
        {
          if ((f->sym->ts.type == BT_CLASS && f->sym->attr.class_ok
               && CLASS_DATA (f->sym)->attr.class_pointer)
@@ -2861,20 +3481,20 @@ check_intents (gfc_formal_arglist *f, gfc_actual_arglist *a)
            {
              gfc_error ("Procedure argument at %L is local to a PURE "
                         "procedure and has the POINTER attribute",
-                        &a->expr->where);
-             return FAILURE;
+                        &expr->where);
+             return false;
            }
        }
 
        /* Fortran 2008, C1283.  */
-       if (gfc_pure (NULL) && gfc_is_coindexed (a->expr))
+       if (gfc_pure (NULL) && gfc_is_coindexed (expr))
        {
          if (f_intent == INTENT_INOUT || f_intent == INTENT_OUT)
            {
              gfc_error ("Coindexed actual argument at %L in PURE procedure "
                         "is passed to an INTENT(%s) argument",
-                        &a->expr->where, gfc_intent_string (f_intent));
-             return FAILURE;
+                        &expr->where, gfc_intent_string (f_intent));
+             return false;
            }
 
          if ((f->sym->ts.type == BT_CLASS && f->sym->attr.class_ok
@@ -2883,23 +3503,23 @@ check_intents (gfc_formal_arglist *f, gfc_actual_arglist *a)
            {
              gfc_error ("Coindexed actual argument at %L in PURE procedure "
                         "is passed to a POINTER dummy argument",
-                        &a->expr->where);
-             return FAILURE;
+                        &expr->where);
+             return false;
            }
        }
 
        /* F2008, Section 12.5.2.4.  */
-       if (a->expr->ts.type == BT_CLASS && f->sym->ts.type == BT_CLASS
-          && gfc_is_coindexed (a->expr))
+       if (expr->ts.type == BT_CLASS && f->sym->ts.type == BT_CLASS
+          && gfc_is_coindexed (expr))
         {
           gfc_error ("Coindexed polymorphic actual argument at %L is passed "
-                     "polymorphic dummy argument '%s'",
-                        &a->expr->where, f->sym->name);
-          return FAILURE;
+                     "polymorphic dummy argument %qs",
+                        &expr->where, f->sym->name);
+          return false;
         }
     }
 
-  return SUCCESS;
+  return true;
 }
 
 
@@ -2907,21 +3527,30 @@ check_intents (gfc_formal_arglist *f, gfc_actual_arglist *a)
    well, the actual argument list will also end up being properly
    sorted.  */
 
-void
+bool
 gfc_procedure_use (gfc_symbol *sym, gfc_actual_arglist **ap, locus *where)
 {
+  gfc_formal_arglist *dummy_args;
+
   /* Warn about calls with an implicit interface.  Special case
-     for calling a ISO_C_BINDING becase c_loc and c_funloc
+     for calling a ISO_C_BINDING because c_loc and c_funloc
      are pseudo-unknown.  Additionally, warn about procedures not
      explicitly declared at all if requested.  */
-  if (sym->attr.if_source == IFSRC_UNKNOWN && ! sym->attr.is_iso_c)
+  if (sym->attr.if_source == IFSRC_UNKNOWN && !sym->attr.is_iso_c)
     {
-      if (gfc_option.warn_implicit_interface)
-       gfc_warning ("Procedure '%s' called with an implicit interface at %L",
+      if (sym->ns->has_implicit_none_export && sym->attr.proc == PROC_UNKNOWN)
+       {
+         gfc_error ("Procedure %qs called at %L is not explicitly declared",
+                    sym->name, where);
+         return false;
+       }
+      if (warn_implicit_interface)
+       gfc_warning (OPT_Wimplicit_interface,
+                    "Procedure %qs called with an implicit interface at %L",
                     sym->name, where);
-      else if (gfc_option.warn_implicit_procedure
-              && sym->attr.proc == PROC_UNKNOWN)
-       gfc_warning ("Procedure '%s' called at %L is not explicitly declared",
+      else if (warn_implicit_procedure && sym->attr.proc == PROC_UNKNOWN)
+       gfc_warning (OPT_Wimplicit_procedure,
+                    "Procedure %qs called at %L is not explicitly declared",
                     sym->name, where);
     }
 
@@ -2931,25 +3560,25 @@ gfc_procedure_use (gfc_symbol *sym, gfc_actual_arglist **ap, locus *where)
 
       if (sym->attr.pointer)
        {
-         gfc_error("The pointer object '%s' at %L must have an explicit "
-                   "function interface or be declared as array",
-                   sym->name, where);
-         return;
+         gfc_error ("The pointer object %qs at %L must have an explicit "
+                    "function interface or be declared as array",
+                    sym->name, where);
+         return false;
        }
 
       if (sym->attr.allocatable && !sym->attr.external)
        {
-         gfc_error("The allocatable object '%s' at %L must have an explicit "
-                   "function interface or be declared as array",
-                   sym->name, where);
-         return;
+         gfc_error ("The allocatable object %qs at %L must have an explicit "
+                    "function interface or be declared as array",
+                    sym->name, where);
+         return false;
        }
 
       if (sym->attr.allocatable)
        {
-         gfc_error("Allocatable function '%s' at %L must have an explicit "
-                   "function interface", sym->name, where);
-         return;
+         gfc_error ("Allocatable function %qs at %L must have an explicit "
+                    "function interface", sym->name, where);
+         return false;
        }
 
       for (a = *ap; a; a = a->next)
@@ -2957,8 +3586,8 @@ gfc_procedure_use (gfc_symbol *sym, gfc_actual_arglist **ap, locus *where)
          /* Skip g77 keyword extensions like %VAL, %REF, %LOC.  */
          if (a->name != NULL && a->name[0] != '%')
            {
-             gfc_error("Keyword argument requires explicit interface "
-                       "for procedure '%s' at %L", sym->name, &a->expr->where);
+             gfc_error ("Keyword argument requires explicit interface "
+                        "for procedure %qs at %L", sym->name, &a->expr->where);
              break;
            }
 
@@ -2979,9 +3608,22 @@ gfc_procedure_use (gfc_symbol *sym, gfc_actual_arglist **ap, locus *where)
                   && a->expr->ts.u.derived->intmod_sym_id == ISOFORTRAN_LOCK_TYPE)
                  || gfc_expr_attr (a->expr).lock_comp))
            {
-             gfc_error("Actual argument of LOCK_TYPE or with LOCK_TYPE "
-                       "component at %L requires an explicit interface for "
-                       "procedure '%s'", &a->expr->where, sym->name);
+             gfc_error ("Actual argument of LOCK_TYPE or with LOCK_TYPE "
+                        "component at %L requires an explicit interface for "
+                        "procedure %qs", &a->expr->where, sym->name);
+             break;
+           }
+
+         if (a->expr
+             && (a->expr->ts.type == BT_DERIVED || a->expr->ts.type == BT_CLASS)
+             && ((a->expr->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
+                  && a->expr->ts.u.derived->intmod_sym_id
+                     == ISOFORTRAN_EVENT_TYPE)
+                 || gfc_expr_attr (a->expr).event_comp))
+           {
+             gfc_error ("Actual argument of EVENT_TYPE or with EVENT_TYPE "
+                        "component at %L requires an explicit interface for "
+                        "procedure %qs", &a->expr->where, sym->name);
              break;
            }
 
@@ -2989,19 +3631,34 @@ gfc_procedure_use (gfc_symbol *sym, gfc_actual_arglist **ap, locus *where)
              && a->expr->ts.type == BT_UNKNOWN)
            {
              gfc_error ("MOLD argument to NULL required at %L", &a->expr->where);
-             return;
+             return false;
+           }
+
+         /* TS 29113, C407b.  */
+         if (a->expr && a->expr->expr_type == EXPR_VARIABLE
+             && symbol_rank (a->expr->symtree->n.sym) == -1)
+           {
+             gfc_error ("Assumed-rank argument requires an explicit interface "
+                        "at %L", &a->expr->where);
+             return false;
            }
        }
 
-      return;
+      return true;
     }
 
-  if (!compare_actual_formal (ap, sym->formal, 0, sym->attr.elemental, where))
-    return;
+  dummy_args = gfc_sym_get_dummy_args (sym);
+
+  if (!compare_actual_formal (ap, dummy_args, 0, sym->attr.elemental, where))
+    return false;
+
+  if (!check_intents (dummy_args, *ap))
+    return false;
 
-  check_intents (sym->formal, *ap);
-  if (gfc_option.warn_aliasing)
-    check_some_aliasing (sym->formal, *ap);
+  if (warn_aliasing)
+    check_some_aliasing (dummy_args, *ap);
+
+  return true;
 }
 
 
@@ -3012,14 +3669,14 @@ gfc_procedure_use (gfc_symbol *sym, gfc_actual_arglist **ap, locus *where)
 void
 gfc_ppc_use (gfc_component *comp, gfc_actual_arglist **ap, locus *where)
 {
-
   /* Warn about calls with an implicit interface.  Special case
-     for calling a ISO_C_BINDING becase c_loc and c_funloc
+     for calling a ISO_C_BINDING because c_loc and c_funloc
      are pseudo-unknown.  */
-  if (gfc_option.warn_implicit_interface
+  if (warn_implicit_interface
       && comp->attr.if_source == IFSRC_UNKNOWN
       && !comp->attr.is_iso_c)
-    gfc_warning ("Procedure pointer component '%s' called with an implicit "
+    gfc_warning (OPT_Wimplicit_interface,
+                "Procedure pointer component %qs called with an implicit "
                 "interface at %L", comp->name, where);
 
   if (comp->attr.if_source == IFSRC_UNKNOWN)
@@ -3030,9 +3687,9 @@ gfc_ppc_use (gfc_component *comp, gfc_actual_arglist **ap, locus *where)
          /* Skip g77 keyword extensions like %VAL, %REF, %LOC.  */
          if (a->name != NULL && a->name[0] != '%')
            {
-             gfc_error("Keyword argument requires explicit interface "
-                       "for procedure pointer component '%s' at %L",
-                       comp->name, &a->expr->where);
+             gfc_error ("Keyword argument requires explicit interface "
+                        "for procedure pointer component %qs at %L",
+                        comp->name, &a->expr->where);
              break;
            }
        }
@@ -3040,12 +3697,13 @@ gfc_ppc_use (gfc_component *comp, gfc_actual_arglist **ap, locus *where)
       return;
     }
 
-  if (!compare_actual_formal (ap, comp->formal, 0, comp->attr.elemental, where))
+  if (!compare_actual_formal (ap, comp->ts.interface->formal, 0,
+                             comp->attr.elemental, where))
     return;
 
-  check_intents (comp->formal, *ap);
-  if (gfc_option.warn_aliasing)
-    check_some_aliasing (comp->formal, *ap);
+  check_intents (comp->ts.interface->formal, *ap);
+  if (warn_aliasing)
+    check_some_aliasing (comp->ts.interface->formal, *ap);
 }
 
 
@@ -3056,16 +3714,20 @@ gfc_ppc_use (gfc_component *comp, gfc_actual_arglist **ap, locus *where)
 bool
 gfc_arglist_matches_symbol (gfc_actual_arglist** args, gfc_symbol* sym)
 {
+  gfc_formal_arglist *dummy_args;
   bool r;
 
-  gcc_assert (sym->attr.flavor == FL_PROCEDURE);
+  if (sym->attr.flavor != FL_PROCEDURE)
+    return false;
+
+  dummy_args = gfc_sym_get_dummy_args (sym);
 
   r = !sym->attr.elemental;
-  if (compare_actual_formal (args, sym->formal, r, !r, NULL))
+  if (compare_actual_formal (args, dummy_args, r, !r, NULL))
     {
-      check_intents (sym->formal, *args);
-      if (gfc_option.warn_aliasing)
-       check_some_aliasing (sym->formal, *args);
+      check_intents (dummy_args, *args);
+      if (warn_aliasing)
+       check_some_aliasing (dummy_args, *args);
       return true;
     }
 
@@ -3095,11 +3757,11 @@ gfc_search_interface (gfc_interface *intr, int sub_flag,
        has_null_arg = true;
        null_expr_loc = a->expr->where;
        break;
-      } 
+      }
 
   for (; intr; intr = intr->next)
     {
-      if (intr->sym->attr.flavor == FL_DERIVED)
+      if (gfc_fl_struct (intr->sym->attr.flavor))
        continue;
       if (sub_flag && intr->sym->attr.function)
        continue;
@@ -3122,7 +3784,7 @@ gfc_search_interface (gfc_interface *intr, int sub_flag,
            }
 
          /* Satisfy 12.4.4.1 such that an elemental match has lower
-            weight than a non-elemental match.  */ 
+            weight than a non-elemental match.  */
          if (intr->sym->attr.elemental)
            {
              elem_sym = intr->sym;
@@ -3180,7 +3842,7 @@ gfc_find_sym_in_symtree (gfc_symbol *sym)
       if (st)
        return st;
     }
-  gfc_internal_error ("Unable to find symbol %s", sym->name);
+  gfc_internal_error ("Unable to find symbol %qs", sym->name);
   /* Not reached.  */
 }
 
@@ -3204,7 +3866,7 @@ matching_typebound_op (gfc_expr** tb_base,
       {
        gfc_typebound_proc* tb;
        gfc_symbol* derived;
-       gfc_try result;
+       bool result;
 
        while (base->expr->expr_type == EXPR_OP
               && base->expr->value.op.op == INTRINSIC_PARENTHESES)
@@ -3212,7 +3874,8 @@ matching_typebound_op (gfc_expr** tb_base,
 
        if (base->expr->ts.type == BT_CLASS)
          {
-           if (CLASS_DATA (base->expr) == NULL)
+           if (!base->expr->ts.u.derived || CLASS_DATA (base->expr) == NULL
+               || !gfc_expr_attr (base->expr).class_ok)
              continue;
            derived = CLASS_DATA (base->expr)->ts.u.derived;
          }
@@ -3238,7 +3901,7 @@ matching_typebound_op (gfc_expr** tb_base,
 
        /* This means we hit a PRIVATE operator which is use-associated and
           should thus not be seen.  */
-       if (result == FAILURE)
+       if (!result)
          tb = NULL;
 
        /* Look through the super-type hierarchy for a matching specific
@@ -3327,6 +3990,8 @@ gfc_extend_expr (gfc_expr *e)
   gfc_user_op *uop;
   gfc_intrinsic_op i;
   const char *gname;
+  gfc_typebound_proc* tbo;
+  gfc_expr* tb_base;
 
   sym = NULL;
 
@@ -3343,6 +4008,48 @@ gfc_extend_expr (gfc_expr *e)
 
   i = fold_unary_intrinsic (e->value.op.op);
 
+  /* See if we find a matching type-bound operator.  */
+  if (i == INTRINSIC_USER)
+    tbo = matching_typebound_op (&tb_base, actual,
+                                 i, e->value.op.uop->name, &gname);
+  else
+    switch (i)
+      {
+#define CHECK_OS_COMPARISON(comp) \
+  case INTRINSIC_##comp: \
+  case INTRINSIC_##comp##_OS: \
+    tbo = matching_typebound_op (&tb_base, actual, \
+                                INTRINSIC_##comp, NULL, &gname); \
+    if (!tbo) \
+      tbo = matching_typebound_op (&tb_base, actual, \
+                                  INTRINSIC_##comp##_OS, NULL, &gname); \
+    break;
+       CHECK_OS_COMPARISON(EQ)
+       CHECK_OS_COMPARISON(NE)
+       CHECK_OS_COMPARISON(GT)
+       CHECK_OS_COMPARISON(GE)
+       CHECK_OS_COMPARISON(LT)
+       CHECK_OS_COMPARISON(LE)
+#undef CHECK_OS_COMPARISON
+
+       default:
+         tbo = matching_typebound_op (&tb_base, actual, i, NULL, &gname);
+         break;
+      }
+
+  /* If there is a matching typebound-operator, replace the expression with
+      a call to it and succeed.  */
+  if (tbo)
+    {
+      gcc_assert (tb_base);
+      build_compcall_for_operator (e, actual, tb_base, tbo, gname);
+
+      if (!gfc_resolve_expr (e))
+       return MATCH_ERROR;
+      else
+       return MATCH_YES;
+    }
+
   if (i == INTRINSIC_USER)
     {
       for (ns = gfc_current_ns; ns; ns = ns->parent)
@@ -3393,58 +4100,9 @@ gfc_extend_expr (gfc_expr *e)
 
   if (sym == NULL)
     {
-      gfc_typebound_proc* tbo;
-      gfc_expr* tb_base;
-
-      /* See if we find a matching type-bound operator.  */
-      if (i == INTRINSIC_USER)
-       tbo = matching_typebound_op (&tb_base, actual,
-                                    i, e->value.op.uop->name, &gname);
-      else
-       switch (i)
-         {
-#define CHECK_OS_COMPARISON(comp) \
-  case INTRINSIC_##comp: \
-  case INTRINSIC_##comp##_OS: \
-    tbo = matching_typebound_op (&tb_base, actual, \
-                                INTRINSIC_##comp, NULL, &gname); \
-    if (!tbo) \
-      tbo = matching_typebound_op (&tb_base, actual, \
-                                  INTRINSIC_##comp##_OS, NULL, &gname); \
-    break;
-           CHECK_OS_COMPARISON(EQ)
-           CHECK_OS_COMPARISON(NE)
-           CHECK_OS_COMPARISON(GT)
-           CHECK_OS_COMPARISON(GE)
-           CHECK_OS_COMPARISON(LT)
-           CHECK_OS_COMPARISON(LE)
-#undef CHECK_OS_COMPARISON
-
-           default:
-             tbo = matching_typebound_op (&tb_base, actual, i, NULL, &gname);
-             break;
-         }
-             
-      /* If there is a matching typebound-operator, replace the expression with
-        a call to it and succeed.  */
-      if (tbo)
-       {
-         gfc_try result;
-
-         gcc_assert (tb_base);
-         build_compcall_for_operator (e, actual, tb_base, tbo, gname);
-
-         result = gfc_resolve_expr (e);
-         if (result == FAILURE)
-           return MATCH_ERROR;
-
-         return MATCH_YES;
-       }
-
       /* Don't use gfc_free_actual_arglist().  */
       free (actual->next);
       free (actual);
-
       return MATCH_NO;
     }
 
@@ -3457,27 +4115,25 @@ gfc_extend_expr (gfc_expr *e)
   e->value.function.name = NULL;
   e->user_operator = 1;
 
-  if (gfc_resolve_expr (e) == FAILURE)
+  if (!gfc_resolve_expr (e))
     return MATCH_ERROR;
 
   return MATCH_YES;
 }
 
 
-/* Tries to replace an assignment code node with a subroutine call to
-   the subroutine associated with the assignment operator.  Return
-   SUCCESS if the node was replaced.  On FAILURE, no error is
-   generated.  */
+/* Tries to replace an assignment code node with a subroutine call to the
+   subroutine associated with the assignment operator. Return true if the node
+   was replaced. On false, no error is generated.  */
 
-gfc_try
+bool
 gfc_extend_assign (gfc_code *c, gfc_namespace *ns)
 {
   gfc_actual_arglist *actual;
-  gfc_expr *lhs, *rhs;
-  gfc_symbol *sym;
-  const char *gname;
-
-  gname = NULL;
+  gfc_expr *lhs, *rhs, *tb_base;
+  gfc_symbol *sym = NULL;
+  const char *gname = NULL;
+  gfc_typebound_proc* tbo;
 
   lhs = c->expr1;
   rhs = c->expr2;
@@ -3487,7 +4143,7 @@ gfc_extend_assign (gfc_code *c, gfc_namespace *ns)
       && (rhs->rank == 0 || rhs->rank == lhs->rank)
       && (lhs->ts.type == rhs->ts.type
          || (gfc_numeric_ts (&lhs->ts) && gfc_numeric_ts (&rhs->ts))))
-    return FAILURE;
+    return false;
 
   actual = gfc_get_actual_arglist ();
   actual->expr = lhs;
@@ -3495,8 +4151,26 @@ gfc_extend_assign (gfc_code *c, gfc_namespace *ns)
   actual->next = gfc_get_actual_arglist ();
   actual->next->expr = rhs;
 
-  sym = NULL;
+  /* TODO: Ambiguity-check, see above for gfc_extend_expr.  */
+
+  /* See if we find a matching type-bound assignment.  */
+  tbo = matching_typebound_op (&tb_base, actual, INTRINSIC_ASSIGN,
+                              NULL, &gname);
 
+  if (tbo)
+    {
+      /* Success: Replace the expression with a type-bound call.  */
+      gcc_assert (tb_base);
+      c->expr1 = gfc_get_expr ();
+      build_compcall_for_operator (c->expr1, actual, tb_base, tbo, gname);
+      c->expr1->value.compcall.assign = 1;
+      c->expr1->where = c->loc;
+      c->expr2 = NULL;
+      c->op = EXEC_COMPCALL;
+      return true;
+    }
+
+  /* See if we find an 'ordinary' (non-typebound) assignment procedure.  */
   for (; ns; ns = ns->parent)
     {
       sym = gfc_search_interface (ns->op[INTRINSIC_ASSIGN], 1, &actual);
@@ -3504,47 +4178,21 @@ gfc_extend_assign (gfc_code *c, gfc_namespace *ns)
        break;
     }
 
-  /* TODO: Ambiguity-check, see above for gfc_extend_expr.  */
-
-  if (sym == NULL)
+  if (sym)
     {
-      gfc_typebound_proc* tbo;
-      gfc_expr* tb_base;
-
-      /* See if we find a matching type-bound assignment.  */
-      tbo = matching_typebound_op (&tb_base, actual,
-                                  INTRINSIC_ASSIGN, NULL, &gname);
-             
-      /* If there is one, replace the expression with a call to it and
-        succeed.  */
-      if (tbo)
-       {
-         gcc_assert (tb_base);
-         c->expr1 = gfc_get_expr ();
-         build_compcall_for_operator (c->expr1, actual, tb_base, tbo, gname);
-         c->expr1->value.compcall.assign = 1;
-         c->expr1->where = c->loc;
-         c->expr2 = NULL;
-         c->op = EXEC_COMPCALL;
-
-         /* c is resolved from the caller, so no need to do it here.  */
-
-         return SUCCESS;
-       }
-
-      free (actual->next);
-      free (actual);
-      return FAILURE;
+      /* Success: Replace the assignment with the call.  */
+      c->op = EXEC_ASSIGN_CALL;
+      c->symtree = gfc_find_sym_in_symtree (sym);
+      c->expr1 = NULL;
+      c->expr2 = NULL;
+      c->ext.actual = actual;
+      return true;
     }
 
-  /* Replace the assignment with the call.  */
-  c->op = EXEC_ASSIGN_CALL;
-  c->symtree = gfc_find_sym_in_symtree (sym);
-  c->expr1 = NULL;
-  c->expr2 = NULL;
-  c->ext.actual = actual;
-
-  return SUCCESS;
+  /* Failure: No assignment procedure found.  */
+  free (actual->next);
+  free (actual);
+  return false;
 }
 
 
@@ -3552,7 +4200,7 @@ gfc_extend_assign (gfc_code *c, gfc_namespace *ns)
    the given interface list.  Ambiguity isn't checked yet since module
    procedures can be present without interfaces.  */
 
-gfc_try
+bool
 gfc_check_new_interface (gfc_interface *base, gfc_symbol *new_sym, locus loc)
 {
   gfc_interface *ip;
@@ -3561,19 +4209,19 @@ gfc_check_new_interface (gfc_interface *base, gfc_symbol *new_sym, locus loc)
     {
       if (ip->sym == new_sym)
        {
-         gfc_error ("Entity '%s' at %L is already present in the interface",
+         gfc_error ("Entity %qs at %L is already present in the interface",
                     new_sym->name, &loc);
-         return FAILURE;
+         return false;
        }
     }
 
-  return SUCCESS;
+  return true;
 }
 
 
 /* Add a symbol to the current interface.  */
 
-gfc_try
+bool
 gfc_add_interface (gfc_symbol *new_sym)
 {
   gfc_interface **head, *intr;
@@ -3584,7 +4232,7 @@ gfc_add_interface (gfc_symbol *new_sym)
     {
     case INTERFACE_NAMELESS:
     case INTERFACE_ABSTRACT:
-      return SUCCESS;
+      return true;
 
     case INTERFACE_INTRINSIC_OP:
       for (ns = current_interface.ns; ns; ns = ns->parent)
@@ -3592,86 +4240,87 @@ gfc_add_interface (gfc_symbol *new_sym)
          {
            case INTRINSIC_EQ:
            case INTRINSIC_EQ_OS:
-             if (gfc_check_new_interface (ns->op[INTRINSIC_EQ], new_sym,
-                                          gfc_current_locus) == FAILURE
-                 || gfc_check_new_interface (ns->op[INTRINSIC_EQ_OS], new_sym,
-                                             gfc_current_locus) == FAILURE)
-               return FAILURE;
+             if (!gfc_check_new_interface (ns->op[INTRINSIC_EQ], new_sym,
+                                           gfc_current_locus)
+                 || !gfc_check_new_interface (ns->op[INTRINSIC_EQ_OS],
+                                              new_sym, gfc_current_locus))
+               return false;
              break;
 
            case INTRINSIC_NE:
            case INTRINSIC_NE_OS:
-             if (gfc_check_new_interface (ns->op[INTRINSIC_NE], new_sym,
-                                          gfc_current_locus) == FAILURE
-                 || gfc_check_new_interface (ns->op[INTRINSIC_NE_OS], new_sym,
-                                             gfc_current_locus) == FAILURE)
-               return FAILURE;
+             if (!gfc_check_new_interface (ns->op[INTRINSIC_NE], new_sym,
+                                           gfc_current_locus)
+                 || !gfc_check_new_interface (ns->op[INTRINSIC_NE_OS],
+                                              new_sym, gfc_current_locus))
+               return false;
              break;
 
            case INTRINSIC_GT:
            case INTRINSIC_GT_OS:
-             if (gfc_check_new_interface (ns->op[INTRINSIC_GT], new_sym,
-                                          gfc_current_locus) == FAILURE
-                 || gfc_check_new_interface (ns->op[INTRINSIC_GT_OS], new_sym,
-                                             gfc_current_locus) == FAILURE)
-               return FAILURE;
+             if (!gfc_check_new_interface (ns->op[INTRINSIC_GT],
+                                           new_sym, gfc_current_locus)
+                 || !gfc_check_new_interface (ns->op[INTRINSIC_GT_OS],
+                                              new_sym, gfc_current_locus))
+               return false;
              break;
 
            case INTRINSIC_GE:
            case INTRINSIC_GE_OS:
-             if (gfc_check_new_interface (ns->op[INTRINSIC_GE], new_sym,
-                                          gfc_current_locus) == FAILURE
-                 || gfc_check_new_interface (ns->op[INTRINSIC_GE_OS], new_sym,
-                                             gfc_current_locus) == FAILURE)
-               return FAILURE;
+             if (!gfc_check_new_interface (ns->op[INTRINSIC_GE],
+                                           new_sym, gfc_current_locus)
+                 || !gfc_check_new_interface (ns->op[INTRINSIC_GE_OS],
+                                              new_sym, gfc_current_locus))
+               return false;
              break;
 
            case INTRINSIC_LT:
            case INTRINSIC_LT_OS:
-             if (gfc_check_new_interface (ns->op[INTRINSIC_LT], new_sym,
-                                          gfc_current_locus) == FAILURE
-                 || gfc_check_new_interface (ns->op[INTRINSIC_LT_OS], new_sym,
-                                             gfc_current_locus) == FAILURE)
-               return FAILURE;
+             if (!gfc_check_new_interface (ns->op[INTRINSIC_LT],
+                                           new_sym, gfc_current_locus)
+                 || !gfc_check_new_interface (ns->op[INTRINSIC_LT_OS],
+                                              new_sym, gfc_current_locus))
+               return false;
              break;
 
            case INTRINSIC_LE:
            case INTRINSIC_LE_OS:
-             if (gfc_check_new_interface (ns->op[INTRINSIC_LE], new_sym,
-                                          gfc_current_locus) == FAILURE
-                 || gfc_check_new_interface (ns->op[INTRINSIC_LE_OS], new_sym,
-                                             gfc_current_locus) == FAILURE)
-               return FAILURE;
+             if (!gfc_check_new_interface (ns->op[INTRINSIC_LE],
+                                           new_sym, gfc_current_locus)
+                 || !gfc_check_new_interface (ns->op[INTRINSIC_LE_OS],
+                                              new_sym, gfc_current_locus))
+               return false;
              break;
 
            default:
-             if (gfc_check_new_interface (ns->op[current_interface.op], new_sym,
-                                          gfc_current_locus) == FAILURE)
-               return FAILURE;
+             if (!gfc_check_new_interface (ns->op[current_interface.op],
+                                           new_sym, gfc_current_locus))
+               return false;
          }
 
       head = &current_interface.ns->op[current_interface.op];
       break;
 
     case INTERFACE_GENERIC:
+    case INTERFACE_DTIO:
       for (ns = current_interface.ns; ns; ns = ns->parent)
        {
          gfc_find_symbol (current_interface.sym->name, ns, 0, &sym);
          if (sym == NULL)
            continue;
 
-         if (gfc_check_new_interface (sym->generic, new_sym, gfc_current_locus)
-             == FAILURE)
-           return FAILURE;
+         if (!gfc_check_new_interface (sym->generic,
+                                       new_sym, gfc_current_locus))
+           return false;
        }
 
       head = &current_interface.sym->generic;
       break;
 
     case INTERFACE_USER_OP:
-      if (gfc_check_new_interface (current_interface.uop->op, new_sym,
-                                  gfc_current_locus) == FAILURE)
-       return FAILURE;
+      if (!gfc_check_new_interface (current_interface.uop->op,
+                                   new_sym, gfc_current_locus))
+       return false;
 
       head = &current_interface.uop->op;
       break;
@@ -3687,7 +4336,7 @@ gfc_add_interface (gfc_symbol *new_sym)
   intr->next = *head;
   *head = intr;
 
-  return SUCCESS;
+  return true;
 }
 
 
@@ -3698,15 +4347,13 @@ gfc_current_interface_head (void)
     {
       case INTERFACE_INTRINSIC_OP:
        return current_interface.ns->op[current_interface.op];
-       break;
 
       case INTERFACE_GENERIC:
+      case INTERFACE_DTIO:
        return current_interface.sym->generic;
-       break;
 
       case INTERFACE_USER_OP:
        return current_interface.uop->op;
-       break;
 
       default:
        gcc_unreachable ();
@@ -3724,6 +4371,7 @@ gfc_set_current_interface_head (gfc_interface *i)
        break;
 
       case INTERFACE_GENERIC:
+      case INTERFACE_DTIO:
        current_interface.sym->generic = i;
        break;
 
@@ -3756,11 +4404,11 @@ gfc_free_formal_arglist (gfc_formal_arglist *p)
 /* Check that it is ok for the type-bound procedure 'proc' to override the
    procedure 'old', cf. F08:4.5.7.3.  */
 
-gfc_try
+bool
 gfc_check_typebound_override (gfc_symtree* proc, gfc_symtree* old)
 {
   locus where;
-  const gfc_symbol *proc_target, *old_target;
+  gfc_symbol *proc_target, *old_target;
   unsigned proc_pass_arg, old_pass_arg, argpos;
   gfc_formal_arglist *proc_formal, *old_formal;
   bool check_type;
@@ -3772,9 +4420,9 @@ gfc_check_typebound_override (gfc_symtree* proc, gfc_symtree* old)
   /* If the overwritten procedure is GENERIC, this is an error.  */
   if (old->n.tb->is_generic)
     {
-      gfc_error ("Can't overwrite GENERIC '%s' at %L",
+      gfc_error ("Can't overwrite GENERIC %qs at %L",
                 old->name, &proc->n.tb->where);
-      return FAILURE;
+      return false;
     }
 
   where = proc->n.tb->where;
@@ -3784,49 +4432,49 @@ gfc_check_typebound_override (gfc_symtree* proc, gfc_symtree* old)
   /* Check that overridden binding is not NON_OVERRIDABLE.  */
   if (old->n.tb->non_overridable)
     {
-      gfc_error ("'%s' at %L overrides a procedure binding declared"
+      gfc_error ("%qs at %L overrides a procedure binding declared"
                 " NON_OVERRIDABLE", proc->name, &where);
-      return FAILURE;
+      return false;
     }
 
   /* It's an error to override a non-DEFERRED procedure with a DEFERRED one.  */
   if (!old->n.tb->deferred && proc->n.tb->deferred)
     {
-      gfc_error ("'%s' at %L must not be DEFERRED as it overrides a"
+      gfc_error ("%qs at %L must not be DEFERRED as it overrides a"
                 " non-DEFERRED binding", proc->name, &where);
-      return FAILURE;
+      return false;
     }
 
   /* If the overridden binding is PURE, the overriding must be, too.  */
   if (old_target->attr.pure && !proc_target->attr.pure)
     {
-      gfc_error ("'%s' at %L overrides a PURE procedure and must also be PURE",
+      gfc_error ("%qs at %L overrides a PURE procedure and must also be PURE",
                 proc->name, &where);
-      return FAILURE;
+      return false;
     }
 
   /* If the overridden binding is ELEMENTAL, the overriding must be, too.  If it
      is not, the overriding must not be either.  */
   if (old_target->attr.elemental && !proc_target->attr.elemental)
     {
-      gfc_error ("'%s' at %L overrides an ELEMENTAL procedure and must also be"
+      gfc_error ("%qs at %L overrides an ELEMENTAL procedure and must also be"
                 " ELEMENTAL", proc->name, &where);
-      return FAILURE;
+      return false;
     }
   if (!old_target->attr.elemental && proc_target->attr.elemental)
     {
-      gfc_error ("'%s' at %L overrides a non-ELEMENTAL procedure and must not"
+      gfc_error ("%qs at %L overrides a non-ELEMENTAL procedure and must not"
                 " be ELEMENTAL, either", proc->name, &where);
-      return FAILURE;
+      return false;
     }
 
   /* If the overridden binding is a SUBROUTINE, the overriding must also be a
      SUBROUTINE.  */
   if (old_target->attr.subroutine && !proc_target->attr.subroutine)
     {
-      gfc_error ("'%s' at %L overrides a SUBROUTINE and must also be a"
+      gfc_error ("%qs at %L overrides a SUBROUTINE and must also be a"
                 " SUBROUTINE", proc->name, &where);
-      return FAILURE;
+      return false;
     }
 
   /* If the overridden binding is a FUNCTION, the overriding must also be a
@@ -3835,49 +4483,17 @@ gfc_check_typebound_override (gfc_symtree* proc, gfc_symtree* old)
     {
       if (!proc_target->attr.function)
        {
-         gfc_error ("'%s' at %L overrides a FUNCTION and must also be a"
+         gfc_error ("%qs at %L overrides a FUNCTION and must also be a"
                     " FUNCTION", proc->name, &where);
-         return FAILURE;
+         return false;
        }
 
-      /* FIXME:  Do more comprehensive checking (including, for instance, the
-        array-shape).  */
-      gcc_assert (proc_target->result && old_target->result);
-      if (!compare_type_rank (proc_target->result, old_target->result))
+      if (!gfc_check_result_characteristics (proc_target, old_target,
+                                            err, sizeof(err)))
        {
-         gfc_error ("'%s' at %L and the overridden FUNCTION should have"
-                    " matching result types and ranks", proc->name, &where);
-         return FAILURE;
-       }
-       
-      /* Check string length.  */
-      if (proc_target->result->ts.type == BT_CHARACTER
-         && proc_target->result->ts.u.cl && old_target->result->ts.u.cl)
-       {
-         int compval = gfc_dep_compare_expr (proc_target->result->ts.u.cl->length,
-                                             old_target->result->ts.u.cl->length);
-         switch (compval)
-         {
-           case -1:
-           case  1:
-           case -3:
-             gfc_error ("Character length mismatch between '%s' at '%L' and "
-                        "overridden FUNCTION", proc->name, &where);
-             return FAILURE;
-
-           case -2:
-             gfc_warning ("Possible character length mismatch between '%s' at"
-                          " '%L' and overridden FUNCTION", proc->name, &where);
-             break;
-
-           case 0:
-             break;
-
-           default:
-             gfc_internal_error ("gfc_check_typebound_override: Unexpected "
-                                 "result %i of gfc_dep_compare_expr", compval);
-             break;
-         }
+         gfc_error ("Result mismatch for the overriding procedure "
+                    "%qs at %L: %s", proc->name, &where, err);
+         return false;
        }
     }
 
@@ -3886,9 +4502,9 @@ gfc_check_typebound_override (gfc_symtree* proc, gfc_symtree* old)
   if (old->n.tb->access == ACCESS_PUBLIC
       && proc->n.tb->access == ACCESS_PRIVATE)
     {
-      gfc_error ("'%s' at %L overrides a PUBLIC procedure and must not be"
+      gfc_error ("%qs at %L overrides a PUBLIC procedure and must not be"
                 " PRIVATE", proc->name, &where);
-      return FAILURE;
+      return false;
     }
 
   /* Compare the formal argument lists of both procedures.  This is also abused
@@ -3901,8 +4517,9 @@ gfc_check_typebound_override (gfc_symtree* proc, gfc_symtree* old)
   if (!old->n.tb->nopass && !old->n.tb->pass_arg)
     old_pass_arg = 1;
   argpos = 1;
-  for (proc_formal = proc_target->formal, old_formal = old_target->formal;
-       proc_formal && old_formal;
+  proc_formal = gfc_sym_get_dummy_args (proc_target);
+  old_formal = gfc_sym_get_dummy_args (old_target);
+  for ( ; proc_formal && old_formal;
        proc_formal = proc_formal->next, old_formal = old_formal->next)
     {
       if (proc->n.tb->pass_arg
@@ -3915,38 +4532,39 @@ gfc_check_typebound_override (gfc_symtree* proc, gfc_symtree* old)
       /* Check that the names correspond.  */
       if (strcmp (proc_formal->sym->name, old_formal->sym->name))
        {
-         gfc_error ("Dummy argument '%s' of '%s' at %L should be named '%s' as"
+         gfc_error ("Dummy argument %qs of %qs at %L should be named %qs as"
                     " to match the corresponding argument of the overridden"
                     " procedure", proc_formal->sym->name, proc->name, &where,
                     old_formal->sym->name);
-         return FAILURE;
+         return false;
        }
 
       check_type = proc_pass_arg != argpos && old_pass_arg != argpos;
-      if (check_dummy_characteristics (proc_formal->sym, old_formal->sym,
-                                      check_type, err, sizeof(err)) == FAILURE)
+      if (!gfc_check_dummy_characteristics (proc_formal->sym, old_formal->sym,
+                                       check_type, err, sizeof(err)))
        {
-         gfc_error ("Argument mismatch for the overriding procedure "
-                    "'%s' at %L: %s", proc->name, &where, err);
-         return FAILURE;
+         gfc_error_opt (OPT_Wargument_mismatch,
+                        "Argument mismatch for the overriding procedure "
+                        "%qs at %L: %s", proc->name, &where, err);
+         return false;
        }
 
       ++argpos;
     }
   if (proc_formal || old_formal)
     {
-      gfc_error ("'%s' at %L must have the same number of formal arguments as"
+      gfc_error ("%qs at %L must have the same number of formal arguments as"
                 " the overridden procedure", proc->name, &where);
-      return FAILURE;
+      return false;
     }
 
   /* If the overridden binding is NOPASS, the overriding one must also be
      NOPASS.  */
   if (old->n.tb->nopass && !proc->n.tb->nopass)
     {
-      gfc_error ("'%s' at %L overrides a NOPASS binding and must also be"
+      gfc_error ("%qs at %L overrides a NOPASS binding and must also be"
                 " NOPASS", proc->name, &where);
-      return FAILURE;
+      return false;
     }
 
   /* If the overridden binding is PASS(x), the overriding one must also be
@@ -3955,19 +4573,395 @@ gfc_check_typebound_override (gfc_symtree* proc, gfc_symtree* old)
     {
       if (proc->n.tb->nopass)
        {
-         gfc_error ("'%s' at %L overrides a binding with PASS and must also be"
+         gfc_error ("%qs at %L overrides a binding with PASS and must also be"
                     " PASS", proc->name, &where);
-         return FAILURE;
+         return false;
        }
 
       if (proc_pass_arg != old_pass_arg)
        {
-         gfc_error ("Passed-object dummy argument of '%s' at %L must be at"
+         gfc_error ("Passed-object dummy argument of %qs at %L must be at"
                     " the same position as the passed-object dummy argument of"
                     " the overridden procedure", proc->name, &where);
-         return FAILURE;
+         return false;
+       }
+    }
+
+  return true;
+}
+
+
+/* The following three functions check that the formal arguments
+   of user defined derived type IO procedures are compliant with
+   the requirements of the standard.  */
+
+static void
+check_dtio_arg_TKR_intent (gfc_symbol *fsym, bool typebound, bt type,
+                          int kind, int rank, sym_intent intent)
+{
+  if (fsym->ts.type != type)
+    {
+      gfc_error ("DTIO dummy argument at %L must be of type %s",
+                &fsym->declared_at, gfc_basic_typename (type));
+      return;
+    }
+
+  if (fsym->ts.type != BT_CLASS && fsym->ts.type != BT_DERIVED
+      && fsym->ts.kind != kind)
+    gfc_error ("DTIO dummy argument at %L must be of KIND = %d",
+              &fsym->declared_at, kind);
+
+  if (!typebound
+      && rank == 0
+      && (((type == BT_CLASS) && CLASS_DATA (fsym)->attr.dimension)
+         || ((type != BT_CLASS) && fsym->attr.dimension)))
+    gfc_error ("DTIO dummy argument at %L be a scalar",
+              &fsym->declared_at);
+  else if (rank == 1
+          && (fsym->as == NULL || fsym->as->type != AS_ASSUMED_SHAPE))
+    gfc_error ("DTIO dummy argument at %L must be an "
+              "ASSUMED SHAPE ARRAY", &fsym->declared_at);
+
+  if (fsym->attr.intent != intent)
+    gfc_error ("DTIO dummy argument at %L must have intent %s",
+              &fsym->declared_at, gfc_code2string (intents, (int)intent));
+  return;
+}
+
+
+static void
+check_dtio_interface1 (gfc_symbol *derived, gfc_symtree *tb_io_st,
+                      bool typebound, bool formatted, int code)
+{
+  gfc_symbol *dtio_sub, *generic_proc, *fsym;
+  gfc_typebound_proc *tb_io_proc, *specific_proc;
+  gfc_interface *intr;
+  gfc_formal_arglist *formal;
+  int arg_num;
+
+  bool read = ((dtio_codes)code == DTIO_RF)
+              || ((dtio_codes)code == DTIO_RUF);
+  bt type;
+  sym_intent intent;
+  int kind;
+
+  dtio_sub = NULL;
+  if (typebound)
+    {
+      /* Typebound DTIO binding.  */
+      tb_io_proc = tb_io_st->n.tb;
+      if (tb_io_proc == NULL)
+       return;
+
+      gcc_assert (tb_io_proc->is_generic);
+      gcc_assert (tb_io_proc->u.generic->next == NULL);
+
+      specific_proc = tb_io_proc->u.generic->specific;
+      if (specific_proc == NULL || specific_proc->is_generic)
+       return;
+
+      dtio_sub = specific_proc->u.specific->n.sym;
+    }
+  else
+    {
+      generic_proc = tb_io_st->n.sym;
+      if (generic_proc == NULL || generic_proc->generic == NULL)
+       return;
+
+      for (intr = tb_io_st->n.sym->generic; intr; intr = intr->next)
+       {
+         if (intr->sym && intr->sym->formal && intr->sym->formal->sym
+             && ((intr->sym->formal->sym->ts.type == BT_CLASS
+                  && CLASS_DATA (intr->sym->formal->sym)->ts.u.derived
+                                                            == derived)
+                 || (intr->sym->formal->sym->ts.type == BT_DERIVED
+                     && intr->sym->formal->sym->ts.u.derived == derived)))
+           {
+             dtio_sub = intr->sym;
+             break;
+           }
+         else if (intr->sym && intr->sym->formal && !intr->sym->formal->sym)
+           {
+             gfc_error ("Alternate return at %L is not permitted in a DTIO "
+                        "procedure", &intr->sym->declared_at);
+             return;
+           }
+       }
+
+      if (dtio_sub == NULL)
+       return;
+    }
+
+  gcc_assert (dtio_sub);
+  if (!dtio_sub->attr.subroutine)
+    gfc_error ("DTIO procedure '%s' at %L must be a subroutine",
+              dtio_sub->name, &dtio_sub->declared_at);
+
+  arg_num = 0;
+  for (formal = dtio_sub->formal; formal; formal = formal->next)
+    arg_num++;
+
+  if (arg_num < (formatted ? 6 : 4))
+    {
+      gfc_error ("Too few dummy arguments in DTIO procedure '%s' at %L",
+                dtio_sub->name, &dtio_sub->declared_at);
+      return;
+    }
+
+  if (arg_num > (formatted ? 6 : 4))
+    {
+      gfc_error ("Too many dummy arguments in DTIO procedure '%s' at %L",
+                dtio_sub->name, &dtio_sub->declared_at);
+      return;
+    }
+
+
+  /* Now go through the formal arglist.  */
+  arg_num = 1;
+  for (formal = dtio_sub->formal; formal; formal = formal->next, arg_num++)
+    {
+      if (!formatted && arg_num == 3)
+       arg_num = 5;
+      fsym = formal->sym;
+
+      if (fsym == NULL)
+       {
+         gfc_error ("Alternate return at %L is not permitted in a DTIO "
+                    "procedure", &dtio_sub->declared_at);
+         return;
+       }
+
+      switch (arg_num)
+       {
+       case(1):                        /* DTV  */
+         type = derived->attr.sequence || derived->attr.is_bind_c ?
+                BT_DERIVED : BT_CLASS;
+         kind = 0;
+         intent = read ? INTENT_INOUT : INTENT_IN;
+         check_dtio_arg_TKR_intent (fsym, typebound, type, kind,
+                                    0, intent);
+         break;
+
+       case(2):                        /* UNIT  */
+         type = BT_INTEGER;
+         kind = gfc_default_integer_kind;
+         intent = INTENT_IN;
+         check_dtio_arg_TKR_intent (fsym, typebound, type, kind,
+                                    0, intent);
+         break;
+       case(3):                        /* IOTYPE  */
+         type = BT_CHARACTER;
+         kind = gfc_default_character_kind;
+         intent = INTENT_IN;
+         check_dtio_arg_TKR_intent (fsym, typebound, type, kind,
+                                    0, intent);
+         break;
+       case(4):                        /* VLIST  */
+         type = BT_INTEGER;
+         kind = gfc_default_integer_kind;
+         intent = INTENT_IN;
+         check_dtio_arg_TKR_intent (fsym, typebound, type, kind,
+                                    1, intent);
+         break;
+       case(5):                        /* IOSTAT  */
+         type = BT_INTEGER;
+         kind = gfc_default_integer_kind;
+         intent = INTENT_OUT;
+         check_dtio_arg_TKR_intent (fsym, typebound, type, kind,
+                                    0, intent);
+         break;
+       case(6):                        /* IOMSG  */
+         type = BT_CHARACTER;
+         kind = gfc_default_character_kind;
+         intent = INTENT_INOUT;
+         check_dtio_arg_TKR_intent (fsym, typebound, type, kind,
+                                    0, intent);
+         break;
+       default:
+         gcc_unreachable ();
        }
     }
+  derived->attr.has_dtio_procs = 1;
+  return;
+}
+
+void
+gfc_check_dtio_interfaces (gfc_symbol *derived)
+{
+  gfc_symtree *tb_io_st;
+  bool t = false;
+  int code;
+  bool formatted;
+
+  if (derived->attr.is_class == 1 || derived->attr.vtype == 1)
+    return;
+
+  /* Check typebound DTIO bindings.  */
+  for (code = 0; code < 4; code++)
+    {
+      formatted = ((dtio_codes)code == DTIO_RF)
+                  || ((dtio_codes)code == DTIO_WF);
+
+      tb_io_st = gfc_find_typebound_proc (derived, &t,
+                                         gfc_code2string (dtio_procs, code),
+                                         true, &derived->declared_at);
+      if (tb_io_st != NULL)
+       check_dtio_interface1 (derived, tb_io_st, true, formatted, code);
+    }
+
+  /* Check generic DTIO interfaces.  */
+  for (code = 0; code < 4; code++)
+    {
+      formatted = ((dtio_codes)code == DTIO_RF)
+                  || ((dtio_codes)code == DTIO_WF);
+
+      tb_io_st = gfc_find_symtree (derived->ns->sym_root,
+                                  gfc_code2string (dtio_procs, code));
+      if (tb_io_st != NULL)
+       check_dtio_interface1 (derived, tb_io_st, false, formatted, code);
+    }
+}
+
+
+gfc_symtree*
+gfc_find_typebound_dtio_proc (gfc_symbol *derived, bool write, bool formatted)
+{
+  gfc_symtree *tb_io_st = NULL;
+  bool t = false;
+
+  if (!derived || derived->attr.flavor != FL_DERIVED)
+    return NULL;
+
+  /* Try to find a typebound DTIO binding.  */
+  if (formatted == true)
+    {
+      if (write == true)
+        tb_io_st = gfc_find_typebound_proc (derived, &t,
+                                           gfc_code2string (dtio_procs,
+                                                            DTIO_WF),
+                                           true,
+                                           &derived->declared_at);
+      else
+        tb_io_st = gfc_find_typebound_proc (derived, &t,
+                                           gfc_code2string (dtio_procs,
+                                                            DTIO_RF),
+                                           true,
+                                           &derived->declared_at);
+    }
+  else
+    {
+      if (write == true)
+        tb_io_st = gfc_find_typebound_proc (derived, &t,
+                                           gfc_code2string (dtio_procs,
+                                                            DTIO_WUF),
+                                           true,
+                                           &derived->declared_at);
+      else
+        tb_io_st = gfc_find_typebound_proc (derived, &t,
+                                           gfc_code2string (dtio_procs,
+                                                            DTIO_RUF),
+                                           true,
+                                           &derived->declared_at);
+    }
+  return tb_io_st;
+}
+
+
+gfc_symbol *
+gfc_find_specific_dtio_proc (gfc_symbol *derived, bool write, bool formatted)
+{
+  gfc_symtree *tb_io_st = NULL;
+  gfc_symbol *dtio_sub = NULL;
+  gfc_symbol *extended;
+  gfc_typebound_proc *tb_io_proc, *specific_proc;
+
+  tb_io_st = gfc_find_typebound_dtio_proc (derived, write, formatted);
+
+  if (tb_io_st != NULL)
+    {
+      const char *genname;
+      gfc_symtree *st;
+
+      tb_io_proc = tb_io_st->n.tb;
+      gcc_assert (tb_io_proc != NULL);
+      gcc_assert (tb_io_proc->is_generic);
+      gcc_assert (tb_io_proc->u.generic->next == NULL);
+
+      specific_proc = tb_io_proc->u.generic->specific;
+      gcc_assert (!specific_proc->is_generic);
+
+      /* Go back and make sure that we have the right specific procedure.
+        Here we most likely have a procedure from the parent type, which
+        can be overridden in extensions.  */
+      genname = tb_io_proc->u.generic->specific_st->name;
+      st = gfc_find_typebound_proc (derived, NULL, genname,
+                                   true, &tb_io_proc->where);
+      if (st)
+       dtio_sub = st->n.tb->u.specific->n.sym;
+      else
+       dtio_sub = specific_proc->u.specific->n.sym;
+
+      goto finish;
+    }
+
+  /* If there is not a typebound binding, look for a generic
+     DTIO interface.  */
+  for (extended = derived; extended;
+       extended = gfc_get_derived_super_type (extended))
+    {
+      if (extended == NULL || extended->ns == NULL
+         || extended->attr.flavor == FL_UNKNOWN)
+       return NULL;
+
+      if (formatted == true)
+       {
+         if (write == true)
+           tb_io_st = gfc_find_symtree (extended->ns->sym_root,
+                                        gfc_code2string (dtio_procs,
+                                                         DTIO_WF));
+         else
+           tb_io_st = gfc_find_symtree (extended->ns->sym_root,
+                                        gfc_code2string (dtio_procs,
+                                                         DTIO_RF));
+       }
+      else
+       {
+         if (write == true)
+           tb_io_st = gfc_find_symtree (extended->ns->sym_root,
+                                        gfc_code2string (dtio_procs,
+                                                         DTIO_WUF));
+         else
+           tb_io_st = gfc_find_symtree (extended->ns->sym_root,
+                                        gfc_code2string (dtio_procs,
+                                                         DTIO_RUF));
+       }
+
+      if (tb_io_st != NULL
+         && tb_io_st->n.sym
+         && tb_io_st->n.sym->generic)
+       {
+         for (gfc_interface *intr = tb_io_st->n.sym->generic;
+              intr && intr->sym; intr = intr->next)
+           {
+             if (intr->sym->formal)
+               {
+                 gfc_symbol *fsym = intr->sym->formal->sym;
+                 if ((fsym->ts.type == BT_CLASS
+                     && CLASS_DATA (fsym)->ts.u.derived == extended)
+                     || (fsym->ts.type == BT_DERIVED
+                         && fsym->ts.u.derived == extended))
+                   {
+                     dtio_sub = intr->sym;
+                     break;
+                   }
+               }
+           }
+       }
+    }
+
+finish:
+  if (dtio_sub && derived != CLASS_DATA (dtio_sub->formal->sym)->ts.u.derived)
+    gfc_find_derived_vtab (derived);
 
-  return SUCCESS;
+  return dtio_sub;
 }