Home
last modified time | relevance | path

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

/toolchain/binutils/binutils-2.25/bfd/
Dxtensa-modules.c9411 Opcode_excw_Slot_inst_encode (xtensa_insnbuf slotbuf) in Opcode_excw_Slot_inst_encode() argument
9413 slotbuf[0] = 0x2080; in Opcode_excw_Slot_inst_encode()
9417 Opcode_rfe_Slot_inst_encode (xtensa_insnbuf slotbuf) in Opcode_rfe_Slot_inst_encode() argument
9419 slotbuf[0] = 0x3000; in Opcode_rfe_Slot_inst_encode()
9423 Opcode_rfde_Slot_inst_encode (xtensa_insnbuf slotbuf) in Opcode_rfde_Slot_inst_encode() argument
9425 slotbuf[0] = 0x3200; in Opcode_rfde_Slot_inst_encode()
9429 Opcode_syscall_Slot_inst_encode (xtensa_insnbuf slotbuf) in Opcode_syscall_Slot_inst_encode() argument
9431 slotbuf[0] = 0x5000; in Opcode_syscall_Slot_inst_encode()
9435 Opcode_simcall_Slot_inst_encode (xtensa_insnbuf slotbuf) in Opcode_simcall_Slot_inst_encode() argument
9437 slotbuf[0] = 0x5100; in Opcode_simcall_Slot_inst_encode()
[all …]
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 …]
Delf32-xtensa.c4179 static xtensa_insnbuf slotbuf = NULL; in insn_decode_opcode() local
4187 slotbuf = xtensa_insnbuf_alloc (isa); in insn_decode_opcode()
4199 xtensa_format_get_slot (isa, fmt, slot, insnbuf, slotbuf); in insn_decode_opcode()
4200 return xtensa_opcode_decode (isa, fmt, slot, slotbuf); in insn_decode_opcode()
4362 can_narrow_instruction (xtensa_insnbuf slotbuf, in can_narrow_instruction() argument
4422 fmt, 0, slotbuf, &rawval0) != 0 in can_narrow_instruction()
4424 fmt, 0, slotbuf, &rawval1) != 0 in can_narrow_instruction()
4426 fmt, 0, slotbuf, &rawval2) != 0 in can_narrow_instruction()
4435 slotbuf, &value) in can_narrow_instruction()
4476 static xtensa_insnbuf slotbuf = NULL; in narrow_instruction() local
[all …]
/toolchain/binutils/binutils-2.25/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.25/gas/config/
Dtc-xtensa.c2102 static xtensa_insnbuf slotbuf = NULL; in get_invisible_operands() local
2108 if (!slotbuf) in get_invisible_operands()
2109 slotbuf = xtensa_insnbuf_alloc (isa); in get_invisible_operands()
2118 if (xtensa_opcode_encode (isa, fmt, slot, slotbuf, opc) == 0) in get_invisible_operands()
2143 xtensa_operand_set_field (isa, opc, opnd, fmt, slot, slotbuf, val); in get_invisible_operands()
2152 xtensa_operand_get_field (isa, opc, opnd, fmt, slot, slotbuf, &val); in get_invisible_operands()
2557 static xtensa_insnbuf slotbuf = NULL; in get_opcode_from_buf() local
2564 slotbuf = xtensa_insnbuf_alloc (isa); in get_opcode_from_buf()
2575 xtensa_format_get_slot (isa, fmt, slot, insnbuf, slotbuf); in get_opcode_from_buf()
2576 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.25/gas/
DChangeLog-200531 * config/tc-xtensa.c (tinsn_to_slotbuf): Do not zero slotbuf.