Lines Matching defs:sys
38 #include <sys/cdefs.h>
641 build_op(op_t op, bool sys, type_t *type, tnode_t *ln, tnode_t *rn)
647 ntn->tn_sys = sys;
1080 build_address(bool sys, tnode_t *tn)
1089 return build_op(ADDR, sys, expr_derive_type(tn->tn_type, PTR),
1323 build_struct_access(op_t op, bool sys, tnode_t *ln, tnode_t *rn)
1332 ln = build_address(sys, ln);
1343 tnode_t *ntn = build_op(PLUS, sys, ptr_tp, ln, ctn);
1348 ntn = build_op(nop, sys, ntn->tn_type->t_subt, ntn, NULL);
1414 build_prepost_incdec(op_t op, bool sys, tnode_t *ln)
1421 return build_op(op, sys, ln->tn_type, ln, cn);
1478 build_plus_minus(op_t op, bool sys, tnode_t *ln, tnode_t *rn)
1503 tnode_t *prod = build_op(MULT, sys, rn->tn_type, rn, elsz);
1507 return build_op(op, sys, ln->tn_type, ln, prod);
1516 tnode_t *raw_diff = build_op(op, sys, ptrdiff, ln, rn);
1523 return build_op(DIV, sys, ptrdiff, raw_diff, elsz);
1526 return build_op(op, sys, ln->tn_type, ln, rn);
1530 build_bit_shift(op_t op, bool sys, tnode_t *ln, tnode_t *rn)
1538 return build_op(op, sys, ln->tn_type, ln, rn);
1581 build_colon(bool sys, tnode_t *ln, tnode_t *rn)
1628 return build_op(COLON, sys, tp, ln, rn);
1691 build_assignment(op_t op, bool sys, tnode_t *ln, tnode_t *rn)
1706 rn = build_op(MULT, sys, rn->tn_type, rn, ctn);
1752 return build_op(op, sys, ln->tn_type, ln, rn);
1756 build_real_imag(op_t op, bool sys, tnode_t *ln)
1787 tnode_t *ntn = build_op(op, sys, gettyp(t), ln, NULL);
2036 build_binary(tnode_t *ln, op_t op, bool sys, tnode_t *rn)
2081 ntn = build_struct_access(op, sys, ln, rn);
2087 ntn = build_prepost_incdec(op, sys, ln);
2090 ntn = build_address(sys, ln);
2093 ntn = build_op(INDIR, sys, ln->tn_type->t_subt, ln, NULL);
2097 ntn = build_plus_minus(op, sys, ln, rn);
2101 ntn = build_bit_shift(op, sys, ln, rn);
2104 ntn = build_colon(sys, ln, rn);
2119 ntn = build_assignment(op, sys, ln, rn);
2127 ntn = build_op(op, sys, rn->tn_type, ln, rn);
2131 ntn = build_real_imag(op, sys, ln);
2151 ntn = build_op(op, sys, rettp, ln, rn);
2182 build_unary(op_t op, bool sys, tnode_t *tn)
2184 return build_binary(tn, op, sys, NULL);
2356 build_member_access(tnode_t *ln, op_t op, bool sys, sbuf_t *member)
2367 return build_binary(ln, op, sys, build_name(msym, false));
4419 cast_to_union(tnode_t *otn, bool sys, type_t *ntp)
4432 tnode_t *ntn = build_op(CVT, sys, ntp, otn, NULL);
4466 cast(tnode_t *tn, bool sys, type_t *tp)
4485 return cast_to_union(tn, sys, tp);
4518 tn->tn_sys = sys;
4667 build_function_call(tnode_t *func, bool sys, function_call *call)
4691 ntn->tn_sys = sys;