HomeSort by: relevance | last modified time | path
    Searched defs:operand (Results 1 - 25 of 204) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/usr.sbin/gspa/gspa/
gsp_gram.y 47 operand y_opnd;
70 %type <y_opnd> operand, operands, ea
88 | operand { $$ = $1; }
89 | operands ',' operand { $$ = add_operand($1, $3); }
92 operand : REGISTER { $$ = reg_op($1); } label
gsp_ass.h 90 /* Structure for an operand */
91 typedef struct operand { struct
99 struct operand *next;
100 } *operand; typedef in typeref:struct:operand
102 /* Values for operand type */
103 #define REG 1 /* register operand */
104 #define EXPR 2 /* expression operand */
106 #define STR_OPN 8 /* string operand */
125 operand abs_adr(expr);
126 operand add_operand(operand, operand)
    [all...]
  /src/external/bsd/libpcap/dist/
bpf_image.c 140 const char *operand; local
147 operand = operand_buf;
153 operand = operand_buf;
158 operand = "";
164 operand = operand_buf;
170 operand = operand_buf;
176 operand = operand_buf;
181 operand = "#pktlen";
187 operand = operand_buf;
193 operand = operand_buf
    [all...]
  /src/external/gpl3/binutils/dist/gas/config/
m68k-parse.y 1 /* m68k.y -- bison grammar for m68k operand parsing
23 has a complicated operand syntax, and gas supports two main
117 /* An operand. */
119 operand: label
139 /* A generic operand. */
199 /* An operand in Motorola syntax. This includes MRI syntax as well,
419 /* An operand in MIT syntax. */
789 operand, or if it is trailed by an '&'(see mac load insn).
949 the end of the operand, or with ',', '(', ']', ')'. */
1086 /* Parse an m68k operand. This is the only function which is calle
    [all...]
tc-mt.c 248 as_warn (_("operand references R%ld of previous load."),
253 as_warn (_("operand references R%ld of previous load."),
265 as_warn (_("operand references R%ld of previous instruction."),
271 as_warn (_("operand references R%ld of instruction before previous."),
285 as_warn (_("conditional branch or jal insn's operand references R%ld of previous arithmetic or logic insn."),
290 as_warn (_("conditional branch or jal insn's operand references R%ld of previous arithmetic or logic insn."),
393 /* Return the bfd reloc type for OPERAND of INSN at fixup FIXP.
399 const CGEN_OPERAND * operand,
406 switch (operand->type)
472 const CGEN_OPERAND *operand;
468 const CGEN_OPERAND *operand; local
    [all...]
  /src/external/gpl3/binutils/dist/opcodes/
alpha-dis.c 132 const struct alpha_operand *operand = alpha_operands + *opindex; local
133 if (operand->extract)
134 (*operand->extract) (insn, &invalid);
158 const struct alpha_operand *operand = alpha_operands + *opindex; local
164 if ((operand->flags & AXP_OPERAND_FAKE) != 0)
168 if (operand->extract)
169 value = (*operand->extract) (insn, (int *) NULL);
172 value = (insn >> operand->shift) & ((1 << operand->bits) - 1);
173 if (operand->flags & AXP_OPERAND_SIGNED
    [all...]
m10200-dis.c 35 const struct mn10200_operand *operand; local
84 operand = &mn10200_operands[*opindex_ptr];
86 if ((operand->flags & MN10200_OPERAND_DREG) != 0
87 || (operand->flags & MN10200_OPERAND_AREG) != 0)
88 value = ((insn >> (operand->shift + extra_shift))
89 & ((1 << operand->bits) - 1));
90 else if ((operand->flags & MN10200_OPERAND_EXTENDED) != 0)
96 value = ((insn >> (operand->shift))
97 & ((1L << operand->bits) - 1L));
99 if ((operand->flags & MN10200_OPERAND_SIGNED) != 0
    [all...]
m10300-dis.c 38 const struct mn10300_operand *operand; local
314 operand = &mn10300_operands[*opindex_ptr];
316 /* If this operand is a PLUS (autoincrement), then do not emit
318 if ((operand->flags & MN10300_OPERAND_PLUS) != 0)
321 if ((operand->flags & MN10300_OPERAND_DREG) != 0
322 || (operand->flags & MN10300_OPERAND_AREG) != 0
323 || (operand->flags & MN10300_OPERAND_RREG) != 0
324 || (operand->flags & MN10300_OPERAND_XRREG) != 0)
325 value = ((insn >> (operand->shift + extra_shift))
326 & ((1 << operand->bits) - 1))
    [all...]
xgate-dis.c 301 unsigned int operand = 0; local
311 operand <<= 1; /* Make room for our next bit. */
313 operand |= (currentBit & memory) > 0;
316 return operand;
  /src/external/gpl3/binutils.old/dist/gas/config/
