Home
last modified time | relevance | path

Searched refs:max_arg_words (Results 1 – 2 of 2) sorted by relevance

/openbsd/src/gnu/usr.bin/gcc/gcc/config/pa/
Dpa.c8108 int max_arg_words = (TARGET_64BIT ? 8 : 4); local
8127 if (cum->words + arg_size > max_arg_words)
8134 if (cum->words + alignment >= max_arg_words)
8178 ub = MIN (ub, max_arg_words - cum->words - alignment);
8311 unsigned int max_arg_words = 8; local
8317 if (cum->words + offset + FUNCTION_ARG_SIZE (mode, type) <= max_arg_words)
8320 else if (cum->words + offset >= max_arg_words)
8325 return max_arg_words - cum->words - offset;
/openbsd/src/gnu/gcc/gcc/config/pa/
Dpa.c9061 int max_arg_words = (TARGET_64BIT ? 8 : 4); in function_arg() local
9080 if (cum->words + arg_size > max_arg_words) in function_arg()
9087 if (cum->words + alignment >= max_arg_words) in function_arg()
9133 ub = MIN (ub, max_arg_words - cum->words - alignment); in function_arg()
9258 unsigned int max_arg_words = 8; in pa_arg_partial_bytes() local
9267 if (cum->words + offset + FUNCTION_ARG_SIZE (mode, type) <= max_arg_words) in pa_arg_partial_bytes()
9270 else if (cum->words + offset >= max_arg_words) in pa_arg_partial_bytes()
9275 return (max_arg_words - cum->words - offset) * UNITS_PER_WORD; in pa_arg_partial_bytes()