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

1234567891011

/haiku-fatelf/src/bin/gdb/include/opcode/
H A Dtic4x.h227 unsigned long opcode; member in struct:tic4x_inst
309 #define A_CLASS_INSN(name, opcode, level) \
310 { name, opcode|0x00000000, 0xffe00000, "Q;R", level }, \
311 { name, opcode|0x00200000, 0xffe00000, "@,R", level }, \
312 { name, opcode|0x00400000, 0xffe00000, "*,R", level }, \
313 { name, opcode|0x00600000, 0xffe00000, "S,R", level }
322 #define AB_CLASS_INSN(name, opcode, level) \
323 { name, opcode|0x40000000, 0xf0600000, "Q;R", level }, \
324 { name, opcode|0x40200000, 0xf0600000, "@,R", level }, \
325 { name, opcode|
[all...]
H A Dpj.h1 /* Definitions for decoding the picoJava opcode table.
41 short opcode; member in struct:pj_opc_info_t
/haiku-fatelf/src/bin/gdb/opcodes/
H A Ds390-dis.c26 #include "opcode/s390.h"
36 /* Set up index table for first opcode byte. */
42 const struct s390_opcode *opcode; local
47 for (opcode = s390_opcodes; opcode < opcode_end; opcode++)
49 opc_index[(int) opcode->opcode[0]] = opcode - s390_opcodes;
50 while ((opcode < opcode_en
119 const struct s390_opcode *opcode; local
[all...]
H A Dalpha-dis.c4 patterned after the PPC opcode handling written by Ian Lance Taylor.
26 #include "opcode/alpha.h"
63 const struct alpha_opcode *opcode, *opcode_end; local
71 opcode = alpha_opcodes;
72 opcode_end = opcode + alpha_num_opcodes;
76 opcode_index[op] = opcode;
77 while (opcode < opcode_end && op == AXP_OP (opcode->opcode))
78 ++opcode;
[all...]
H A Dtic54x-dis.c25 #include "opcode/tic54x.h"
50 unsigned short opcode; local
61 opcode = bfd_getl16 (opbuf);
62 tm = tic54x_get_insn (info, memaddr, opcode, &size);
71 if (!print_parallel_instruction (info, memaddr, opcode, tm, size))
76 if (!print_instruction (info, memaddr, opcode,
108 if (tm->opcode == (memdata & tm->mask))
113 /* if lk addressing is used, the second half of the opcode gets
138 if (tm->opcode == (memdata & tm->mask))
168 print_instruction (info, memaddr, opcode, tm_nam
[all...]
H A Di370-dis.c25 #include "opcode/i370.h"
37 const struct i370_opcode *opcode; local
55 /* Find the first match in the opcode table. We could speed this up
56 a bit by doing a binary search on the major opcode. */
58 for (opcode = i370_opcodes; opcode < opcode_end; opcode++)
67 if (2 == opcode->len)
72 masked.i[0] &= opcode->mask.i[0];
73 if (masked.i[0] != opcode
[all...]
H A Da29k-dis.c24 #include "opcode/a29k.h"
96 is_delayed_branch (opcode)
97 int opcode;
99 return (opcode == 0xa8 || opcode == 0xa9 || opcode == 0xa0 || opcode == 0xa1
100 || opcode == 0xa4 || opcode == 0xa5
101 || opcode
156 struct a29k_opcode const * opcode; local
[all...]
H A Dh8500-dis.c81 const h8500_opcode_info *opcode; local
102 for (opcode = h8500_table; opcode->name; opcode++)
104 if ((opcode->bytes[0].contents & 0x8) == 0)
105 printf ("%s\n", opcode->name);
111 for (opcode = h8500_table; opcode->name; opcode++)
125 for (byte = 0; byte < opcode
[all...]
H A Darc-ext.c33 arcExtMap_instName(int opcode, int minor, int *flags) argument
35 if (opcode == 3)
41 opcode = 0x1f - 0x10 + minor - 0x09 + 1;
44 if (opcode < 0x10)
47 opcode -= 0x10;
48 if (!arc_extension_map.instructions[opcode])
50 *flags = arc_extension_map.instructions[opcode]->flags;
51 return arc_extension_map.instructions[opcode]->name;
160 p[2] = opcode
161 p[3] = minor opcode (i
179 char opcode = p[2]; local
[all...]
H A Davr-dis.c30 char *opcode; member in struct:avr_opcodes_s
41 #include "opcode/avr.h"
259 const struct avr_opcodes_s *opcode; local
278 for (opcode = avr_opcodes, maskptr = avr_bin_masks;
279 opcode->name;
280 opcode++, maskptr++)
286 for (s = opcode->opcode; *s; ++s)
293 assert (s - opcode->opcode
[all...]
H A Ddlx-dis.c21 #include "opcode/dlx.h"
59 dlx_get_opcode (opcode)
60 unsigned long opcode;
62 return (unsigned char) ((opcode >> 26) & 0x3F);
66 dlx_get_rs1 (opcode)
67 unsigned long opcode;
69 return (unsigned char) ((opcode >> 21) & 0x1F);
73 dlx_get_rs2 (opcode)
74 unsigned long opcode;
76 return (unsigned char) ((opcode >> 1
210 unsigned long opcode; member in struct:_load_opcode
261 unsigned long opcode; member in struct:_store_opcode
295 unsigned long opcode; member in struct:_aluI_opcode
354 unsigned long opcode; member in struct:_br_opcode
392 unsigned long opcode; member in struct:_jmp_opcode
433 unsigned long opcode; member in struct:_jr_opcode
[all...]
H A Ds390-mkopc.c1 /* s390-mkopc.c -- Generates opcode table out of s390-opc.txt
43 char opcode[16]; member in struct:op_struct
65 /* `insertOpcode': insert an op_struct into sorted opcode array. */
68 insertOpcode (char *opcode, char *mnemonic, char *format, argument
83 str = opcode;
106 strcpy(op_array[ix].opcode, opcode);
117 "/* The opcode table. This file was generated by s390-mkopc.\n\n"
118 " The format of the opcode table is:\n\n"
121 " OPCODE is the instruction opcode
173 char opcode[16]; local
[all...]
H A Dtic80-dis.c21 #include "opcode/tic80.h"
206 /* We have chosen an opcode table entry. */
209 print_one_instruction (info, memaddr, insn, opcode)
213 const struct tic80_opcode *opcode;
221 (*info->fprintf_func) (info->stream, "%-10s", opcode->name);
223 for (opindex = opcode->operands; *opindex != 0; opindex++)
257 if (opindex != opcode->operands)
283 instruction opcode contains one or two instructions. However since
297 const struct tic80_opcode *opcode;
300 /* Find the first opcode matc
289 const struct tic80_opcode *opcode; local
[all...]
H A Dmsp430-dis.c30 #include "opcode/msp430.h"
76 struct msp430_opcode_s *opcode; local
96 for (opcode = msp430_opcodes; opcode->name; opcode++)
98 if ((insn & opcode->bin_mask) == opcode->bin_opcode
99 && opcode->bin_opcode != 0x9300)
107 if (opcode->insn_opnumb == 3 && (insn & 0x000f) == 0
111 msp430_branchinstr (info, opcode, add
[all...]
H A Dia64-asmtab.h1 /* ia64-asmtab.h -- Header for compacted IA-64 opcode tables.
25 #include "opcode/ia64.h"
27 /* The primary opcode table is made up of the following: */
31 opcode. */
34 /* The type of opcode; corresponds to the TYPE field in
38 /* The number of outputs for this opcode. */
41 /* The base insn value for this opcode. It may be modified by completers. */
42 ia64_insn opcode; member in struct:ia64_main_table
64 The completer entries modify certain bits in the instruction opcode.
67 opcode
[all...]
H A Dppc-dis.c25 #include "opcode/ppc.h"
135 const struct powerpc_opcode *opcode; local
154 /* Get the major opcode of the instruction. */
157 /* Find the first match in the opcode table. We could speed this up
158 a bit by doing a binary search on the major opcode. */
161 for (opcode = powerpc_opcodes; opcode < opcode_end; opcode++)
170 table_op = PPC_OP (opcode->opcode);
[all...]
/haiku-fatelf/src/bin/network/tcpdump/
H A Dprint-zephyr.c51 char *opcode; member in struct:z_packet
169 PARSE_FIELD_STR(z.opcode);
199 if (!strcmp(z.opcode, "USER_HIDE"))
201 else if (!strcmp(z.opcode, "USER_UNHIDE"))
209 printf(" zephyr-admin %s", str_to_lower(z.opcode));
215 if (!strcmp(z.opcode, "SUBSCRIBE") ||
216 !strcmp(z.opcode, "SUBSCRIBE_NODEFS") ||
217 !strcmp(z.opcode, "UNSUBSCRIBE")) {
219 printf(" %ssub%s", strcmp(z.opcode, "SUBSCRIBE") ? "un" : "",
220 strcmp(z.opcode, "SUBSCRIBE_NODEF
[all...]
H A Dprint-tftp.c79 register int opcode, i; local
89 opcode = EXTRACT_16BITS(&tp->th_opcode);
90 cp = tok2str(op2str, "tftp-#%d", opcode);
92 /* Bail if bogus opcode */
96 switch (opcode) {
148 printf("(unknown #%d)", opcode);
/haiku-fatelf/src/bin/gdb/gdb/
H A Di386ly-tdep.c40 char opcode[7]; local
44 deprecated_read_memory_nobpt (frame->pc - 7, opcode, 7);
45 if (memcmp (opcode, call_inst, 7) == 0)
/haiku-fatelf/src/bin/gdb/gdb/rdi-share/
H A Ddrivers.h49 int (*DeviceIoctl)(const int opcode, void *args);
182 * Input: opcode Reason code indicating the operation to perform
183 * In/Out: args Pointer to opcode-sensitive arguments/result space
189 extern int DeviceIoctl(const int opcode, void *args);
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/server/
H A DNodeMonitoringEvent.cpp35 opcode = B_ENTRY_CREATED;
55 opcode = B_ENTRY_REMOVED;
72 opcode = B_ENTRY_MOVED;
94 opcode = B_STAT_CHANGED;
109 opcode = B_ATTR_CHANGED;
128 opcode = B_DEVICE_MOUNTED;
144 opcode = B_DEVICE_UNMOUNTED;
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/server/
H A DNodeMonitoringEvent.cpp35 opcode = B_ENTRY_CREATED;
55 opcode = B_ENTRY_REMOVED;
72 opcode = B_ENTRY_MOVED;
94 opcode = B_STAT_CHANGED;
109 opcode = B_ATTR_CHANGED;
128 opcode = B_DEVICE_MOUNTED;
144 opcode = B_DEVICE_UNMOUNTED;
/haiku-fatelf/src/add-ons/accelerants/intel_extreme/
H A Dcommands.h16 uint32 opcode; member in struct:command
18 uint32* Data() { return &opcode; }
53 opcode = command;
66 opcode |= COMMAND_BLIT_RGBA;
127 opcode = XY_COMMAND_SCANLINE_BLIT;
/haiku-fatelf/src/servers/bluetooth/
H A DLocalDeviceHandler.cpp84 LocalDeviceHandler::ClearWantedEvent(BMessage* msg, uint16 event, uint16 opcode) argument
101 // there is an opcode specified
102 if (opcode != 0) {
104 // The opcode matches
106 && ((uint16)opcodeFound == opcode)) {
109 printf("Removed event %#x and opcode %d from request %p\n",
110 event, opcode, msg);
135 LocalDeviceHandler::FindPetition(uint16 event, uint16 opcode, int32* indexFound) argument
156 // there is an opcode specified..
159 // ensure the opcode
[all...]
/haiku-fatelf/src/add-ons/kernel/busses/scsi/usb/
H A Dtransform_procs.c42 switch (from->opcode) {
48 to->opcode = (from->opcode == READ_6) ? READ_10 : WRITE_10;
66 if (from->opcode == MODE_SENSE_6) {
67 to->opcode = MODE_SENSE_10;
71 to->opcode = MODE_SELECT_10;
100 switch (from->opcode) {
146 command->opcode = START_STOP_UNIT;
178 switch (command->opcode) {
227 switch (command->opcode) {
[all...]

Completed in 214 milliseconds

1234567891011