Home
last modified time | relevance | path

Searched refs:aexpr (Results 1 – 6 of 6) sorted by relevance

/dragonfly/contrib/gdb-7/gdb/
HDtracepoint.c678 report_agent_reqs_errors (struct agent_expr *aexpr) in report_agent_reqs_errors() argument
682 if (aexpr->flaw != agent_flaw_none) in report_agent_reqs_errors()
687 if (aexpr->min_height < 0) in report_agent_reqs_errors()
697 if (aexpr->max_height > 20) in report_agent_reqs_errors()
710 struct agent_expr *aexpr; in validate_actionline() local
786 aexpr = gen_trace_for_expr (loc->address, exp); in validate_actionline()
787 make_cleanup_free_agent_expr (aexpr); in validate_actionline()
789 if (aexpr->len > MAX_AGENT_EXPR_LEN) in validate_actionline()
792 ax_reqs (aexpr); in validate_actionline()
794 report_agent_reqs_errors (aexpr); in validate_actionline()
[all …]
HDstap-probe.c88 struct expression *aexpr; member
981 arg.aexpr = expr; in stap_parse_probe_arguments()
1065 return evaluate_subexp_standard (arg->atype, arg->aexpr, &pos, EVAL_NORMAL); in stap_evaluate_probe_argument()
1083 pc = arg->aexpr->elts; in stap_compile_to_ax()
1084 gen_expr (arg->aexpr, &pc, expr, value); in stap_compile_to_ax()
1107 xfree (arg->aexpr); in stap_probe_destroy()
HDprobe.h85 void (*compile_to_ax) (struct probe *probe, struct agent_expr *aexpr,
HDremote.c8005 struct agent_expr *aexpr = NULL; in remote_add_target_side_condition() local
8019 VEC_iterate (agent_expr_p, bp_tgt->conditions, ix, aexpr); in remote_add_target_side_condition()
8022 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len); in remote_add_target_side_condition()
8024 for (i = 0; i < aexpr->len; ++i) in remote_add_target_side_condition()
8025 buf = pack_hex_byte (buf, aexpr->buf[i]); in remote_add_target_side_condition()
8037 struct agent_expr *aexpr = NULL; in remote_add_target_side_commands() local
8051 VEC_iterate (agent_expr_p, bp_tgt->tcommands, ix, aexpr); in remote_add_target_side_commands()
8054 sprintf (buf, "X%x,", aexpr->len); in remote_add_target_side_commands()
8056 for (i = 0; i < aexpr->len; ++i) in remote_add_target_side_commands()
8057 buf = pack_hex_byte (buf, aexpr->buf[i]); in remote_add_target_side_commands()
[all …]
HDbreakpoint.c2050 struct agent_expr *aexpr = NULL; in parse_cond_to_aexpr() local
2061 aexpr = gen_eval_for_expr (scope, cond); in parse_cond_to_aexpr()
2073 return aexpr; in parse_cond_to_aexpr()
2110 struct agent_expr *aexpr; in build_target_condition_list() local
2116 aexpr = parse_cond_to_aexpr (bl->address, loc->cond); in build_target_condition_list()
2117 loc->cond_bytecode = aexpr; in build_target_condition_list()
2122 if (aexpr) in build_target_condition_list()
2188 struct agent_expr *aexpr = NULL; in parse_cmd_to_aexpr() local
2251 aexpr = gen_printf (scope, gdbarch, 0, 0, in parse_cmd_to_aexpr()
2267 return aexpr; in parse_cmd_to_aexpr()
[all …]
/dragonfly/bin/test/
HDtest.c176 static int aexpr(enum token);
249 res = aexpr(n); in oexpr()
259 aexpr(enum token n) in aexpr() function
265 return aexpr(t_lex(nargc > 0 ? (--nargc, *++t_wp) : NULL)) && in aexpr()