no strange stuff for including alloca anymore, use xmalloc.h
[libfirm] / ir / be / becopyheur.c
1 /**
2  * Author:      Daniel Grund
3  * Date:                12.04.2005
4  * Copyright:   (c) Universitaet Karlsruhe
5  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
6
7  * Heuristic for minimizing copies using a queue which holds 'qnodes' not yet
8  * examined. A qnode has a 'target color', nodes out of the opt unit and
9  * a 'conflict graph'. 'Conflict graph' = "Interference graph' + 'conflict edges'
10  * A 'max indep set' is determined form these. We try to color this mis using a
11  * color-exchanging mechanism. Occuring conflicts are modeled with 'conflict edges'
12  * and the qnode is reinserted in the queue. The first qnode colored without
13  * conflicts is the best one.
14  */
15 #ifdef HAVE_CONFIG_H
16 #include "config.h"
17 #endif
18
19 #include "debug.h"
20 #include "xmalloc.h"
21 #include "becopyopt_t.h"
22 #include "becopystat.h"
23 #include "benodesets.h"
24 #include "bitset.h"
25 #include "raw_bitset.h"
26 #include "xmalloc.h"
27
28 DEBUG_ONLY(static firm_dbg_module_t *dbg = NULL;)
29
30 #define SEARCH_FREE_COLORS
31
32 #define SLOTS_PINNED_GLOBAL 64
33 #define SLOTS_CONFLICTS 8
34 #define SLOTS_CHANGED_NODES 32
35
36 #define list_entry_queue(lh) list_entry(lh, qnode_t, queue)
37 #define HASH_CONFLICT(c) (nodeset_hash(c.n1) ^ nodeset_hash(c.n2))
38
39 /**
40  * Modeling additional conflicts between nodes. NOT live range interference
41  */
42 typedef struct _conflict_t {
43         const ir_node *n1, *n2;
44 } conflict_t;
45
46 /**
47  * If an irn is changed, the changes first get stored in a node_stat_t,
48  * to allow undo of changes (=drop new data) in case of conflicts.
49  */
50 typedef struct _node_stat_t {
51         ir_node *irn;
52         int new_color;
53         int pinned_local :1;
54 } node_stat_t;
55
56 /**
57  * Represents a node in the optimization queue.
58  */
59 typedef struct _qnode_t {
60         struct list_head queue;         /**< chaining of unit_t->queue */
61         const unit_t *ou;                       /**< the opt unit this qnode belongs to */
62         int color;                                      /**< target color */
63         set *conflicts;                         /**< contains conflict_t's. All internal conflicts */
64         int mis_costs;                          /**< costs of nodes/copies in the mis. */
65         int mis_size;                           /**< size of the array below */
66         ir_node **mis;                          /**< the nodes of unit_t->nodes[] being part of the max independent set */
67         set *changed_nodes;                     /**< contains node_stat_t's. */
68 } qnode_t;
69
70 static pset *pinned_global;                     /**< optimized nodes should not be altered any more */
71
72 static INLINE int nodes_interfere(const be_chordal_env_t *env, const ir_node *a, const ir_node *b)
73 {
74         if(env->ifg)
75                 return be_ifg_connected(env->ifg, a, b);
76         else
77                 return values_interfere(env->birg->lv, a, b);
78 }
79
80 static int set_cmp_conflict_t(const void *x, const void *y, size_t size) {
81         const conflict_t *xx = x;
82         const conflict_t *yy = y;
83         return ! (xx->n1 == yy->n1 && xx->n2 == yy->n2);
84 }
85
86 /**
87  * If a local pinned conflict occurs, a new edge in the conflict graph is added.
88  * The next maximum independent set build, will regard it.
89  */
90 static INLINE void qnode_add_conflict(const qnode_t *qn, const ir_node *n1, const ir_node *n2) {
91         conflict_t c;
92         DBG((dbg, LEVEL_4, "\t      %+F -- %+F\n", n1, n2));
93
94         if ((int)n1 < (int)n2) {
95                 c.n1 = n1;
96                 c.n2 = n2;
97         } else {
98                 c.n1 = n2;
99                 c.n2 = n1;
100         }
101         set_insert(qn->conflicts, &c, sizeof(c), HASH_CONFLICT(c));
102 }
103
104 /**
105  * Checks if two nodes are in a conflict.
106  */
107 static INLINE int qnode_are_conflicting(const qnode_t *qn, const ir_node *n1, const ir_node *n2) {
108         conflict_t c;
109         /* search for live range interference */
110         if (n1!=n2 && nodes_interfere(qn->ou->co->cenv, n1, n2))
111                 return 1;
112         /* search for recoloring conflicts */
113         if ((int)n1 < (int)n2) {
114                 c.n1 = n1;
115                 c.n2 = n2;
116         } else {
117                 c.n1 = n2;
118                 c.n2 = n1;
119         }
120         return (int) set_find(qn->conflicts, &c, sizeof(c), HASH_CONFLICT(c));
121 }
122
123 static int set_cmp_node_stat_t(const void *x, const void *y, size_t size) {
124         return ((node_stat_t *)x)->irn != ((node_stat_t *)y)->irn;
125 }
126
127 /**
128  * Finds a node status entry of a node if existent. Otherwise return NULL
129  */
130 static INLINE node_stat_t *qnode_find_node(const qnode_t *qn, ir_node *irn) {
131         node_stat_t find;
132         find.irn = irn;
133         return set_find(qn->changed_nodes, &find, sizeof(find), nodeset_hash(irn));
134 }
135
136 /**
137  * Finds a node status entry of a node if existent. Otherwise it will return
138  * an initialized new entry for this node.
139  */
140 static INLINE node_stat_t *qnode_find_or_insert_node(const qnode_t *qn, ir_node *irn) {
141         node_stat_t find;
142         find.irn = irn;
143         find.new_color = NO_COLOR;
144         find.pinned_local = 0;
145         return set_insert(qn->changed_nodes, &find, sizeof(find), nodeset_hash(irn));
146 }
147
148 /**
149  * Returns the virtual color of a node if set before, else returns the real color.
150  */
151 static INLINE int qnode_get_new_color(const qnode_t *qn, ir_node *irn) {
152         node_stat_t *found = qnode_find_node(qn, irn);
153         if (found)
154                 return found->new_color;
155         else
156                 return get_irn_col(qn->ou->co, irn);
157 }
158
159 /**
160  * Sets the virtual color of a node.
161  */
162 static INLINE void qnode_set_new_color(const qnode_t *qn, ir_node *irn, int color) {
163         node_stat_t *found = qnode_find_or_insert_node(qn, irn);
164         found->new_color = color;
165         DBG((dbg, LEVEL_3, "\t      col(%+F) := %d\n", irn, color));
166 }
167
168 /**
169  * Checks if a node is local pinned. A node is local pinned, iff it belongs
170  * to the same optimization unit and has been optimized before the current
171  * processed node.
172  */
173 static INLINE int qnode_is_pinned_local(const qnode_t *qn, ir_node *irn) {
174         node_stat_t *found = qnode_find_node(qn, irn);
175         if (found)
176                 return found->pinned_local;
177         else
178                 return 0;
179 }
180
181 /**
182  * Local-pins a node, so optimizations of further nodes of the same opt unit
183  * can handle situations in which a color change would undo prior optimizations.
184  */
185 static INLINE void qnode_pin_local(const qnode_t *qn, ir_node *irn) {
186         node_stat_t *found = qnode_find_or_insert_node(qn, irn);
187         found->pinned_local = 1;
188         if (found->new_color == NO_COLOR)
189                 found->new_color = get_irn_col(qn->ou->co, irn);
190 }
191
192
193 /**
194  * Possible return values of qnode_color_irn()
195  */
196 #define CHANGE_SAVE NULL
197 #define CHANGE_IMPOSSIBLE (ir_node *)1
198 #define is_conflicting_node(n) (((int)n) > 1)
199
200 /**
201  * Performs virtual re-coloring of node @p n to color @p col. Virtual colors of
202  * other nodes are changed too, as required to preserve correctness. Function is
203  * aware of local and global pinning. Recursive.
204  *
205  * If irn == trigger the color @p col must be used. (the first recoloring)
206  * If irn != trigger an arbitrary free color may be used. If no color is free, @p col is used.
207  *
208  * @param  irn     The node to set the color for
209  * @param  col     The color to set
210  * @param  trigger The irn that caused the wish to change the color of the irn
211  *                 External callers must call with trigger = irn
212  *
213  * @return CHANGE_SAVE iff setting the color is possible, with all transitive effects.
214  *         CHANGE_IMPOSSIBLE iff conflicts with reg-constraintsis occured.
215  *         Else the first conflicting ir_node encountered is returned.
216  *
217  */
218 static ir_node *qnode_color_irn(const qnode_t *qn, ir_node *irn, int col, const ir_node *trigger) {
219         copy_opt_t *co = qn->ou->co;
220         const be_chordal_env_t *chordal_env = co->cenv;
221         const arch_register_class_t *cls = co->cls;
222         const arch_env_t *arch_env = co->aenv;
223         int irn_col = qnode_get_new_color(qn, irn);
224         ir_node *sub_res, *curr;
225         be_ifg_t *ifg = chordal_env->ifg;
226         void *iter = be_ifg_neighbours_iter_alloca(ifg);
227
228
229         DBG((dbg, LEVEL_3, "\t    %+F \tcaused col(%+F) \t%2d --> %2d\n", trigger, irn, irn_col, col));
230
231         /* If the target color is already set do nothing */
232         if (irn_col == col) {
233                 DBG((dbg, LEVEL_3, "\t      %+F same color\n", irn));
234                 return CHANGE_SAVE;
235         }
236
237         /* If the irn is pinned, changing color is impossible */
238         if (pset_find_ptr(pinned_global, irn) || qnode_is_pinned_local(qn, irn)) {
239                 DBG((dbg, LEVEL_3, "\t      %+F conflicting\n", irn));
240                 return irn;
241         }
242
243 #ifdef SEARCH_FREE_COLORS
244         /* If we resolve conflicts (recursive calls) we can use any unused color.
245          * In case of the first call @p col must be used.
246          */
247         if (irn != trigger) {
248                 bitset_t *free_cols = bitset_alloca(cls->n_regs);
249                 const arch_register_req_t *req;
250                 ir_node *curr;
251                 int free_col;
252
253                 /* Get all possible colors */
254                 bitset_copy(free_cols, co->cenv->ignore_colors);
255                 bitset_flip_all(free_cols);
256
257                 /* Exclude colors not assignable to the irn */
258                 req = arch_get_register_req(arch_env, irn, -1);
259                 if (arch_register_req_is(req, limited)) {
260                         bitset_t *limited = bitset_alloca(cls->n_regs);
261                         rbitset_copy_to_bitset(req->limited, limited);
262                         bitset_and(free_cols, limited);
263                 }
264
265                 /* Exclude the color of the irn, because it must _change_ its color */
266                 bitset_clear(free_cols, irn_col);
267
268                 /* Exclude all colors used by adjacent nodes */
269                 be_ifg_foreach_neighbour(ifg, iter, irn, curr)
270                         bitset_clear(free_cols, qnode_get_new_color(qn, curr));
271
272                 free_col = bitset_next_set(free_cols, 0);
273
274                 if (free_col != -1) {
275                         qnode_set_new_color(qn, irn, free_col);
276                         return CHANGE_SAVE;
277                 }
278         }
279 #endif /* SEARCH_FREE_COLORS */
280
281         /* If target color is not allocatable changing color is impossible */
282         if (!arch_reg_is_allocatable(arch_env, irn, -1, arch_register_for_index(cls, col))) {
283                 DBG((dbg, LEVEL_3, "\t      %+F impossible\n", irn));
284                 return CHANGE_IMPOSSIBLE;
285         }
286
287         /*
288          * If we arrive here changing color may be possible, but there may be conflicts.
289          * Try to color all conflicting nodes 'curr' with the color of the irn itself.
290          */
291         be_ifg_foreach_neighbour(ifg, iter, irn, curr) {
292                 DBG((dbg, LEVEL_3, "\t      Confl %+F(%d)\n", curr, qnode_get_new_color(qn, curr)));
293                 if (qnode_get_new_color(qn, curr) == col && curr != trigger) {
294                         sub_res = qnode_color_irn(qn, curr, irn_col, irn);
295                         if (sub_res != CHANGE_SAVE) {
296                                 be_ifg_neighbours_break(ifg, iter);
297                                 return sub_res;
298                         }
299                 }
300         }
301
302         /*
303          * If we arrive here, all conflicts were resolved.
304          * So it is save to change this irn
305          */
306         qnode_set_new_color(qn, irn, col);
307         return CHANGE_SAVE;
308 }
309
310
311 /**
312  * Tries to set the colors for all members of this queue node;
313  * to the target color qn->color
314  * @returns 1 iff all members colors could be set
315  *          0 else
316  */
317 static int qnode_try_color(const qnode_t *qn) {
318         int i;
319         for (i=0; i<qn->mis_size; ++i) {
320                 ir_node *test_node, *confl_node;
321
322                 test_node = qn->mis[i];
323                 DBG((dbg, LEVEL_3, "\t    Testing %+F\n", test_node));
324                 confl_node = qnode_color_irn(qn, test_node, qn->color, test_node);
325
326                 if (confl_node == CHANGE_SAVE) {
327                         DBG((dbg, LEVEL_3, "\t    Save --> pin local\n"));
328                         qnode_pin_local(qn, test_node);
329                 } else if (confl_node == CHANGE_IMPOSSIBLE) {
330                         DBG((dbg, LEVEL_3, "\t    Impossible --> remove from qnode\n"));
331                         qnode_add_conflict(qn, test_node, test_node);
332                 } else {
333                         if (qnode_is_pinned_local(qn, confl_node)) {
334                                 /* changing test_node would change back a node of current ou */
335                                 if (confl_node == qn->ou->nodes[0]) {
336                                         /* Adding a conflict edge between testnode and conflnode
337                                          * would introduce a root -- arg interference.
338                                          * So remove the arg of the qn */
339                                         DBG((dbg, LEVEL_3, "\t    Conflicting local with phi --> remove from qnode\n"));
340                                         qnode_add_conflict(qn, test_node, test_node);
341                                 } else {
342                                         DBG((dbg, LEVEL_3, "\t    Conflicting local --> add conflict\n"));
343                                         qnode_add_conflict(qn, confl_node, test_node);
344                                 }
345                         }
346                         if (pset_find_ptr(pinned_global, confl_node)) {
347                                 /* changing test_node would change back a node of a prior ou */
348                                 DBG((dbg, LEVEL_3, "\t    Conflicting global --> remove from qnode\n"));
349                                 qnode_add_conflict(qn, test_node, test_node);
350                         }
351                 }
352
353                 if (confl_node != CHANGE_SAVE)
354                         return 0;
355         }
356         return 1;
357 }
358
359 /**
360  * Determines a maximum weighted independent set with respect to
361  * the interference and conflict edges of all nodes in a qnode.
362  */
363 static INLINE void qnode_max_ind_set(qnode_t *qn, const unit_t *ou) {
364         ir_node **safe, **unsafe;
365         int i, o, safe_count, safe_costs, unsafe_count, *unsafe_costs;
366         bitset_t *curr, *best;
367         int max, next, pos, curr_weight, best_weight = 0;
368
369         /* assign the nodes into two groups.
370          * safe: node has no interference, hence it is in every max stable set.
371          * unsafe: node has an interference
372          */
373         safe = alloca((ou->node_count-1) * sizeof(*safe));
374         safe_costs = 0;
375         safe_count = 0;
376         unsafe = alloca((ou->node_count-1) * sizeof(*unsafe));
377         unsafe_costs = alloca((ou->node_count-1) * sizeof(*unsafe_costs));
378         unsafe_count = 0;
379         for(i=1; i<ou->node_count; ++i) {
380                 int is_safe = 1;
381                 for(o=1; o<ou->node_count; ++o) {
382                         if (qnode_are_conflicting(qn, ou->nodes[i], ou->nodes[o])) {
383                                 if (i!=o) {
384                                         unsafe_costs[unsafe_count] = ou->costs[i];
385                                         unsafe[unsafe_count] = ou->nodes[i];
386                                         ++unsafe_count;
387                                 }
388                                 is_safe = 0;
389                                 break;
390                         }
391                 }
392                 if (is_safe) {
393                         safe_costs += ou->costs[i];
394                         safe[safe_count++] = ou->nodes[i];
395                 }
396         }
397
398
399
400         /* now compute the best set out of the unsafe nodes*/
401         best = bitset_alloca(unsafe_count);
402
403         if (unsafe_count > MIS_HEUR_TRIGGER) {
404                 /* Heuristic: Greedy trial and error form index 0 to unsafe_count-1 */
405                 for (i=0; i<unsafe_count; ++i) {
406                         bitset_set(best, i);
407                         /* check if it is a stable set */
408                         for (o=bitset_next_set(best, 0); o!=-1 && o<=i; o=bitset_next_set(best, o+1))
409                                 if (qnode_are_conflicting(qn, unsafe[i], unsafe[o])) {
410                                         bitset_clear(best, i); /* clear the bit and try next one */
411                                         break;
412                                 }
413                 }
414                 /* compute the weight */
415                 bitset_foreach(best, pos)
416                         best_weight += unsafe_costs[pos];
417         } else {
418                 /* Exact Algorithm: Brute force */
419                 curr = bitset_alloca(unsafe_count);
420                 bitset_set_all(curr);
421                 while ((max = bitset_popcnt(curr)) != 0) {
422                         /* check if curr is a stable set */
423                         for (i=bitset_next_set(curr, 0); i!=-1; i=bitset_next_set(curr, i+1))
424                                 for (o=bitset_next_set(curr, i); o!=-1; o=bitset_next_set(curr, o+1)) /* !!!!! difference to ou_max_ind_set_costs(): NOT (curr, i+1) */
425                                                 if (qnode_are_conflicting(qn, unsafe[i], unsafe[o]))
426                                                         goto no_stable_set;
427
428                         /* if we arrive here, we have a stable set */
429                         /* compute the weigth of the stable set*/
430                         curr_weight = 0;
431                         bitset_foreach(curr, pos)
432                                 curr_weight += unsafe_costs[pos];
433
434                         /* any better ? */
435                         if (curr_weight > best_weight) {
436                                 best_weight = curr_weight;
437                                 bitset_copy(best, curr);
438                         }
439
440 no_stable_set:
441                         bitset_minus1(curr);
442                 }
443         }
444
445         /* transfer the best set into the qn */
446         qn->mis_size = 1+safe_count+bitset_popcnt(best);
447         qn->mis_costs = safe_costs+best_weight;
448         qn->mis[0] = ou->nodes[0]; /* the root is always in a max stable set */
449         next = 1;
450         for (i=0; i<safe_count; ++i)
451                 qn->mis[next++] = safe[i];
452         bitset_foreach(best, pos)
453                 qn->mis[next++] = unsafe[pos];
454 }
455
456 /**
457  * Creates a new qnode
458  */
459 static INLINE qnode_t *new_qnode(const unit_t *ou, int color) {
460         qnode_t *qn = xmalloc(sizeof(*qn));
461         qn->ou = ou;
462         qn->color = color;
463         qn->mis = xmalloc(ou->node_count * sizeof(*qn->mis));
464         qn->conflicts = new_set(set_cmp_conflict_t, SLOTS_CONFLICTS);
465         qn->changed_nodes = new_set(set_cmp_node_stat_t, SLOTS_CHANGED_NODES);
466         return qn;
467 }
468
469 /**
470  * Frees space used by a queue node
471  */
472 static INLINE void free_qnode(qnode_t *qn) {
473         del_set(qn->conflicts);
474         del_set(qn->changed_nodes);
475         xfree(qn->mis);
476         xfree(qn);
477 }
478
479 /**
480  * Inserts a qnode in the sorted queue of the optimization unit. Queue is
481  * ordered by field 'size' (the size of the mis) in decreasing order.
482  */
483 static INLINE void ou_insert_qnode(unit_t *ou, qnode_t *qn) {
484         struct list_head *lh;
485
486         if (qnode_are_conflicting(qn, ou->nodes[0], ou->nodes[0])) {
487                 /* root node is not in qnode */
488                 free_qnode(qn);
489                 return;
490         }
491
492         qnode_max_ind_set(qn, ou);
493         /* do the insertion */
494         DBG((dbg, LEVEL_4, "\t  Insert qnode color %d with cost %d\n", qn->color, qn->mis_costs));
495         lh = &ou->queue;
496         while (lh->next != &ou->queue) {
497                 qnode_t *curr = list_entry_queue(lh->next);
498                 if (curr->mis_costs <= qn->mis_costs)
499                         break;
500                 lh = lh->next;
501         }
502         list_add(&qn->queue, lh);
503 }
504
505 /**
506  * Tries to re-allocate colors of nodes in this opt unit, to achieve lower
507  * costs of copy instructions placed during SSA-destruction and lowering.
508  * Works only for opt units with exactly 1 root node, which is the
509  * case for approximately 80% of all phi classes and 100% of register constrained
510  * nodes. (All other phi classes are reduced to this case.)
511  */
512 static void ou_optimize(unit_t *ou) {
513         int i;
514         qnode_t *curr = NULL, *tmp;
515         const arch_env_t *aenv = ou->co->aenv;
516         const arch_register_class_t *cls = ou->co->cls;
517         bitset_t *pos_regs = bitset_alloca(cls->n_regs);
518
519         DBG((dbg, LEVEL_1, "\tOptimizing unit:\n"));
520         for (i=0; i<ou->node_count; ++i)
521                 DBG((dbg, LEVEL_1, "\t %+F\n", ou->nodes[i]));
522
523         /* init queue */
524         INIT_LIST_HEAD(&ou->queue);
525
526         arch_get_allocatable_regs(aenv, ou->nodes[0], -1, pos_regs);
527
528         /* exclude ingore colors */
529         bitset_andnot(pos_regs, ou->co->cenv->ignore_colors);
530
531         assert(bitset_popcnt(pos_regs) != 0 && "No register is allowed for this node !!?");
532
533         /* create new qnode */
534         bitset_foreach(pos_regs, i)
535                 ou_insert_qnode(ou, new_qnode(ou, i));
536
537         /* search best */
538         while (!list_empty(&ou->queue)) {
539                 /* get head of queue */
540                 curr = list_entry_queue(ou->queue.next);
541                 list_del(&curr->queue);
542                 DBG((dbg, LEVEL_2, "\t  Examine qnode color %d with cost %d\n", curr->color, curr->mis_costs));
543
544                 /* try */
545                 if (qnode_try_color(curr))
546                         break;
547
548                 /* no success, so re-insert */
549                 del_set(curr->changed_nodes);
550                 curr->changed_nodes = new_set(set_cmp_node_stat_t, SLOTS_CHANGED_NODES);
551                 ou_insert_qnode(ou, curr);
552         }
553
554         /* apply the best found qnode */
555         if (curr->mis_size >= 2) {
556                 node_stat_t *ns;
557                 int root_col = qnode_get_new_color(curr, ou->nodes[0]);
558                 DBG((dbg, LEVEL_1, "\t  Best color: %d  Costs: %d << %d << %d\n", curr->color, ou->min_nodes_costs, ou->all_nodes_costs - curr->mis_costs, ou->all_nodes_costs));
559                 /* globally pin root and all args which have the same color */
560                 pset_insert_ptr(pinned_global, ou->nodes[0]);
561                 for (i=1; i<ou->node_count; ++i) {
562                         ir_node *irn = ou->nodes[i];
563                         int nc = qnode_get_new_color(curr, irn);
564                         if (nc != NO_COLOR && nc == root_col)
565                                 pset_insert_ptr(pinned_global, irn);
566                 }
567
568                 /* set color of all changed nodes */
569                 for (ns = set_first(curr->changed_nodes); ns; ns = set_next(curr->changed_nodes)) {
570                         /* NO_COLOR is possible, if we had an undo */
571                         if (ns->new_color != NO_COLOR) {
572                                 DBG((dbg, LEVEL_1, "\t    color(%+F) := %d\n", ns->irn, ns->new_color));
573                                 set_irn_col(ou->co, ns->irn, ns->new_color);
574                         }
575                 }
576         }
577
578         /* free best qnode (curr) and queue */
579         free_qnode(curr);
580         list_for_each_entry_safe(qnode_t, curr, tmp, &ou->queue, queue)
581                 free_qnode(curr);
582 }
583
584 int co_solve_heuristic(copy_opt_t *co) {
585         unit_t *curr;
586         FIRM_DBG_REGISTER(dbg, "ir.be.copyoptheur");
587
588         ASSERT_OU_AVAIL(co);
589
590         pinned_global = pset_new_ptr(SLOTS_PINNED_GLOBAL);
591         list_for_each_entry(unit_t, curr, &co->units, units)
592                 if (curr->node_count > 1)
593                         ou_optimize(curr);
594
595         del_pset(pinned_global);
596         return 0;
597 }