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

  /src/external/gpl3/gcc/dist/gcc/
tree.cc 3134 case SAVE_EXPR:
3895 case SAVE_EXPR:
3940 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
3945 Calling save_expr produces something that is evaluated and recorded
3954 before reaching the other places where the save_expr was evaluated.
3955 You, the caller of save_expr, must make sure this is so.
3958 SAVE_EXPR because that is safe. Expressions containing placeholders
3963 save_expr (tree expr)
3986 happen by surrounding any such subexpressions in their own SAVE_EXPR
3991 expr = build1_loc (EXPR_LOCATION (expr), SAVE_EXPR, TREE_TYPE (expr), expr)
3951 save_expr (tree expr) function
    [all...]
gimplify.cc 693 For instance, #1 means that this is inappropriate for SAVE_EXPR temps,
900 /* Similar to copy_tree_r but do not copy SAVE_EXPR or TARGET_EXPR nodes.
902 unshare something like SAVE_EXPR(i++), the gimplification process would
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)
5178 language-specific trees, nor trees like SAVE_EXPR that can induce
6783 /* Gimplify a SAVE_EXPR node. EXPR_P points to the expression to
6785 that holds the original value of the SAVE_EXPR node.
6796 gcc_assert (TREE_CODE (*expr_p) == SAVE_EXPR);
6802 /* If the SAVE_EXPR has not been resolved, then evaluate it once. *
17711 tree save_expr; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
tree.cc 3095 case SAVE_EXPR:
3856 case SAVE_EXPR:
3901 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
3906 Calling save_expr produces something that is evaluated and recorded
3915 before reaching the other places where the save_expr was evaluated.
3916 You, the caller of save_expr, must make sure this is so.
3919 SAVE_EXPR because that is safe. Expressions containing placeholders
3924 save_expr (tree expr)
3947 happen by surrounding any such subexpressions in their own SAVE_EXPR
3952 expr = build1_loc (EXPR_LOCATION (expr), SAVE_EXPR, TREE_TYPE (expr), expr)
3912 save_expr (tree expr) function
    [all...]
gimplify.cc 662 For instance, #1 means that this is inappropriate for SAVE_EXPR temps,
869 /* Similar to copy_tree_r but do not copy SAVE_EXPR or TARGET_EXPR nodes.
871 unshare something like SAVE_EXPR(i++), the gimplification process would
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)
4783 language-specific trees, nor trees like SAVE_EXPR that can induce
6364 /* Gimplify a SAVE_EXPR node. EXPR_P points to the expression to
6366 that holds the original value of the SAVE_EXPR node.
6377 gcc_assert (TREE_CODE (*expr_p) == SAVE_EXPR);
6383 /* If the SAVE_EXPR has not been resolved, then evaluate it once. *
14924 tree save_expr; local
    [all...]

Completed in 51 milliseconds