Searched refs:opcode (Results 1 - 25 of 353) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/nwfpe/
H A Dfpopcode.h69 abcd arithmetic opcode (TABLES 3 & 4)
191 #define MASK_CPDT 0x0c000000 /* data processing opcode */
203 /* Get the coprocessor number from the opcode. */
204 #define getCoprocessorNumber(opcode) ((opcode & MASK_COPROCESSOR) >> 8)
206 /* Get the offset from the opcode. */
207 #define getOffset(opcode) (opcode & MASK_OFFSET)
210 #define TEST_OPCODE(opcode,mask) (((opcode)
391 getTransferLength(const unsigned int opcode) argument
412 getRegisterCount(const unsigned int opcode) argument
436 getRoundingPrecision(const unsigned int opcode) argument
457 getDestinationSize(const unsigned int opcode) argument
[all...]
H A Dfpa11_cpdo.c26 unsigned int SingleCPDO(struct roundingData *roundData, const unsigned int opcode, FPREG * rFd);
27 unsigned int DoubleCPDO(struct roundingData *roundData, const unsigned int opcode, FPREG * rFd);
28 unsigned int ExtendedCPDO(struct roundingData *roundData, const unsigned int opcode, FPREG * rFd);
30 unsigned int EmulateCPDO(const unsigned int opcode) argument
39 nDest = getDestinationSize(opcode);
43 roundData.mode = SetRoundingMode(opcode);
44 roundData.precision = SetRoundingPrecision(opcode);
52 if (MONADIC_INSTRUCTION(opcode))
55 nType = fpa11->fType[getFn(opcode)];
57 if (!CONSTANT_FM(opcode)) {
[all...]
H A Dfpa11.c48 int8 SetRoundingMode(const unsigned int opcode) argument
50 switch (opcode & MASK_ROUNDING_MODE) {
66 int8 SetRoundingPrecision(const unsigned int opcode) argument
69 switch (opcode & MASK_ROUNDING_PRECISION) {
97 /* Emulate the instruction in the opcode. */
98 unsigned int EmulateAll(unsigned int opcode) argument
103 printk("NWFPE: emulating opcode %08x\n", opcode);
105 code = opcode & 0x00000f00;
108 code = opcode
[all...]
H A Dfpa11_cpdt.c224 unsigned int PerformLDF(const unsigned int opcode) argument
227 unsigned int nRc = 1, write_back = WRITE_BACK(opcode);
229 pBase = (unsigned int __user *) readRegister(getRn(opcode));
230 if (REG_PC == getRn(opcode)) {
236 if (BIT_UP_SET(opcode))
237 pFinal += getOffset(opcode);
239 pFinal -= getOffset(opcode);
241 if (PREINDEXED(opcode))
246 switch (opcode & MASK_TRANSFER_LENGTH) {
248 loadSingle(getFd(opcode), pAddres
267 PerformSTF(const unsigned int opcode) argument
318 PerformLFM(const unsigned int opcode) argument
354 PerformSFM(const unsigned int opcode) argument
390 EmulateCPDT(const unsigned int opcode) argument
[all...]
H A Dfpa11.h97 extern unsigned int EmulateAll(unsigned int opcode);
99 extern unsigned int EmulateCPDT(const unsigned int opcode);
100 extern unsigned int EmulateCPDO(const unsigned int opcode);
101 extern unsigned int EmulateCPRT(const unsigned int opcode);
104 extern unsigned int PerformLDF(const unsigned int opcode);
105 extern unsigned int PerformSTF(const unsigned int opcode);
106 extern unsigned int PerformLFM(const unsigned int opcode);
107 extern unsigned int PerformSFM(const unsigned int opcode);
112 const unsigned int opcode, FPREG * rFd);
115 const unsigned int opcode, FPRE
[all...]
H A Dfpa11_cprt.c34 unsigned int PerformFLT(const unsigned int opcode);
35 unsigned int PerformFIX(const unsigned int opcode);
37 static unsigned int PerformComparison(const unsigned int opcode);
39 unsigned int EmulateCPRT(const unsigned int opcode) argument
42 if (opcode & 0x800000) {
47 return PerformComparison(opcode);
51 switch ((opcode & 0x700000) >> 20) {
53 return PerformFLT(opcode);
56 return PerformFIX(opcode);
60 writeFPSR(readRegister(getRd(opcode)));
73 PerformFLT(const unsigned int opcode) argument
116 PerformFIX(const unsigned int opcode) argument
158 PerformComparison(const unsigned int opcode) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm26/nwfpe/
H A Dfpa11_cprt.c35 void SetRoundingMode(const unsigned int opcode);
37 unsigned int PerformFLT(const unsigned int opcode);
38 unsigned int PerformFIX(const unsigned int opcode);
41 PerformComparison(const unsigned int opcode);
43 unsigned int EmulateCPRT(const unsigned int opcode) argument
47 //printk("EmulateCPRT(0x%08x)\n",opcode);
49 if (opcode & 0x800000)
55 return PerformComparison(opcode);
59 switch ((opcode & 0x700000) >> 20)
61 case FLT_CODE >> 20: nRc = PerformFLT(opcode); brea
79 PerformFLT(const unsigned int opcode) argument
118 PerformFIX(const unsigned int opcode) argument
185 PerformComparison(const unsigned int opcode) argument
[all...]
H A Dfpopcode.h67 abcd arithmetic opcode (TABLES 3 & 4)
189 #define MASK_CPDT 0x0c000000 /* data processing opcode */
201 /* Get the coprocessor number from the opcode. */
202 #define getCoprocessorNumber(opcode) ((opcode & MASK_COPROCESSOR) >> 8)
204 /* Get the offset from the opcode. */
205 #define getOffset(opcode) (opcode & MASK_OFFSET)
208 #define TEST_OPCODE(opcode,mask) (((opcode)
[all...]
H A Dfpa11_cpdt.c205 unsigned int PerformLDF(const unsigned int opcode) argument
208 write_back = WRITE_BACK(opcode);
210 //printk("PerformLDF(0x%08x), Fd = 0x%08x\n",opcode,getFd(opcode));
212 pBase = (unsigned int*)readRegister(getRn(opcode));
213 if (REG_PC == getRn(opcode))
220 if (BIT_UP_SET(opcode))
221 pFinal += getOffset(opcode);
223 pFinal -= getOffset(opcode);
225 if (PREINDEXED(opcode)) pAddres
239 PerformSTF(const unsigned int opcode) argument
274 PerformLFM(const unsigned int opcode) argument
306 PerformSFM(const unsigned int opcode) argument
338 EmulateCPDT(const unsigned int opcode) argument
[all...]
H A Dfpa11_cpdo.c25 unsigned int SingleCPDO(const unsigned int opcode);
26 unsigned int DoubleCPDO(const unsigned int opcode);
27 unsigned int ExtendedCPDO(const unsigned int opcode);
29 unsigned int EmulateCPDO(const unsigned int opcode) argument
34 //printk("EmulateCPDO(0x%08x)\n",opcode);
38 nDest = getDestinationSize(opcode);
41 SetRoundingMode(opcode);
48 if (MONADIC_INSTRUCTION(opcode))
51 nType = fpa11->fType[getFn(opcode)];
53 if (!CONSTANT_FM(opcode))
[all...]
H A Dfpopcode.c62 unsigned int getTransferLength(const unsigned int opcode) argument
66 switch (opcode & MASK_TRANSFER_LENGTH)
77 unsigned int getRegisterCount(const unsigned int opcode) argument
81 switch (opcode & MASK_REGISTER_COUNT)
93 unsigned int getRoundingPrecision(const unsigned int opcode) argument
97 switch (opcode & MASK_ROUNDING_PRECISION)
108 unsigned int getDestinationSize(const unsigned int opcode) argument
112 switch (opcode & MASK_DESTINATION_SIZE)
145 unsigned int checkCondition(const unsigned int opcode, const unsigned int ccodes) argument
147 return (aCC[opcode>>2
[all...]
H A Dfpa11.c57 void SetRoundingMode(const unsigned int opcode) argument
63 switch (opcode & MASK_ROUNDING_MODE)
96 void SetRoundingPrecision(const unsigned int opcode) argument
102 switch (opcode & MASK_ROUNDING_PRECISION)
141 /* Emulate the instruction in the opcode. */
142 unsigned int EmulateAll(unsigned int opcode) argument
146 code = opcode & 0x00000f00;
150 code = opcode & 0x0e000000;
153 if (opcode & 0x00000010)
158 nRc = EmulateCPRT(opcode);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/xmon/
H A Dppc-dis.c33 const struct powerpc_opcode *opcode; local
50 /* Get the major opcode of the instruction. */
53 /* Find the first match in the opcode table. We could speed this up
54 a bit by doing a binary search on the major opcode. */
57 for (opcode = powerpc_opcodes; opcode < opcode_end; opcode++)
66 table_op = PPC_OP (opcode->opcode);
72 if ((insn & opcode
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/xmon/
H A Dppc-dis.c46 const struct powerpc_opcode *opcode; local
50 /* Get the major opcode of the instruction. */
53 /* Find the first match in the opcode table. We could speed this up
54 a bit by doing a binary search on the major opcode. */
56 for (opcode = powerpc_opcodes; opcode < opcode_end; opcode++)
65 table_op = PPC_OP (opcode->opcode);
71 if ((insn & opcode
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/asm/
H A DMethodVisitor.java105 * @param opcode the opcode of the instruction to be visited. This opcode is
120 void visitInsn(int opcode); argument
125 * @param opcode the opcode of the instruction to be visited. This opcode is
128 * When opcode is BIPUSH, operand value should be between
130 * When opcode is SIPUSH, operand value should be between
132 * When opcode i
138 visitIntInsn(int opcode, int operand) argument
150 visitVarInsn(int opcode, int var) argument
162 visitTypeInsn(int opcode, String desc) argument
175 visitFieldInsn(int opcode, String owner, String name, String desc) argument
189 visitMethodInsn(int opcode, String owner, String name, String desc) argument
203 visitJumpInsn(int opcode, Label label) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/aic7xxx/aicasm/
H A Daicasm_insformat.h54 opcode : 4, member in struct:ins_format1
58 opcode : 4,
73 opcode : 4, member in struct:ins_format2
77 opcode : 4,
91 opcode : 4, member in struct:ins_format3
95 opcode : 4,
109 opcode : 4, member in struct:ins_format4
113 opcode : 4,
127 opcode : 4, member in struct:ins_format5
131 opcode
145 opcode : 4, member in struct:ins_format6
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/netfilter/
H A Dnf_conntrack_tftp.h7 __be16 opcode; member in struct:tftphdr
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/pcmcia/
H A Dnsp_debug.c49 #define group(opcode) (((opcode) >> 5) & 7)
65 static void print_opcodek(unsigned char opcode) argument
67 const char **table = commands[ group(opcode) ];
71 printk("%s[%02x] ", reserved, opcode);
74 printk("%s(notext)[%02x] ", unknown, opcode);
77 printk("%s[%02x] ", vendor, opcode);
80 if (table[opcode & 0x1f] != unknown)
81 printk("%s[%02x] ", table[opcode & 0x1f], opcode);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/aic7xxx_old/
H A Dsequencer.h46 opcode : 4, member in struct:ins_format1
56 opcode : 4, member in struct:ins_format2
65 opcode : 4, member in struct:ins_format3
72 opcode : 4, member in struct:ins_format1
82 opcode : 4, member in struct:ins_format2
92 opcode : 4, member in struct:ins_format3
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh64/kernel/
H A Dtraps.c131 opcode[31:26,20:16]. The 6 MSBs of this value index into the following
148 unsigned long opcode = 0x6ff4fff0; /* guaranteed reserved opcode */ local
163 get_user_error = __get_user(opcode, (unsigned long *)aligned_pc);
169 reserved_field = opcode & 0xf; /* These bits are currently reserved as zero in all valid opcodes */
170 major = (opcode >> 26) & 0x3f;
171 minor = (opcode >> 16) & 0xf;
199 unsigned long regno = (opcode >> 20) & 0x3f;
205 unsigned long regno = (opcode >> 4) & 0x3f;
221 /* Error trying to read opcode
303 unsigned long opcode; local
346 generate_and_check_address(struct pt_regs *regs, __u32 opcode, int displacement_not_indexed, int width_shift, __u64 *address) argument
429 misaligned_load(struct pt_regs *regs, __u32 opcode, int displacement_not_indexed, int width_shift, int do_sign_extend) argument
509 misaligned_store(struct pt_regs *regs, __u32 opcode, int displacement_not_indexed, int width_shift) argument
586 misaligned_fpu_load(struct pt_regs *regs, __u32 opcode, int displacement_not_indexed, int width_shift, int do_paired_load) argument
661 misaligned_fpu_store(struct pt_regs *regs, __u32 opcode, int displacement_not_indexed, int width_shift, int do_paired_load) argument
738 unsigned long opcode; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/parser/
H A Dpsutils.c88 void acpi_ps_init_op(union acpi_parse_object *op, u16 opcode) argument
93 op->common.aml_opcode = opcode;
97 (opcode))->name,
110 * opcode. A cache of opcodes is available for the pure
115 union acpi_parse_object *acpi_ps_alloc_op(u16 opcode) argument
123 op_info = acpi_ps_get_opcode_info(opcode);
131 } else if (opcode == AML_INT_BYTELIST_OP) {
151 acpi_ps_init_op(op, opcode);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/dispatcher/
H A Ddsmthdat.c55 acpi_ds_method_data_delete_value(u16 opcode,
59 acpi_ds_method_data_set_value(u16 opcode,
66 acpi_ds_method_data_get_type(u16 opcode,
249 acpi_ds_method_data_get_node(u16 opcode, argument
259 switch (opcode) {
289 ACPI_ERROR((AE_INFO, "Opcode %d is invalid", opcode));
313 acpi_ds_method_data_set_value(u16 opcode, argument
325 opcode, object->common.reference_count,
330 status = acpi_ds_method_data_get_node(opcode, index, walk_state, &node);
366 acpi_ds_method_data_get_value(u16 opcode, argument
473 acpi_ds_method_data_delete_value(u16 opcode, u32 index, struct acpi_walk_state *walk_state) argument
531 acpi_ds_store_object_to_local(u16 opcode, u32 index, union acpi_operand_object *obj_desc, struct acpi_walk_state *walk_state) argument
684 acpi_ds_method_data_get_type(u16 opcode, u32 index, struct acpi_walk_state *walk_state) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/
H A Dnsp32_debug.c47 #define group(opcode) (((opcode) >> 5) & 7)
63 static void print_opcodek(unsigned char opcode) argument
65 const char **table = commands[ group(opcode) ];
69 printk("%s[%02x] ", reserved, opcode);
72 printk("%s(notext)[%02x] ", unknown, opcode);
75 printk("%s[%02x] ", vendor, opcode);
78 if (table[opcode & 0x1f] != unknown)
79 printk("%s[%02x] ", table[opcode & 0x1f], opcode);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/sym53c8xx_2/
H A Dsym_fw.c363 u32 opcode, new, old, tmp1, tmp2; local
372 opcode = *cur;
380 if (opcode == 0) {
391 if (opcode == SCR_DATA_ZERO) {
398 (unsigned)opcode);
403 switch (opcode >> 28) {
431 if ((opcode & SCR_NO_FLUSH) &&
433 opcode = (opcode & ~SCR_NO_FLUSH);
441 opcode
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/hw/ipath/
H A Dipath_uc.c49 wc->opcode = ib_ipath_wc_opcode[wqe->wr.opcode];
69 * @bth0p: pointer to the BTH opcode word
114 switch (wqe->wr.opcode) {
122 if (wqe->wr.opcode == IB_WR_SEND)
148 if (wqe->wr.opcode == IB_WR_RDMA_WRITE)
177 if (wqe->wr.opcode == IB_WR_SEND)
198 if (wqe->wr.opcode == IB_WR_RDMA_WRITE)
240 int opcode; local
276 * The opcode i
[all...]

Completed in 118 milliseconds

1234567891011>>