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

123

/barrelfish-master/lib/bfdmuxtools/
H A Dopdefs.h3 * \brief Header file for opcode definitions
36 uint8_t opcode; member in struct:__anon118
37 /**< \brief The binary opcode the operator maps to */
H A Dcodegen.c114 while (op_list[i].opcode != 0) {
242 (*out)[*out_len] = op_list[op].opcode;
259 if ((op_list[op].opcode == OP_OR) || (op_list[op].opcode == OP_AND)) { // special
267 // compute and store subtree size in empty 32bits after opcode
/barrelfish-master/lib/tftp/
H A Dtftp_internal.h56 * \brief writes the opcode into the buffer
58 * \param buf buffer where to write the opcode to
59 * \param opcode opcode to be written
63 static inline size_t set_opcode(void *buf, uint16_t opcode) argument
66 *p = ((opcode >> 8) & 0xff); p++;
67 *p = (opcode & 0xff);
73 * \brief obtains the opcode from the buffer
82 uint16_t opcode = (*p) << 8; p++; local
83 opcode |
[all...]
/barrelfish-master/lib/openssl-1.0.0d/crypto/perlasm/
H A Dx86asm.pl16 # each opcode...
18 { my $opcode = $AUTOLOAD;
20 die "more than 4 arguments passed to $opcode" if ($#_>3);
22 $opcode =~ s/.*:://;
23 if ($opcode =~ /^push/) { $stack+=4; }
24 elsif ($opcode =~ /^pop/) { $stack-=4; }
26 &generic($opcode,@_) or die "undefined subroutine \&$AUTOLOAD";
30 { my $opcode=shift;
32 if ($#_==-1) { push(@out,"\t$opcode\n"); }
33 else { push(@out,"\t$opcode\
[all...]
H A Dx86nasm.pl14 { my $opcode=shift;
18 { if ($opcode =~ m/^j/o && $#_==0) # optimize jumps
20 elsif ($opcode eq "lea" && $#_==1) # wipe storage qualifier from lea
23 &::emit($opcode,@_);
H A Dppc-xlate.pl142 my $opcode = eval("\$$mnemonic");
144 if (ref($opcode) eq 'CODE') { $line = &$opcode($f,split(',',$line)); }
H A Dx86_64-xlate.pl108 { package opcode; # pick up opcodes
228 die if (opcode->mnemonic() ne "mov");
229 opcode->mnemonic("lea");
412 if ($nasm && opcode->mnemonic()=~m/^j/) {
425 my %opcode = # lea 2f-1f(%rip),%dst; 1: nop; 2:
444 $line=sprintf "0x%x,0x90000000",$opcode{$1};
647 undef $opcode;
655 } elsif ($opcode=opcode->re(\$line)) { ARGUMENT: while (1) {
658 if ($arg=register->re(\$line)) { opcode
[all...]
H A Dx86gas.pl25 # expand opcode with size suffix;
28 { my($opcode,@arg)=@_;
47 if ($#_==0) { &::emit($opcode); }
48 elsif ($opcode =~ m/^j/o && $#_==1) { &::emit($opcode,@arg); }
49 elsif ($opcode eq "call" && $#_==1) { &::emit($opcode,@arg); }
50 elsif ($opcode =~ m/^set/&& $#_==1) { &::emit($opcode,@arg); }
51 else { &::emit($opcode
[all...]
H A Dx86masm.pl14 { my ($opcode,@arg)=@_;
19 if ($opcode !~ /movq/)
25 &::emit($opcode,@arg);
/barrelfish-master/include/lwip2/lwip/prot/
H A Detharp.h62 PACK_STRUCT_FIELD(u16_t opcode);
/barrelfish-master/lib/devif/backends/net/mlx4/drivers/infiniband/hw/mlx4/
H A Dcq.c502 "opcode = %02x)\n", be32_to_cpu(cqe->my_qpn),
619 MLX4_WARN("Completion for NOP opcode detected!\n");
696 wc->opcode = IB_WC_RDMA_WRITE;
702 wc->opcode = IB_WC_SEND;
705 wc->opcode = IB_WC_RDMA_READ;
709 wc->opcode = IB_WC_COMP_SWAP;
713 wc->opcode = IB_WC_FETCH_ADD;
717 wc->opcode = IB_WC_MASKED_COMP_SWAP;
721 wc->opcode = IB_WC_MASKED_FETCH_ADD;
725 wc->opcode
[all...]
/barrelfish-master/include/
H A Darranet_debug.h41 uint8_t opcode; member in struct:__anon1::__anon2
60 uint8_t opcode; member in struct:__anon3::__anon4
/barrelfish-master/lib/devif/backends/net/mlx4/drivers/infiniband/hw/mthca/
H A Dmthca_cq.c126 u8 opcode; member in struct:mthca_cqe
140 u8 opcode; member in struct:mthca_err_cqe
270 if ((cqe->opcode & MTHCA_ERROR_CQE_OPCODE_MASK) ==
272 return !(cqe->opcode & 0x01);
514 is_error = (cqe->opcode & MTHCA_ERROR_CQE_OPCODE_MASK) ==
516 is_send = is_error ? cqe->opcode & 0x01 : cqe->is_send & 0x80;
582 switch (cqe->opcode) {
584 entry->opcode = IB_WC_RDMA_WRITE;
587 entry->opcode = IB_WC_RDMA_WRITE;
591 entry->opcode
[all...]
H A Dmthca_qp.c1516 switch (wr->opcode) {
1518 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY;
1522 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE;
1588 if (wr->opcode == IB_WR_ATOMIC_CMP_AND_SWP) {
1669 if (wr->opcode == IB_WR_SEND_WITH_IMM ||
1670 wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM)
1678 switch (wr->opcode) {
1708 switch (wr->opcode) {
1767 if (wr->opcode >= ARRAY_SIZE(mthca_opcode)) {
1768 mthca_err(dev, "opcode invali
[all...]
/barrelfish-master/lib/devif/backends/net/mlx4/drivers/
H A Dtest_ib.c27 int opcode = IB_WR_RDMA_READ; local
124 sr.opcode = opcode;
126 if (opcode != IB_WR_SEND) {
136 switch (opcode) {
166 /* check the completion status (here we don't care about the completion opcode */
/barrelfish-master/lib/lwip2/src/apps/tftp/
H A Dtftp_server.c207 int opcode; local
219 opcode = sbuf[0];
224 switch (opcode) {
257 tftp_state.handle = tftp_state.ctx->open(filename, mode, opcode == PP_HTONS(TFTP_WRQ));
265 LWIP_DEBUGF(TFTP_DEBUG | LWIP_DBG_STATE, ("tftp: %s request from ", (opcode == PP_HTONS(TFTP_WRQ)) ? "write" : "read"));
272 if (opcode == PP_HTONS(TFTP_WRQ)) {
/barrelfish-master/include/arpa/
H A Dnameser_compat.h65 unsigned opcode: 4; /*%< purpose of message */ member in struct:__anon32
81 unsigned opcode :4; /*%< purpose of message */ member in struct:__anon32
/barrelfish-master/include/lwip/netif/
H A Detharp.h95 PACK_STRUCT_FIELD(u16_t opcode);
169 const struct ip_addr *ipdst_addr, const u16_t opcode);
/barrelfish-master/lib/devif/backends/net/mlx4/drivers/infiniband/core/
H A Dud_header.c92 static const struct ib_field bth_table[] = { { STRUCT_FIELD(bth, opcode),
163 header->bth.opcode = IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE;
165 header->bth.opcode = IB_OPCODE_UD_SEND_ONLY;
297 switch (header->bth.opcode) {
305 printf("Invalid BTH.opcode 0x%02x\n", header->bth.opcode);
/barrelfish-master/lib/libc/resolv/
H A Dres_debug.c152 ns_opcode opcode; local
168 opcode = (ns_opcode) ns_msg_getflag(*handle, ns_f_opcode);
182 p_section(section, opcode));
277 u_int opcode, rcode, id; local
283 opcode = ns_msg_getflag(handle, ns_f_opcode);
296 ";; ->>HEADER<<- opcode: %s, status: %s, id: %d\n",
297 _res_opcodes[opcode], p_rcode(rcode), id);
321 p_section(ns_s_qd, opcode), qdcount);
323 p_section(ns_s_an, opcode), ancount);
325 p_section(ns_s_ns, opcode), nscoun
623 p_section(int section, int opcode) argument
[all...]
/barrelfish-master/usr/eclipseclp/WinMSC/Eclipse/
H A DEclipse.mak654 "..\..\sepia\i386_nt\opcode.h"\
672 "..\..\sepia\i386_nt\opcode.h"\
744 "..\..\sepia\i386_nt\opcode.h"\
769 "..\..\sepia\i386_nt\opcode.h"\
919 "..\..\sepia\i386_nt\opcode.h"\
940 "..\..\sepia\i386_nt\opcode.h"\
1009 "..\..\sepia\i386_nt\opcode.h"\
1033 "..\..\sepia\i386_nt\opcode.h"\
1183 "..\..\sepia\i386_nt\opcode.h"\
1206 "..\..\sepia\i386_nt\opcode
[all...]
/barrelfish-master/lib/devif/backends/net/mlx4/include/rdma/
H A Dib_pma.h61 u8 opcode; member in struct:ib_pma_portsamplescontrol
/barrelfish-master/usr/drivers/megaraid/
H A Dmegaraid_vsic.c123 uint8_t opcode; member in struct:write16
140 .opcode = 0x8a,
232 uint8_t opcode; member in struct:read16
246 .opcode = 0x88,
/barrelfish-master/lib/cxx/unwind/
H A DDwarfInstructions.hpp296 uint8_t opcode = addressSpace.get8(p++); local
300 switch (opcode) {
666 value = static_cast<pint_t>(opcode - DW_OP_lit0);
704 reg = static_cast<uint32_t>(opcode - DW_OP_reg0);
749 reg = static_cast<uint32_t>(opcode - DW_OP_breg0);
805 _LIBUNWIND_ABORT("DWARF opcode not implemented");
/barrelfish-master/usr/eclipseclp/Kernel/src/
H A DMakefile.in977 bip_comp.o: opcode.h emu_export.h
982 bip_db.o: opcode.h gencode.h dict.h database.h emu_export.h
992 bip_load.o: emu_export.h error.h opcode.h ec_io.h property.h module.h
998 bip_module.o: opcode.h property.h
1001 bip_parallel.o: ec_io.h dict.h emu_export.h property.h module.h opcode.h
1015 code.o: emu_export.h opcode.h gencode.h debug.h module.h database.h
1034 emu.o: embed.h opcode.h database.h module.h debug.h property.h ec_io.h
1036 emu_c_env.o: dict.h emu_export.h module.h debug.h opcode.h
1038 emu_par.o: dict.h emu_export.h opcode.h wm.h sch_eng_interface.h trace.h
1040 emu_util.o: mem.h opcode
[all...]

Completed in 198 milliseconds

123