Home | History | Annotate | Download | only in qemu

Lines Matching refs:flags

62   /* One bit flags for the opcode.  These are used to indicate which
65 unsigned long flags;
79 /* Values defined for the flags field of a struct powerpc_opcode. */
208 if ((o->flags & PPC_OPERAND_SIGNED) != 0)
221 /* One bit syntax flags. */
222 unsigned long flags;
231 /* Values defined for the flags field of a struct powerpc_operand. */
334 /* One bit flags for the opcode. These are used to indicate which
336 same as those for the struct powerpc_opcode flags field. */
337 unsigned long flags;
422 The fields are bitm, shift, insert, extract, flags.
1954 /* Smaller names for the flags so each entry in the opcodes table will
2000 NAME OPCODE MASK FLAGS { OPERANDS }
2006 FLAGS are flags indicated what processors support the instruction.
5211 if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
5238 if ((operand->flags & PPC_OPERAND_NEXT) != 0
5239 || ((operand->flags & PPC_OPERAND_OPTIONAL) != 0
5301 || (opcode->flags & dialect) == 0)
5336 if ((operand->flags & PPC_OPERAND_FAKE) != 0)
5341 if ((operand->flags & PPC_OPERAND_OPTIONAL) != 0)
5358 /* Print the operand as directed by the flags. */
5359 if ((operand->flags & PPC_OPERAND_GPR) != 0
5360 || ((operand->flags & PPC_OPERAND_GPR_0) != 0 && value != 0))
5362 else if ((operand->flags & PPC_OPERAND_FPR) != 0)
5364 else if ((operand->flags & PPC_OPERAND_VR) != 0)
5366 else if ((operand->flags & PPC_OPERAND_RELATIVE) != 0)
5368 else if ((operand->flags & PPC_OPERAND_ABSOLUTE) != 0)
5370 else if ((operand->flags & PPC_OPERAND_CR) == 0
5397 if ((operand->flags & PPC_OPERAND_PARENS) == 0)