Home | History | Annotate | Download | only in opcodes

Lines Matching refs:word_length

85 	  int word_length,
91 x = cgen_get_insn_value (cd, bufp, word_length);
98 shift = (word_length - (start + length));
101 cgen_put_insn_value (cd, bufp, word_length, (bfd_vma) x);
110 WORD_LENGTH is the length of the word in bits in which the value resides.
129 unsigned int word_length,
141 if (word_length > 8 * sizeof (CGEN_INSN_INT))
145 word_length may be too big. */
149 && word_length > total_length)
150 word_length = total_length;
225 insert_1 (cd, value, start, length, word_length, bufp);
377 int word_length,
384 x = cgen_get_insn_value (cd, bufp, word_length);
389 shift = (word_length - (start + length));
403 WORD_LENGTH is the length of the word in bits in which the value resides.
427 unsigned int word_length,
446 if (word_length > 8 * sizeof (CGEN_INSN_INT))
450 word_length may be too big. */
453 if (word_offset + word_length > total_length)
454 word_length = total_length - word_offset;
459 if (CGEN_INT_INSN_P || (word_offset == 0 && word_length == total_length))
473 if (word_length > 8 * sizeof (CGEN_INSN_INT))
476 if (fill_cache (cd, ex_info, word_offset / 8, word_length / 8, pc) == 0)
479 value = extract_1 (cd, ex_info, start, length, word_length, bufp, pc);