Home | History | Annotate | Download | only in compiler

Lines Matching refs:Used

75 	unsigned char * Used;
94 d->Used[index] |= mask;
98 * This function fills in the parameter 'used' with a writemask that
99 * represent which components of each temporary register are used by the
102 * @param used The function does not initialize this parameter.
106 unsigned char * used,
111 d.Used = used;
122 /* Search a list of used temporaries for a free one
124 * @note If this functions finds a free temporary, it will mark it as used
125 * in the used temporary list (param 'used')
126 * @param used list of used temporaries
127 * @param used_length number of items in param 'used'
132 * not being used.
136 unsigned char * used,
142 if ((~used[i] & mask) == mask) {
143 used[i] |= mask;
152 unsigned char used[RC_REGISTER_MAX_INDEX];
155 memset(used, 0, sizeof(used));
157 rc_get_used_temporaries(c, used, RC_REGISTER_MAX_INDEX);
159 free = rc_find_free_temporary_list(c, used, RC_REGISTER_MAX_INDEX,