m68k-parse.y 1 /* m68k.y -- bison grammar for m68k operand parsing
23 has a complicated operand syntax, and gas supports two main
117 /* An operand. */
119 operand: label
139 /* A generic operand. */
199 /* An operand in Motorola syntax. This includes MRI syntax as well,
419 /* An operand in MIT syntax. */
789 operand, or if it is trailed by an '&'(see mac load insn).
949 the end of the operand, or with ',', '(', ']', ')'. */
1086 /* Parse an m68k operand. This is the only function which is calle
    [all...]
  /src/external/gpl3/binutils.old/dist/opcodes/
alpha-dis.c 132 const struct alpha_operand *operand = alpha_operands + *opindex; local
133 if (operand->extract)
134 (*operand->extract) (insn, &invalid);
158 const struct alpha_operand *operand = alpha_operands + *opindex; local
164 if ((operand->flags & AXP_OPERAND_FAKE) != 0)
168 if (operand->extract)
169 value = (*operand->extract) (insn, (int *) NULL);
172 value = (insn >> operand->shift) & ((1 << operand->bits) - 1);
173 if (operand->flags & AXP_OPERAND_SIGNED
    [all...]
m10200-dis.c 35 const struct mn10200_operand *operand; local
84 operand = &mn10200_operands[*opindex_ptr];
86 if ((operand->flags & MN10200_OPERAND_DREG) != 0
87 || (operand->flags & MN10200_OPERAND_AREG) != 0)
88 value = ((insn >> (operand->shift + extra_shift))
89 & ((1 << operand->bits) - 1));
90 else if ((operand->flags & MN10200_OPERAND_EXTENDED) != 0)
96 value = ((insn >> (operand->shift))
97 & ((1L << operand->bits) - 1L));
99 if ((operand->flags & MN10200_OPERAND_SIGNED) != 0
    [all...]
m10300-dis.c 38 const struct mn10300_operand *operand; local
314 operand = &mn10300_operands[*opindex_ptr];
316 /* If this operand is a PLUS (autoincrement), then do not emit
318 if ((operand->flags & MN10300_OPERAND_PLUS) != 0)
321 if ((operand->flags & MN10300_OPERAND_DREG) != 0
322 || (operand->flags & MN10300_OPERAND_AREG) != 0
323 || (operand->flags & MN10300_OPERAND_RREG) != 0
324 || (operand->flags & MN10300_OPERAND_XRREG) != 0)
325 value = ((insn >> (operand->shift + extra_shift))
326 & ((1 << operand->bits) - 1))
    [all...]
xgate-dis.c 301 unsigned int operand = 0; local
311 operand <<= 1; /* Make room for our next bit. */
313 operand |= (currentBit & memory) > 0;
316 return operand;
  /src/external/gpl3/gdb/dist/opcodes/
