unified mein file comments
[libfirm] / ir / be / beschedrand.c
1 /*
2  * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief       Random node selector.
23  * @author      Matthias Braun
24  * @date        29.08.2006
25  * @version     $Id$
26  */
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #include <stdlib.h>
32
33 #include "besched_t.h"
34 #include "belistsched.h"
35
36 /**
37  * The random selector:
38  * Just assure that branches are executed last, otherwise select a random node
39  */
40 static ir_node *random_select(void *block_env, ir_nodeset_t *ready_set,
41                               ir_nodeset_t *live_set)
42 {
43         ir_nodeset_iterator_t iter;
44         const arch_env_t *arch_env = block_env;
45         ir_node          *irn      = NULL;
46         int only_branches_left = 1;
47
48         /* assure that branches and constants are executed last */
49         ir_nodeset_iterator_init(&iter, ready_set);
50         while( (irn = ir_nodeset_iterator_next(&iter)) != NULL) {
51                 if (! arch_irn_class_is(arch_env, irn, branch)) {
52                         only_branches_left = 0;
53                         break;
54                 }
55         }
56
57         if (only_branches_left) {
58                 /* at last: schedule branches */
59                 ir_nodeset_iterator_init(&iter, ready_set);
60                 irn = ir_nodeset_iterator_next(&iter);
61         } else {
62                 do {
63                         /* take 1 random node */
64                         int n = rand() % ir_nodeset_size(ready_set);
65                         int i = 0;
66                         ir_nodeset_iterator_init(&iter, ready_set);
67                         while ((irn = ir_nodeset_iterator_next(&iter)) != NULL) {
68                                 if(i == n) {
69                                         break;
70                                 }
71                                 ++i;
72                         }
73                 } while(arch_irn_class_is(arch_env, irn, branch));
74         }
75
76         return irn;
77 }
78
79 static void *random_init_graph(const list_sched_selector_t *vtab, const arch_env_t *arch_env, ir_graph *irg)
80 {
81         /* Using time(NULL) as a seed here gives really random results,
82            but is NOT deterministic which makes debugging impossible.
83            Moreover no-one want non-deterministic compilers ... */
84         srand(0x4711);
85         return (void *)arch_env;
86 }
87
88 static void *random_init_block(void *graph_env, ir_node *bl)
89 {
90         return graph_env;
91 }
92
93 static const list_sched_selector_t random_selector_struct = {
94         random_init_graph,
95         random_init_block,
96         random_select,
97         NULL,                /* to_appear_in_schedule */
98         NULL,                /* node_ready */
99         NULL,                /* node_selected */
100         NULL,                /* exectime */
101         NULL,                /* latency */
102         NULL,                /* finish_block */
103         NULL                 /* finish_graph */
104 };
105
106 const list_sched_selector_t *random_selector = &random_selector_struct;