Home
last modified time | relevance | path

Searched refs:slotbuf (Results 1 – 5 of 5) sorted by relevance

/toolchain/binutils/binutils-2.27/include/
Dxtensa-isa.h340 const xtensa_insnbuf insn, xtensa_insnbuf slotbuf);
344 xtensa_insnbuf insn, const xtensa_insnbuf slotbuf);
363 const xtensa_insnbuf slotbuf);
372 xtensa_insnbuf slotbuf, xtensa_opcode opc);
489 const xtensa_insnbuf slotbuf, uint32 *valp);
494 xtensa_insnbuf slotbuf, uint32 val);
/toolchain/binutils/binutils-2.27/bfd/
Dxtensa-isa.c614 const xtensa_insnbuf insn, xtensa_insnbuf slotbuf) in xtensa_format_get_slot() argument
623 (*intisa->slots[slot_id].get_fn) (insn, slotbuf); in xtensa_format_get_slot()
630 xtensa_insnbuf insn, const xtensa_insnbuf slotbuf) in xtensa_format_set_slot() argument
639 (*intisa->slots[slot_id].set_fn) (insn, slotbuf); in xtensa_format_set_slot()
693 const xtensa_insnbuf slotbuf) in xtensa_opcode_decode() argument
704 opc = (intisa->slots[slot_id].opcode_decode_fn) (slotbuf); in xtensa_opcode_decode()
716 xtensa_insnbuf slotbuf, xtensa_opcode opc) in xtensa_opcode_encode() argument
736 (*encode_fn) (slotbuf); in xtensa_opcode_encode()
951 const xtensa_insnbuf slotbuf, uint32 *valp) in xtensa_operand_get_field() argument
980 *valp = (*get_fn) (slotbuf); in xtensa_operand_get_field()
[all …]
/toolchain/binutils/binutils-2.27/gas/config/
Dtc-xtensa.c2160 static xtensa_insnbuf slotbuf = NULL; in get_invisible_operands() local
2166 if (!slotbuf) in get_invisible_operands()
2167 slotbuf = xtensa_insnbuf_alloc (isa); in get_invisible_operands()
2176 if (xtensa_opcode_encode (isa, fmt, slot, slotbuf, opc) == 0) in get_invisible_operands()
2201 xtensa_operand_set_field (isa, opc, opnd, fmt, slot, slotbuf, val); in get_invisible_operands()
2210 xtensa_operand_get_field (isa, opc, opnd, fmt, slot, slotbuf, &val); in get_invisible_operands()
2608 static xtensa_insnbuf slotbuf = NULL; in get_opcode_from_buf() local
2615 slotbuf = xtensa_insnbuf_alloc (isa); in get_opcode_from_buf()
2626 xtensa_format_get_slot (isa, fmt, slot, insnbuf, slotbuf); in get_opcode_from_buf()
2627 return xtensa_opcode_decode (isa, fmt, slot, slotbuf); in get_opcode_from_buf()
[all …]
Dxtensa-istack.h102 xtensa_insnbuf slotbuf[MAX_SLOTS]; member
/toolchain/binutils/binutils-2.27/gas/
DChangeLog-200531 * config/tc-xtensa.c (tinsn_to_slotbuf): Do not zero slotbuf.