HomeSort by: relevance | last modified time | path
    Searched defs:opcode (Results 1 - 25 of 91) sorted by relevancy

1 2 3 4

  /src/lib/libperfuse/
debug.c 40 int opcode; member in struct:perfuse_opcode
98 perfuse_opname(int opcode)
102 for (po = perfuse_opcode; po->opcode; po++) {
103 if (po->opcode == opcode)
118 switch(fih->opcode) {
140 pt->pt_opcode = ps->ps_get_inhdr(pm)->opcode;
  /src/sys/arch/or1k/include/
db_machdep.h 72 const unsigned int opcode = isns >> 26; local in function:inst_load
75 return opcode == 0x1b || (opcode >= 0x20 && opcode <= 0x26);
87 const unsigned int opcode = isns >> 26; local in function:inst_store
89 return opcode >= 0x33 && opcode <= 0x37;
  /src/sys/arch/powerpc/powerpc/
fixup.c 100 u_int opcode = instr.i_any.i_opcd; local in function:powerpc_fixup_stubs
106 if (opcode != OPC_B || stub < stub_start || stub_end <= stub)
trap.c 1079 uint32_t opcode; local in function:emulate_privileged
1081 if (copyin((void *)tf->tf_srr0, &opcode, sizeof(opcode)) != 0)
1084 if (OPC_MFSPR_P(opcode, SPR_PVR)) {
1085 __asm ("mfpvr %0" : "=r"(tf->tf_fixreg[OPC_MFSPR_REG(opcode)]));
1089 return emulate_mxmsr(l, tf, opcode);
  /src/sys/dev/scsipi/
scsi_all.h 44 u_int8_t opcode; member in struct:scsi_changedef
scsi_scanner.h 49 u_int8_t opcode; member in struct:scsi_rw_scanner
59 u_int8_t opcode; member in struct:scsi_set_window
ss_mustek.h 70 u_int8_t opcode; /* 0x04 */ member in struct:mustek_set_window_cmd
104 u_int8_t opcode; /* 0x08 */ member in struct:mustek_read_cmd
111 u_int8_t opcode; /* 0x0f */ member in struct:mustek_get_status_cmd
126 u_int8_t opcode; /* 0x15 */ member in struct:mustek_mode_select_cmd
160 u_int8_t opcode; /* 0x1b */ member in struct:mustek_start_scan_cmd
scsipi_disk.h 62 u_int8_t opcode; member in struct:scsipi_rw_10
79 u_int8_t opcode; member in struct:scsipi_rw_12
90 u_int8_t opcode; member in struct:scsipi_rw_16
100 u_int8_t opcode; member in struct:scsipi_read_capacity_10
116 u_int8_t opcode; member in struct:scsipi_read_capacity_16
145 u_int8_t opcode; member in struct:scsipi_read_format_capacities
  /src/sys/arch/usermode/usermode/
syscall.c 93 uint32_t code, opcode; local in function:syscall
101 md_syscall_get_opcode(ucp, &opcode);
128 md_syscall_inc_pc(ucp, opcode);
146 md_syscall_dec_pc(ucp, opcode);
  /src/sys/arch/usermode/target/i386/
cpu_i386.c 282 uint32_t opcode; local in function:md_syscall_check_opcode
284 md_syscall_get_opcode(ucp, &opcode);
286 switch (opcode) {
299 md_syscall_get_opcode(ucontext_t *ucp, uint32_t *opcode)
312 *opcode = *p16;
315 *opcode = 0;
320 md_syscall_inc_pc(ucontext_t *ucp, uint32_t opcode)
326 switch (opcode) {
335 panic("%s, unknown illegal instruction: opcode = %x\n",
336 __func__, (uint32_t) opcode);
    [all...]
  /src/sys/arch/usermode/target/x86_64/
cpu_x86_64.c 277 uint32_t opcode; local in function:md_syscall_check_opcode
279 md_syscall_get_opcode(ucp, &opcode);
281 switch (opcode) {
295 md_syscall_get_opcode(ucontext_t *ucp, uint32_t *opcode)
307 *opcode = *p16;
310 *opcode = 0;
315 md_syscall_inc_pc(ucontext_t *ucp, uint32_t opcode)
320 switch (opcode) {
329 panic("%s, unknown illegal instruction: opcode = %x\n",
330 __func__, (uint32_t) opcode);
    [all...]
  /src/sys/coda/
coda_opstats.h 111 int opcode; /* vfs opcode */ member in struct:coda_op_stats
coda_psdev.c 304 u_long opcode; local in function:vc_nb_write
315 /* Peek at the opcode, unique without transferring the data. */
323 opcode = tbuf[0];
327 myprintf(("vcwrite got a call for %ld.%ld\n", opcode, seq));
329 if (DOWNCALL(opcode)) {
337 error, opcode, seq));
341 return handleDownCall(opcode, &pbuf);
351 myprintf(("vcwrite: msg (%ld, %ld) not found\n", opcode, seq));
361 /* Don't need to copy opcode and uniquifier. */
376 error, opcode, seq))
    [all...]
  /src/sys/dev/microcode/aic7xxx/
aicasm_insformat.h 51 opcode : 4, member in struct:ins_format1
55 opcode : 4,
69 opcode : 4, member in struct:ins_format2
73 opcode : 4,
86 opcode : 4, member in struct:ins_format3
90 opcode : 4,
  /src/sys/lib/libunwind/
DwarfInstructions.hpp 180 uint8_t opcode = addressSpace.get8(p++); local in function:_Unwind::DwarfInstructions::evaluateExpression
184 switch (opcode) {
463 value = opcode - DW_OP_lit0;
499 reg = opcode - DW_OP_reg0;
540 reg = opcode - DW_OP_breg0;
582 assert(0 && "dwarf opcode not implemented");
  /src/sys/arch/powerpc/ibm4xx/
trap.c 329 uint32_t opcode; local in function:trap
331 rv = copyin((void *)tf->tf_srr0, &opcode,
332 sizeof(opcode));
335 if (emulate_mxmsr(l, tf, opcode)) {
  /src/dist/pf/libexec/tftp-proxy/
tftp-proxy.c 72 const char *opcode(int);
296 opcode(ntohs(tp->th_opcode)),
363 opcode(int code) function in typeref:typename:const char *
  /src/lib/libbluetooth/
bluetooth.h 105 uint16_t opcode; member in struct:bt_devreq
  /src/sys/arch/amiga/amiga/
cc.h 121 u_short opcode; member in struct:copper_list::j::k
  /src/sys/arch/hppa/hppa/
fpu.c 331 u_int opcode, class, sub; local in function:hppa_fpu_emulate
346 * bit 22, the opcode is a 6-bit field starting
358 : "=r" (opcode), "=r" (class), "=r" (sub)
361 opcode = (inst >> (31 - 5)) & 0x3f;
373 /* Dispatch on the opcode. */
374 switch (opcode) {
  /src/sys/external/bsd/drm2/dist/drm/amd/amdkfd/
kfd_pm4_headers.h 35 /* IT opcode */
36 uint32_t opcode:8; member in struct:PM4_MES_TYPE_3_HEADER::__anon7e5272bb0108
  /src/sys/external/bsd/ipf/netinet/
ip_tftp_pxy.c 409 u_short opcode; local in function:ipf_p_tftp_client
419 opcode = (msg[0] << 8) | msg[1];
420 DT3(tftp_cmd, fr_info_t *, fin, int, opcode, nat_t *, nat);
422 switch (opcode)
445 ti->ti_lastcmd = opcode;
455 u_short opcode; local in function:ipf_p_tftp_server
466 opcode = (msg[0] << 8) | msg[1];
468 switch (opcode)
482 ti->ti_lastcmd = opcode;
  /src/sys/dev/ic/
aha.c 112 * icnt: number of args (outbound bytes including opcode)
130 u_char opcode = ibuf[0]; local in function:aha_cmd
140 switch (opcode) {
153 if (opcode != AHA_MBO_INTR_EN) {
187 if (opcode != AHA_INQUIRE_REVISION)
208 if (opcode != AHA_INQUIRE_REVISION)
222 if (opcode != AHA_MBO_INTR_EN) {
419 toggle.cmd.opcode = AHA_MBO_INTR_EN;
612 toggle.cmd.opcode = AHA_MBO_INTR_EN;
787 config.cmd.opcode = AHA_INQUIRE_CONFIG
    [all...]
  /src/sys/arch/powerpc/booke/
trap.c 422 uint32_t opcode; local in function:emulate_opcode
423 if (copyin((void *)tf->tf_srr0, &opcode, sizeof(opcode)) != 0)
426 if (opcode == OPC_LWSYNC)
429 if (OPC_MFSPR_P(opcode, SPR_PVR)) {
430 __asm ("mfpvr %0" : "=r"(tf->tf_fixreg[OPC_MFSPR_REG(opcode)]));
434 if (OPC_MFSPR_P(opcode, SPR_PIR)) {
436 : "=r"(tf->tf_fixreg[OPC_MFSPR_REG(opcode)])
441 if (OPC_MFSPR_P(opcode, SPR_SVR)) {
443 : "=r"(tf->tf_fixreg[OPC_MFSPR_REG(opcode)])
    [all...]
  /src/usr.sbin/perfused/
msg.c 166 perfused_new_pb (struct puffs_usermount *pu, puffs_cookie_t opc, int opcode,
196 fih->opcode = opcode;
288 int opcode; local in function:perfused_xchg_pb
295 opcode = fih->opcode;
299 "opcode = %s (%d)\n",
300 unique_in, nodeid, perfuse_opname(opcode), opcode);
326 "opcode = %s (%d),
    [all...]

Completed in 27 milliseconds

1 2 3 4