Merge -r 127928:132243 from trunk
[official-gcc.git] / libgfortran / runtime / select.c
blob44c353235a08cbbdeb621e98318a21d4f2472036
1 /* Implement the SELECT statement for character variables.
2 Contributed by Andy Vaught
4 This file is part of the GNU Fortran 95 runtime library (libgfortran).
6 Libgfortran is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 In addition to the permissions in the GNU General Public License, the
12 Free Software Foundation gives you unlimited permission to link the
13 compiled version of this file into combinations with other programs,
14 and to distribute those combinations without any restriction coming
15 from the use of this file. (The General Public License restrictions
16 do apply in other respects; for example, they cover modification of
17 the file, and distribution when not linked into a combine
18 executable.)
20 Libgfortran is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
25 You should have received a copy of the GNU General Public License
26 along with libgfortran; see the file COPYING. If not, write to
27 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
28 Boston, MA 02110-1301, USA. */
30 #include "libgfortran.h"
32 typedef struct
34 char *low;
35 int low_len;
36 char *high;
37 int high_len;
38 int address;
40 select_struct;
42 extern int select_string (select_struct *table, int table_len,
43 const char *selector, int selector_len);
44 export_proto(select_string);
47 /* select_string()-- Given a selector string and a table of
48 * select_struct structures, return the address to jump to. */
50 int
51 select_string (select_struct *table, int table_len, const char *selector,
52 int selector_len)
54 select_struct *t;
55 int i, low, high, mid;
56 int default_jump = -1;
58 if (table_len == 0)
59 return -1;
61 /* Record the default address if present */
63 if (table->low == NULL && table->high == NULL)
65 default_jump = table->address;
67 table++;
68 table_len--;
69 if (table_len == 0)
70 return default_jump;
73 /* Try the high and low bounds if present. */
75 if (table->low == NULL)
77 if (compare_string (table->high_len, table->high,
78 selector_len, selector) >= 0)
79 return table->address;
81 table++;
82 table_len--;
83 if (table_len == 0)
84 return default_jump;
87 t = table + table_len - 1;
89 if (t->high == NULL)
91 if (compare_string (t->low_len, t->low,
92 selector_len, selector) <= 0)
93 return t->address;
95 table_len--;
96 if (table_len == 0)
97 return default_jump;
100 /* At this point, the only table entries are bounded entries. Find
101 the right entry with a binary chop. */
103 low = -1;
104 high = table_len;
106 while (low + 1 < high)
108 mid = (low + high) / 2;
110 t = table + mid;
111 i = compare_string (t->low_len, t->low, selector_len, selector);
113 if (i == 0)
114 return t->address;
116 if (i < 0)
117 low = mid;
118 else
119 high = mid;
122 /* The string now lies between the low indeces of the now-adjacent
123 high and low entries. Because it is less than the low entry of
124 'high', it can't be that one. If low is still -1, then no
125 entries match. Otherwise, we have to check the high entry of
126 'low'. */
128 if (low == -1)
129 return default_jump;
131 t = table + low;
132 if (compare_string (selector_len, selector,
133 t->high_len, t->high) <= 0)
134 return t->address;
136 return default_jump;