| /netbsd/src/share/examples/rump/ttyserv/ |
| D | ttyserv.c | 90 struct pud_req *pdr = arg; in handlereq() local 94 minordev = minor(pdr->pdr_dev); in handlereq() 101 switch (pdr->pdr_reqtype) { in handlereq() 103 pr_open = (void *)pdr; in handlereq() 110 pr_close = (void *)pdr; in handlereq() 117 pr_ioctl = (void *)pdr; in handlereq() 123 pr_rw = (void *)pdr; in handlereq() 131 pdr->pdr_pth.pth_framelen -= reslen; in handlereq() 136 pr_rw = (void *)pdr; in handlereq() 144 pdr->pdr_pth.pth_framelen=sizeof(struct pud_creq_write); in handlereq() [all …]
|
| /netbsd/src/share/examples/rump/umserv/ |
| D | umserv.c | 97 struct pud_req *pdr; in main() local 111 pdr = malloc(PDRSIZE); in main() 112 if (pdr == NULL) in main() 160 n = read(fd, pdr, PDRSIZE); in main() 164 minordev = minor(pdr->pdr_dev); in main() 171 switch (pdr->pdr_reqtype) { in main() 173 pr_open = (void *)pdr; in main() 180 pr_close = (void *)pdr; in main() 187 pr_ioctl = (void *)pdr; in main() 193 pr_rw = (void *)pdr; in main() [all …]
|
| /netbsd/src/share/examples/pud/intro/ |
| D | intro.c | 46 struct pud_req *pdr = malloc(DEFALLOC); in main() local 82 n = read(fd, pdr, DEFALLOC); in main() 85 switch (pdr->pdr_reqtype) { in main() 88 printf("got openclose %d\n", pdr->pdr_reqtype); in main() 89 pdr->pdr_rv = 0; in main() 98 pc_read = (void *)pdr; in main() 105 if (pdr->pdr_reqclass == PUD_REQ_BDEV) { in main() 111 pdr->pdr_pth.pth_framelen = in main() 121 pc_write = (void *)pdr; in main() 128 pdr->pdr_pth.pth_framelen = in main() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/ |
| D | graphite-poly.cc | 95 poly_dr_p pdr = XNEW (struct poly_dr); in new_poly_dr() local 97 pdr->stmt = stmt; in new_poly_dr() 98 PDR_ID (pdr) = id++; in new_poly_dr() 99 PDR_NB_REFS (pdr) = 1; in new_poly_dr() 100 PDR_PBB (pdr) = pbb; in new_poly_dr() 101 pdr->accesses = acc; in new_poly_dr() 102 pdr->subscript_sizes = subscript_sizes; in new_poly_dr() 103 PDR_TYPE (pdr) = type; in new_poly_dr() 104 PBB_DRS (pbb).safe_push (pdr); in new_poly_dr() 109 print_pdr (dump_file, pdr); in new_poly_dr() [all …]
|
| D | graphite-dependences.cc | 58 add_pdr_constraints (poly_dr_p pdr, poly_bb_p pbb) in add_pdr_constraints() argument 60 isl_map *x = isl_map_intersect_range (isl_map_copy (pdr->accesses), in add_pdr_constraints() 61 isl_set_copy (pdr->subscript_sizes)); in add_pdr_constraints() 76 poly_dr_p pdr; in scop_get_reads_and_writes() local 80 FOR_EACH_VEC_ELT (PBB_DRS (pbb), j, pdr) { in scop_get_reads_and_writes() 81 if (pdr_read_p (pdr)) in scop_get_reads_and_writes() 86 print_pdr (dump_file, pdr); in scop_get_reads_and_writes() 89 = isl_union_map_from_map (add_pdr_constraints (pdr, pbb)); in scop_get_reads_and_writes() 97 else if (pdr_write_p (pdr)) in scop_get_reads_and_writes() 102 print_pdr (dump_file, pdr); in scop_get_reads_and_writes() [all …]
|
| D | graphite.h | 193 pdr_read_p (poly_dr_p pdr) in pdr_read_p() argument 195 return PDR_TYPE (pdr) == PDR_READ; in pdr_read_p() 201 pdr_write_p (poly_dr_p pdr) in pdr_write_p() argument 203 return PDR_TYPE (pdr) == PDR_WRITE; in pdr_write_p() 209 pdr_may_write_p (poly_dr_p pdr) in pdr_may_write_p() argument 211 return PDR_TYPE (pdr) == PDR_MAY_WRITE; in pdr_may_write_p() 321 pdr_scop (poly_dr_p pdr) in pdr_scop() argument 323 return PBB_SCOP (PDR_PBB (pdr)); in pdr_scop()
|
| /netbsd/src/sys/dev/pud/ |
| D | pud.c | 144 pudop_dev(struct pud_dev *pd, struct pud_req *pdr) in pudop_dev() argument 146 struct putter_hdr *pth = (void *)pdr; in pudop_dev() 151 if (putp->pt_pdr->pdr_reqid == pdr->pdr_reqid) in pudop_dev() 207 pudop_conf(struct pud_dev *pd, struct pud_req *pdr) in pudop_conf() argument 211 switch (pdr->pdr_reqtype) { in pudop_conf() 213 rv = pudconf_reg(pd, (struct pud_conf_reg *)pdr); in pudop_conf() 231 struct pud_req *pdr = (void *)pth; in pud_putter_dispatch() local 234 if (pdr->pdr_pth.pth_framelen < sizeof(struct pud_req)) in pud_putter_dispatch() 237 switch (pdr->pdr_reqclass) { in pud_putter_dispatch() 240 rv = pudop_dev(pd, pdr); in pud_putter_dispatch() [all …]
|
| /netbsd/src/external/gpl3/gdb/dist/gdb/ |
| D | alpha-mdebug-tdep.c | 76 #define PROC_LOW_ADDR(proc) ((proc)->pdr.adr) 77 #define PROC_FRAME_OFFSET(proc) ((proc)->pdr.frameoffset) 78 #define PROC_FRAME_REG(proc) ((proc)->pdr.framereg) 79 #define PROC_REG_MASK(proc) ((proc)->pdr.regmask) 80 #define PROC_FREG_MASK(proc) ((proc)->pdr.fregmask) 81 #define PROC_REG_OFFSET(proc) ((proc)->pdr.regoffset) 82 #define PROC_FREG_OFFSET(proc) ((proc)->pdr.fregoffset) 83 #define PROC_PC_REG(proc) ((proc)->pdr.pcreg) 84 #define PROC_LOCALOFF(proc) ((proc)->pdr.localoff) 118 if (proc_desc->pdr.pcreg == 0 in find_proc_desc() [all …]
|
| D | mdebugread.h | 32 PDR pdr; /* Procedure descriptor record. */ member
|
| D | mdebugread.c | 1173 e->pdr.framereg = -1; in parse_symbol() 2023 e->pdr = *pr; in parse_procedure() 2034 e->pdr.adr = b->start (); in parse_procedure() 3994 e->pdr.framereg = -1; in mdebug_expand_psymtab()
|
| /netbsd/src/external/gpl3/gdb/dist/bfd/ |
| D | ecofflink.c | 362 struct shuffle *pdr; member 481 ainfo->pdr = NULL; in bfd_ecoff_debug_init() 931 if (!add_file_shuffle (ainfo, &ainfo->pdr, &ainfo->pdr_end, in bfd_ecoff_debug_accumulate() 968 if (!add_memory_shuffle (ainfo, &ainfo->pdr, &ainfo->pdr_end, out, in bfd_ecoff_debug_accumulate() 973 PDR pdr; in bfd_ecoff_debug_accumulate() local 975 (*input_swap->swap_pdr_in) (input_bfd, in, &pdr); in bfd_ecoff_debug_accumulate() 976 (*output_swap->swap_pdr_out) (output_bfd, &pdr, out); in bfd_ecoff_debug_accumulate() 1590 || ! ecoff_write_shuffle (abfd, swap, ainfo->pdr, space) in bfd_ecoff_write_accumulated_debug() 2044 PDR pdr; in lookup_line() local 2138 (*debug_swap->swap_pdr_in) (abfd, pdr_ptr, &pdr); in lookup_line() [all …]
|
| D | elfxx-mips.c | 1539 PDR pdr; in mips_elf_create_procedure_table() local 1593 (*swap->swap_pdr_in) (abfd, epdr + i, &pdr); in mips_elf_create_procedure_table() 1594 (*swap->swap_sym_in) (abfd, &esym[pdr.isym], &sym); in mips_elf_create_procedure_table() 1596 rp->regmask = pdr.regmask; in mips_elf_create_procedure_table() 1597 rp->regoffset = pdr.regoffset; in mips_elf_create_procedure_table() 1598 rp->fregmask = pdr.fregmask; in mips_elf_create_procedure_table() 1599 rp->fregoffset = pdr.fregoffset; in mips_elf_create_procedure_table() 1600 rp->frameoffset = pdr.frameoffset; in mips_elf_create_procedure_table() 1601 rp->framereg = pdr.framereg; in mips_elf_create_procedure_table() 1602 rp->pcreg = pdr.pcreg; in mips_elf_create_procedure_table()
|
| /netbsd/src/external/gpl3/binutils/dist/bfd/ |
| D | ecofflink.c | 362 struct shuffle *pdr; member 481 ainfo->pdr = NULL; in bfd_ecoff_debug_init() 931 if (!add_file_shuffle (ainfo, &ainfo->pdr, &ainfo->pdr_end, in bfd_ecoff_debug_accumulate() 968 if (!add_memory_shuffle (ainfo, &ainfo->pdr, &ainfo->pdr_end, out, in bfd_ecoff_debug_accumulate() 973 PDR pdr; in bfd_ecoff_debug_accumulate() local 975 (*input_swap->swap_pdr_in) (input_bfd, in, &pdr); in bfd_ecoff_debug_accumulate() 976 (*output_swap->swap_pdr_out) (output_bfd, &pdr, out); in bfd_ecoff_debug_accumulate() 1590 || ! ecoff_write_shuffle (abfd, swap, ainfo->pdr, space) in bfd_ecoff_write_accumulated_debug() 2044 PDR pdr; in lookup_line() local 2138 (*debug_swap->swap_pdr_in) (abfd, pdr_ptr, &pdr); in lookup_line() [all …]
|
| D | elfxx-mips.c | 1539 PDR pdr; in mips_elf_create_procedure_table() local 1593 (*swap->swap_pdr_in) (abfd, epdr + i, &pdr); in mips_elf_create_procedure_table() 1594 (*swap->swap_sym_in) (abfd, &esym[pdr.isym], &sym); in mips_elf_create_procedure_table() 1596 rp->regmask = pdr.regmask; in mips_elf_create_procedure_table() 1597 rp->regoffset = pdr.regoffset; in mips_elf_create_procedure_table() 1598 rp->fregmask = pdr.fregmask; in mips_elf_create_procedure_table() 1599 rp->fregoffset = pdr.fregoffset; in mips_elf_create_procedure_table() 1600 rp->frameoffset = pdr.frameoffset; in mips_elf_create_procedure_table() 1601 rp->framereg = pdr.framereg; in mips_elf_create_procedure_table() 1602 rp->pcreg = pdr.pcreg; in mips_elf_create_procedure_table()
|
| /netbsd/src/external/gpl3/binutils/dist/gas/ |
| D | ecoff.c | 860 PDR pdr; /* ECOFF debugging info */ member 2140 new_proc_ptr->pdr.isym = -1; in add_procedure() 2141 new_proc_ptr->pdr.iline = -1; in add_procedure() 2142 new_proc_ptr->pdr.lnLow = -1; in add_procedure() 2143 new_proc_ptr->pdr.lnHigh = -1; in add_procedure() 3145 cur_proc_ptr->pdr.fregmask = val; in ecoff_directive_fmask() 3146 cur_proc_ptr->pdr.fregoffset = get_absolute_expression (); in ecoff_directive_fmask() 3165 cur_proc_ptr->pdr.framereg = tc_get_register (1); in ecoff_directive_frame() 3177 cur_proc_ptr->pdr.frameoffset = val; in ecoff_directive_frame() 3179 cur_proc_ptr->pdr.pcreg = tc_get_register (0); in ecoff_directive_frame() [all …]
|
| D | ChangeLog-0203 | 1198 (md_begin) [OBJ_ELF]: Use it to control .pdr creation. 1202 (md_show_usage) [OBJ_ELF]: Document -mpdr, -mno-pdr. 1204 * doc/c-mips.texi (MIPS Opts): Document -mpdr, -mno-pdr. 5329 (md_begin): Always generate .pdr unless ECOFF_DEBUGGING or not ELF. 5332 (s_mips_frame): Always generate .pdr unless ECOFF_DEBUGGING or not
|
| /netbsd/src/distrib/ews4800mips/floppies/instkernel/ |
| D | Makefile | 11 MDSET_STRIPSECTIONS= -R .MIPS.abiflags -R .gnu.attributes -R .pdr -R .reginfo
|
| /netbsd/src/sys/arch/arm/arm32/ |
| D | bus_dma.c | 1971 struct arm32_dma_range *pdr; in _bus_dmatag_subregion() local 1973 for (i = 0, pdr = tag->_ranges; i < tag->_nranges; i++, pdr++) { in _bus_dmatag_subregion() 1976 if (min_addr > pdr->dr_sysbase + pdr->dr_len in _bus_dmatag_subregion() 1977 || max_addr < pdr->dr_sysbase) { in _bus_dmatag_subregion() 1988 dr[0] = pdr[0]; in _bus_dmatag_subregion()
|
| /netbsd/src/sys/arch/arc/stand/boot/ |
| D | Makefile | 65 -R .pdr -R .mdebug.abi32 -R .comment -R .ident --strip-debug \
|
| /netbsd/src/sys/arch/mipsco/stand/ |
| D | Makefile.booters | 68 STRIPSECTIONS?= -R .reginfo -R .mdebug.abi32 -R .comment -R .pdr \
|
| /netbsd/src/external/gpl3/binutils/dist/include/coff/ |
| D | sym.h | 156 typedef struct pdr { struct
|
| D | ChangeLog-9103 | 712 * sym.h (struct pdr): field "prof" added.
|
| /netbsd/src/external/gpl3/gdb/dist/include/coff/ |
| D | sym.h | 156 typedef struct pdr { struct
|
| D | ChangeLog-9103 | 712 * sym.h (struct pdr): field "prof" added.
|
| /netbsd/src/external/gpl3/binutils/dist/gas/doc/ |
| D | c-mips.texi | 610 @itemx -mno-pdr 611 Control generation of @code{.pdr} sections. Off by default on IRIX, on
|