Mostly reverted r27894, removed usage of unreachable.
[libfirm] / ir / ir / irnode_t.h
1 /*
2  * Copyright (C) 1995-2008 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   Representation of an intermediate operation -- private header.
23  * @author  Martin Trapp, Christian Schaefer, Goetz Lindenmaier, Michael Beck
24  * @version $Id$
25  */
26 #ifndef FIRM_IR_IRNODE_T_H
27 #define FIRM_IR_IRNODE_T_H
28
29 #include "irtypes.h"
30 #include "irnode.h"
31 #include "irop_t.h"
32 #include "irgraph_t.h"
33 #include "irflag_t.h"
34 #include "array.h"
35 #include "iredges_t.h"
36
37 /**
38  * Returns the array with the ins.  The content of the array may not be
39  * changed.
40  * Note that this function returns the whole in array including the
41  * block predecessor. So, it is NOT symmetric with set_irn_in().
42  */
43 ir_node     **get_irn_in            (const ir_node *node);
44
45 /**
46  * The amount of additional space for custom data to be allocated upon creating a new node.
47  */
48 extern unsigned firm_add_node_size;
49
50 /**
51  * Sets the get_type operation for an ir_op_ops.
52  *
53  * @param code   the opcode for the default operation
54  * @param ops    the operations initialized
55  *
56  * @return
57  *    The operations.
58  */
59 ir_op_ops *firm_set_default_get_type(ir_opcode code, ir_op_ops *ops);
60
61 /**
62  * Sets the get_type_attr operation for an ir_op_ops.
63  *
64  * @param code   the opcode for the default operation
65  * @param ops    the operations initialized
66  *
67  * @return
68  *    The operations.
69  */
70 ir_op_ops *firm_set_default_get_type_attr(ir_opcode code, ir_op_ops *ops);
71
72 /**
73  * Sets the get_entity_attr operation for an ir_op_ops.
74  *
75  * @param code   the opcode for the default operation
76  * @param ops    the operations initialized
77  *
78  * @return
79  *    The operations.
80  */
81 ir_op_ops *firm_set_default_get_entity_attr(ir_opcode code, ir_op_ops *ops);
82
83 /**
84  * Returns an array with the predecessors of the Block. Depending on
85  * the implementation of the graph data structure this can be a copy of
86  * the internal representation of predecessors as well as the internal
87  * array itself. Therefore writing to this array might obstruct the IR.
88  */
89 ir_node **get_Block_cfgpred_arr(ir_node *node);
90
91 /*-------------------------------------------------------------------*/
92 /*  These function are most used in libfirm.  Give them as static    */
93 /*  functions so they can be inlined.                                */
94 /*-------------------------------------------------------------------*/
95
96 /**
97  * Checks whether a pointer points to a ir node.
98  * Intern version for libFirm.
99  */
100 static inline int _is_ir_node(const void *thing)
101 {
102         return (get_kind(thing) == k_ir_node);
103 }
104
105 /**
106  * Gets the op of a node.
107  * Intern version for libFirm.
108  */
109 static inline ir_op *_get_irn_op(const ir_node *node)
110 {
111         assert(node);
112         return node->op;
113 }
114
115 static inline void _set_irn_op(ir_node *node, ir_op *op)
116 {
117         assert(node);
118         node->op = op;
119 }
120
121 /** Copies all attributes stored in the old node  to the new node.
122     Assumes both have the same opcode and sufficient size. */
123 static inline void _copy_node_attr(ir_graph *irg, const ir_node *old_node,
124                                    ir_node *new_node)
125 {
126         ir_op *op = _get_irn_op(old_node);
127
128         /* must always exist */
129         op->ops.copy_attr(irg, old_node, new_node);
130 }
131
132 /**
133  * Gets the opcode of a node.
134  * Intern version for libFirm.
135  */
136 static inline unsigned _get_irn_opcode(const ir_node *node)
137 {
138         assert(k_ir_node == get_kind(node));
139         assert(node->op);
140         return node->op->code;
141 }
142
143 /**
144  * Returns the number of predecessors without the block predecessor.
145  * Intern version for libFirm.
146  */
147 static inline int _get_irn_arity(const ir_node *node)
148 {
149         return ARR_LEN(node->in) - 1;
150 }
151
152 /**
153  * Intern version for libFirm.
154  */
155 static inline ir_node *_get_irn_n(const ir_node *node, int n)
156 {
157         ir_node *nn;
158
159         assert(-1 <= n && n < _get_irn_arity(node));
160
161         nn = node->in[n + 1];
162         if (nn == NULL) {
163                 /* only block and Anchor inputs are allowed to be NULL */
164                 assert((node->op == op_Anchor || n == -1) && "NULL input of a node");
165                 return NULL;
166         }
167         if (nn->op != op_Id) return nn;
168
169         return (node->in[n + 1] = skip_Id(nn));
170 }
171
172 /**
173  * returns a hash value for a node
174  */
175 static inline unsigned hash_irn(const ir_node *node)
176 {
177         return (unsigned) get_irn_idx(node);
178 }
179
180 static inline int _get_irn_deps(const ir_node *node) {
181         return node->deps ? ARR_LEN(node->deps) : 0;
182 }
183
184 static inline ir_node *_get_irn_dep(const ir_node *node, int pos) {
185         assert(node->deps && "dependency array node yet allocated. use add_irn_dep()");
186         assert(pos >= 0 && pos < ARR_LEN(node->deps) && "dependency index out of range");
187         return node->deps[pos];
188 }
189
190 /* forward declaration outside iredges_t.h to avoid circular include problems */
191 void edges_notify_edge_kind(ir_node *src, int pos, ir_node *tgt, ir_node *old_tgt, ir_edge_kind_t kind, ir_graph *irg);
192
193 static inline void _set_irn_dep(ir_node *node, int pos, ir_node *dep)
194 {
195         ir_node *old;
196
197         assert(node->deps && "dependency array node yet allocated. use add_irn_dep()");
198         assert(pos >= 0 && pos < ARR_LEN(node->deps) && "dependency index out of range");
199         old = node->deps[pos];
200         node->deps[pos] = dep;
201         edges_notify_edge_kind(node, pos, dep, old, EDGE_KIND_DEP, get_irn_irg(node));
202 }
203
204
205 static inline int _get_irn_ins_or_deps(const ir_node *irn)
206 {
207         return _get_irn_deps(irn) + _get_irn_arity(irn);
208 }
209
210 static inline ir_node *_get_irn_in_or_dep(const ir_node *irn, int pos)
211 {
212         int n_in = get_irn_arity(irn);
213         return pos < n_in ? get_irn_n(irn, pos) : get_irn_dep(irn, pos - n_in);
214 }
215
216 /**
217  * Gets the mode of a node.
218  * Intern version for libFirm.
219  */
220 static inline ir_mode *_get_irn_mode(const ir_node *node)
221 {
222         assert(node);
223         return node->mode;
224 }
225
226 /**
227  * Sets the mode of a node.
228  * Intern version of libFirm.
229  */
230 static inline void _set_irn_mode(ir_node *node, ir_mode *mode)
231 {
232         assert(node);
233         node->mode = mode;
234 }
235
236 static inline ir_graph *_get_irn_irg(const ir_node *node)
237 {
238         /*
239          * Do not use get_nodes_Block() here, because this
240          * will check the pinned state.
241          * However even a 'wrong' block is always in the proper
242          * irg.
243          */
244         if (! is_Block(node))
245                 node = get_irn_n(node, -1);
246         /* note that get_Block_irg() can handle Bad nodes */
247         return get_Block_irg(node);
248 }
249
250 /**
251  * Gets the visited counter of a node.
252  * Intern version for libFirm.
253  */
254 static inline ir_visited_t _get_irn_visited(const ir_node *node)
255 {
256         assert(node);
257         return node->visited;
258 }
259
260 /**
261  * Sets the visited counter of a node.
262  * Intern version for libFirm.
263  */
264 static inline void _set_irn_visited(ir_node *node, ir_visited_t visited)
265 {
266         assert(node);
267         node->visited = visited;
268 }
269
270 /**
271  * Mark a node as visited in a graph.
272  * Intern version for libFirm.
273  */
274 static inline void _mark_irn_visited(ir_node *node)
275 {
276         node->visited = get_irn_irg(node)->visited;
277 }
278
279 /**
280  * Returns non-zero if a node of was visited.
281  * Intern version for libFirm.
282  */
283 static inline int _irn_visited(const ir_node *node)
284 {
285         ir_graph *irg = get_irn_irg(node);
286         return node->visited >= irg->visited;
287 }
288
289 static inline int _irn_visited_else_mark(ir_node *node)
290 {
291         if (_irn_visited(node))
292                 return 1;
293         _mark_irn_visited(node);
294         return 0;
295 }
296
297 /**
298  * Sets the link of a node.
299  * Intern version of libFirm.
300  */
301 static inline void _set_irn_link(ir_node *node, void *link)
302 {
303         assert(node);
304         node->link = link;
305 }
306
307 /**
308  * Returns the link of a node.
309  * Intern version of libFirm.
310  */
311 static inline void *_get_irn_link(const ir_node *node)
312 {
313         assert(node && _is_ir_node(node));
314         return node->link;
315 }
316
317 /**
318  * Returns whether the node _always_ must be pinned.
319  * I.e., the node is not floating after global cse.
320  *
321  * Intern version of libFirm.
322  */
323 static inline op_pin_state _get_irn_pinned(const ir_node *node)
324 {
325         op_pin_state state;
326         assert(node && _is_ir_node(node));
327         /* Check opcode */
328         state = _get_op_pinned(_get_irn_op(node));
329
330         if (state >= op_pin_state_exc_pinned)
331                 return get_opt_fragile_ops() ? node->attr.except.pin_state : op_pin_state_pinned;
332         return state;
333 }
334
335 static inline op_pin_state _is_irn_pinned_in_irg(const ir_node *node)
336 {
337         if (get_irg_pinned(get_irn_irg(node)) == op_pin_state_floats)
338                 return get_irn_pinned(node);
339         return op_pin_state_pinned;
340 }
341
342 /* include generated code */
343 #include "gen_irnode.h"
344
345 static inline int _is_unop(const ir_node *node)
346 {
347         assert(node && _is_ir_node(node));
348         return (node->op->opar == oparity_unary);
349 }
350
351 static inline int _is_binop(const ir_node *node)
352 {
353         assert(node && _is_ir_node(node));
354         return (node->op->opar == oparity_binary);
355 }
356
357 static inline int _is_strictConv(const ir_node *node)
358 {
359         return _is_Conv(node) && get_Conv_strict(node);
360 }
361
362 static inline int _is_SymConst_addr_ent(const ir_node *node)
363 {
364         return is_SymConst(node) && get_SymConst_kind(node) == symconst_addr_ent;
365 }
366
367 static inline int _get_Block_n_cfgpreds(const ir_node *node)
368 {
369         assert(_is_Block(node));
370         return _get_irn_arity(node);
371 }
372
373 static inline ir_node *_get_Block_cfgpred(const ir_node *node, int pos)
374 {
375         assert(0 <= pos && pos < get_irn_arity(node));
376         assert(_is_Block(node));
377         return _get_irn_n(node, pos);
378 }
379
380 /* Get the predecessor block.
381  *
382  *  Returns the block corresponding to the predecessor pos.
383  *
384  *  There are several ambiguities we resolve with this function:
385  *  - The direct predecessor can be a Proj, which is not pinned.
386  *    We walk from the predecessor to the next pinned node
387  *    (skip_Proj) and return the block that node is in.
388  *  - If we encounter the Bad node, this function does not return
389  *    the Start block, but the Bad node.
390  */
391 static inline ir_node  *_get_Block_cfgpred_block(const ir_node *node, int pos)
392 {
393         ir_node *res = skip_Proj(get_Block_cfgpred(node, pos));
394         if (!is_Bad(res))
395                 res = get_nodes_block(res);
396         return res;
397 }
398
399 static inline ir_visited_t _get_Block_block_visited(const ir_node *node)
400 {
401         assert(node->op == op_Block);
402         return node->attr.block.block_visited;
403 }
404
405 static inline void _set_Block_block_visited(ir_node *node, ir_visited_t visit)
406 {
407         assert(node->op == op_Block);
408         node->attr.block.block_visited = visit;
409 }
410
411 /* For this current_ir_graph must be set. */
412 static inline void _mark_Block_block_visited(ir_node *node)
413 {
414         ir_graph *irg = get_Block_irg(node);
415         node->attr.block.block_visited = get_irg_block_visited(irg);
416 }
417
418 static inline int _Block_block_visited(const ir_node *node)
419 {
420         ir_graph *irg = get_Block_irg(node);
421         return node->attr.block.block_visited >= get_irg_block_visited(irg);
422 }
423
424 static inline ir_node *_set_Block_dead(ir_node *block)
425 {
426         assert(_get_irn_op(block) == op_Block);
427         block->attr.block.dom.dom_depth = -1;
428         block->attr.block.is_dead = 1;
429         return block;
430 }
431
432 static inline int _is_Block_dead(const ir_node *block)
433 {
434         ir_op *op = _get_irn_op(block);
435
436         if (op == op_Bad)
437                 return 1;
438         else {
439                 assert(op == op_Block);
440                 return block->attr.block.is_dead;
441         }
442 }
443
444 static inline ir_graph *_get_Block_irg(const ir_node *block)
445 {
446         assert(is_Block(block) || is_Bad(block));
447         return block->attr.irg.irg;
448 }
449
450 static inline tarval *_get_Const_tarval(const ir_node *node) {
451         assert(_get_irn_op(node) == op_Const);
452         return node->attr.con.tarval;
453 }
454
455 static inline int _is_Const_null(const ir_node *node) {
456         return tarval_is_null(_get_Const_tarval(node));
457 }
458
459 static inline int _is_Const_one(const ir_node *node) {
460         return tarval_is_one(_get_Const_tarval(node));
461 }
462
463 static inline int _is_Const_all_one(const ir_node *node) {
464         return tarval_is_all_one(_get_Const_tarval(node));
465 }
466
467 static inline int _is_irn_forking(const ir_node *node) {
468         return is_op_forking(_get_irn_op(node));
469 }
470
471 static inline ir_type *_get_irn_type(ir_node *node) {
472         return _get_irn_op(node)->ops.get_type(node);
473 }
474
475 static inline ir_type *_get_irn_type_attr(ir_node *node) {
476         return _get_irn_op(node)->ops.get_type_attr(node);
477 }
478
479 static inline ir_entity *_get_irn_entity_attr(ir_node *node) {
480   return _get_irn_op(node)->ops.get_entity_attr(node);
481 }
482
483 static inline int _is_irn_constlike(const ir_node *node) {
484         return is_op_constlike(_get_irn_op(node));
485 }
486
487 static inline int _is_irn_always_opt(const ir_node *node) {
488         return is_op_always_opt(_get_irn_op(node));
489 }
490
491 static inline int _is_irn_keep(const ir_node *node) {
492         return is_op_keep(_get_irn_op(node));
493 }
494
495 static inline int _is_irn_start_block_placed(const ir_node *node) {
496         return is_op_start_block_placed(_get_irn_op(node));
497 }
498
499 static inline int _is_irn_machine_op(const ir_node *node) {
500         return is_op_machine(_get_irn_op(node));
501 }
502
503 static inline int _is_irn_machine_operand(const ir_node *node) {
504         return is_op_machine_operand(_get_irn_op(node));
505 }
506
507 static inline int _is_irn_machine_user(const ir_node *node, unsigned n) {
508         return is_op_machine_user(_get_irn_op(node), n);
509 }
510
511 static inline int _is_irn_cse_neutral(const ir_node *node) {
512         return is_op_cse_neutral(_get_irn_op(node));
513 }
514
515 static inline cond_jmp_predicate _get_Cond_jmp_pred(const ir_node *node) {
516         assert(_get_irn_op(node) == op_Cond);
517         return node->attr.cond.jmp_pred;
518 }
519
520 static inline void _set_Cond_jmp_pred(ir_node *node, cond_jmp_predicate pred) {
521         assert(_get_irn_op(node) == op_Cond);
522         node->attr.cond.jmp_pred = pred;
523 }
524
525 static inline void *_get_irn_generic_attr(ir_node *node) {
526         return &node->attr;
527 }
528
529 static inline const void *_get_irn_generic_attr_const(const ir_node *node) {
530         return &node->attr;
531 }
532
533 static inline unsigned _get_irn_idx(const ir_node *node) {
534         return node->node_idx;
535 }
536
537 static inline dbg_info *_get_irn_dbg_info(const ir_node *n) {
538         return n->dbi;
539 }  /* get_irn_dbg_info */
540
541 static inline void _set_irn_dbg_info(ir_node *n, dbg_info *db) {
542         n->dbi = db;
543 }
544
545 /**
546  * Sets the Phi list of a block.
547  */
548 static inline void _set_Block_phis(ir_node *block, ir_node *phi)
549 {
550         assert(_is_Block(block));
551         assert(phi == NULL || _is_Phi(phi));
552         block->attr.block.phis = phi;
553 }
554
555 /**
556  * Returns the link of a node.
557  * Intern version of libFirm.
558  */
559 static inline ir_node *_get_Block_phis(const ir_node *block)
560 {
561         assert(_is_Block(block));
562         return block->attr.block.phis;
563 }
564
565 static inline void _set_Phi_next(ir_node *phi, ir_node *next)
566 {
567         assert(_is_Phi(phi));
568         phi->attr.phi.next = next;
569 }
570
571 static inline ir_node *_get_Phi_next(const ir_node *phi)
572 {
573         assert(_is_Phi(phi));
574         return phi->attr.phi.next;
575 }
576
577 /** Add a Phi node to the list of Block Phi's. */
578 static inline void _add_Block_phi(ir_node *block, ir_node *phi)
579 {
580         _set_Phi_next(phi, _get_Block_phis(block));
581         _set_Block_phis(block, phi);
582 }
583
584 /** Get the Block mark (single bit). */
585 static inline unsigned _get_Block_mark(const ir_node *block)
586 {
587         assert(_is_Block(block));
588         return block->attr.block.marked;
589 }
590
591 /** Set the Block mark (single bit). */
592 static inline void _set_Block_mark(ir_node *block, unsigned mark)
593 {
594         assert(_is_Block(block));
595         block->attr.block.marked = mark;
596 }
597
598 /** Returns non-zero if a node is a routine parameter. */
599 static inline int _is_arg_Proj(const ir_node *node)
600 {
601         if (! is_Proj(node))
602                 return 0;
603         node = get_Proj_pred(node);
604         if (! is_Proj(node))
605                 return 0;
606         return pn_Start_T_args == get_Proj_proj(node) && is_Start(get_Proj_pred(node));
607 }
608
609 /** initialize ir_node module */
610 void init_irnode(void);
611
612 /* this section MUST contain all inline functions */
613 #define is_ir_node(thing)                     _is_ir_node(thing)
614 #define get_irn_arity(node)                   _get_irn_arity(node)
615 #define get_irn_n(node, n)                    _get_irn_n(node, n)
616 #define get_irn_mode(node)                    _get_irn_mode(node)
617 #define set_irn_mode(node, mode)              _set_irn_mode(node, mode)
618 #define get_irn_irg(node)                     _get_irn_irg(node)
619 #define get_irn_op(node)                      _get_irn_op(node)
620 #define set_irn_op(node, op)                  _set_irn_op(node, op)
621 #define get_irn_opcode(node)                  _get_irn_opcode(node)
622 #define get_irn_visited(node)                 _get_irn_visited(node)
623 #define set_irn_visited(node, v)              _set_irn_visited(node, v)
624 #define mark_irn_visited(node)                _mark_irn_visited(node)
625 #define irn_visited(node)                     _irn_visited(node)
626 #define irn_visited_else_mark(node)           _irn_visited_else_mark(node)
627 #define set_irn_link(node, link)              _set_irn_link(node, link)
628 #define get_irn_link(node)                    _get_irn_link(node)
629 #define get_irn_pinned(node)                  _get_irn_pinned(node)
630 #define is_irn_pinned_in_irg(node)            _is_irn_pinned_in_irg(node)
631 #define is_unop(node)                         _is_unop(node)
632 #define is_binop(node)                        _is_binop(node)
633 #define is_Proj(node)                         _is_Proj(node)
634 #define is_Phi(node)                          _is_Phi(node)
635 #define is_strictConv(node)                   _is_strictConv(node)
636 #define is_SymConst_addr_ent(node)            _is_SymConst_addr_ent(node)
637 #define get_Block_n_cfgpreds(node)            _get_Block_n_cfgpreds(node)
638 #define get_Block_cfgpred(node, pos)          _get_Block_cfgpred(node, pos)
639 #define get_Block_cfgpred_block(node, pos)    _get_Block_cfgpred_block(node, pos)
640 #define get_Block_block_visited(node)         _get_Block_block_visited(node)
641 #define set_Block_block_visited(node, visit)  _set_Block_block_visited(node, visit)
642 #define mark_Block_block_visited(node)        _mark_Block_block_visited(node)
643 #define Block_block_visited(node)             _Block_block_visited(node)
644 #define set_Block_dead(block)                 _set_Block_dead(block)
645 #define is_Block_dead(block)                  _is_Block_dead(block)
646 #define get_Block_irg(block)                  _get_Block_irg(block)
647 #define get_Const_tarval(node)                _get_Const_tarval(node)
648 #define is_Const_null(node)                   _is_Const_null(node)
649 #define is_Const_one(node)                    _is_Const_one(node)
650 #define is_Const_all_one(node)                _is_Const_all_one(node)
651 #define is_irn_forking(node)                  _is_irn_forking(node)
652 #define copy_node_attr(irg,oldn,newn)         _copy_node_attr(irg,oldn,newn)
653 #define get_irn_type(node)                    _get_irn_type(node)
654 #define get_irn_type_attr(node)               _get_irn_type_attr(node)
655 #define get_irn_entity_attr(node)             _get_irn_entity_attr(node)
656 #define is_irn_constlike(node)                _is_irn_constlike(node)
657 #define is_irn_always_opt(node)               _is_irn_always_opt(node)
658 #define is_irn_keep(node)                     _is_irn_keep(node)
659 #define is_irn_start_block_placed(node)       _is_irn_start_block_placed(node)
660 #define is_irn_machine_op(node)               _is_irn_machine_op(node)
661 #define is_irn_machine_operand(node)          _is_irn_machine_operand(node)
662 #define is_irn_machine_user(node, n)          _is_irn_machine_user(node, n)
663 #define is_irn_cse_neutral(node)              _is_irn_cse_neutral(node)
664 #define get_Cond_jmp_pred(node)               _get_Cond_jmp_pred(node)
665 #define set_Cond_jmp_pred(node, pred)         _set_Cond_jmp_pred(node, pred)
666 #define get_irn_generic_attr(node)            _get_irn_generic_attr(node)
667 #define get_irn_generic_attr_const(node)      _get_irn_generic_attr_const(node)
668 #define get_irn_idx(node)                     _get_irn_idx(node)
669
670 #define get_irn_deps(node)                    _get_irn_deps(node)
671 #define set_irn_dep(node, pos, dep)           _set_irn_dep(node, pos, dep)
672 #define get_irn_dep(node, pos)                _get_irn_dep(node, pos)
673
674 #define get_irn_ins_or_deps(node)             _get_irn_ins_or_deps(node)
675 #define get_irn_in_or_dep(node, pos)          _get_irn_in_or_dep(node, pos)
676
677 #define get_irn_dbg_info(node)                _get_irn_dbg_info(node)
678 #define set_irn_dbg_info(node, db)            _set_irn_dbg_info(node, db)
679
680 #define set_Block_phis(block, phi)            _set_Block_phis(block, phi)
681 #define get_Block_phis(block)                 _get_Block_phis(block)
682 #define add_Block_phi(block, phi)             _add_Block_phi(block, phi)
683 #define get_Block_mark(block)                 _get_Block_mark(block)
684 #define set_Block_mark(block, mark)           _set_Block_mark(block, mark)
685
686 #define set_Phi_next(node, phi)               _set_Phi_next(node, phi)
687 #define get_Phi_next(node)                    _get_Phi_next(node)
688
689 #define is_arg_Proj(node)                     _is_arg_Proj(node)
690
691 #endif