/toolchain/binutils/binutils-2.25/opcodes/ |
D | msp430-dis.c | 144 int dst = 0; in msp430_singleoperand() local 196 dst = msp430dis_opcode (addr + 2, info); in msp430_singleoperand() 199 sprintf (op, "0x%04x", dst); in msp430_singleoperand() 201 PS ((short) (addr + 2) + dst)); in msp430_singleoperand() 204 dst |= extended_dst << 16; in msp430_singleoperand() 205 sprintf (op, "0x%05x", dst); in msp430_singleoperand() 207 (long)((addr + 2 + dst) & 0xfffff)); in msp430_singleoperand() 213 dst = msp430dis_opcode (addr + 2, info); in msp430_singleoperand() 216 sprintf (op, "&0x%04x", PS (dst)); in msp430_singleoperand() 219 dst |= extended_dst << 16; in msp430_singleoperand() [all …]
|
D | pdp11-dis.c | 196 int src, dst; in print_insn_pdp11() local 208 dst = opcode & 0x3f; in print_insn_pdp11() 222 print_reg (dst, info); in print_insn_pdp11() 228 dst |= JUMP; in print_insn_pdp11() 229 if (print_operand (&memaddr, dst, info) < 0) in print_insn_pdp11() 236 dst |= JUMP; in print_insn_pdp11() 237 if (print_foperand (&memaddr, dst, info) < 0) in print_insn_pdp11() 246 dst |= JUMP; in print_insn_pdp11() 247 if (print_operand (&memaddr, dst, info) < 0) in print_insn_pdp11() 253 if (print_operand (&memaddr, dst, info) < 0) in print_insn_pdp11() [all …]
|
/toolchain/binutils/binutils-2.25/bfd/ |
D | nlmswap.h | 40 Nlm_Internal_Fixed_Header *dst) in nlm_swap_fixed_header_in() argument 44 memcpy (dst->signature, src->signature, NLM_SIGNATURE_SIZE); in nlm_swap_fixed_header_in() 45 memcpy (dst->moduleName, src->moduleName, NLM_MODULE_NAME_SIZE); in nlm_swap_fixed_header_in() 46 dst->version = in nlm_swap_fixed_header_in() 48 dst->codeImageOffset = in nlm_swap_fixed_header_in() 50 dst->codeImageSize = in nlm_swap_fixed_header_in() 52 dst->dataImageOffset = in nlm_swap_fixed_header_in() 54 dst->dataImageSize = in nlm_swap_fixed_header_in() 56 dst->uninitializedDataSize = in nlm_swap_fixed_header_in() 58 dst->customDataOffset = in nlm_swap_fixed_header_in() [all …]
|
D | elfcode.h | 177 Elf_Internal_Sym *dst) in elf_swap_symbol_in() argument 183 dst->st_name = H_GET_32 (abfd, src->st_name); in elf_swap_symbol_in() 185 dst->st_value = H_GET_SIGNED_WORD (abfd, src->st_value); in elf_swap_symbol_in() 187 dst->st_value = H_GET_WORD (abfd, src->st_value); in elf_swap_symbol_in() 188 dst->st_size = H_GET_WORD (abfd, src->st_size); in elf_swap_symbol_in() 189 dst->st_info = H_GET_8 (abfd, src->st_info); in elf_swap_symbol_in() 190 dst->st_other = H_GET_8 (abfd, src->st_other); in elf_swap_symbol_in() 191 dst->st_shndx = H_GET_16 (abfd, src->st_shndx); in elf_swap_symbol_in() 192 if (dst->st_shndx == (SHN_XINDEX & 0xffff)) in elf_swap_symbol_in() 196 dst->st_shndx = H_GET_32 (abfd, shndx->est_shndx); in elf_swap_symbol_in() [all …]
|
D | verilog.c | 165 char *dst = buffer; in verilog_write_address() local 169 *dst++ = '@'; in verilog_write_address() 170 TOHEX (dst, (address >> 24)); in verilog_write_address() 171 dst += 2; in verilog_write_address() 172 TOHEX (dst, (address >> 16)); in verilog_write_address() 173 dst += 2; in verilog_write_address() 174 TOHEX (dst, (address >> 8)); in verilog_write_address() 175 dst += 2; in verilog_write_address() 176 TOHEX (dst, (address)); in verilog_write_address() 177 dst += 2; in verilog_write_address() [all …]
|
D | coff-z8k.c | 76 #define SWAP_OUT_RELOC_EXTRA(abfd, src, dst) \ argument 77 dst->r_stuff[0] = 'S'; \ 78 dst->r_stuff[1] = 'C'; 83 rtype2howto (arelent *internal, struct internal_reloc *dst) in rtype2howto() argument 85 switch (dst->r_type) in rtype2howto() 221 bfd_vma dst = bfd_coff_reloc16_get_value (reloc, link_info, in extra_case() local 227 dst = (dst & 0xffff) | ((dst & 0xff0000) << 8) | 0x80000000; in extra_case() 228 bfd_put_32 (in_abfd, dst, data + *dst_ptr); in extra_case() 255 bfd_vma dst = bfd_coff_reloc16_get_value (reloc, link_info, in extra_case() local 260 int gap = dst - dot - 1; /* -1, since we're in the odd byte of the in extra_case() [all …]
|
D | som.c | 1604 struct som_clock *dst) in som_swap_clock_in() argument 1606 dst->secs = bfd_getb32 (src->secs); in som_swap_clock_in() 1607 dst->nanosecs = bfd_getb32 (src->nanosecs); in som_swap_clock_in() 1612 struct som_external_clock *dst) in som_swap_clock_out() argument 1614 bfd_putb32 (src->secs, dst->secs); in som_swap_clock_out() 1615 bfd_putb32 (src->nanosecs, dst->nanosecs); in som_swap_clock_out() 1620 struct som_header *dst) in som_swap_header_in() argument 1622 dst->system_id = bfd_getb16 (src->system_id); in som_swap_header_in() 1623 dst->a_magic = bfd_getb16 (src->a_magic); in som_swap_header_in() 1624 dst->version_id = bfd_getb32 (src->version_id); in som_swap_header_in() [all …]
|
D | tekhex.c | 705 writevalue (char **dst, bfd_vma value) in writevalue() argument 707 char *p = *dst; in writevalue() 722 *dst = p; in writevalue() 729 *dst = p; in writevalue() 733 writesym (char **dst, const char *sym) in writesym() argument 735 char *p = *dst; in writesym() 758 *dst = p; in writesym() 811 char *dst = buffer; in tekhex_write_object_contents() local 813 writevalue (&dst, addr + d->vma); in tekhex_write_object_contents() 816 TOHEX (dst, d->chunk_data[addr + low]); in tekhex_write_object_contents() [all …]
|
D | coff-i860.c | 446 #define RTYPE2HOWTO(cache_ptr, dst) \ argument 448 ((dst)->r_type < sizeof (howto_table) / sizeof (howto_table[0]) \ 449 ? howto_table + (dst)->r_type \ 581 i860_reloc_processing (arelent *cache_ptr, struct internal_reloc *dst, in i860_reloc_processing() argument 584 if (dst->r_type == COFF860_R_PAIR) in i860_reloc_processing() 587 cache_ptr->howto = howto_table + dst->r_type; in i860_reloc_processing() 588 cache_ptr->address = dst->r_vaddr; in i860_reloc_processing() 589 cache_ptr->addend = dst->r_symndx; in i860_reloc_processing() 597 cache_ptr->address = dst->r_vaddr; in i860_reloc_processing() 599 if (dst->r_symndx != -1) in i860_reloc_processing() [all …]
|
D | coff64-rs6000.c | 233 #define RTYPE2HOWTO(cache_ptr, dst) xcoff64_rtype2howto (cache_ptr, dst) argument 594 struct internal_ldhdr *dst) in xcoff64_swap_ldhdr_in() argument 598 dst->l_version = bfd_get_32 (abfd, src->l_version); in xcoff64_swap_ldhdr_in() 599 dst->l_nsyms = bfd_get_32 (abfd, src->l_nsyms); in xcoff64_swap_ldhdr_in() 600 dst->l_nreloc = bfd_get_32 (abfd, src->l_nreloc); in xcoff64_swap_ldhdr_in() 601 dst->l_istlen = bfd_get_32 (abfd, src->l_istlen); in xcoff64_swap_ldhdr_in() 602 dst->l_nimpid = bfd_get_32 (abfd, src->l_nimpid); in xcoff64_swap_ldhdr_in() 603 dst->l_stlen = bfd_get_32 (abfd, src->l_stlen); in xcoff64_swap_ldhdr_in() 604 dst->l_impoff = bfd_get_64 (abfd, src->l_impoff); in xcoff64_swap_ldhdr_in() 605 dst->l_stoff = bfd_get_64 (abfd, src->l_stoff); in xcoff64_swap_ldhdr_in() [all …]
|
D | elf64-mips.c | 2882 Elf64_Mips_Internal_Rela *dst) in mips_elf64_swap_reloc_in() argument 2884 dst->r_offset = H_GET_64 (abfd, src->r_offset); in mips_elf64_swap_reloc_in() 2885 dst->r_sym = H_GET_32 (abfd, src->r_sym); in mips_elf64_swap_reloc_in() 2886 dst->r_ssym = H_GET_8 (abfd, src->r_ssym); in mips_elf64_swap_reloc_in() 2887 dst->r_type3 = H_GET_8 (abfd, src->r_type3); in mips_elf64_swap_reloc_in() 2888 dst->r_type2 = H_GET_8 (abfd, src->r_type2); in mips_elf64_swap_reloc_in() 2889 dst->r_type = H_GET_8 (abfd, src->r_type); in mips_elf64_swap_reloc_in() 2890 dst->r_addend = 0; in mips_elf64_swap_reloc_in() 2897 Elf64_Mips_Internal_Rela *dst) in mips_elf64_swap_reloca_in() argument 2899 dst->r_offset = H_GET_64 (abfd, src->r_offset); in mips_elf64_swap_reloca_in() [all …]
|
D | coffcode.h | 1912 struct external_reloc dst; in coff_set_alignment_hook() local 1919 if (bfd_bread (& dst, relsz, abfd) != relsz) in coff_set_alignment_hook() 1922 coff_swap_reloc_in (abfd, &dst, &n); in coff_set_alignment_hook() 2656 struct external_reloc dst; in coff_write_relocs() local 2688 coff_swap_reloc_out (abfd, &n, &dst); in coff_write_relocs() 2689 if (bfd_bwrite (& dst, (bfd_size_type) bfd_coff_relsz (abfd), in coff_write_relocs() 2776 coff_swap_reloc_out (abfd, &n, &dst); in coff_write_relocs() 2778 if (bfd_bwrite (& dst, (bfd_size_type) bfd_coff_relsz (abfd), in coff_write_relocs() 4555 struct internal_lineno dst; in coff_slurp_line_table() local 4557 bfd_coff_swap_lineno_in (abfd, src, &dst); in coff_slurp_line_table() [all …]
|
D | coff-h8500.c | 86 #define SWAP_OUT_RELOC_EXTRA(abfd, src, dst) \ argument 87 dst->r_stuff[0] = 'S'; \ 88 dst->r_stuff[1] = 'C'; 93 rtype2howto (arelent * internal, struct internal_reloc *dst) in rtype2howto() argument 95 switch (dst->r_type) in rtype2howto() 238 bfd_vma dst = bfd_coff_reloc16_get_value (reloc, link_info, in extra_case() local 243 int gap = dst - dot - 1; /* -1 since were in the odd byte of the in extra_case() 262 bfd_vma dst = bfd_coff_reloc16_get_value (reloc, link_info, in extra_case() local 267 int gap = dst - dot - 1; /* -1 since were in the odd byte of the in extra_case()
|
/toolchain/binutils/binutils-2.25/gprof/ |
D | symtab.c | 81 Sym *src, *dst; in symtab_finalize() local 94 for (src = dst = tab->base; src < tab->limit; ++src) in symtab_finalize() 105 if ((!src->is_static && dst[-1].is_static) in symtab_finalize() 106 || ((src->is_static == dst[-1].is_static) in symtab_finalize() 107 && ((src->is_func && !dst[-1].is_func) in symtab_finalize() 108 || ((src->is_func == dst[-1].is_func) in symtab_finalize() 109 && ((src->name[0] != '_' && dst[-1].name[0] == '_') in symtab_finalize() 112 && dst[-1].name[1] == '_')))))) in symtab_finalize() 118 dst[-1].name, dst[-1].is_static ? 't' : 'T', in symtab_finalize() 119 dst[-1].is_func ? 'F' : 'f'); in symtab_finalize() [all …]
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/ |
D | opcodes.s | 13 add *ar2+, 16, a ; Smem, 16, src [,dst] 14 add *ar3+, a, b ; Smem [,SHIFT], src [,dst] (-16<=SHIFT<=15) 17 add *ar3+, *ar4+, a ; Xmem, Ymem, dst 18 add #-32768, a ; #lk [,SHFT], src [,dst] (-32768<=lk<=32767) 20 add #0,16,a,b ; #lk, 16, src, [,dst] 22 add a,-16,b ; src [,SHIFT][,dst] 23 add a,asm,b ; src, ASM [,dst] 29 and #1,1,a,b ; #lk[,SHFT],src[,dst] 31 and #1,#16,a,b ; #lk,16,src[,dst] 33 and a ; src[,SHIFT][,dst] [all …]
|
/toolchain/binutils/binutils-2.25/ |
D | install-sh | 80 dst= 254 dst=$src 255 dstdir=$dst 272 dst=$dst_arg 276 if test -d "$dst"; then 281 dstdir=$dst 282 dst=$dstdir/`basename "$src"` 285 dstdir=`dirname "$dst"` 423 { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && 424 { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && [all …]
|
/toolchain/binutils/binutils-2.25/include/opcode/ |
D | tic6x-opcode-table.h | 136 ENC(dst, reg, 1))) 140 ENC3(ENC(s, fu, 0), ENC(src2, reg, 0), ENC(dst, reg, 1))) 146 ENC(dst, reg, 1))) 152 ENC(dst, reg, 1))) 158 ENC(dst, reg, 1))) 164 ENC(src2, reg, 1), ENC(dst, reg, 2))) 169 ENC(src2, reg, 1), ENC(dst, reg, 2))) 174 ENC(src2, reg, 1), ENC(dst, reg, 2))) 179 ENC(src2, reg, 1), ENC(dst, reg, 2))) 184 ENC(dst, reg, 2))) [all …]
|
D | tic6x-insn-formats.h | 72 FLD(dst, 23, 5))) 75 FLD(src2, 18, 5), FLD(dst, 23, 5))) 84 FLD(baseR, 18, 5), FLD(sc, 23, 1), FLD(dst, 24, 4))) 90 FLD(dst, 23, 5))) 93 FLD(dst, 23, 5))) 268 SFLDS2(FLD(dst, 7, 3), 289 FLD(src2, 18, 5), FLD(dst, 23, 5))) 292 FLD(src2, 18, 5), FLD(dst, 23, 5))) 295 FLD(dst, 23, 5))) 301 SFLDS5(FLD(dst, 4, 3), FLD(src2, 7, 3), FLD(op, 11, 1), FLD(x, 12, 1), [all …]
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/ |
D | insns16-d-unit.s | 8 ; op = 1 | LDW (.unit)*B15[ucst5], dst 24 dx2op: ; op = 0 | ADD (.unit) src1, src2, dst (src1 = dst) 25 ; op = 1 | SUB (.unit) src1, src2, dst (src1 = dst, dst = src1 - src2 41 dx5: ; ADDAW (.unit)B15, ucst5, dst
|
/toolchain/binutils/binutils-2.25/cpu/ |
D | m32c.cpu | 1648 (name h-dst-index) 1660 (name h-dst-indirect) 1661 (comment "indirect dst for the next insn") 2233 (dnop DstIndex "Destination Index for the next insn" (SEM-ONLY MACH32 m32c-isa) h-dst-index f-nil) 3572 ;(define-pmacro (dst-An-indirect-indirect-operand xmode) 3588 ; (dst-An-indirect-indirect-operand QI) 3589 ; (dst-An-indirect-indirect-operand HI) 3590 ; (dst-An-indirect-indirect-operand SI) 3596 (define-pmacro (dst-relative-indirect-operand offset xmode) 3692 ; (dst-relative-indirect-operand 24 QI) [all …]
|
/toolchain/binutils/binutils-2.25/include/coff/ |
D | ti.h | 104 #define COFF_ADJUST_FILEHDR_IN_POST(abfd, src, dst) \ argument 108 ((struct internal_filehdr *)(dst))->f_target_id = \ 115 #define COFF_ADJUST_FILEHDR_OUT_POST(abfd, src, dst) \ argument 120 ((FILHDR *)(dst))->f_target_id); \ 496 struct internal_syment *dst = (struct internal_syment *)(INT); \ 497 if (dst->n_sclass == C_MOS || dst->n_sclass == C_MOU) \ 498 dst->n_value /= 8; \ 499 else if (NEEDS_PAGE (dst->n_sclass)) { \ 500 asection *scn = coff_section_from_bfd_index (abfd, dst->n_scnum); \ 501 dst->n_value |= (scn->lma & PAGE_MASK); \ [all …]
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/aarch64/ |
D | movi.s | 5 .macro all_64bit_mask_movi dst argument 14 movi \dst, \b7 + \b6 + \b5 + \b4 + \b3 + \b2 + \b1 + \b0 31 .macro all_8bit_imm_movi dst, from=0, to=255 32 movi \dst, \from 34 all_8bit_imm_movi \dst, "(\from+1)", \to 48 .macro all_8bit_imm_movi_sft dst, from=0, to=255, shift_op, amount 49 movi \dst, \from, \shift_op \amount 51 all_8bit_imm_movi_sft \dst, "(\from+1)", \to, \shift_op, \amount
|
/toolchain/binutils/binutils-2.25/bfd/doc/ |
D | chew.c | 209 overwrite_string (dst, src) in overwrite_string() argument 210 string_type *dst; in overwrite_string() 213 free (dst->ptr); 214 dst->size = src->size; 215 dst->write_idx = src->write_idx; 216 dst->ptr = src->ptr; 244 catstr (dst, src) in catstr() argument 245 string_type *dst; in catstr() 248 catbuf (dst, src->ptr, src->write_idx); 435 remove_noncomments (src, dst) in remove_noncomments() argument [all …]
|
/toolchain/binutils/binutils-2.25/libiberty/ |
D | concat.c | 71 vconcat_copy (char *dst, const char *first, va_list args) in vconcat_copy() argument 73 char *end = dst; in vconcat_copy() 84 return dst; in vconcat_copy() 105 concat_copy (char *dst, const char *first, ...) in concat_copy() argument 111 vconcat_copy (dst, first, args); in concat_copy() 112 save_dst = dst; /* With K&R C, dst goes out of scope here. */ in concat_copy()
|
/toolchain/binutils/binutils-2.25/binutils/ |
D | unwind-ia64.c | 278 #define UNW_DEC_REG_GR(fmt, src, dst, arg) \ argument 279 printf ("\t%s:%s_gr(reg=r%u)\n", fmt, src, dst) 281 #define UNW_DEC_RP_BR(fmt, dst, arg) \ argument 282 printf ("\t%s:rp_br(reg=b%u)\n", fmt, dst) 732 unsigned char byte1 = *dp++, r, dst; in unw_decode_p2_p5() local 735 dst = (byte1 & 0x7f); in unw_decode_p2_p5() 739 UNW_DEC_REG_GR ("P3", UNW_REG_PSP, dst, arg); in unw_decode_p2_p5() 742 UNW_DEC_REG_GR ("P3", UNW_REG_RP, dst, arg); in unw_decode_p2_p5() 745 UNW_DEC_REG_GR ("P3", UNW_REG_PFS, dst, arg); in unw_decode_p2_p5() 748 UNW_DEC_REG_GR ("P3", UNW_REG_PR, dst, arg); in unw_decode_p2_p5() [all …]
|