Lines Matching refs:n_type

80 		t = p->n_type;  in clocal()
85 t = l->n_type; in clocal()
89 if (p->n_type <= UCHAR || l->n_type <= UCHAR) in clocal()
92 if (p->n_type > BTMASK && l->n_type > BTMASK) in clocal()
98 delp: l->n_type = p->n_type; in clocal()
162 r->n_right->n_type, r->n_right->n_df, in clocal()
168 r->n_op = FUNARG; r->n_left = l; r->n_type = l->n_type; in clocal()
183 if (r->n_type >= FLOAT && r->n_type <= LDOUBLE) in clocal()
186 t = r->n_type; in clocal()
189 l->n_type = t; in clocal()
190 l->n_right->n_type = t; in clocal()
202 if (l->n_type < INT || l->n_type == LONGLONG || in clocal()
203 l->n_type == ULONGLONG) { in clocal()
213 if (p->n_type > BTMASK && l->n_type > BTMASK) in clocal()
217 delp: l->n_type = p->n_type; in clocal()
228 if (p->n_type == l->n_type) { in clocal()
233 if ((p->n_type & TMASK) == 0 && (l->n_type & TMASK) == 0 && in clocal()
234 btdims[p->n_type].suesize == btdims[l->n_type].suesize) { in clocal()
235 if (p->n_type != FLOAT && p->n_type != DOUBLE && in clocal()
236 l->n_type != FLOAT && l->n_type != DOUBLE && in clocal()
237 l->n_type != LDOUBLE && p->n_type != LDOUBLE) { in clocal()
240 l->n_type = p->n_type; in clocal()
247 if (DEUNSIGN(p->n_type) == INT && DEUNSIGN(l->n_type) == INT && in clocal()
249 l->n_type = p->n_type; in clocal()
255 m = p->n_type; in clocal()
299 l->n_type = m; in clocal()
304 if (DEUNSIGN(p->n_type) == SHORT && in clocal()
305 DEUNSIGN(l->n_type) == SHORT) { in clocal()
309 if ((p->n_type == CHAR || p->n_type == UCHAR || in clocal()
310 p->n_type == SHORT || p->n_type == USHORT) && in clocal()
311 (l->n_type == FLOAT || l->n_type == DOUBLE || in clocal()
312 l->n_type == LDOUBLE)) { in clocal()
313 p = block(SCONV, p, NIL, p->n_type, p->n_df, p->n_sue); in clocal()
314 p->n_left->n_type = INT; in clocal()
321 if (o == DIV && p->n_type != CHAR && p->n_type != SHORT) in clocal()
323 if (o == MOD && p->n_type != CHAR && p->n_type != SHORT) in clocal()
328 p = block(SCONV, p, NIL, p->n_type, 0, 0); in clocal()
329 p->n_left->n_type = INT; in clocal()
342 p->n_left = block(REG, NIL, NIL, p->n_type, 0, 0); in clocal()
343 p->n_left->n_rval = RETREG(p->n_type); in clocal()
352 if (p->n_type == LONGLONG || p->n_type == ULONGLONG) { in clocal()
353 if (p->n_right->n_type != INT) in clocal()
358 if (p->n_right->n_type == CHAR || p->n_right->n_type == UCHAR) in clocal()
381 if (p->n_type != CHAR && p->n_type != UCHAR) in myp2tree()
389 r->n_sp->stype = INCREF(p->n_type)+(FTN-PTR); in myp2tree()
391 r->n_type = r->n_sp->stype; in myp2tree()
405 sp->stype = p->n_type; in myp2tree()
486 t->n_type = sp->n_type; in spalloc()
490 sp = block(REG, NIL, NIL, p->n_type, 0, 0); in spalloc()
503 switch (p->n_type) { in ninval()