7511142254
* Makefile.in (actions.o, convert.o, decl.o, expr.o, lang.o, lex.o, loop.o, parse.o, satisfy.o, timing.o, tasking.o, tree.o, typeck.o): Depend on system.h and toplev.h. (except.o): Depend on toplev.h. (grant.o): Depend on system.h, toplev.h and output.h. * actions.c: Include system.h and toplev.h. Remove redundant prototypes. (build_cause_exception): Add default case in switch. (update_else_range_for_range): Add parentheses around && within ||. (chill_handle_multi_case_label_list): Remove unused variable `selector_value'. (print_missing_cases): Reconcile format specifiers vs arguments in calls to sprintf. * ch-tree.h: Don't include stdio.h. Wrap prototypes using FILE* with macro BUFSIZ. Add missing prototypes. * convert.c: Include system.h and toplev.h. Remove redundant prototypes. (convert): Remove unused variable `errstr'. * decl.c: Include system.h and toplev.h. Remove redundant prototypes. (builtin_scope): Add missing initializers. (clear_scope): Likewise. (allocate_lang_decl): Mark parameter `t' with ATTRIBUTE_UNUSED. (copy_lang_decl): Likewise for parameter `node'. (c_decode_option): Likewise for parameter `argc'. (push_extern_function): Likewise for parameter `granting'. (switch_to_pass_2): Hide declaration of errorcount/sorrycount. (pushdecl): Remove unused variable `t'. (lookup_name_current_level): Make static and hide. (lookup_name_for_seizing): Make static. (finish_decl): Remove unused variable `type'. (maybe_build_cleanup): Mark parameter `decl' with ATTRIBUTE_UNUSED. (complete_array_type): Mark parameters `type', `initial_value' and `do_default' with ATTRIBUTE_UNUSED. (start_struct): Mark parameter `name' with ATTRIBUTE_UNUSED. (start_enum): Likewise. (shadow_record_fields): Remove unused variables `type' and `parent'. * except.c: Include toplev.h. Remove redundant prototypes. * expr.c: Include system.h and toplev.h. Don't define NULL. Remove redundant prototypes. (internal_build_compound_expr): Mark parameter `first_p' with ATTRIBUTE_UNUSED. (build_allocate_getstack): Remove unused variable `init'. (build_chill_pred_or_succ): Likewise for variable `limit'. (varying_to_slice): Likewise for variable `doamin' [sic]. (finish_chill_binary_op): Likewise for variables `code0' and `code1'. Remove unused label `finish'. Add explicit braces to avoid ambiguous `else'. (build_chill_addr_expr): Remove extra parameter in call to `error'. (build_chill_unary_op): Remove unused variables `class' and `type0'. (powersetlen): Remove unused variables `domain' and `temp'. * grant.c: Include system.h, toplev.h and output.h. Don't handle strchr/strrchr. Remove redundant prototypes. (decode_constant_selective): Remove unused variables `op' and `wrk'. (push_granted): Mark parameters `name' and `decl' with ATTRIBUTE_UNUSED. * inout.c: Include system.h and toplev.h. Remove redundant prototypes. (textlocation_mode): Use &&, not &, when comparing two truth values. (scanformcont): Remove unused label `do_the_action'. * lang.c: Include system.h and toplev.h. Remove redundant prototypes. (lookup_interface): Mark parameter `arg' with ATTRIBUTE_UNUSED. (maybe_objc_comptypes): Likewise for parameters `lhs' and `rhs'. (lang_print_xnode): Likewise for parameters `file', `node' and `indent'. (lang_decode_option): Explicitly declare `explicit_ignore_case'. (incomplete_type_error): Mark parameters `value' and `type' with ATTRIBUTE_UNUSED. * lex.c: Include system.h and toplev.h. Remove redundant prototypes. Don't handle strchr/strrchr. Use CAPITALIZED versions of ctype macros from system.h. Cast ctype arguments to unsigned char when necessary. (last_token, RETURN_TOKEN): Hide definition. (push_back): Remove unused function. (readstring): Change variable `i' to unsigned. (yywrap): Remove unused variable `node'. * loop.c: Include system.h and toplev.h. Remove redundant prototypes. (chill_unsigned_type): Hide prototype and definition. (begin_loop_scope): Remove unused variable `firstp'. (nonvalue_begin_loop_scope): Likewise. * parse.c: Include system.h and toplev.h. Remove redundant prototypes. (quasi_signal): Hide. (PEEK_TOKEN): Change return type to `enum terminal'. (parse_mode_definition_statement): Remove unused variable `names'. (parse_formpar): Remove unused parameter `in_spec_module'. All callers changed. (parse_formparlist): Likewise. (parse_processpar): Remove unused variable `parms'. (parse_definition): Add explicit braces to avoid ambiguous `else'. (parse_multi_dimension_case_action): Initialize variable `begin_test_label'. Remove unused variable `new_test'. (parse_case_action): Remove unused variable `caseaction_flag'. (parse_asm_clobbers): Remove unused variable `expr'. (parse_delay_case_action): Initialize variable `label_cnt'. (parse_action): Make function static. (parse_tuple_element): Remove unused variable `list'. (parse_primval): Add default case in switch. (parse_variant_alternative): Remove unused variables `x' and `variant_fields'. * satisfy.c: Include system.h and toplev.h. Remove redundant prototypes. * tasking.c Include system.h and toplev.h. Remove redundant prototypes. (data_name): Hide. (get_struct_variable_name): Likewise. (validate_process_parameters): Mark parameter `parms' with ATTRIBUTE_UNUSED. (build_start_process): Initialize variable `tuple'. (build_receive_buffer_case_end): Remove unused variable `buffer_ptr'. * timing.c: Include system.h and toplev.h. (build_after_timeout_start): Remove unused variable `goto_where'. * tree.c: Include system.h and toplev.h. Remove redundant prototypes. * typeck.c: Include system.h and toplev.h. Remove redundant prototypes. (extract_constant_from_buffer): Make function static. Add explicit braces to avoid ambiguous `else'. (expand_constant_to_buffer): Likewise. (build_chill_slice): remove unused variable `is_static'. (chill_compatible): Add explicit braces to avoid ambiguous `else'. (apply_chill_array_layout): Remove unused variable `offset'. (smash_dummy_type): Remove unused variable `save_lang_specific'. (initializer_constant_valid_p): Add default case in switch. From-SVN: r22493
494 lines
14 KiB
C
494 lines
14 KiB
C
/* Implement timing-related actions for CHILL.
|
|
Copyright (C) 1992, 93, 1994 Free Software Foundation, Inc.
|
|
|
|
This file is part of GNU CC.
|
|
|
|
GNU CC is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
any later version.
|
|
|
|
GNU CC is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with GNU CC; see the file COPYING. If not, write to
|
|
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|
|
|
#include "config.h"
|
|
#include "system.h"
|
|
#include "tree.h"
|
|
#include "rtl.h"
|
|
#include "ch-tree.h"
|
|
#include "flags.h"
|
|
#include "input.h"
|
|
#include "obstack.h"
|
|
#include "lex.h"
|
|
#include "toplev.h"
|
|
|
|
#ifndef LONG_TYPE_SIZE
|
|
#define LONG_TYPE_SIZE BITS_PER_WORD
|
|
#endif
|
|
|
|
/* set non-zero if input text is forced to lowercase */
|
|
extern int ignore_case;
|
|
|
|
/* set non-zero if special words are to be entered in uppercase */
|
|
extern int special_UC;
|
|
|
|
/* timing modes */
|
|
tree abs_timing_type_node;
|
|
tree duration_timing_type_node;
|
|
|
|
/* rts time type */
|
|
static tree rtstime_type_node = NULL_TREE;
|
|
|
|
/* the stack for AFTER primval [ DELAY ] IN
|
|
and has following layout
|
|
|
|
TREE_VALUE (TREE_VALUE (after_stack)) = current time or NULL_TREE (if DELAY specified)
|
|
TREE_PURPOSE (TREE_VALUE (after_stack)) = the duration location
|
|
TREE_VALUE (TREE_PURPOSE (after_stack)) = label at TIMEOUT
|
|
TREE_PURPOSE (TREE_PURPOSE (after_stack)) = label at the end of AFTER action
|
|
*/
|
|
tree after_stack = NULL_TREE;
|
|
|
|
/* in pass 1 we need a seperate list for the labels */
|
|
static tree after_stack_pass_1 = NULL_TREE;
|
|
static tree after_help;
|
|
|
|
void
|
|
timing_init ()
|
|
{
|
|
tree ptr_ftype_durt_ptr_int;
|
|
tree int_ftype_abst_ptr_int;
|
|
tree void_ftype_ptr;
|
|
tree long_ftype_int_int_int_int_int_int_int_ptr_int;
|
|
tree void_ftype_abstime_ptr;
|
|
tree int_ftype_ptr_durt_ptr;
|
|
tree void_ftype_durt_ptr;
|
|
tree void_ftype_ptr_durt_ptr_int;
|
|
tree temp;
|
|
tree endlink;
|
|
tree ulong_type;
|
|
|
|
ulong_type = TREE_TYPE (lookup_name (
|
|
get_identifier ((ignore_case || ! special_UC ) ?
|
|
"ulong" : "ULONG")));
|
|
|
|
/* build modes for TIME and DURATION */
|
|
duration_timing_type_node = make_unsigned_type (LONG_TYPE_SIZE);
|
|
temp = pushdecl (build_decl (TYPE_DECL, ridpointers[(int)RID_DURATION],
|
|
duration_timing_type_node));
|
|
SET_CH_NOVELTY_NONNIL (duration_timing_type_node, temp);
|
|
abs_timing_type_node = make_unsigned_type (LONG_TYPE_SIZE);
|
|
temp = pushdecl (build_decl (TYPE_DECL, ridpointers[(int)RID_TIME],
|
|
abs_timing_type_node));
|
|
SET_CH_NOVELTY_NONNIL (abs_timing_type_node, temp);
|
|
|
|
/* the mode of time the runtimesystem returns */
|
|
if (rtstime_type_node == NULL_TREE)
|
|
{
|
|
tree decl1, decl2, result;
|
|
|
|
decl1 = build_decl (FIELD_DECL,
|
|
get_identifier ("secs"),
|
|
ulong_type);
|
|
DECL_INITIAL (decl1) = NULL_TREE;
|
|
decl2 = build_decl (FIELD_DECL,
|
|
get_identifier ("nsecs"),
|
|
ulong_type);
|
|
DECL_INITIAL (decl2) = NULL_TREE;
|
|
TREE_CHAIN (decl2) = NULL_TREE;
|
|
TREE_CHAIN (decl1) = decl2;
|
|
|
|
result = build_chill_struct_type (decl1);
|
|
pushdecl (temp = build_decl (TYPE_DECL,
|
|
get_identifier ("__tmp_rtstime"), result));
|
|
DECL_SOURCE_LINE (temp) = 0;
|
|
satisfy_decl (temp, 0);
|
|
rtstime_type_node = TREE_TYPE (temp);
|
|
}
|
|
|
|
endlink = void_list_node;
|
|
|
|
ptr_ftype_durt_ptr_int
|
|
= build_function_type (ptr_type_node,
|
|
tree_cons (NULL_TREE, duration_timing_type_node,
|
|
tree_cons (NULL_TREE, ptr_type_node,
|
|
tree_cons (NULL_TREE, integer_type_node,
|
|
endlink))));
|
|
|
|
int_ftype_abst_ptr_int
|
|
= build_function_type (integer_type_node,
|
|
tree_cons (NULL_TREE, abs_timing_type_node,
|
|
tree_cons (NULL_TREE, ptr_type_node,
|
|
tree_cons (NULL_TREE, integer_type_node,
|
|
endlink))));
|
|
|
|
void_ftype_ptr
|
|
= build_function_type (void_type_node,
|
|
tree_cons (NULL_TREE, ptr_type_node,
|
|
endlink));
|
|
|
|
long_ftype_int_int_int_int_int_int_int_ptr_int
|
|
= build_function_type (abs_timing_type_node,
|
|
tree_cons (NULL_TREE, integer_type_node,
|
|
tree_cons (NULL_TREE, integer_type_node,
|
|
tree_cons (NULL_TREE, integer_type_node,
|
|
tree_cons (NULL_TREE, integer_type_node,
|
|
tree_cons (NULL_TREE, integer_type_node,
|
|
tree_cons (NULL_TREE, integer_type_node,
|
|
tree_cons (NULL_TREE, integer_type_node,
|
|
tree_cons (NULL_TREE, ptr_type_node,
|
|
tree_cons (NULL_TREE, integer_type_node,
|
|
endlink))))))))));
|
|
|
|
void_ftype_abstime_ptr
|
|
= build_function_type (void_type_node,
|
|
tree_cons (NULL_TREE, abs_timing_type_node,
|
|
tree_cons (NULL_TREE, ptr_type_node,
|
|
endlink)));
|
|
|
|
int_ftype_ptr_durt_ptr
|
|
= build_function_type (integer_type_node,
|
|
tree_cons (NULL_TREE, ptr_type_node,
|
|
tree_cons (NULL_TREE, duration_timing_type_node,
|
|
tree_cons (NULL_TREE, ptr_type_node,
|
|
endlink))));
|
|
|
|
void_ftype_durt_ptr
|
|
= build_function_type (void_type_node,
|
|
tree_cons (NULL_TREE, duration_timing_type_node,
|
|
tree_cons (NULL_TREE, ptr_type_node,
|
|
endlink)));
|
|
|
|
void_ftype_ptr_durt_ptr_int
|
|
= build_function_type (void_type_node,
|
|
tree_cons (NULL_TREE, ptr_type_node,
|
|
tree_cons (NULL_TREE, duration_timing_type_node,
|
|
tree_cons (NULL_TREE, ptr_type_node,
|
|
tree_cons (NULL_TREE, integer_type_node,
|
|
endlink)))));
|
|
|
|
builtin_function ("_abstime", long_ftype_int_int_int_int_int_int_int_ptr_int,
|
|
NOT_BUILT_IN, NULL_PTR);
|
|
builtin_function ("__check_cycle", void_ftype_ptr_durt_ptr_int,
|
|
NOT_BUILT_IN, NULL_PTR);
|
|
builtin_function ("__convert_duration_rtstime", void_ftype_durt_ptr,
|
|
NOT_BUILT_IN, NULL_PTR);
|
|
builtin_function ("__define_timeout", ptr_ftype_durt_ptr_int,
|
|
NOT_BUILT_IN, NULL_PTR);
|
|
builtin_function ("_inttime", void_ftype_abstime_ptr,
|
|
NOT_BUILT_IN, NULL_PTR);
|
|
builtin_function ("__remaintime", int_ftype_ptr_durt_ptr,
|
|
NOT_BUILT_IN, NULL_PTR);
|
|
builtin_function ("__rtstime", void_ftype_ptr,
|
|
NOT_BUILT_IN, NULL_PTR);
|
|
builtin_function ("__wait_until", int_ftype_abst_ptr_int,
|
|
NOT_BUILT_IN, NULL_PTR);
|
|
}
|
|
|
|
#if 0
|
|
*
|
|
* build AT action
|
|
*
|
|
* AT primval IN
|
|
* ok-actionlist
|
|
* TIMEOUT
|
|
* to-actionlist
|
|
* END;
|
|
*
|
|
* gets translated to
|
|
*
|
|
* if (__wait_until (primval) == 0)
|
|
* ok-actionlist
|
|
* else
|
|
* to-action-list
|
|
*
|
|
#endif
|
|
|
|
void
|
|
build_at_action (t)
|
|
tree t;
|
|
{
|
|
tree abstime, expr, filename, fcall;
|
|
|
|
if (t == NULL_TREE || TREE_CODE (t) == ERROR_MARK)
|
|
abstime = convert (abs_timing_type_node, build_int_2 (0, 0));
|
|
else
|
|
abstime = t;
|
|
|
|
if (TREE_TYPE (abstime) != abs_timing_type_node)
|
|
{
|
|
error ("absolute time value must be of mode TIME.");
|
|
abstime = convert (abs_timing_type_node, build_int_2 (0, 0));
|
|
}
|
|
filename = force_addr_of (get_chill_filename ());
|
|
fcall = build_chill_function_call (
|
|
lookup_name (get_identifier ("__wait_until")),
|
|
tree_cons (NULL_TREE, abstime,
|
|
tree_cons (NULL_TREE, filename,
|
|
tree_cons (NULL_TREE, get_chill_linenumber (), NULL_TREE))));
|
|
expr = build (EQ_EXPR, integer_type_node, fcall, integer_zero_node);
|
|
expand_start_cond (expr, 0);
|
|
emit_line_note (input_filename, lineno);
|
|
}
|
|
|
|
#if 0
|
|
*
|
|
* build CYCLE action
|
|
*
|
|
* CYCLE primval IN
|
|
* actionlist
|
|
* END;
|
|
*
|
|
* gets translated to
|
|
*
|
|
* {
|
|
* RtsTime now;
|
|
* label:
|
|
* __rtstime (&now);
|
|
* actionlist
|
|
* __check_cycle (&now, primval, filename, lineno);
|
|
* goto label;
|
|
* }
|
|
*
|
|
#endif
|
|
|
|
tree
|
|
build_cycle_start (t)
|
|
tree t;
|
|
{
|
|
tree purpose = build_tree_list (NULL_TREE, NULL_TREE);
|
|
tree toid = build_tree_list (purpose, NULL_TREE);
|
|
|
|
/* define the label. Note: define_label needs to be called in
|
|
pass 1 and pass 2. */
|
|
TREE_VALUE (toid) = define_label (input_filename, lineno,
|
|
get_unique_identifier ("CYCLE_label"));
|
|
if (! ignoring)
|
|
{
|
|
tree duration_value, now_location;
|
|
|
|
if (t == NULL_TREE || TREE_CODE (t) == ERROR_MARK)
|
|
duration_value = convert (duration_timing_type_node, build_int_2 (0,0));
|
|
else
|
|
duration_value = t;
|
|
|
|
if (TREE_TYPE (duration_value) != duration_timing_type_node)
|
|
{
|
|
error ("duration primitive value must be of mode DURATION.");
|
|
duration_value = convert (duration_timing_type_node, build_int_2 (0,0));
|
|
}
|
|
TREE_PURPOSE (TREE_PURPOSE (toid)) = duration_value;
|
|
/* define the variable */
|
|
now_location = decl_temp1 (get_unique_identifier ("CYCLE_var"),
|
|
rtstime_type_node, 0,
|
|
NULL_TREE, 0, 0);
|
|
TREE_VALUE (TREE_PURPOSE (toid)) = force_addr_of (now_location);
|
|
|
|
/* build the call to __rtstime */
|
|
expand_expr_stmt (
|
|
build_chill_function_call (lookup_name (get_identifier ("__rtstime")),
|
|
build_tree_list (NULL_TREE, TREE_VALUE (TREE_PURPOSE (toid)))));
|
|
}
|
|
|
|
return toid;
|
|
}
|
|
|
|
void
|
|
build_cycle_end (toid)
|
|
tree toid;
|
|
{
|
|
tree filename, linenumber;
|
|
|
|
/* here we call __check_cycle and then jump to beginning of this
|
|
action */
|
|
filename = force_addr_of (get_chill_filename ());
|
|
linenumber = get_chill_linenumber ();
|
|
expand_expr_stmt (
|
|
build_chill_function_call (
|
|
lookup_name (get_identifier ("__check_cycle")),
|
|
tree_cons (NULL_TREE, TREE_VALUE (TREE_PURPOSE (toid)),
|
|
tree_cons (NULL_TREE, TREE_PURPOSE (TREE_PURPOSE (toid)),
|
|
tree_cons (NULL_TREE, filename,
|
|
tree_cons (NULL_TREE, linenumber, NULL_TREE))))));
|
|
expand_goto (TREE_VALUE (toid));
|
|
}
|
|
|
|
#if 0
|
|
*
|
|
* build AFTER ACTION
|
|
*
|
|
* AFTER primval [ DELAY ] IN
|
|
* action-list
|
|
* TIMEOUT
|
|
* to-action-list
|
|
* END
|
|
*
|
|
* gets translated to
|
|
*
|
|
* {
|
|
* struct chill_time __now;
|
|
* duration dur = primval;
|
|
* if (! delay_spceified)
|
|
* __rts_time (&__now);
|
|
* .
|
|
* .
|
|
* goto end-label;
|
|
* to-label:
|
|
* .
|
|
* .
|
|
* end-label:
|
|
* }
|
|
*
|
|
#endif
|
|
|
|
void
|
|
build_after_start (duration, delay_flag)
|
|
tree duration;
|
|
int delay_flag;
|
|
{
|
|
tree value, purpose;
|
|
|
|
if (! ignoring)
|
|
{
|
|
value = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE);
|
|
purpose = after_stack_pass_1;
|
|
after_stack_pass_1 = TREE_CHAIN (after_stack_pass_1);
|
|
after_stack = tree_cons (purpose, value, after_stack);
|
|
|
|
if (TREE_TYPE (duration) != duration_timing_type_node)
|
|
{
|
|
error ("duration primitive value must be of mode DURATION.");
|
|
duration = convert (duration_timing_type_node, build_int_2 (0,0));
|
|
}
|
|
TREE_PURPOSE (value) = decl_temp1 (get_identifier ("AFTER_duration"),
|
|
duration_timing_type_node, 0,
|
|
duration, 0, 0);
|
|
|
|
if (! delay_flag)
|
|
{
|
|
/* in this case we have to get the current time */
|
|
TREE_VALUE (value) = decl_temp1 (get_unique_identifier ("AFTER_now"),
|
|
rtstime_type_node, 0,
|
|
NULL_TREE, 0, 0);
|
|
/* build the function call to initialize the variable */
|
|
expand_expr_stmt (
|
|
build_chill_function_call (lookup_name (get_identifier ("__rtstime")),
|
|
build_tree_list (NULL_TREE, force_addr_of (TREE_VALUE (value)))));
|
|
}
|
|
}
|
|
else
|
|
{
|
|
/* in pass 1 we just save the labels */
|
|
after_help = tree_cons (NULL_TREE, NULL_TREE, after_help);
|
|
after_stack_pass_1 = chainon (after_stack_pass_1, after_help);
|
|
}
|
|
}
|
|
|
|
void
|
|
build_after_timeout_start ()
|
|
{
|
|
tree label_name;
|
|
|
|
if (! ignoring)
|
|
{
|
|
/* jump to the end of AFTER action */
|
|
lookup_and_expand_goto (TREE_PURPOSE (TREE_PURPOSE (after_stack)));
|
|
label_name = TREE_VALUE (TREE_PURPOSE (after_stack));
|
|
/* mark we are in TIMEOUT part of AFTER action */
|
|
TREE_VALUE (TREE_PURPOSE (after_stack)) = NULL_TREE;
|
|
}
|
|
else
|
|
{
|
|
label_name = get_unique_identifier ("AFTER_tolabel");
|
|
TREE_VALUE (after_help) = label_name;
|
|
}
|
|
define_label (input_filename, lineno, label_name);
|
|
}
|
|
|
|
void
|
|
build_after_end ()
|
|
{
|
|
tree label_name;
|
|
|
|
/* define the end label */
|
|
if (! ignoring)
|
|
{
|
|
label_name = TREE_PURPOSE (TREE_PURPOSE (after_stack));
|
|
after_stack = TREE_CHAIN (after_stack);
|
|
}
|
|
else
|
|
{
|
|
label_name = get_unique_identifier ("AFTER_endlabel");
|
|
TREE_PURPOSE (after_help) = label_name;
|
|
after_help = TREE_CHAIN (after_help);
|
|
}
|
|
define_label (input_filename, lineno, label_name);
|
|
}
|
|
|
|
tree
|
|
build_timeout_preface ()
|
|
{
|
|
tree timeout_value = null_pointer_node;
|
|
|
|
if (after_stack != NULL_TREE &&
|
|
TREE_VALUE (TREE_PURPOSE (after_stack)) != NULL_TREE)
|
|
{
|
|
tree to_loc;
|
|
|
|
to_loc = decl_temp1 (get_unique_identifier ("TOloc"),
|
|
rtstime_type_node, 0, NULL_TREE, 0, 0);
|
|
timeout_value = force_addr_of (to_loc);
|
|
|
|
if (TREE_VALUE (TREE_VALUE (after_stack)) == NULL_TREE)
|
|
{
|
|
/* DELAY specified -- just call __convert_duration_rtstime for
|
|
given duration value */
|
|
expand_expr_stmt (
|
|
build_chill_function_call (
|
|
lookup_name (get_identifier ("__convert_duration_rtstime")),
|
|
tree_cons (NULL_TREE, TREE_PURPOSE (TREE_VALUE (after_stack)),
|
|
tree_cons (NULL_TREE, timeout_value, NULL_TREE))));
|
|
}
|
|
else
|
|
{
|
|
/* delay not specified -- call __remaintime which returns the
|
|
remaining time of duration in rtstime format and check the
|
|
result */
|
|
tree fcall =
|
|
build_chill_function_call (
|
|
lookup_name (get_identifier ("__remaintime")),
|
|
tree_cons (NULL_TREE, force_addr_of (TREE_VALUE (TREE_VALUE (after_stack))),
|
|
tree_cons (NULL_TREE, TREE_PURPOSE (TREE_VALUE (after_stack)),
|
|
tree_cons (NULL_TREE, timeout_value, NULL_TREE))));
|
|
tree expr = build (NE_EXPR, integer_type_node,
|
|
fcall, integer_zero_node);
|
|
expand_start_cond (expr, 0);
|
|
lookup_and_expand_goto (TREE_VALUE (TREE_PURPOSE (after_stack)));
|
|
expand_end_cond ();
|
|
}
|
|
}
|
|
return timeout_value;
|
|
}
|
|
|
|
void
|
|
build_timesupervised_call (fcall, to_loc)
|
|
tree fcall;
|
|
tree to_loc;
|
|
{
|
|
if (to_loc == null_pointer_node)
|
|
expand_expr_stmt (fcall);
|
|
else
|
|
{
|
|
tree expr = build (NE_EXPR, integer_type_node, fcall, integer_zero_node);
|
|
expand_start_cond (expr, 0);
|
|
lookup_and_expand_goto (TREE_VALUE (TREE_PURPOSE (after_stack)));
|
|
expand_end_cond ();
|
|
}
|
|
}
|