alpha-dis.c 132 const struct alpha_operand *operand = alpha_operands + *opindex; local
133 if (operand->extract)
134 (*operand->extract) (insn, &invalid);
158 const struct alpha_operand *operand = alpha_operands + *opindex; local
164 if ((operand->flags & AXP_OPERAND_FAKE) != 0)
168 if (operand->extract)
169 value = (*operand->extract) (insn, (int *) NULL);
172 value = (insn >> operand->shift) & ((1 << operand->bits) - 1);
173 if (operand->flags & AXP_OPERAND_SIGNED
    [all...]
m10200-dis.c 35 const struct mn10200_operand *operand; local
84 operand = &mn10200_operands[*opindex_ptr];
86 if ((operand->flags & MN10200_OPERAND_DREG) != 0
87 || (operand->flags & MN10200_OPERAND_AREG) != 0)
88 value = ((insn >> (operand->shift + extra_shift))
89 & ((1 << operand->bits) - 1));
90 else if ((operand->flags & MN10200_OPERAND_EXTENDED) != 0)
96 value = ((insn >> (operand->shift))
97 & ((1L << operand->bits) - 1L));
99 if ((operand->flags & MN10200_OPERAND_SIGNED) != 0
    [all...]
m10300-dis.c 38 const struct mn10300_operand *operand; local
314 operand = &mn10300_operands[*opindex_ptr];
316 /* If this operand is a PLUS (autoincrement), then do not emit
318 if ((operand->flags & MN10300_OPERAND_PLUS) != 0)
321 if ((operand->flags & MN10300_OPERAND_DREG) != 0
322 || (operand->flags & MN10300_OPERAND_AREG) != 0
323 || (operand->flags & MN10300_OPERAND_RREG) != 0
324 || (operand->flags & MN10300_OPERAND_XRREG) != 0)
325 value = ((insn >> (operand->shift + extra_shift))
326 & ((1 << operand->bits) - 1))
    [all...]
xgate-dis.c 301 unsigned int operand = 0; local
311 operand <<= 1; /* Make room for our next bit. */
313 operand |= (currentBit & memory) > 0;
316 return operand;
  /src/external/gpl3/gdb.old/dist/opcodes/
alpha-dis.c 132 const struct alpha_operand *operand = alpha_operands + *opindex; local
133 if (operand->extract)
134 (*operand->extract) (insn, &invalid);
158 const struct alpha_operand *operand = alpha_operands + *opindex; local
164 if ((operand->flags & AXP_OPERAND_FAKE) != 0)
168 if (operand->extract)
169 value = (*operand->extract) (insn, (int *) NULL);
172 value = (insn >> operand->shift) & ((1 << operand->bits) - 1);
173 if (operand->flags & AXP_OPERAND_SIGNED
    [all...]
m10200-dis.c 35 const struct mn10200_operand *operand; local
84 operand = &mn10200_operands[*opindex_ptr];
86 if ((operand->flags & MN10200_OPERAND_DREG) != 0
87 || (operand->flags & MN10200_OPERAND_AREG) != 0)
88 value = ((insn >> (operand->shift + extra_shift))
89 & ((1 << operand->bits) - 1));
90 else if ((operand->flags & MN10200_OPERAND_EXTENDED) != 0)
96 value = ((insn >> (operand->shift))
97 & ((1L << operand->bits) - 1L));
99 if ((operand->flags & MN10200_OPERAND_SIGNED) != 0
    [all...]
m10300-dis.c 38 const struct mn10300_operand *operand; local
314 operand = &mn10300_operands[*opindex_ptr];
316 /* If this operand is a PLUS (autoincrement), then do not emit
318 if ((operand->flags & MN10300_OPERAND_PLUS) != 0)
321 if ((operand->flags & MN10300_OPERAND_DREG) != 0
322 || (operand->flags & MN10300_OPERAND_AREG) != 0
323 || (operand->flags & MN10300_OPERAND_RREG) != 0
324 || (operand->flags & MN10300_OPERAND_XRREG) != 0)
325 value = ((insn >> (operand->shift + extra_shift))
326 & ((1 << operand->bits) - 1))
    [all...]
xgate-dis.c 301 unsigned int operand = 0; local
311 operand <<= 1; /* Make room for our next bit. */
313 operand |= (currentBit & memory) > 0;
316 return operand;
  /src/sys/arch/ia64/disasm/
disasm_extract.c 1815 operand(struct asm_inst *i, int op, enum asm_oper_type ot, uint64_t bits, function
1915 operand(i, 0, ASM_OPER_PREG, bits, 0, 6);
1919 operand(i, 1, ASM_OPER_GREG, bits, 6, 7);
1920 operand(i, 2, ASM_OPER_GREG, bits, 13, 7);
1921 operand(i, 3, ASM_OPER_GREG, bits, 20, 7);
1927 operand(i, 1, ASM_OPER_GREG, bits, 6, 7);
1928 operand(i, 2, ASM_OPER_GREG, bits, 13, 7);
1930 operand(i, 4, ASM_OPER_GREG, bits, 20, 7);
1933 operand(i, 1, ASM_OPER_GREG, bits, 6, 7);
1935 operand(i, 3, ASM_OPER_GREG, bits, 20, 7)
    [all...]
  /src/sys/arch/amiga/amiga/
cc.h 122 u_short operand; member in struct:copper_list::j::k
  /src/external/gpl3/binutils/dist/gas/
cond.c 78 /* Leading whitespace is part of operand. */
128 expressionS operand; local
137 /* Leading whitespace is part of operand. */
142 operand.X_add_number = 0;
148 expression_and_evaluate (&operand);
149 if (operand.X_op != O_constant)
155 case O_eq: t = operand.X_add_number == 0; break;
156 case O_ne: t = operand.X_add_number != 0; break;
157 case O_lt: t = operand.X_add_number < 0; break;
158 case O_le: t = operand.X_add_number <= 0; break
337 expressionS operand; local
    [all...]

Completed in 49 milliseconds

1 2 3 4 5 6 7 8 9