Home
last modified time | relevance | path

Searched refs:dn_left (Results 1 – 4 of 4) sorted by relevance

/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_cg.c254 r1 = dnp->dn_left->dn_reg; in dt_cg_field_get()
339 fp = dst->dn_left->dn_ctfp; in dt_cg_field_set()
340 type = ctf_type_resolve(fp, dst->dn_left->dn_type); in dt_cg_field_set()
597 int lp_is_ptr = dt_node_is_pointer(dnp->dn_left); in dt_cg_arithmetic_op()
607 dt_cg_node(dnp->dn_left, dlp, drp); in dt_cg_arithmetic_op()
609 dt_cg_ptrsize(dnp, dlp, drp, DIF_OP_MUL, dnp->dn_left->dn_reg); in dt_cg_arithmetic_op()
615 instr = DIF_INSTR_FMT(op, dnp->dn_left->dn_reg, in dt_cg_arithmetic_op()
616 dnp->dn_right->dn_reg, dnp->dn_left->dn_reg); in dt_cg_arithmetic_op()
620 dnp->dn_reg = dnp->dn_left->dn_reg; in dt_cg_arithmetic_op()
690 dnp->dn_left->dn_flags &= ~DT_NF_REF; in dt_cg_prearith_op()
[all …]
H A Ddt_parser.c599 if (dnp->dn_left != NULL) { in dt_node_free()
600 dt_node_free(dnp->dn_left); in dt_node_free()
601 dnp->dn_left = NULL; in dt_node_free()
2127 dnp->dn_left = lp; in dt_node_op2()
2144 dnp->dn_left = lp; in dt_node_op3()
3040 (cp->dn_left->dn_flags & DT_NF_WRITABLE))) in dt_cook_op1()
3174 dt_node_t *lp = dnp->dn_left; in dt_assign_common()
3200 dt_node_t *lp = dnp->dn_left; in dt_cook_op2()
3241 lp = dnp->dn_left = dt_node_cook(lp, 0); in dt_cook_op2()
3268 lp = dnp->dn_left = dt_node_cook(lp, DT_IDFLG_REF); in dt_cook_op2()
[all …]
H A Ddt_sugar.c218 dt_sugar_visit_all(dp, dnp->dn_left); in dt_sugar_visit_all()
231 dt_sugar_visit_all(dp, dnp->dn_left); in dt_sugar_visit_all()
H A Ddt_parser.h125 #define dn_left dn_u._nodes._links[0] /* DT_NODE_OP2, OP3 */ macro