Lines Matching defs:masks

291     int mask_count;             /* number of masks in the following */
292 struct mask_type *masks;
387 static mask_type *copy_masks(context_type *, mask_type *masks, int mask_count);
1734 idata[0].register_info.masks = NULL;
2465 mask_type *masks = this_idata->register_info.masks;
2471 mask_type *new_masks = masks;
2523 new_masks = add_to_masks(context, masks, mask_count, operand);
2592 new_register_info->masks = new_masks;
3072 register_info_buf.masks = new_register_info->masks;
3087 mask_type *new_masks = new_register_info->masks;
3117 /* pop the masks down to the indicated one. Remember the mask
3132 new_new_register_info.masks = new_masks;
3234 mask_type *new_masks = new_register_info->masks;
3241 this_reginfo->masks = new_masks;
3248 mask_type *masks = this_reginfo->masks;
3291 /* If the target instruction already has a sequence of masks, then
3296 * entries in each of the original masks.
3303 int entry = masks[i].entry;
3307 int *prev = masks[i].modifies;
3329 this_reginfo->masks = copy;
3335 int entry = masks[i].entry;
3338 int *prev1 = masks[i].modifies;
3408 copy_masks(context_type *context, mask_type *masks, int mask_count)
3415 result[i].entry = masks[i].entry;
3417 memcpy(result[i].modifies, masks[i].modifies, bitmask_size * sizeof(int));
3424 add_to_masks(context_type *context, mask_type *masks, int mask_count, int d)
3431 result[i].entry = masks[i].entry;
3433 memcpy(result[i].modifies, masks[i].modifies, bitmask_size * sizeof(int));
4154 mask_type *masks = register_info->masks;
4164 int *modifies = masks[i].modifies;
4165 jio_fprintf(stdout, "<%d: ", masks[i].entry);