Home
last modified time | relevance | path

Searched refs:opval (Results 1 – 6 of 6) sorted by relevance

/toolchain/binutils/binutils-2.25/opcodes/
Dia64-opc.c249 extract_op (int op_pointer, int *opval, unsigned int *op) in extract_op() argument
257 opval[0] = extract_op_bits (op_pointer, oplen, 5); in extract_op()
264 opval[1] = extract_op_bits (op_pointer, oplen, 8); in extract_op()
266 opval[1] += op_pointer; in extract_op()
271 opval[1] = extract_op_bits (op_pointer, oplen, 16); in extract_op()
272 if (! (opval[1] & 32768)) in extract_op()
274 opval[1] += op_pointer; in extract_op()
282 opval[2] = extract_op_bits (op_pointer, oplen, 12); in extract_op()
284 opval[2] |= 32768; in extract_op()
290 opval[2] = extract_op_bits (op_pointer, oplen, 16); in extract_op()
[all …]
Darc-opc.c708 const struct arc_operand_value **opval ATTRIBUTE_UNUSED, in extract_st_syntax()
871 const struct arc_operand_value **opval ATTRIBUTE_UNUSED, in extract_ld_syntax()
1079 const struct arc_operand_value **opval, in extract_reg() argument
1146 if (opval != NULL) in extract_reg()
1147 *opval = reg; in extract_reg()
1159 if (reg != NULL && opval != NULL) in extract_reg()
1160 *opval = reg; in extract_reg()
1192 const struct arc_operand_value **opval, in extract_flag() argument
1208 if (opval != NULL && val != NULL) in extract_flag()
1209 *opval = val; in extract_flag()
[all …]
Dtilepro-opc.c10218 int opval = op->extract (bits); in parse_insn_tilepro() local
10224 opval = (opval << shift) >> shift; in parse_insn_tilepro()
10230 opval *= TILEPRO_BUNDLE_SIZE_IN_BYTES; in parse_insn_tilepro()
10231 opval += (int)pc; in parse_insn_tilepro()
10236 d->operand_values[i] = opval; in parse_insn_tilepro()
Dtilegx-opc.c8100 long long opval; in parse_insn_tilegx() local
8111 opval = (raw_opval * TILEGX_BUNDLE_SIZE_IN_BYTES) + pc; in parse_insn_tilegx()
8113 opval = raw_opval; in parse_insn_tilegx()
8117 d->operand_values[i] = opval; in parse_insn_tilegx()
DChangeLog-20051019 * ia64-opc.c (locate_opcode_ent): Initialise opval array.
/toolchain/binutils/binutils-2.25/include/opcode/
Darc.h259 const struct arc_operand_value **opval, int *invalid);