Hmm, this should have been commited along with:
[deliverable/binutils-gdb.git] / ld / ldexp.h
CommitLineData
252b5132 1/* ldexp.h -
a2b64bed 2 Copyright 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2000, 2001
5cc18311 3 Free Software Foundation, Inc.
252b5132
RH
4
5 This file is part of GLD, the Gnu Linker.
6
7 GLD is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GLD is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GLD; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
21
22#ifndef LDEXP_H
23#define LDEXP_H
24
25/* The result of an expression tree */
89cdebba 26typedef struct {
252b5132
RH
27 bfd_vma value;
28 struct lang_output_section_statement_struct *section;
29 boolean valid_p;
30} etree_value_type;
31
89cdebba 32typedef struct {
252b5132
RH
33 int node_code;
34 enum { etree_binary,
35 etree_trinary,
36 etree_unary,
37 etree_name,
38 etree_assign,
39 etree_provide,
b46a87b1 40 etree_provided,
252b5132
RH
41 etree_undef,
42 etree_unspec,
43 etree_value,
44 etree_assert,
45 etree_rel } node_class;
46} node_type;
47
89cdebba 48typedef union etree_union {
252b5132
RH
49 node_type type;
50 struct {
51 node_type type;
52 union etree_union *lhs;
53 union etree_union *rhs;
54 } binary;
55 struct {
56 node_type type;
57 union etree_union *cond;
58 union etree_union *lhs;
59 union etree_union *rhs;
60 } trinary;
61 struct {
62 node_type type;
63 CONST char *dst;
64 union etree_union *src;
65 } assign;
66
67 struct {
68 node_type type;
89cdebba 69 union etree_union *child;
252b5132
RH
70 } unary;
71 struct {
72 node_type type;
89cdebba 73 CONST char *name;
252b5132
RH
74 } name;
75 struct {
76 node_type type;
77 bfd_vma value;
78 } value;
79 struct {
80 node_type type;
81 asection *section;
82 bfd_vma value;
83 } rel;
84 struct {
85 node_type type;
86 union etree_union *child;
87 const char *message;
88 } assert_s;
89} etree_type;
90
252b5132
RH
91etree_type *exp_intop PARAMS ((bfd_vma));
92etree_type *exp_relop PARAMS ((asection *, bfd_vma));
93etree_value_type invalid PARAMS ((void));
94etree_value_type exp_fold_tree PARAMS ((etree_type *, struct
95 lang_output_section_statement_struct *,
96 lang_phase_type,
97 bfd_vma, bfd_vma *));
98etree_type *exp_binop PARAMS ((int, etree_type *, etree_type *));
99etree_type *exp_trinop PARAMS ((int,etree_type *, etree_type *, etree_type *));
100etree_type *exp_unop PARAMS ((int, etree_type *));
101etree_type *exp_nameop PARAMS ((int, CONST char *));
102etree_type *exp_assop PARAMS ((int, CONST char *, etree_type *));
103etree_type *exp_provide PARAMS ((const char *, etree_type *));
104etree_type *exp_assert PARAMS ((etree_type *, const char *));
105void exp_print_tree PARAMS ((etree_type *));
106bfd_vma exp_get_vma PARAMS ((etree_type *, bfd_vma, char *, lang_phase_type));
89cdebba
KH
107int exp_get_value_int PARAMS ((etree_type *, int, char *, lang_phase_type));
108bfd_vma exp_get_abs_int PARAMS ((etree_type *, int, char *, lang_phase_type));
252b5132
RH
109
110#endif
This page took 0.109236 seconds and 4 git commands to generate.