1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155
|
/* SH5 simulator support code
Copyright (C) 2000-2001, 2006, 2008-2012 Free Software Foundation,
Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#define WANT_CPU
#define WANT_CPU_SH64
#include "sim-main.h"
#include "sim-fpu.h"
#include "cgen-mem.h"
#include "cgen-ops.h"
#include "gdb/callback.h"
#include "defs-compact.h"
#include "bfd.h"
/* From include/gdb/. */
#include "gdb/sim-sh.h"
#define SYS_exit 1
#define SYS_read 3
#define SYS_write 4
#define SYS_open 5
#define SYS_close 6
#define SYS_lseek 19
#define SYS_time 23
#define SYS_argc 172
#define SYS_argnlen 173
#define SYS_argn 174
IDESC * sh64_idesc_media;
IDESC * sh64_idesc_compact;
BI
sh64_endian (SIM_CPU *current_cpu)
{
return (CURRENT_TARGET_BYTE_ORDER == BIG_ENDIAN);
}
SF
sh64_fldi0 (SIM_CPU *current_cpu)
{
SF result;
sim_fpu_to32 (&result, &sim_fpu_zero);
return result;
}
SF
sh64_fldi1 (SIM_CPU *current_cpu)
{
SF result;
sim_fpu_to32 (&result, &sim_fpu_one);
return result;
}
DF
sh64_fabsd(SIM_CPU *current_cpu, DF drgh)
{
DF result;
sim_fpu f, fres;
sim_fpu_64to (&f, drgh);
sim_fpu_abs (&fres, &f);
sim_fpu_to64 (&result, &fres);
return result;
}
SF
sh64_fabss(SIM_CPU *current_cpu, SF frgh)
{
SF result;
sim_fpu f, fres;
sim_fpu_32to (&f, frgh);
sim_fpu_abs (&fres, &f);
sim_fpu_to32 (&result, &fres);
return result;
}
DF
sh64_faddd(SIM_CPU *current_cpu, DF drg, DF drh)
{
DF result;
sim_fpu f1, f2, fres;
sim_fpu_64to (&f1, drg);
sim_fpu_64to (&f2, drh);
sim_fpu_add (&fres, &f1, &f2);
sim_fpu_to64 (&result, &fres);
return result;
}
SF
sh64_fadds(SIM_CPU *current_cpu, SF frg, SF frh)
{
SF result;
sim_fpu f1, f2, fres;
sim_fpu_32to (&f1, frg);
sim_fpu_32to (&f2, frh);
sim_fpu_add (&fres, &f1, &f2);
sim_fpu_to32 (&result, &fres);
return result;
}
BI
sh64_fcmpeqd(SIM_CPU *current_cpu, DF drg, DF drh)
{
sim_fpu f1, f2;
sim_fpu_64to (&f1, drg);
sim_fpu_64to (&f2, drh);
return sim_fpu_is_eq (&f1, &f2);
}
BI
sh64_fcmpeqs(SIM_CPU *current_cpu, SF frg, SF frh)
{
sim_fpu f1, f2;
sim_fpu_32to (&f1, frg);
sim_fpu_32to (&f2, frh);
return sim_fpu_is_eq (&f1, &f2);
}
BI
sh64_fcmpged(SIM_CPU *current_cpu, DF drg, DF drh)
{
sim_fpu f1, f2;
sim_fpu_64to (&f1, drg);
sim_fpu_64to (&f2, drh);
return sim_fpu_is_ge (&f1, &f2);
}
BI
sh64_fcmpges(SIM_CPU *current_cpu, SF frg, SF frh)
{
sim_fpu f1, f2;
sim_fpu_32to (&f1, frg);
sim_fpu_32to (&f2, frh);
return sim_fpu_is_ge (&f1, &f2);
}
BI
sh64_fcmpgtd(SIM_CPU *current_cpu, DF drg, DF drh)
{
sim_fpu f1, f2;
sim_fpu_64to (&f1, drg);
sim_fpu_64to (&f2, drh);
return sim_fpu_is_gt (&f1, &f2);
}
BI
sh64_fcmpgts(SIM_CPU *current_cpu, SF frg, SF frh)
{
sim_fpu f1, f2;
sim_fpu_32to (&f1, frg);
sim_fpu_32to (&f2, frh);
return sim_fpu_is_gt (&f1, &f2);
}
BI
sh64_fcmpund(SIM_CPU *current_cpu, DF drg, DF drh)
{
sim_fpu f1, f2;
sim_fpu_64to (&f1, drg);
sim_fpu_64to (&f2, drh);
return (sim_fpu_is_nan (&f1) || sim_fpu_is_nan (&f2));
}
BI
sh64_fcmpuns(SIM_CPU *current_cpu, SF frg, SF frh)
{
sim_fpu f1, f2;
sim_fpu_32to (&f1, frg);
sim_fpu_32to (&f2, frh);
return (sim_fpu_is_nan (&f1) || sim_fpu_is_nan (&f2));
}
SF
sh64_fcnvds(SIM_CPU *current_cpu, DF drgh)
{
union {
unsigned long long ll;
double d;
} f1;
union {
unsigned long l;
float f;
} f2;
f1.ll = drgh;
f2.f = (float) f1.d;
return (SF) f2.l;
}
DF
sh64_fcnvsd(SIM_CPU *current_cpu, SF frgh)
{
DF result;
sim_fpu f;
sim_fpu_32to (&f, frgh);
sim_fpu_to64 (&result, &f);
return result;
}
DF
sh64_fdivd(SIM_CPU *current_cpu, DF drg, DF drh)
{
DF result;
sim_fpu f1, f2, fres;
sim_fpu_64to (&f1, drg);
sim_fpu_64to (&f2, drh);
sim_fpu_div (&fres, &f1, &f2);
sim_fpu_to64 (&result, &fres);
return result;
}
SF
sh64_fdivs(SIM_CPU *current_cpu, SF frg, SF frh)
{
SF result;
sim_fpu f1, f2, fres;
sim_fpu_32to (&f1, frg);
sim_fpu_32to (&f2, frh);
sim_fpu_div (&fres, &f1, &f2);
sim_fpu_to32 (&result, &fres);
return result;
}
DF
sh64_floatld(SIM_CPU *current_cpu, SF frgh)
{
DF result;
sim_fpu f;
sim_fpu_i32to (&f, frgh, sim_fpu_round_default);
sim_fpu_to64 (&result, &f);
return result;
}
SF
sh64_floatls(SIM_CPU *current_cpu, SF frgh)
{
SF result;
sim_fpu f;
sim_fpu_i32to (&f, frgh, sim_fpu_round_default);
sim_fpu_to32 (&result, &f);
return result;
}
DF
sh64_floatqd(SIM_CPU *current_cpu, DF drgh)
{
DF result;
sim_fpu f;
sim_fpu_i64to (&f, drgh, sim_fpu_round_default);
sim_fpu_to64 (&result, &f);
return result;
}
SF
sh64_floatqs(SIM_CPU *current_cpu, DF drgh)
{
SF result;
sim_fpu f;
sim_fpu_i64to (&f, drgh, sim_fpu_round_default);
sim_fpu_to32 (&result, &f);
return result;
}
SF
sh64_fmacs(SIM_CPU *current_cpu, SF fr0, SF frm, SF frn)
{
SF result;
sim_fpu m1, m2, a1, fres;
sim_fpu_32to (&m1, fr0);
sim_fpu_32to (&m2, frm);
sim_fpu_32to (&a1, frn);
sim_fpu_mul (&fres, &m1, &m2);
sim_fpu_add (&fres, &fres, &a1);
sim_fpu_to32 (&result, &fres);
return result;
}
DF
sh64_fmuld(SIM_CPU *current_cpu, DF drg, DF drh)
{
DF result;
sim_fpu f1, f2, fres;
sim_fpu_64to (&f1, drg);
sim_fpu_64to (&f2, drh);
sim_fpu_mul (&fres, &f1, &f2);
sim_fpu_to64 (&result, &fres);
return result;
}
SF
sh64_fmuls(SIM_CPU *current_cpu, SF frg, SF frh)
{
SF result;
sim_fpu f1, f2, fres;
sim_fpu_32to (&f1, frg);
sim_fpu_32to (&f2, frh);
sim_fpu_mul (&fres, &f1, &f2);
sim_fpu_to32 (&result, &fres);
return result;
}
DF
sh64_fnegd(SIM_CPU *current_cpu, DF drgh)
{
DF result;
sim_fpu f1, f2;
sim_fpu_64to (&f1, drgh);
sim_fpu_neg (&f2, &f1);
sim_fpu_to64 (&result, &f2);
return result;
}
SF
sh64_fnegs(SIM_CPU *current_cpu, SF frgh)
{
SF result;
sim_fpu f, fres;
sim_fpu_32to (&f, frgh);
sim_fpu_neg (&fres, &f);
sim_fpu_to32 (&result, &fres);
return result;
}
DF
sh64_fsqrtd(SIM_CPU *current_cpu, DF drgh)
{
DF result;
sim_fpu f, fres;
sim_fpu_64to (&f, drgh);
sim_fpu_sqrt (&fres, &f);
sim_fpu_to64 (&result, &fres);
return result;
}
SF
sh64_fsqrts(SIM_CPU *current_cpu, SF frgh)
{
SF result;
sim_fpu f, fres;
sim_fpu_32to (&f, frgh);
sim_fpu_sqrt (&fres, &f);
sim_fpu_to32 (&result, &fres);
return result;
}
DF
sh64_fsubd(SIM_CPU *current_cpu, DF drg, DF drh)
{
DF result;
sim_fpu f1, f2, fres;
sim_fpu_64to (&f1, drg);
sim_fpu_64to (&f2, drh);
sim_fpu_sub (&fres, &f1, &f2);
sim_fpu_to64 (&result, &fres);
return result;
}
SF
sh64_fsubs(SIM_CPU *current_cpu, SF frg, SF frh)
{
SF result;
sim_fpu f1, f2, fres;
sim_fpu_32to (&f1, frg);
sim_fpu_32to (&f2, frh);
sim_fpu_sub (&fres, &f1, &f2);
sim_fpu_to32 (&result, &fres);
return result;
}
SF
sh64_ftrcdl(SIM_CPU *current_cpu, DF drgh)
{
SI result;
sim_fpu f;
sim_fpu_64to (&f, drgh);
sim_fpu_to32i (&result, &f, sim_fpu_round_zero);
return (SF) result;
}
SF
sh64_ftrcsl(SIM_CPU *current_cpu, SF frgh)
{
SI result;
sim_fpu f;
sim_fpu_32to (&f, frgh);
sim_fpu_to32i (&result, &f, sim_fpu_round_zero);
return (SF) result;
}
DF
sh64_ftrcdq(SIM_CPU *current_cpu, DF drgh)
{
DI result;
sim_fpu f;
sim_fpu_64to (&f, drgh);
sim_fpu_to64i (&result, &f, sim_fpu_round_zero);
return (DF) result;
}
DF
sh64_ftrcsq(SIM_CPU *current_cpu, SF frgh)
{
DI result;
sim_fpu f;
sim_fpu_32to (&f, frgh);
sim_fpu_to64i (&result, &f, sim_fpu_round_zero);
return (DF) result;
}
VOID
sh64_ftrvs(SIM_CPU *cpu, unsigned g, unsigned h, unsigned f)
{
int i, j;
for (i = 0; i < 4; i++)
{
SF result;
sim_fpu sum;
sim_fpu_32to (&sum, 0);
for (j = 0; j < 4; j++)
{
sim_fpu f1, f2, temp;
sim_fpu_32to (&f1, sh64_h_fr_get (cpu, (g + i) + (j * 4)));
sim_fpu_32to (&f2, sh64_h_fr_get (cpu, h + j));
sim_fpu_mul (&temp, &f1, &f2);
sim_fpu_add (&sum, &sum, &temp);
}
sim_fpu_to32 (&result, &sum);
sh64_h_fr_set (cpu, f + i, result);
}
}
VOID
sh64_fipr (SIM_CPU *cpu, unsigned m, unsigned n)
{
SF result = sh64_fmuls (cpu, sh64_h_fvc_get (cpu, m), sh64_h_fvc_get (cpu, n));
result = sh64_fadds (cpu, result, sh64_fmuls (cpu, sh64_h_frc_get (cpu, m + 1), sh64_h_frc_get (cpu, n + 1)));
result = sh64_fadds (cpu, result, sh64_fmuls (cpu, sh64_h_frc_get (cpu, m + 2), sh64_h_frc_get (cpu, n + 2)));
result = sh64_fadds (cpu, result, sh64_fmuls (cpu, sh64_h_frc_get (cpu, m + 3), sh64_h_frc_get (cpu, n + 3)));
sh64_h_frc_set (cpu, n + 3, result);
}
SF
sh64_fiprs (SIM_CPU *cpu, unsigned g, unsigned h)
{
SF temp = sh64_fmuls (cpu, sh64_h_fr_get (cpu, g), sh64_h_fr_get (cpu, h));
temp = sh64_fadds (cpu, temp, sh64_fmuls (cpu, sh64_h_fr_get (cpu, g + 1), sh64_h_fr_get (cpu, h + 1)));
temp = sh64_fadds (cpu, temp, sh64_fmuls (cpu, sh64_h_fr_get (cpu, g + 2), sh64_h_fr_get (cpu, h + 2)));
temp = sh64_fadds (cpu, temp, sh64_fmuls (cpu, sh64_h_fr_get (cpu, g + 3), sh64_h_fr_get (cpu, h + 3)));
return temp;
}
VOID
sh64_fldp (SIM_CPU *cpu, PCADDR pc, DI rm, DI rn, unsigned f)
{
sh64_h_fr_set (cpu, f, GETMEMSF (cpu, pc, rm + rn));
sh64_h_fr_set (cpu, f + 1, GETMEMSF (cpu, pc, rm + rn + 4));
}
VOID
sh64_fstp (SIM_CPU *cpu, PCADDR pc, DI rm, DI rn, unsigned f)
{
SETMEMSF (cpu, pc, rm + rn, sh64_h_fr_get (cpu, f));
SETMEMSF (cpu, pc, rm + rn + 4, sh64_h_fr_get (cpu, f + 1));
}
VOID
sh64_ftrv (SIM_CPU *cpu, UINT ignored)
{
/* TODO: Unimplemented. */
}
VOID
sh64_pref (SIM_CPU *cpu, SI addr)
{
/* TODO: Unimplemented. */
}
/* Count the number of arguments. */
static int
count_argc (cpu)
SIM_CPU *cpu;
{
int i = 0;
if (! STATE_PROG_ARGV (CPU_STATE (cpu)))
return -1;
while (STATE_PROG_ARGV (CPU_STATE (cpu)) [i] != NULL)
++i;
return i;
}
/* Read a null terminated string from memory, return in a buffer */
static char *
fetch_str (current_cpu, pc, addr)
SIM_CPU *current_cpu;
PCADDR pc;
DI addr;
{
char *buf;
int nr = 0;
while (sim_core_read_1 (current_cpu,
pc, read_map, addr + nr) != 0)
nr++;
buf = NZALLOC (char, nr + 1);
sim_read (CPU_STATE (current_cpu), addr, buf, nr);
return buf;
}
static void
trap_handler (SIM_CPU *current_cpu, int shmedia_abi_p, UQI trapnum, PCADDR pc)
{
char ch;
switch (trapnum)
{
case 1:
ch = GET_H_GRC (0);
sim_io_write_stdout (CPU_STATE (current_cpu), &ch, 1);
fflush (stdout);
break;
case 2:
sim_engine_halt (CPU_STATE (current_cpu), current_cpu, NULL, pc, sim_stopped, SIM_SIGTRAP);
break;
case 34:
{
int i;
int ret_reg = (shmedia_abi_p) ? 2 : 0;
char *buf;
DI PARM1 = GET_H_GR ((shmedia_abi_p) ? 3 : 5);
DI PARM2 = GET_H_GR ((shmedia_abi_p) ? 4 : 6);
DI PARM3 = GET_H_GR ((shmedia_abi_p) ? 5 : 7);
switch (GET_H_GR ((shmedia_abi_p) ? 2 : 4))
{
case SYS_write:
buf = zalloc (PARM3);
sim_read (CPU_STATE (current_cpu), PARM2, buf, PARM3);
SET_H_GR (ret_reg,
sim_io_write (CPU_STATE (current_cpu),
PARM1, buf, PARM3));
free (buf);
break;
case SYS_lseek:
SET_H_GR (ret_reg,
sim_io_lseek (CPU_STATE (current_cpu),
PARM1, PARM2, PARM3));
break;
case SYS_exit:
sim_engine_halt (CPU_STATE (current_cpu), current_cpu,
NULL, pc, sim_exited, PARM1);
break;
case SYS_read:
buf = zalloc (PARM3);
SET_H_GR (ret_reg,
sim_io_read (CPU_STATE (current_cpu),
PARM1, buf, PARM3));
sim_write (CPU_STATE (current_cpu), PARM2, buf, PARM3);
free (buf);
break;
case SYS_open:
buf = fetch_str (current_cpu, pc, PARM1);
SET_H_GR (ret_reg,
sim_io_open (CPU_STATE (current_cpu),
buf, PARM2));
free (buf);
break;
case SYS_close:
SET_H_GR (ret_reg,
sim_io_close (CPU_STATE (current_cpu), PARM1));
break;
case SYS_time:
SET_H_GR (ret_reg, time (0));
break;
case SYS_argc:
SET_H_GR (ret_reg, count_argc (current_cpu));
break;
case SYS_argnlen:
if (PARM1 < count_argc (current_cpu))
SET_H_GR (ret_reg,
strlen (STATE_PROG_ARGV (CPU_STATE (current_cpu)) [PARM1]));
else
SET_H_GR (ret_reg, -1);
break;
case SYS_argn:
if (PARM1 < count_argc (current_cpu))
{
/* Include the NULL byte. */
i = strlen (STATE_PROG_ARGV (CPU_STATE (current_cpu)) [PARM1]) + 1;
sim_write (CPU_STATE (current_cpu),
PARM2,
STATE_PROG_ARGV (CPU_STATE (current_cpu)) [PARM1],
i);
/* Just for good measure. */
SET_H_GR (ret_reg, i);
break;
}
else
SET_H_GR (ret_reg, -1);
break;
default:
SET_H_GR (ret_reg, -1);
}
}
break;
case 253:
puts ("pass");
exit (0);
case 254:
puts ("fail");
exit (1);
case 0xc3:
/* fall through. */
case 255:
sim_engine_halt (CPU_STATE (current_cpu), current_cpu, NULL, pc, sim_stopped, SIM_SIGTRAP);
break;
}
}
void
sh64_trapa (SIM_CPU *current_cpu, DI rm, PCADDR pc)
{
trap_handler (current_cpu, 1, (UQI) rm & 0xff, pc);
}
void
sh64_compact_trapa (SIM_CPU *current_cpu, UQI trapnum, PCADDR pc)
{
int mach_sh5_p;
/* If this is an SH5 executable, this is SHcompact code running in
the SHmedia ABI. */
mach_sh5_p =
(bfd_get_mach (STATE_PROG_BFD (CPU_STATE (current_cpu))) == bfd_mach_sh5);
trap_handler (current_cpu, mach_sh5_p, trapnum, pc);
}
DI
sh64_nsb (SIM_CPU *current_cpu, DI rm)
{
int result = 0, count;
UDI source = (UDI) rm;
if ((source >> 63))
source = ~source;
source <<= 1;
for (count = 32; count; count >>= 1)
{
UDI newval = source << count;
if ((newval >> count) == source)
{
result |= count;
source = newval;
}
}
return result;
}
void
sh64_break (SIM_CPU *current_cpu, PCADDR pc)
{
SIM_DESC sd = CPU_STATE (current_cpu);
sim_engine_halt (sd, current_cpu, NULL, pc, sim_stopped, SIM_SIGTRAP);
}
SI
sh64_movua (SIM_CPU *current_cpu, PCADDR pc, SI rn)
{
SI v;
int i;
/* Move the data one byte at a time to avoid alignment problems.
Be aware of endianness. */
v = 0;
for (i = 0; i < 4; ++i)
v = (v << 8) | (GETMEMQI (current_cpu, pc, rn + i) & 0xff);
v = T2H_4 (v);
return v;
}
void
set_isa (SIM_CPU *current_cpu, int mode)
{
/* Do nothing. */
}
/* The semantic code invokes this for invalid (unrecognized) instructions. */
SEM_PC
sim_engine_invalid_insn (SIM_CPU *current_cpu, IADDR cia, SEM_PC vpc)
{
SIM_DESC sd = CPU_STATE (current_cpu);
sim_engine_halt (sd, current_cpu, NULL, cia, sim_stopped, SIM_SIGILL);
return vpc;
}
/* Process an address exception. */
void
sh64_core_signal (SIM_DESC sd, SIM_CPU *current_cpu, sim_cia cia,
unsigned int map, int nr_bytes, address_word addr,
transfer_type transfer, sim_core_signals sig)
{
sim_core_signal (sd, current_cpu, cia, map, nr_bytes, addr,
transfer, sig);
}
/* Initialize cycle counting for an insn.
FIRST_P is non-zero if this is the first insn in a set of parallel
insns. */
void
sh64_compact_model_insn_before (SIM_CPU *cpu, int first_p)
{
/* Do nothing. */
}
void
sh64_media_model_insn_before (SIM_CPU *cpu, int first_p)
{
/* Do nothing. */
}
/* Record the cycles computed for an insn.
LAST_P is non-zero if this is the last insn in a set of parallel insns,
and we update the total cycle count.
CYCLES is the cycle count of the insn. */
void
sh64_compact_model_insn_after(SIM_CPU *cpu, int last_p, int cycles)
{
/* Do nothing. */
}
void
sh64_media_model_insn_after(SIM_CPU *cpu, int last_p, int cycles)
{
/* Do nothing. */
}
int
sh64_fetch_register (SIM_CPU *cpu, int nr, unsigned char *buf, int len)
{
/* Fetch general purpose registers. */
if (nr >= SIM_SH64_R0_REGNUM
&& nr < (SIM_SH64_R0_REGNUM + SIM_SH64_NR_R_REGS)
&& len == 8)
{
*((unsigned64*) buf) =
H2T_8 (sh64_h_gr_get (cpu, nr - SIM_SH64_R0_REGNUM));
return len;
}
/* Fetch PC. */
if (nr == SIM_SH64_PC_REGNUM && len == 8)
{
*((unsigned64*) buf) = H2T_8 (sh64_h_pc_get (cpu) | sh64_h_ism_get (cpu));
return len;
}
/* Fetch status register (SR). */
if (nr == SIM_SH64_SR_REGNUM && len == 8)
{
*((unsigned64*) buf) = H2T_8 (sh64_h_sr_get (cpu));
return len;
}
/* Fetch saved status register (SSR) and PC (SPC). */
if ((nr == SIM_SH64_SSR_REGNUM || nr == SIM_SH64_SPC_REGNUM)
&& len == 8)
{
*((unsigned64*) buf) = 0;
return len;
}
/* Fetch target registers. */
if (nr >= SIM_SH64_TR0_REGNUM
&& nr < (SIM_SH64_TR0_REGNUM + SIM_SH64_NR_TR_REGS)
&& len == 8)
{
*((unsigned64*) buf) =
H2T_8 (sh64_h_tr_get (cpu, nr - SIM_SH64_TR0_REGNUM));
return len;
}
/* Fetch floating point registers. */
if (nr >= SIM_SH64_FR0_REGNUM
&& nr < (SIM_SH64_FR0_REGNUM + SIM_SH64_NR_FP_REGS)
&& len == 4)
{
*((unsigned32*) buf) =
H2T_4 (sh64_h_fr_get (cpu, nr - SIM_SH64_FR0_REGNUM));
return len;
}
/* We should never get here. */
return 0;
}
int
sh64_store_register (SIM_CPU *cpu, int nr, unsigned char *buf, int len)
{
/* Store general purpose registers. */
if (nr >= SIM_SH64_R0_REGNUM
&& nr < (SIM_SH64_R0_REGNUM + SIM_SH64_NR_R_REGS)
&& len == 8)
{
sh64_h_gr_set (cpu, nr - SIM_SH64_R0_REGNUM, T2H_8 (*((unsigned64*)buf)));
return len;
}
/* Store PC. */
if (nr == SIM_SH64_PC_REGNUM && len == 8)
{
unsigned64 new_pc = T2H_8 (*((unsigned64*)buf));
sh64_h_pc_set (cpu, new_pc);
return len;
}
/* Store status register (SR). */
if (nr == SIM_SH64_SR_REGNUM && len == 8)
{
sh64_h_sr_set (cpu, T2H_8 (*((unsigned64*)buf)));
return len;
}
/* Store saved status register (SSR) and PC (SPC). */
if (nr == SIM_SH64_SSR_REGNUM || nr == SIM_SH64_SPC_REGNUM)
{
/* Do nothing. */
return len;
}
/* Store target registers. */
if (nr >= SIM_SH64_TR0_REGNUM
&& nr < (SIM_SH64_TR0_REGNUM + SIM_SH64_NR_TR_REGS)
&& len == 8)
{
sh64_h_tr_set (cpu, nr - SIM_SH64_TR0_REGNUM, T2H_8 (*((unsigned64*)buf)));
return len;
}
/* Store floating point registers. */
if (nr >= SIM_SH64_FR0_REGNUM
&& nr < (SIM_SH64_FR0_REGNUM + SIM_SH64_NR_FP_REGS)
&& len == 4)
{
sh64_h_fr_set (cpu, nr - SIM_SH64_FR0_REGNUM, T2H_4 (*((unsigned32*)buf)));
return len;
}
/* We should never get here. */
return 0;
}
void
sh64_engine_run_full(SIM_CPU *cpu)
{
if (sh64_h_ism_get (cpu) == ISM_MEDIA)
{
if (!sh64_idesc_media)
{
sh64_media_init_idesc_table (cpu);
sh64_idesc_media = CPU_IDESC (cpu);
}
else
CPU_IDESC (cpu) = sh64_idesc_media;
sh64_media_engine_run_full (cpu);
}
else
{
if (!sh64_idesc_compact)
{
sh64_compact_init_idesc_table (cpu);
sh64_idesc_compact = CPU_IDESC (cpu);
}
else
CPU_IDESC (cpu) = sh64_idesc_compact;
sh64_compact_engine_run_full (cpu);
}
}
void
sh64_engine_run_fast (SIM_CPU *cpu)
{
if (sh64_h_ism_get (cpu) == ISM_MEDIA)
{
if (!sh64_idesc_media)
{
sh64_media_init_idesc_table (cpu);
sh64_idesc_media = CPU_IDESC (cpu);
}
else
CPU_IDESC (cpu) = sh64_idesc_media;
sh64_media_engine_run_fast (cpu);
}
else
{
if (!sh64_idesc_compact)
{
sh64_compact_init_idesc_table (cpu);
sh64_idesc_compact = CPU_IDESC (cpu);
}
else
CPU_IDESC (cpu) = sh64_idesc_compact;
sh64_compact_engine_run_fast (cpu);
}
}
static void
sh64_prepare_run (SIM_CPU *cpu)
{
/* Nothing. */
}
static const CGEN_INSN *
sh64_get_idata (SIM_CPU *cpu, int inum)
{
return CPU_IDESC (cpu) [inum].idata;
}
static void
sh64_init_cpu (SIM_CPU *cpu)
{
CPU_REG_FETCH (cpu) = sh64_fetch_register;
CPU_REG_STORE (cpu) = sh64_store_register;
CPU_PC_FETCH (cpu) = sh64_h_pc_get;
CPU_PC_STORE (cpu) = sh64_h_pc_set;
CPU_GET_IDATA (cpu) = sh64_get_idata;
/* Only used by profiling. 0 disables it. */
CPU_MAX_INSNS (cpu) = 0;
CPU_INSN_NAME (cpu) = cgen_insn_name;
CPU_FULL_ENGINE_FN (cpu) = sh64_engine_run_full;
#if WITH_FAST
CPU_FAST_ENGINE_FN (cpu) = sh64_engine_run_fast;
#else
CPU_FAST_ENGINE_FN (cpu) = sh64_engine_run_full;
#endif
}
static void
shmedia_init_cpu (SIM_CPU *cpu)
{
sh64_init_cpu (cpu);
}
static void
shcompact_init_cpu (SIM_CPU *cpu)
{
sh64_init_cpu (cpu);
}
static void
sh64_model_init()
{
/* Do nothing. */
}
static const MODEL sh_models [] =
{
{ "sh2", & sh2_mach, MODEL_SH5, NULL, sh64_model_init },
{ "sh2e", & sh2e_mach, MODEL_SH5, NULL, sh64_model_init },
{ "sh2a", & sh2a_fpu_mach, MODEL_SH5, NULL, sh64_model_init },
{ "sh2a_nofpu", & sh2a_nofpu_mach, MODEL_SH5, NULL, sh64_model_init },
{ "sh3", & sh3_mach, MODEL_SH5, NULL, sh64_model_init },
{ "sh3e", & sh3_mach, MODEL_SH5, NULL, sh64_model_init },
{ "sh4", & sh4_mach, MODEL_SH5, NULL, sh64_model_init },
{ "sh4_nofpu", & sh4_nofpu_mach, MODEL_SH5, NULL, sh64_model_init },
{ "sh4a", & sh4a_mach, MODEL_SH5, NULL, sh64_model_init },
{ "sh4a_nofpu", & sh4a_nofpu_mach, MODEL_SH5, NULL, sh64_model_init },
{ "sh4al", & sh4al_mach, MODEL_SH5, NULL, sh64_model_init },
{ "sh5", & sh5_mach, MODEL_SH5, NULL, sh64_model_init },
{ 0 }
};
static const MACH_IMP_PROPERTIES sh5_imp_properties =
{
sizeof (SIM_CPU),
#if WITH_SCACHE
sizeof (SCACHE)
#else
0
#endif
};
const MACH sh2_mach =
{
"sh2", "sh2", MACH_SH5,
16, 16, &sh_models[0], &sh5_imp_properties,
shcompact_init_cpu,
sh64_prepare_run
};
const MACH sh2e_mach =
{
"sh2e", "sh2e", MACH_SH5,
16, 16, &sh_models[1], &sh5_imp_properties,
shcompact_init_cpu,
sh64_prepare_run
};
const MACH sh2a_fpu_mach =
{
"sh2a", "sh2a", MACH_SH5,
16, 16, &sh_models[2], &sh5_imp_properties,
shcompact_init_cpu,
sh64_prepare_run
};
const MACH sh2a_nofpu_mach =
{
"sh2a_nofpu", "sh2a_nofpu", MACH_SH5,
16, 16, &sh_models[3], &sh5_imp_properties,
shcompact_init_cpu,
sh64_prepare_run
};
const MACH sh3_mach =
{
"sh3", "sh3", MACH_SH5,
16, 16, &sh_models[4], &sh5_imp_properties,
shcompact_init_cpu,
sh64_prepare_run
};
const MACH sh3e_mach =
{
"sh3e", "sh3e", MACH_SH5,
16, 16, &sh_models[5], &sh5_imp_properties,
shcompact_init_cpu,
sh64_prepare_run
};
const MACH sh4_mach =
{
"sh4", "sh4", MACH_SH5,
16, 16, &sh_models[6], &sh5_imp_properties,
shcompact_init_cpu,
sh64_prepare_run
};
const MACH sh4_nofpu_mach =
{
"sh4_nofpu", "sh4_nofpu", MACH_SH5,
16, 16, &sh_models[7], &sh5_imp_properties,
shcompact_init_cpu,
sh64_prepare_run
};
const MACH sh4a_mach =
{
"sh4a", "sh4a", MACH_SH5,
16, 16, &sh_models[8], &sh5_imp_properties,
shcompact_init_cpu,
sh64_prepare_run
};
const MACH sh4a_nofpu_mach =
{
"sh4a_nofpu", "sh4a_nofpu", MACH_SH5,
16, 16, &sh_models[9], &sh5_imp_properties,
shcompact_init_cpu,
sh64_prepare_run
};
const MACH sh4al_mach =
{
"sh4al", "sh4al", MACH_SH5,
16, 16, &sh_models[10], &sh5_imp_properties,
shcompact_init_cpu,
sh64_prepare_run
};
const MACH sh5_mach =
{
"sh5", "sh5", MACH_SH5,
32, 32, &sh_models[11], &sh5_imp_properties,
shmedia_init_cpu,
sh64_prepare_run
};
|