Lines Matching defs:intcore

385 swapcore_sun3 (bfd *abfd, char *ext, struct internal_sunos_core *intcore)
389 intcore->c_magic = H_GET_32 (abfd, &extcore->c_magic);
390 intcore->c_len = H_GET_32 (abfd, &extcore->c_len);
391 intcore->c_regs_pos = offsetof (struct external_sun3_core, c_regs);
392 intcore->c_regs_size = sizeof (extcore->c_regs);
398 (abfd, &extcore->c_aouthdr, &intcore->c_aouthdr);
399 intcore->c_signo = H_GET_32 (abfd, &extcore->c_signo);
400 intcore->c_tsize = H_GET_32 (abfd, &extcore->c_tsize);
401 intcore->c_dsize = H_GET_32 (abfd, &extcore->c_dsize);
402 intcore->c_data_addr = N_DATADDR (intcore->c_aouthdr);
403 intcore->c_ssize = H_GET_32 (abfd, &extcore->c_ssize);
404 memcpy (intcore->c_cmdname, extcore->c_cmdname, sizeof (intcore->c_cmdname));
405 intcore->fp_stuff_pos = offsetof (struct external_sun3_core, fp_stuff);
407 intcore->fp_stuff_size = intcore->c_len - (sizeof extcore->c_ucode) -
410 intcore->c_ucode = H_GET_32 (abfd,
411 (intcore->c_len
414 intcore->c_stacktop = 0x0E000000; /* By experimentation. */
420 swapcore_sparc (bfd *abfd, char *ext, struct internal_sunos_core *intcore)
424 intcore->c_magic = H_GET_32 (abfd, &extcore->c_magic);
425 intcore->c_len = H_GET_32 (abfd, &extcore->c_len);
426 intcore->c_regs_pos = offsetof (struct external_sparc_core, c_regs);
427 intcore->c_regs_size = sizeof (extcore->c_regs);
433 (abfd, &extcore->c_aouthdr, &intcore->c_aouthdr);
434 intcore->c_signo = H_GET_32 (abfd, &extcore->c_signo);
435 intcore->c_tsize = H_GET_32 (abfd, &extcore->c_tsize);
436 intcore->c_dsize = H_GET_32 (abfd, &extcore->c_dsize);
437 intcore->c_data_addr = N_DATADDR (intcore->c_aouthdr);
438 intcore->c_ssize = H_GET_32 (abfd, &extcore->c_ssize);
439 memcpy (intcore->c_cmdname, extcore->c_cmdname, sizeof (intcore->c_cmdname));
440 intcore->fp_stuff_pos = offsetof (struct external_sparc_core, fp_stuff);
442 intcore->fp_stuff_size = intcore->c_len - (sizeof extcore->c_ucode) -
445 intcore->c_ucode = H_GET_32 (abfd,
446 (intcore->c_len
468 intcore->c_stacktop = SPARC_USRSTACK_SPARC10;
470 intcore->c_stacktop = SPARC_USRSTACK_SPARC2;
477 swapcore_solaris_bcp (bfd *abfd, char *ext, struct internal_sunos_core *intcore)
482 intcore->c_magic = H_GET_32 (abfd, &extcore->c_magic);
483 intcore->c_len = H_GET_32 (abfd, &extcore->c_len);
484 intcore->c_regs_pos = offsetof (struct external_solaris_bcp_core, c_regs);
485 intcore->c_regs_size = sizeof (extcore->c_regs);
497 memset ((void *) &intcore->c_aouthdr, 0, sizeof (struct internal_exec));
498 intcore->c_data_addr = H_GET_32 (abfd, &extcore->c_exdata_datorg);
499 intcore->c_signo = H_GET_32 (abfd, &extcore->c_signo);
500 intcore->c_tsize = H_GET_32 (abfd, &extcore->c_tsize);
501 intcore->c_dsize = H_GET_32 (abfd, &extcore->c_dsize);
502 intcore->c_ssize = H_GET_32 (abfd, &extcore->c_ssize);
503 memcpy (intcore->c_cmdname, extcore->c_cmdname, sizeof (intcore->c_cmdname));
504 intcore->fp_stuff_pos =
507 intcore->fp_stuff_size = intcore->c_len - (sizeof extcore->c_ucode) -
510 intcore->c_ucode = H_GET_32 (abfd,
511 (intcore->c_len
533 intcore->c_stacktop = SPARC_USRSTACK_SPARC10;
535 intcore->c_stacktop = SPARC_USRSTACK_SPARC2;