1 /* objc-map.c -- Implementation of map data structures for ObjC compiler
2 Copyright (C) 2011-2015 Free Software Foundation, Inc.
3 Written by Nicola Pero <nicola.pero@meta-innovation.com>
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of the GNU Lesser Public License as published by the
7 Free Software Foundation; either version 3, or (at your option) any
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU Lesser Public License for more details.
15 You should have received a copy of the GNU Lesser Public License
16 along with this program; if not, write to the Free Software
17 Foundation, 51 Franklin Street - Fifth Floor,
18 Boston, MA 02110-1301, USA. */
22 #include "coretypes.h"
29 #define OUT_OF_MEMORY { fprintf (stderr, "Out of memory\n"); abort (); }
34 next_power_of_two (size_t x
)
41 /* Avoid the long calculation if x is already a power of two. Since
42 we internally always increase/shrink tables by powers of 2, the
43 calculation should only be done once, when the table is first
45 if ((x
& (x
- 1)) == 0)
48 /* Calculate log_2 by counting how many times we can divide by 2
59 objc_map_alloc_ggc (size_t initial_capacity
)
61 objc_map_t map
= ggc_cleared_alloc
<objc_map_private
> ();
65 initial_capacity
= next_power_of_two (initial_capacity
);
67 map
->number_of_slots
= initial_capacity
;
68 map
->mask
= initial_capacity
- 1;
69 map
->maximum_load_factor
= 70;
70 map
->max_number_of_non_empty_slots
= (initial_capacity
* map
->maximum_load_factor
) / 100;
72 map
->slots
= ggc_cleared_vec_alloc
<tree
> (initial_capacity
);
73 map
->values
= ggc_cleared_vec_alloc
<tree
> (initial_capacity
);
75 if (map
->slots
== NULL
)
78 if (map
->values
== NULL
)
85 objc_map_set_maximum_load_factor (objc_map_t map
, int number_between_zero_and_one_hundred
)
87 if (map
->number_of_non_empty_slots
!= 0)
90 map
->maximum_load_factor
= number_between_zero_and_one_hundred
;
91 map
->max_number_of_non_empty_slots
= (map
->number_of_slots
* number_between_zero_and_one_hundred
) / 100;
95 objc_map_maximum_load_factor (objc_map_t map
)
97 return map
->maximum_load_factor
;
101 objc_map_private_resize (objc_map_t map
, size_t new_number_of_slots
)
103 tree
*old_slots
= map
->slots
;
104 tree
*old_values
= map
->values
;
105 size_t i
, old_number_of_slots
= map
->number_of_slots
;
107 if (new_number_of_slots
< (map
->number_of_non_empty_slots
))
108 new_number_of_slots
= 2 * map
->number_of_non_empty_slots
;
110 new_number_of_slots
= next_power_of_two (new_number_of_slots
);
112 map
->number_of_slots
= new_number_of_slots
;
113 map
->mask
= map
->number_of_slots
- 1;
114 map
->max_number_of_non_empty_slots
= (map
->number_of_slots
* map
->maximum_load_factor
) / 100;
117 map
->slots
= ggc_cleared_vec_alloc
<tree
> (map
->number_of_slots
);
118 map
->values
= ggc_cleared_vec_alloc
<tree
> (map
->number_of_slots
);
120 if (map
->slots
== NULL
)
123 if (map
->values
== NULL
)
126 for (i
= 0; i
< old_number_of_slots
; i
++)
127 if (old_slots
[i
] != OBJC_MAP_PRIVATE_EMPTY_SLOT
)
129 size_t k
= IDENTIFIER_HASH_VALUE (old_slots
[i
]) & map
->mask
;
131 if (map
->slots
[k
] == OBJC_MAP_PRIVATE_EMPTY_SLOT
)
133 map
->slots
[k
] = old_slots
[i
];
134 map
->values
[k
] = old_values
[i
];
141 k
= (k
+ j
) & map
->mask
;
142 if (map
->slots
[k
] == OBJC_MAP_PRIVATE_EMPTY_SLOT
)
144 map
->slots
[k
] = old_slots
[i
];
145 map
->values
[k
] = old_values
[i
];
153 ggc_free (old_slots
);
154 ggc_free (old_values
);
158 objc_map_private_grow (struct objc_map_private
*map
)
160 objc_map_private_resize (map
, map
->number_of_slots
* 2);
163 #include "gt-objc-objc-map.h"