Searched refs:last_expr (Results 1 – 6 of 6) sorted by relevance
/openbsd/gnu/usr.bin/perl/t/perf/ |
H A D | optree.t | 119 my $last_expr = svref_2object($sub)->ROOT->first->last; 120 if ($last_expr->name ne 'aassign') { 121 die "Expected aassign but found ", $last_expr->name, 125 (($last_expr->private & OPpASSIGN_COMMON_SCALAR) ? 'S' : '-') 126 . (($last_expr->private & OPpASSIGN_COMMON_RC1) ? 'R' : '-') 127 . (($last_expr->private & OPpASSIGN_COMMON_AGG) ? 'A' : '-'); 139 my $last_expr = svref_2object($sub)->ROOT->first->last; 140 is $last_expr->name, 'stringify', 150 my $last_expr = svref_2object($sub)->ROOT->first->last; 152 is $last_expr->name, 'const', "$tn optimised to constant";
|
/openbsd/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ASTResultSynthesizer.cpp | 245 Expr *last_expr = dyn_cast<Expr>(last_stmt); in SynthesizeBodyResult() local 247 if (!last_expr) in SynthesizeBodyResult() 255 ImplicitCastExpr *implicit_cast = dyn_cast<ImplicitCastExpr>(last_expr); in SynthesizeBodyResult() 263 last_expr = implicit_cast->getSubExpr(); in SynthesizeBodyResult() 311 bool is_lvalue = last_expr->getValueKind() == VK_LValue && in SynthesizeBodyResult() 312 last_expr->getObjectKind() == OK_Ordinary; in SynthesizeBodyResult() 314 QualType expr_qual_type = last_expr->getType(); in SynthesizeBodyResult() 332 if (is_lvalue && CanTakeAddressOfLValue(last_expr)) { in SynthesizeBodyResult() 343 m_sema->RequireCompleteType(last_expr->getSourceRange().getBegin(), in SynthesizeBodyResult() 362 m_sema->CreateBuiltinUnaryOp(SourceLocation(), UO_AddrOf, last_expr); in SynthesizeBodyResult() [all …]
|
/openbsd/gnu/gcc/gcc/ |
H A D | gcse.c | 1492 struct expr *cur_expr, *last_expr = NULL; in insert_expr_in_table() local 1510 last_expr = cur_expr; in insert_expr_in_table() 1523 last_expr->next_same_hash = cur_expr; in insert_expr_in_table() 1593 struct expr *cur_expr, *last_expr = NULL; in insert_set_in_table() local 1607 last_expr = cur_expr; in insert_set_in_table() 1620 last_expr->next_same_hash = cur_expr; in insert_set_in_table()
|
/openbsd/gnu/usr.bin/gcc/gcc/ |
H A D | gcse.c | 1955 struct expr *cur_expr, *last_expr = NULL; local 1974 last_expr = cur_expr; 1987 last_expr->next_same_hash = cur_expr; 2082 struct expr *cur_expr, *last_expr = NULL; local 2098 last_expr = cur_expr; 2111 last_expr->next_same_hash = cur_expr;
|
/openbsd/gnu/usr.bin/perl/regen/ |
H A D | HeaderParser.pm | 264 $self->{last_expr}= $ret;
|
/openbsd/gnu/usr.bin/gcc/gcc/objc/ |
H A D | objc-act.c | 7041 tree last_expr = expr_last (arg_decl); local 7044 TREE_OPERAND (last_expr, 0) = KEYWORD_ARG_NAME (arglist); 7050 TREE_OPERAND (last_expr, 0) = NULL_TREE;
|