OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [fortran/] [trans-types.h] - Blame information for rev 826

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 285 jeremybenn
/* Header for Fortran 95 types backend support.
2
   Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008
3
   Free Software Foundation, Inc.
4
   Contributed by Paul Brook <paul@nowt.org>
5
   and Steven Bosscher <s.bosscher@student.tudelft.nl>
6
 
7
This file is part of GCC.
8
 
9
GCC is free software; you can redistribute it and/or modify it under
10
the terms of the GNU General Public License as published by the Free
11
Software Foundation; either version 3, or (at your option) any later
12
version.
13
 
14
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15
WARRANTY; without even the implied warranty of MERCHANTABILITY or
16
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
17
for more details.
18
 
19
You should have received a copy of the GNU General Public License
20
along with GCC; see the file COPYING3.  If not see
21
<http://www.gnu.org/licenses/>.  */
22
 
23
 
24
#ifndef GFC_BACKEND_H
25
#define GFC_BACKEND_H
26
 
27
extern GTY(()) tree gfc_array_index_type;
28
extern GTY(()) tree gfc_array_range_type;
29
extern GTY(()) tree gfc_character1_type_node;
30
extern GTY(()) tree ppvoid_type_node;
31
extern GTY(()) tree pvoid_type_node;
32
extern GTY(()) tree prvoid_type_node;
33
extern GTY(()) tree pchar_type_node;
34
 
35
/* This is the type used to hold the lengths of character variables.
36
   It must be the same as the corresponding definition in gfortran.h.  */
37
/* TODO: This is still hardcoded as kind=4 in some bits of the compiler
38
   and runtime library.  */
39
extern GTY(()) tree gfc_charlen_type_node;
40
 
41
typedef enum {
42
  PACKED_NO = 0,
43
  PACKED_PARTIAL,
44
  PACKED_FULL,
45
  PACKED_STATIC
46
} gfc_packed;
47
 
48
/* be-function.c */
49
void gfc_convert_function_code (gfc_namespace *);
50
 
51
/* trans-types.c */
52
void gfc_init_kinds (void);
53
void gfc_init_types (void);
54
 
55
tree gfc_get_int_type (int);
56
tree gfc_get_real_type (int);
57
tree gfc_get_complex_type (int);
58
tree gfc_get_logical_type (int);
59
tree gfc_get_char_type (int);
60
tree gfc_get_pchar_type (int);
61
tree gfc_get_character_type (int, gfc_charlen *);
62
tree gfc_get_character_type_len (int, tree);
63
tree gfc_get_character_type_len_for_eltype (tree, tree);
64
 
65
tree gfc_sym_type (gfc_symbol *);
66
tree gfc_typenode_for_spec (gfc_typespec *);
67
 
68
tree gfc_get_function_type (gfc_symbol *);
69
 
70
tree gfc_type_for_size (unsigned, int);
71
tree gfc_type_for_mode (enum machine_mode, int);
72
tree gfc_build_uint_type (int);
73
 
74
tree gfc_get_element_type (tree);
75
tree gfc_get_array_type_bounds (tree, int, tree *, tree *, int,
76
                                enum gfc_array_kind, bool);
77
tree gfc_get_nodesc_array_type (tree, gfc_array_spec *, gfc_packed, bool);
78
 
79
/* Add a field of given name and type to a UNION_TYPE or RECORD_TYPE.  */
80
tree gfc_add_field_to_struct (tree *, tree, tree, tree);
81
 
82
/* Layout and output debugging info for a type.  */
83
void gfc_finish_type (tree);
84
 
85
/* Some functions have an extra parameter for the return value.  */
86
int gfc_return_by_reference (gfc_symbol *);
87
 
88
/* Returns true if the array sym does not require a descriptor.  */
89
int gfc_is_nodesc_array (gfc_symbol *);
90
 
91
/* Return the DTYPE for an array.  */
92
tree gfc_get_dtype (tree);
93
 
94
tree gfc_get_ppc_type (gfc_component *);
95
 
96
#endif

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.