Home
last modified time | relevance | path

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

/netbsd/external/bsd/pcc/dist/pcc/f77/fcom/
H A Dputscj.c520 lp = q->b_expr.leftp; in putop()
534 lp = q->b_expr.leftp; in putop()
543 lp = q->b_expr.leftp; in putop()
558 if(q->b_expr.rightp) in putop()
922 p->b_expr.rightp->b_expr.opcode==OPCONCAT ) in putcheq()
923 p3 = putcat(p->b_expr.leftp, p->b_expr.rightp); in putcheq()
931 p->b_expr.leftp, p->b_expr.rightp)); in putcheq()
948 if(ISONE(p->b_expr.leftp->vleng) && ISONE(p->b_expr.rightp->vleng) ) { in putchcmp()
955 p->b_expr.leftp, p->b_expr.rightp); in putchcmp()
984 return( ncat(p->b_expr.leftp) + ncat(p->b_expr.rightp) ); in ncat()
[all …]
H A Dexpr.c270 e->b_expr.leftp = cpexpr(p->b_expr.leftp);
271 e->b_expr.rightp = cpexpr(p->b_expr.rightp);
345 if(p->b_expr.rightp)
421 lp = p->b_expr.leftp = fixtype(p->b_expr.leftp);
430 if(p->b_expr.rightp)
432 rp = p->b_expr.rightp = fixtype(p->b_expr.rightp);
527 lp->b_expr.rightp = fixtype( mkconv(ptype, lp->b_expr.rightp) );
1490 e->b_expr.leftp = lp;
1491 e->b_expr.rightp = rp;
1640 lp = e->b_expr.leftp;
[all …]
H A Ddefines.h256 #define ISPLUSOP(z) (z->tag==TEXPR && z->b_expr.opcode==OPPLUS)
257 #define ISSTAROP(z) (z->tag==TEXPR && z->b_expr.opcode==OPSTAR)
H A Dmisc.c662 switch(p->b_expr.opcode)
665 return( isaddr(p->b_expr.rightp) );
669 return( isaddr(p->b_expr.leftp) );
H A Ddefs.h396 #define b_expr _u._expr macro
H A Dexec.c242 p->vtype = p->b_expr.leftp->vtype = TYINT;