PR fortran/31675 * libgfortran.h: New file. * iso-fortran-env.def: Use macros in the new header instead of hardcoded integer constants. * Make-lang.in (F95_PARSER_OBJS, GFORTRAN_TRANS_DEPS): Add fortran/libgfortran.h. * gfortran.h (GFC_STD_*, GFC_FPE_*, options_convert, ioerror_codes): Remove. * trans.c (ERROR_ALLOCATION): Remove. (gfc_call_malloc, gfc_allocate_with_status, gfc_allocate_array_with_status): Use LIBERROR_ALLOCATION. * trans-types.h (GFC_DTYPE_*): Remove. * trans-decl.c (gfc_generate_function_code): Use GFC_CONVERT_NATIVE instead of CONVERT_NATIVE. * trans-io.c (set_parameter_value, set_parameter_ref): Use LIBERROR_* macros instead of IOERROR_ macros. * trans-intrinsic.c (gfc_conv_intrinsic_function): Use LIBERROR_END and LIBERROR_EOR instead of hardcoded constants. * options.c (gfc_init_options): Use GFC_CONVERT_NATIVE instead of CONVERT_NATIVE. (gfc_handle_option): Use GFC_CONVERT_* macros instead of CONVERT_*. * libgfortran.h: Include gcc/fortran/libgfortran.h. Remove M_PI, GFC_MAX_DIMENSIONS, GFC_DTYPE_*, GFC_NUM_RANK_BITS, error_codes, GFC_STD_*, GFC_FPE_* and unit_convert. * runtime/environ.c (variable_table): Use GFC_*_UNIT_NUMBER instead of hardcoded constants. (do_parse, init_unformatted): Use GFC_CONVERT_* macros instead of CONVERT_*. * runtime/string.c (find_option): Use LIBERROR_BAD_OPTION instead of ERROR_BAD_OPTION. * runtime/error.c (translate_error, generate_error): Use LIBERROR_* macros instead of ERROR_*. * io/file_pos.c (formatted_backspace, unformatted_backspace, st_backspace, st_rewind, st_flush): Rename macros. * io/open.c (convert_opt, edit_modes, new_unit, already_open, st_open): Likewise. * io/close.c (st_close): Likewise. * io/list_read.c (next_char, convert_integer, parse_repeat, read_logical, read_integer, read_character, parse_real, check_type, list_formatted_read_scalar, namelist_read, nml_err_ret): Likewise. * io/read.c (convert_real, read_l, read_decimal, read_radix, read_f): Likewise. * io/inquire.c (inquire_via_unit): Likewise. * io/unit.c (get_internal_unit): Likewise. * io/transfer.c (read_sf, read_block, read_block_direct, write_block, write_buf, unformatted_read, unformatted_write, formatted_transfer_scalar, us_read, us_write, data_transfer_init, skip_record, next_record_r, write_us_marker, next_record_w_unf, next_record_w, finalize_transfer, st_read, st_write_done): Likewise. * io/format.c (format_error): Likewise. From-SVN: r128050
109 lines
3.1 KiB
C
109 lines
3.1 KiB
C
/* Header file to the Fortran front-end and runtime library
|
|
Copyright (C) 2007 Free Software Foundation, Inc.
|
|
|
|
This file is part of GCC.
|
|
|
|
GCC is free software; you can redistribute it and/or modify it under
|
|
the terms of the GNU General Public License as published by the Free
|
|
Software Foundation; either version 3, or (at your option) any later
|
|
version.
|
|
|
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with GCC; see the file COPYING3. If not see
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
|
|
/* Flags to specify which standard/extension contains a feature.
|
|
Note that no features were obsoleted nor deleted in F2003. */
|
|
#define GFC_STD_LEGACY (1<<6) /* Backward compatibility. */
|
|
#define GFC_STD_GNU (1<<5) /* GNU Fortran extension. */
|
|
#define GFC_STD_F2003 (1<<4) /* New in F2003. */
|
|
#define GFC_STD_F95 (1<<3) /* New in F95. */
|
|
#define GFC_STD_F95_DEL (1<<2) /* Deleted in F95. */
|
|
#define GFC_STD_F95_OBS (1<<1) /* Obsolescent in F95. */
|
|
#define GFC_STD_F77 (1<<0) /* Included in F77, but not deleted or
|
|
obsolescent in later standards. */
|
|
|
|
|
|
/* Bitmasks for the various FPE that can be enabled. */
|
|
#define GFC_FPE_INVALID (1<<0)
|
|
#define GFC_FPE_DENORMAL (1<<1)
|
|
#define GFC_FPE_ZERO (1<<2)
|
|
#define GFC_FPE_OVERFLOW (1<<3)
|
|
#define GFC_FPE_UNDERFLOW (1<<4)
|
|
#define GFC_FPE_PRECISION (1<<5)
|
|
|
|
|
|
/* Possible values for the CONVERT I/O specifier. */
|
|
typedef enum
|
|
{
|
|
GFC_CONVERT_NONE = -1,
|
|
GFC_CONVERT_NATIVE = 0,
|
|
GFC_CONVERT_SWAP,
|
|
GFC_CONVERT_BIG,
|
|
GFC_CONVERT_LITTLE
|
|
}
|
|
unit_convert;
|
|
|
|
|
|
/* Runtime errors. */
|
|
typedef enum
|
|
{
|
|
LIBERROR_FIRST = -3, /* Marker for the first error. */
|
|
LIBERROR_EOR = -2, /* End of record, must be negative. */
|
|
LIBERROR_END = -1, /* End of file, must be negative. */
|
|
LIBERROR_OK = 0, /* Indicates success, must be zero. */
|
|
LIBERROR_OS = 5000, /* OS error, more info in errno. */
|
|
LIBERROR_OPTION_CONFLICT,
|
|
LIBERROR_BAD_OPTION,
|
|
LIBERROR_MISSING_OPTION,
|
|
LIBERROR_ALREADY_OPEN,
|
|
LIBERROR_BAD_UNIT,
|
|
LIBERROR_FORMAT,
|
|
LIBERROR_BAD_ACTION,
|
|
LIBERROR_ENDFILE,
|
|
LIBERROR_BAD_US,
|
|
LIBERROR_READ_VALUE,
|
|
LIBERROR_READ_OVERFLOW,
|
|
LIBERROR_INTERNAL,
|
|
LIBERROR_INTERNAL_UNIT,
|
|
LIBERROR_ALLOCATION,
|
|
LIBERROR_DIRECT_EOR,
|
|
LIBERROR_SHORT_RECORD,
|
|
LIBERROR_CORRUPT_FILE,
|
|
LIBERROR_LAST /* Not a real error, the last error # + 1. */
|
|
}
|
|
libgfortran_error_codes;
|
|
|
|
|
|
/* Default unit number for preconnected standard input and output. */
|
|
#define GFC_STDIN_UNIT_NUMBER 5
|
|
#define GFC_STDOUT_UNIT_NUMBER 6
|
|
#define GFC_STDERR_UNIT_NUMBER 0
|
|
|
|
|
|
#define GFC_MAX_DIMENSIONS 7
|
|
|
|
#define GFC_DTYPE_RANK_MASK 0x07
|
|
#define GFC_DTYPE_TYPE_SHIFT 3
|
|
#define GFC_DTYPE_TYPE_MASK 0x38
|
|
#define GFC_DTYPE_SIZE_SHIFT 6
|
|
|
|
enum
|
|
{
|
|
GFC_DTYPE_UNKNOWN = 0,
|
|
GFC_DTYPE_INTEGER,
|
|
/* TODO: recognize logical types. */
|
|
GFC_DTYPE_LOGICAL,
|
|
GFC_DTYPE_REAL,
|
|
GFC_DTYPE_COMPLEX,
|
|
GFC_DTYPE_DERIVED,
|
|
GFC_DTYPE_CHARACTER
|
|
};
|
|
|