Home
last modified time | relevance | path

Searched defs:opcode (Results 1 – 25 of 89) sorted by relevance

1234

/openbmc/qemu/linux-user/arm/nwfpe/
H A Dfpopcode.h201 #define getCoprocessorNumber(opcode) ((opcode & MASK_COPROCESSOR) >> 8) argument
204 #define getOffset(opcode) (opcode & MASK_OFFSET) argument
207 #define TEST_OPCODE(opcode,mask) (((opcode) & (mask)) == (mask)) argument
209 #define LOAD_OP(opcode) TEST_OPCODE((opcode),MASK_CPDT | BIT_LOAD) argument
210 #define STORE_OP(opcode) ((opcode & (MASK_CPDT | BIT_LOAD)) == MASK_CPDT) argument
212 #define LDF_OP(opcode) (LOAD_OP(opcode) && (getCoprocessorNumber(opcode) == 1)) argument
213 #define LFM_OP(opcode) (LOAD_OP(opcode) && (getCoprocessorNumber(opcode) == 2)) argument
214 #define STF_OP(opcode) (STORE_OP(opcode) && (getCoprocessorNumber(opcode) == 1)) argument
215 #define SFM_OP(opcode) (STORE_OP(opcode) && (getCoprocessorNumber(opcode) == 2)) argument
217 #define PREINDEXED(opcode) ((opcode & BIT_PREINDEX) != 0) argument
[all …]
H A Dfpa11_cprt.c36 unsigned int EmulateCPRT(const unsigned int opcode) in EmulateCPRT()
72 unsigned int PerformFLT(const unsigned int opcode) in PerformFLT()
111 unsigned int PerformFIX(const unsigned int opcode) in PerformFIX()
180 static unsigned int PerformComparison(const unsigned int opcode) in PerformComparison()
H A Dfpa11.c79 void SetRoundingMode(const unsigned int opcode) in SetRoundingMode()
121 void SetRoundingPrecision(const unsigned int opcode) in SetRoundingPrecision()
159 unsigned int EmulateAll(unsigned int opcode, FPA11* qfpa, CPUARMState* qregs) in EmulateAll()
H A Dfpopcode.c62 unsigned int getRegisterCount(const unsigned int opcode) in getRegisterCount()
78 unsigned int getDestinationSize(const unsigned int opcode) in getDestinationSize()
H A Dfpa11_cpdt.c215 static unsigned int PerformLDF(const unsigned int opcode) in PerformLDF()
250 static unsigned int PerformSTF(const unsigned int opcode) in PerformSTF()
286 static unsigned int PerformLFM(const unsigned int opcode) in PerformLFM()
319 static unsigned int PerformSFM(const unsigned int opcode) in PerformSFM()
353 unsigned int EmulateCPDT(const unsigned int opcode) in EmulateCPDT()
H A Dfpa11_cpdo.c25 unsigned int EmulateCPDO(const unsigned int opcode) in EmulateCPDO()
H A Dsingle_cpdo.c38 unsigned int SingleCPDO(const unsigned int opcode) in SingleCPDO()
H A Dextended_cpdo.c38 unsigned int ExtendedCPDO(const unsigned int opcode) in ExtendedCPDO()
H A Ddouble_cpdo.c38 unsigned int DoubleCPDO(const unsigned int opcode) in DoubleCPDO()
/openbmc/u-boot/post/lib_powerpc/
H A Dcpu_asm.h112 #define ASM_0(opcode) (opcode) argument
113 #define ASM_1(opcode, rd) ((opcode) + \ argument
115 #define ASM_1C(opcode, cr) ((opcode) + \ argument
117 #define ASM_11(opcode, rd, rs) ((opcode) + \ argument
120 #define ASM_11C(opcode, cd, cs) ((opcode) + \ argument
123 #define ASM_11X(opcode, rd, rs) ((opcode) + \ argument
126 #define ASM_11I(opcode, rd, rs, simm) ((opcode) + \ argument
130 #define ASM_11IF(opcode, rd, rs, simm) ((opcode) + \ argument
134 #define ASM_11S(opcode, rd, rs, sh) ((opcode) + \ argument
138 #define ASM_11IX(opcode, rd, rs, imm) ((opcode) + \ argument
[all …]
/openbmc/qemu/target/hexagon/mmvec/
H A Ddecode_ext_mmvec.c132 uint16_t opcode = pkt->insn[i].opcode; in decode_shuffle_for_execution_vops() local
147 uint16_t opcode = pkt->insn[i].opcode; in decode_shuffle_for_execution_vops() local
176 int opcode = insn->opcode; in check_for_vhist() local
188 SlotMask mmvec_ext_decode_find_iclass_slots(int opcode) in mmvec_ext_decode_find_iclass_slots()
/openbmc/qemu/disas/
H A Dsparc.c356 #define COMMUTEOP(opcode, op3, arch_mask) \ argument
1246 #define br(opcode, mask, lose, flags) \ argument
1250 #define brx(opcode, mask, lose, flags) /* v9 */ \ argument
1265 #define tr(opcode, mask, lose, flags) \ argument
1325 #define brr(opcode, mask, lose, flags) /* v9 */ \ argument
1346 #define movr(opcode, mask, flags) /* v9 */ \ argument
1350 #define fmrrs(opcode, mask, lose, flags) /* v9 */ \ argument
1352 #define fmrrd(opcode, mask, lose, flags) /* v9 */ \ argument
1354 #define fmrrq(opcode, mask, lose, flags) /* v9 */ \ argument
1404 #define movicc(opcode, cond, flags) /* v9 */ \ argument
[all …]
/openbmc/qemu/target/openrisc/
H A Ddisas.c53 #define INSN(opcode, format, ...) \ argument
148 #define FP_INSN(opcode, suffix, format, ...) \ argument
/openbmc/u-boot/include/bedbug/
H A Dppc.h305 struct opcode { struct
306 unsigned long opcode; /* The complete opcode as produced by member
310 before comparing with the opcode argument
315 this opcode. The values of the argument
322 char * name; /* The symbolic name of this opcode */ argument
327 some operands for this opcode */ argument
/openbmc/u-boot/include/dt-bindings/sound/
H A Dazalia.h25 #define AZALIA_SET_BYTE(codec, nid, opcode, val, byte) \ argument
32 #define AZALIA_WORD(codec, nid, opcode, val) \ argument
/openbmc/qemu/hw/ssi/
H A Dpnv_spi.c243 static void calculate_N1(PnvSpi *s, uint8_t opcode) in calculate_N1()
323 static bool operation_shiftn1(PnvSpi *s, uint8_t opcode, bool send_n1_alone) in operation_shiftn1()
478 static void calculate_N2(PnvSpi *s, uint8_t opcode) in calculate_N2()
554 static bool operation_shiftn2(PnvSpi *s, uint8_t opcode) in operation_shiftn2()
654 uint8_t opcode = 0; in operation_sequencer() local
/openbmc/qemu/target/ppc/
H A Dinternal.h129 static inline uint32_t SPR(uint32_t opcode) in SPR()
186 static inline target_ulong LI(uint32_t opcode) in LI()
191 static inline uint32_t BD(uint32_t opcode) in BD()
/openbmc/qemu/hw/intc/
H A Dxics_spapr.c62 target_ulong opcode, target_ulong *args) in h_cppr()
73 target_ulong opcode, target_ulong *args) in h_ipi()
89 target_ulong opcode, target_ulong *args) in h_xirr()
100 target_ulong opcode, target_ulong *args) in h_xirr_x()
112 target_ulong opcode, target_ulong *args) in h_eoi()
123 target_ulong opcode, target_ulong *args) in h_ipoll()
H A Dspapr_xive.c935 target_ulong opcode, in h_int_get_source_info()
1047 target_ulong opcode, in h_int_set_source_config()
1156 target_ulong opcode, in h_int_get_source_config()
1231 target_ulong opcode, in h_int_get_queue_info()
1319 target_ulong opcode, in h_int_set_queue_config()
1490 target_ulong opcode, in h_int_get_queue_config()
1593 target_ulong opcode, in h_int_set_os_reporting_line()
1633 target_ulong opcode, in h_int_get_os_reporting_line()
1680 target_ulong opcode, in h_int_esb()
1756 target_ulong opcode, in h_int_sync()
[all …]
/openbmc/qemu/hw/scsi/
H A Dsrp.h124 uint8_t opcode; member
142 uint8_t opcode; member
154 uint8_t opcode; member
164 uint8_t opcode; member
170 uint8_t opcode; member
182 uint8_t opcode; member
200 uint8_t opcode; member
232 uint8_t opcode; member
/openbmc/qemu/hw/ppc/
H A Dspapr_nested.c92 target_ulong opcode, in h_set_ptbl()
112 target_ulong opcode, in h_tlb_invalidate()
126 target_ulong opcode, in h_copy_tofrom_guest()
326 target_ulong opcode, in h_enter_nested()
1211 target_ulong opcode, in h_guest_get_capabilities()
1244 target_ulong opcode, in h_guest_set_capabilities()
1315 target_ulong opcode, in h_guest_create()
1376 target_ulong opcode, in h_guest_delete()
1407 target_ulong opcode, in h_guest_create_vcpu()
1590 target_ulong opcode, in h_guest_set_state()
[all …]
H A Dspapr_nvdimm.c242 target_ulong opcode, in h_scm_read_metadata()
297 target_ulong opcode, in h_scm_write_metadata()
359 target_ulong opcode, target_ulong *args) in h_scm_bind_mem()
656 target_ulong opcode, target_ulong *args) in h_scm_flush()
714 target_ulong opcode, target_ulong *args) in h_scm_unbind_mem()
772 target_ulong opcode, target_ulong *args) in h_scm_unbind_all()
822 target_ulong opcode, target_ulong *args) in h_scm_health()
/openbmc/qemu/target/hexagon/
H A Dattribs.h32 #define GET_ATTRIB(opcode, attrib) \ argument
H A Dgen_dectree_import.c84 static const char *get_opcode_enc(int opcode) in get_opcode_enc()
93 static const char *get_opcode_enc_class(int opcode) in get_opcode_enc_class()
/openbmc/qemu/target/avr/
H A Ddisas.c103 #define INSN(opcode, format, ...) \ argument
110 #define INSN_MNEMONIC(opcode, mnemonic, format, ...) \ argument

1234