HomeSort by: relevance | last modified time | path
    Searched defs:bind_expr (Results 1 - 6 of 6) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
function-tests.cc 234 /* Create a BIND_EXPR, and within it, a statement list. */
238 tree bind_expr local
239 = build3 (BIND_EXPR, void_type_node, NULL, stmt_list, block);
255 DECL_SAVED_TREE(fndecl) = bind_expr;
258 BLOCK_VARS (block) = BIND_EXPR_VARS (bind_expr);
gimplify.cc 362 put the temporaries into the outer BIND_EXPR. Otherwise, put them
739 /* We need to attach the nodes both to the BIND_EXPR and to its
741 is that the BLOCK_VARS of the BIND_EXPR_BLOCK of a BIND_EXPR
742 is a subchain of the BIND_EXPR_VARS of the BIND_EXPR. */
912 /* Do not copy SAVE_EXPR, TARGET_EXPR or BIND_EXPR nodes themselves, but
914 if (code == SAVE_EXPR || code == TARGET_EXPR || code == BIND_EXPR)
1133 /* WRAPPER is a code such as BIND_EXPR or CLEANUP_POINT_EXPR which can both
1152 case BIND_EXPR:
1155 /* For a BIND_EXPR, the body is operand 1. */
1374 /* Gimplify a BIND_EXPR. Just voidify and recurse. *
1377 tree bind_expr = *expr_p; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
function-tests.cc 233 /* Create a BIND_EXPR, and within it, a statement list. */
237 tree bind_expr local
238 = build3 (BIND_EXPR, void_type_node, NULL, stmt_list, block);
254 DECL_SAVED_TREE(fndecl) = bind_expr;
257 BLOCK_VARS (block) = BIND_EXPR_VARS (bind_expr);
gimplify.cc 342 put the temporaries into the outer BIND_EXPR. Otherwise, put them
708 /* We need to attach the nodes both to the BIND_EXPR and to its
710 is that the BLOCK_VARS of the BIND_EXPR_BLOCK of a BIND_EXPR
711 is a subchain of the BIND_EXPR_VARS of the BIND_EXPR. */
881 /* Do not copy SAVE_EXPR, TARGET_EXPR or BIND_EXPR nodes themselves, but
883 if (code == SAVE_EXPR || code == TARGET_EXPR || code == BIND_EXPR)
1102 /* WRAPPER is a code such as BIND_EXPR or CLEANUP_POINT_EXPR which can both
1121 case BIND_EXPR:
1124 /* For a BIND_EXPR, the body is operand 1. */
1343 /* Gimplify a BIND_EXPR. Just voidify and recurse. *
1346 tree bind_expr = *expr_p; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/cp/
coroutines.cc 2051 || TREE_CODE (*stmt) == BIND_EXPR
2211 if (TREE_CODE (*stmt) == BIND_EXPR)
2342 tree actor_bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
2356 gcc_checking_assert (first && TREE_CODE (first) == BIND_EXPR);
3394 tree await_bind = build3_loc (sloc, BIND_EXPR, void_type_node,
3620 if (TREE_CODE (*stmt) == BIND_EXPR)
3683 tree& bind_expr = awpts->bind_stack->last (); local
3684 tree newvar = add_var_to_bind (bind_expr, boolean_type_node,
3868 tree& bind_expr = awpts->bind_stack->last (); local
3870 tree newvar = add_var_to_bind (bind_expr, sw_type, "swch"
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/cp/
coroutines.cc 1867 if (STATEMENT_CLASS_P (*stmt) || TREE_CODE (*stmt) == BIND_EXPR)
2027 if (TREE_CODE (*stmt) == BIND_EXPR)
2158 tree actor_bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
2172 gcc_checking_assert (first && TREE_CODE (first) == BIND_EXPR);
3177 tree await_bind = build3_loc (sloc, BIND_EXPR, void_type_node,
3403 if (TREE_CODE (*stmt) == BIND_EXPR)
3466 tree& bind_expr = awpts->bind_stack->last (); local
3467 tree newvar = add_var_to_bind (bind_expr, boolean_type_node,
3652 tree& bind_expr = awpts->bind_stack->last (); local
3654 tree newvar = add_var_to_bind (bind_expr, sw_type, "swch"
    [all...]

Completed in 27 milliseconds