Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add/update copyright notices.
[simgrid.git] / src / simdag / private.h
1 /* Copyright (c) 2006-2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef SIMDAG_PRIVATE_H
8 #define SIMDAG_PRIVATE_H
9
10 #include "xbt/dict.h"
11 #include "xbt/dynar.h"
12 #include "xbt/fifo.h"
13 #include "simdag/simdag.h"
14 #include "simdag/datatypes.h"
15 #include "surf/surf.h"
16 #include "xbt/swag.h"
17 #include "xbt/mallocator.h"
18 #include <stdbool.h>
19
20 /* Global variables */
21
22 typedef struct SD_global {
23   SD_workstation_t *workstation_list;   /* array of workstations, created only if
24                                            necessary in SD_workstation_get_list */
25   SD_link_t *link_list;         /* array of links, created only if
26                                    necessary in SD_link_get_list */
27   SD_link_t *recyclable_route;  /* array returned by SD_route_get_list
28                                    and mallocated only once */
29
30   xbt_mallocator_t task_mallocator; /* to not remalloc new tasks */
31
32   int watch_point_reached;      /* has a task just reached a watch point? */
33
34   /* task state sets */
35   xbt_swag_t not_scheduled_task_set;
36   xbt_swag_t schedulable_task_set;
37   xbt_swag_t scheduled_task_set;
38   xbt_swag_t runnable_task_set;
39   xbt_swag_t in_fifo_task_set;
40   xbt_swag_t running_task_set;
41   xbt_swag_t done_task_set;
42   xbt_swag_t failed_task_set;
43
44   xbt_swag_t return_set;
45   int task_number;
46
47 } s_SD_global_t, *SD_global_t;
48
49 extern SD_global_t sd_global;
50
51 /* Link */
52 typedef struct SD_link {
53   void *surf_link;              /* surf object */
54   void *data;                   /* user data */
55   e_SD_link_sharing_policy_t sharing_policy;
56 } s_SD_link_t;
57
58 /* Workstation */
59 typedef s_xbt_dictelm_t s_SD_workstation_t;
60 typedef struct SD_workstation {
61   void *data;                   /* user data */
62   e_SD_workstation_access_mode_t access_mode;
63
64   xbt_fifo_t task_fifo;         /* only used in sequential mode */
65   SD_task_t current_task;       /* only used in sequential mode */
66 } s_SD_workstation_priv_t, *SD_workstation_priv_t;
67
68 static inline SD_workstation_priv_t SD_workstation_priv(SD_workstation_t host){
69   return xbt_lib_get_level(host, SD_HOST_LEVEL);
70 }
71
72 /* Storage */
73 typedef s_xbt_dictelm_t s_SD_storage_t;
74 typedef struct SD_storage {
75   void *data;                   /* user data */
76 } s_SD_storage_priv_t, *SD_storage_priv_t;
77
78
79 /* Task */
80 typedef struct SD_task {
81   s_xbt_swag_hookup_t state_hookup;
82   s_xbt_swag_hookup_t return_hookup;
83   xbt_swag_t state_set;
84   e_SD_task_state_t state;
85   void *data;                   /* user data */
86   char *name;
87   int kind;
88   double amount;
89   double alpha;          /* used by typed parallel tasks */
90   double remains;
91   double start_time;
92   double finish_time;
93   surf_action_t surf_action;
94   unsigned short watch_points;  /* bit field xor()ed with masks */
95
96   int fifo_checked;             /* used by SD_task_just_done to make sure we evaluate
97                                    the task only once */
98   int marked;                   /* used to check if the task DAG has some cycle*/
99
100   /* dependencies */
101   xbt_dynar_t tasks_before;
102   xbt_dynar_t tasks_after;
103   int unsatisfied_dependencies;
104   unsigned int is_not_ready;
105
106   /* scheduling parameters (only exist in state SD_SCHEDULED) */
107   int workstation_nb;
108   SD_workstation_t *workstation_list;   /* surf workstations */
109   double *computation_amount;
110   double *communication_amount;
111   double rate;
112
113 #ifdef HAVE_TRACING
114   long long int counter;        /* task unique identifier for instrumentation */
115   char *category;               /* sd task category for instrumentation */
116 #endif
117 } s_SD_task_t;
118
119 /* Task dependencies */
120 typedef struct SD_dependency {
121   char *name;
122   void *data;
123   SD_task_t src;
124   SD_task_t dst;
125   /* src must be finished before dst can start */
126 } s_SD_dependency_t, *SD_dependency_t;
127
128 /* SimDag private functions */
129 XBT_PUBLIC(xbt_swag_t) SD_simulate_swag(double how_long); /* could be public, but you need to see the internals of the SD_task_t to use it */
130
131
132 SD_link_t __SD_link_create(void *surf_link, void *data);
133 #define __SD_link_destroy xbt_free_f
134
135 SD_workstation_t __SD_workstation_create(void *surf_workstation,
136                                          void *data);
137 void __SD_workstation_destroy(void *workstation);
138 int __SD_workstation_is_busy(SD_workstation_t workstation);
139
140 void __SD_task_set_state(SD_task_t task, e_SD_task_state_t new_state);
141 void __SD_task_really_run(SD_task_t task);
142 int __SD_task_try_to_run(SD_task_t task);
143 void __SD_task_just_done(SD_task_t task);
144 bool acyclic_graph_detail(xbt_dynar_t dag);
145
146 /* Task mallocator functions */
147 void* SD_task_new_f(void);
148 void SD_task_recycle_f(void *t);
149 void SD_task_free_f(void *t);
150
151 /* Functions to test if the task is in a given state. */
152
153 /* Returns whether the given task is scheduled or runnable. */
154 static XBT_INLINE int __SD_task_is_scheduled_or_runnable(SD_task_t task)
155 {
156   return task->state_set == sd_global->scheduled_task_set ||
157       task->state_set == sd_global->runnable_task_set;
158 }
159
160 /* Returns whether the given task is scheduled or runnable. */
161 static XBT_INLINE int __SD_task_is_schedulable_or_done(SD_task_t task)
162 {
163   return task->state_set == sd_global->schedulable_task_set ||
164       task->state_set == sd_global->done_task_set;
165 }
166
167 /* Returns whether the state of the given task is SD_NOT_SCHEDULED. */
168 static XBT_INLINE int __SD_task_is_not_scheduled(SD_task_t task)
169 {
170   return task->state_set == sd_global->not_scheduled_task_set;
171 }
172
173 /* Returns whether the state of the given task is SD_SCHEDULED. */
174 static XBT_INLINE int __SD_task_is_schedulable(SD_task_t task)
175 {
176   return task->state_set == sd_global->schedulable_task_set;
177 }
178
179 /* Returns whether the state of the given task is SD_SCHEDULED. */
180 static XBT_INLINE int __SD_task_is_scheduled(SD_task_t task)
181 {
182   return task->state_set == sd_global->scheduled_task_set;
183 }
184
185 /* Returns whether the state of the given task is SD_RUNNABLE. */
186 static XBT_INLINE int __SD_task_is_runnable(SD_task_t task)
187 {
188   return task->state_set == sd_global->runnable_task_set;
189 }
190
191 /* Returns whether the state of the given task is SD_IN_FIFO. */
192 static XBT_INLINE int __SD_task_is_in_fifo(SD_task_t task)
193 {
194   return task->state_set == sd_global->in_fifo_task_set;
195 }
196
197 /* Returns whether the state of the given task is SD_RUNNABLE or SD_IN_FIFO. */
198 static XBT_INLINE int __SD_task_is_runnable_or_in_fifo(SD_task_t task)
199 {
200   return task->state_set == sd_global->runnable_task_set ||
201       task->state_set == sd_global->in_fifo_task_set;
202 }
203
204 /* Returns whether the state of the given task is SD_RUNNING. */
205 static XBT_INLINE int __SD_task_is_running(SD_task_t task)
206 {
207   return task->state_set == sd_global->running_task_set;
208 }
209
210 /********** Storage **********/
211 SD_storage_t __SD_storage_create(void *surf_storage, void *data);
212 void __SD_storage_destroy(void *storage);
213
214 /********** Tracing **********/
215 /* declaration of instrumentation functions from sd_task_instr.c */
216 void TRACE_sd_task_create(SD_task_t task);
217 void TRACE_sd_task_execute_start(SD_task_t task);
218 void TRACE_sd_task_execute_end(SD_task_t task);
219 void TRACE_sd_task_destroy(SD_task_t task);
220
221
222 #endif