Lines Matching defs:sys

38 #include <sys/cdefs.h>
598 build_op(op_t op, bool sys, type_t *type, tnode_t *ln, tnode_t *rn)
604 ntn->tn_sys = sys;
1037 build_address(bool sys, tnode_t *tn, bool force)
1055 return build_op(ADDR, sys, expr_derive_type(tn->tn_type, PTR),
1289 build_struct_access(op_t op, bool sys, tnode_t *ln, tnode_t *rn)
1298 ln = build_address(sys, ln, true);
1309 tnode_t *ntn = build_op(PLUS, sys, ptr_tp, ln, ctn);
1314 ntn = build_op(nop, sys, ntn->tn_type->t_subt, ntn, NULL);
1380 build_prepost_incdec(op_t op, bool sys, tnode_t *ln)
1387 return build_op(op, sys, ln->tn_type, ln, cn);
1436 build_plus_minus(op_t op, bool sys, tnode_t *ln, tnode_t *rn)
1461 tnode_t *prod = build_op(MULT, sys, rn->tn_type, rn, elsz);
1465 return build_op(op, sys, ln->tn_type, ln, prod);
1474 tnode_t *raw_diff = build_op(op, sys, ptrdiff, ln, rn);
1481 return build_op(DIV, sys, ptrdiff, raw_diff, elsz);
1484 return build_op(op, sys, ln->tn_type, ln, rn);
1488 build_bit_shift(op_t op, bool sys, tnode_t *ln, tnode_t *rn)
1496 return build_op(op, sys, ln->tn_type, ln, rn);
1539 build_colon(bool sys, tnode_t *ln, tnode_t *rn)
1586 return build_op(COLON, sys, tp, ln, rn);
1649 build_assignment(op_t op, bool sys, tnode_t *ln, tnode_t *rn)
1664 rn = build_op(MULT, sys, rn->tn_type, rn, ctn);
1710 return build_op(op, sys, ln->tn_type, ln, rn);
1714 build_real_imag(op_t op, bool sys, tnode_t *ln)
1745 tnode_t *ntn = build_op(op, sys, gettyp(t), ln, NULL);
1997 build_binary(tnode_t *ln, op_t op, bool sys, tnode_t *rn)
2042 ntn = build_struct_access(op, sys, ln, rn);
2051 ntn = build_op(op, sys, gettyp(Tflag ? BOOL : INT), ln, NULL);
2057 ntn = build_prepost_incdec(op, sys, ln);
2060 ntn = build_address(sys, ln, false);
2063 ntn = build_op(INDIR, sys, ln->tn_type->t_subt, ln, NULL);
2067 ntn = build_plus_minus(op, sys, ln, rn);
2071 ntn = build_bit_shift(op, sys, ln, rn);
2074 ntn = build_colon(sys, ln, rn);
2089 ntn = build_assignment(op, sys, ln, rn);
2097 ntn = build_op(op, sys, rn->tn_type, ln, rn);
2101 ntn = build_real_imag(op, sys, ln);
2107 ntn = build_op(op, sys, rettp, ln, rn);
2147 build_unary(op_t op, bool sys, tnode_t *tn)
2149 return build_binary(tn, op, sys, NULL);
2321 build_member_access(tnode_t *ln, op_t op, bool sys, sbuf_t *member)
2332 return build_binary(ln, op, sys, build_name(msym, false));
4369 cast_to_union(tnode_t *otn, bool sys, type_t *ntp)
4382 tnode_t *ntn = build_op(CVT, sys, ntp, otn, NULL);
4416 cast(tnode_t *tn, bool sys, type_t *tp)
4435 return cast_to_union(tn, sys, tp);
4468 tn->tn_sys = sys;
4585 build_function_call(tnode_t *func, bool sys, function_call *call)
4609 ntn->tn_sys = sys;