Lines Matching defs:value
23 /* Extract the operand value from the PowerPC or POWER instruction. */
29 long value;
31 /* Extract the value from the instruction. */
33 value = (*operand->extract) (insn, dialect, &invalid);
37 value = (insn >> operand->shift) & operand->bitm;
39 value = (insn << -operand->shift) & operand->bitm;
49 value = (value ^ top) - top;
53 return value;
184 long value;
194 /* If all of the optional operands have the value zero,
205 value = operand_value_powerpc (operand, insn, dialect);
215 || ((operand->flags & PPC_OPERAND_GPR_0) != 0 && value != 0))
216 printf("r%ld", value);
218 printf("f%ld", value);
220 printf("v%ld", value);
222 printf("vs%ld", value);
224 print_address(memaddr + value);
226 print_address(value & 0xffffffff);
228 printf("fsl%ld", value);
230 printf("fcr%ld", value);
232 printf("%ld", value);
236 printf("cr%ld", value);
245 cr = value >> 2;
248 cc = value & 3;
252 printf("%d", (int) value);