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 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560
|
/** @file constant_pool.c
* This file contains routines for manipulating the constant pool list.
*/
#include "constant_pool.h"
/**
* Searches for the given node in the specified constant pool list.
*
* @param class -- The class containing the constant pool to be searched.
* @param tag -- The type of constant contained in the 'value' argument.
* @param value -- The constant value to be searched for.
*
* @returns If the node is found, return its constant pool index.
* Return -1 otherwise.
**/
int
cp_lookup(JVM_CLASS *class, JVM_CONSTANT tag, const void *value) {
int retval;
if(!class || !value) {
BAD_ARG();
return -1;
}
switch(tag) {
case CONSTANT_Utf8:
retval = cp_lookup_utf8(class, value);
break;
case CONSTANT_Integer:
retval = cp_lookup_int(class, value);
break;
case CONSTANT_Float:
retval = cp_lookup_float(class, value);
break;
case CONSTANT_Long:
retval = cp_lookup_long(class, value);
break;
case CONSTANT_Double:
retval = cp_lookup_double(class, value);
break;
case CONSTANT_Class:
retval = cp_lookup_class(class, value);
break;
case CONSTANT_Fieldref:
case CONSTANT_InterfaceMethodref:
case CONSTANT_Methodref:
retval = cp_lookup_ref(class, tag, value);
break;
case CONSTANT_NameAndType:
retval = cp_lookup_nameandtype(class, value);
break;
case CONSTANT_String:
retval = cp_lookup_string(class, value);
break;
default:
debug_err("cp_lookup: WARNING - hit default case!\n");
retval = -1;
}
return retval;
}
/**
* Find the constant pool index for the given constant if it exists in
* the constant pool. If not, create a new entry and return its index.
* This function will not insert constant values for which there exist
* shorthand instructions for pushing those values onto the stack. For
* example floating point values 0.0, 1.0, and 2.0 can be pushed using
* shorthand instructions fconst_0, fconst_1, and fconst_2 respectively.
* Similar instructions exist for integer, long, and double. Therefore
* these values usually do not need to be inserted into the constant pool.
* If you need one of these values inserted, use the cp_manual_insert()
* function.
*
* @param class -- The class containing the constant pool to be searched.
* @param tag -- The type of constant contained in the 'value' argument.
* @param value -- The constant value to be searched for.
*
* @returns The constant pool index for the given constant value.
* If the value was not inserted because it was a special value
* as mentioned above or if an error occurred then -1 is returned.
**/
int
cp_find_or_insert(JVM_CLASS *class, JVM_CONSTANT tag, const void *value) {
int temp;
if(!class || !value) {
BAD_ARG();
return -1;
}
temp = cp_find_function_body(class, tag, value, FALSE);
if(temp < 0)
CP_CHECK_NONZERO("cp_find_or_insert", temp);
return temp;
}
/**
* Identical to cp_find_or_insert(), except that integer and double precision
* constants that would normally be excluded are inserted.
*
* @param class -- The class containing the constant pool to be searched.
* @param tag -- The type of constant contained in the 'value' argument.
* @param value -- The constant value to be inserted.
*
* @returns The constant pool index for the given constant value.
* On error, returns -1.
**/
int
cp_manual_insert(JVM_CLASS *class, JVM_CONSTANT tag, const void *value) {
int temp;
if(!class || !value) {
BAD_ARG();
return -1;
}
temp = cp_find_function_body(class, tag, value, TRUE);
if(temp < 0)
CP_CHECK_NONZERO("cp_manual_insert", temp);
return temp;
}
/**
* Given an index into the constant pool, return a pointer to
* the CP_NODE at that index.
*
* @param class -- The class containing the constant pool to be searched.
* @param idx -- The constant pool index to be returned.
*
* @returns The CP_NODE at the given index. Returns NULL if the
* specified index is not found in the constant pool.
**/
CP_NODE *
cp_entry_by_index(JVM_CLASS *class, unsigned int idx)
{
Dlist temp;
if(!class) {
BAD_ARG();
return NULL;
}
dl_traverse(temp,class->constant_pool) {
if( ((CP_NODE*)temp->val)->index == idx )
return temp->val;
}
debug_err("cp_entry_by_index() WARNING: looking for non-existent cp index!\n");
return NULL;
}
/**
* Dumps a list of the class variables to stdout.
*
* @param class -- The class containing the constant pool to be printed.
**/
void
cp_fields_dump(JVM_CLASS *class)
{
JVM_FIELD *tmpfield;
CP_NODE * tmpfield2;
Dlist tmpPtr;
int count=1;
if(!class) {
BAD_ARG();
return;
}
dl_traverse(tmpPtr,class->fields) {
tmpfield = (JVM_FIELD *) tmpPtr->val;
printf("Field #%d\n", count++);
printf("\taccess flags: %d\n",tmpfield->access_flags);
tmpfield2 = cp_entry_by_index(class, tmpfield->name_index);
printf("\tname idx: %d (%s)\n", tmpfield->name_index,
cp_null_term_utf8(tmpfield2->val));
tmpfield2 = cp_entry_by_index(class, tmpfield->descriptor_index);
printf("\tdesc idx: %d (%s)\n", tmpfield->descriptor_index,
cp_null_term_utf8(tmpfield2->val));
}
}
/**
* Less verbose version of cp_dump(). This function just prints the constant
* pool index and the tag.
*
* @param class -- The class containing the constant pool to be printed.
**/
void
cp_quickdump(JVM_CLASS *class)
{
CP_NODE * tmpconst;
Dlist tmpPtr;
if(!class) {
BAD_ARG();
return;
}
dl_traverse(tmpPtr,class->constant_pool) {
tmpconst = (CP_NODE *) tmpPtr->val;
printf("Constant pool entry %d, ", tmpconst->index);
printf("tag: %s\n", jvm_constant_tags[tmpconst->val->tag]);
}
}
/**
* Prints the contents of the constant pool to stdout.
*
* @param class -- The class containing the constant pool to be printed.
**/
void
cp_dump(JVM_CLASS *class)
{
CP_NODE * tmpconst, * tmpconst2;
Dlist tmpPtr;
double x;
float f;
u8 l;
char *tmp_str;
if(!class) {
BAD_ARG();
return;
}
dl_traverse(tmpPtr,class->constant_pool) {
tmpconst = (CP_NODE *) tmpPtr->val;
printf("Constant pool entry %d:\n", tmpconst->index);
printf("\ttag: %s\n", jvm_constant_tags[tmpconst->val->tag]);
switch(tmpconst->val->tag) {
case CONSTANT_Utf8:
tmp_str = cp_null_term_utf8(tmpconst->val);
printf("\tstring: %s\n",tmp_str);
free(tmp_str);
break;
case CONSTANT_Integer:
if(isBigEndian())
printf("\tint: %d\n",tmpconst->val->cpnode.Integer.bytes);
else
printf("\tint: %d (conv. to little endian)\n",
cp_big_endian_u4(tmpconst->val->cpnode.Integer.bytes));
break;
case CONSTANT_Float:
if(isBigEndian())
printf("\tfloat: %f\n",(float)tmpconst->val->cpnode.Float.bytes);
else {
u4 tmp;
tmp = cp_big_endian_u4(tmpconst->val->cpnode.Float.bytes);
memcpy(&f, &tmp, sizeof(u4));
printf("\tfloat: %f (conv. to little endian)\n", f);
}
break;
case CONSTANT_Long:
if(isBigEndian()) {
memcpy(&l,&tmpconst->val->cpnode.Long.high_bytes,sizeof(u4));
memcpy((char*)&l+4,&tmpconst->val->cpnode.Long.low_bytes,sizeof(u4));
printf("\tlong: %ld (high: %d, low: %d)\n", (long) l,
(int)tmpconst->val->cpnode.Long.high_bytes,
(int)tmpconst->val->cpnode.Long.low_bytes);
}
else {
u4 t1,t2;
t1 = cp_big_endian_u4(tmpconst->val->cpnode.Long.high_bytes);
t2 = cp_big_endian_u4(tmpconst->val->cpnode.Long.low_bytes);
memcpy(&l, &t2, sizeof(u4));
memcpy((char*)&l+4, &t1, sizeof(u4));
printf("\tlong: %ld (high: %d, low: %d) (conv to little endian)\n",(long)l,
cp_big_endian_u4(tmpconst->val->cpnode.Long.high_bytes),
cp_big_endian_u4(tmpconst->val->cpnode.Long.low_bytes));
}
break;
case CONSTANT_Double:
if(isBigEndian()) {
memcpy(&x,&tmpconst->val->cpnode.Double.high_bytes,sizeof(u4));
memcpy((char*)&x+4,&tmpconst->val->cpnode.Double.low_bytes,sizeof(u4));
printf("\tdouble: %f (high: %d, low: %d)\n",x,
tmpconst->val->cpnode.Double.high_bytes,
tmpconst->val->cpnode.Double.low_bytes);
}
else {
u4 t1,t2;
t1 = cp_big_endian_u4(tmpconst->val->cpnode.Double.high_bytes);
t2 = cp_big_endian_u4(tmpconst->val->cpnode.Double.low_bytes);
memcpy(&x, &t2, sizeof(u4));
memcpy((char*)&x+4, &t1, sizeof(u4));
printf("\tdouble: %f (high: %d, low: %d) (conv to little endian)\n",x,
cp_big_endian_u4(tmpconst->val->cpnode.Double.high_bytes),
cp_big_endian_u4(tmpconst->val->cpnode.Double.low_bytes));
}
break;
case CONSTANT_Class:
tmpconst2 = cp_entry_by_index(class,tmpconst->val->cpnode.Class.name_index);
tmp_str = cp_null_term_utf8(tmpconst2->val);
printf("\tclass index: %d -> %s\n",tmpconst->val->cpnode.Class.name_index,
tmp_str);
free(tmp_str);
break;
case CONSTANT_String:
printf("\tstring index: %d\n",tmpconst->val->cpnode.String.string_index);
break;
case CONSTANT_Fieldref:
printf("\tclass index(declaring this field): %d\n",
tmpconst->val->cpnode.Methodref.class_index);
printf("\tname and type index(of this field): %d\n",
tmpconst->val->cpnode.Methodref.name_and_type_index);
break;
case CONSTANT_Methodref:
printf("\tclass index(declaring this method): %d\n",
tmpconst->val->cpnode.Methodref.class_index);
printf("\tname and type index(of this method): %d\n",
tmpconst->val->cpnode.Methodref.name_and_type_index);
break;
case CONSTANT_InterfaceMethodref:
printf("\tclass index(declaring this interface): %d\n",
tmpconst->val->cpnode.Methodref.class_index);
printf("\tname and type index(of this interface): %d\n",
tmpconst->val->cpnode.Methodref.name_and_type_index);
break;
case CONSTANT_NameAndType:
printf("\tname index: %d\n",tmpconst->val->cpnode.NameAndType.name_index);
printf("\tdescriptor index: %d\n",
tmpconst->val->cpnode.NameAndType.descriptor_index);
break;
default:
debug_err("cp_dump(): Unknown tag!\n");
break; /* unnecessary break for ANSI compliance */
}
}
}
/**
* Creates a null-terminated version of the given utf8 constant pool entry.
*
* @param val -- The utf8 entry.
*
* @returns A null-terminated string. On error returns NULL.
**/
char *
cp_null_term_utf8(CP_INFO *val)
{
char * temp;
if(!val) {
BAD_ARG();
return NULL;
}
temp = (char *)malloc(val->cpnode.Utf8.length + 1);
if(!temp) return NULL;
strncpy(temp,(char *)val->cpnode.Utf8.bytes,val->cpnode.Utf8.length);
temp[val->cpnode.Utf8.length] = '\0';
return temp;
}
/**
* This function converts a u2 (unsigned short) to big endian format. if the
* machine is big endian already, we do nothing. otherwise, we reverse the
* byte order and return the reversed number.
*
* @param num -- The unsigned short to be converted.
*
* @returns Big endian version of the specified number.
**/
u2
cp_big_endian_u2(u2 num)
{
if(isBigEndian())
return num;
else
return (num>>8)+((num&0xFF)<<8);
}
/**
* This function converts a u4 (unsigned int) to big endian format. if the
* machine is big endian already, we do nothing. otherwise, we reverse the
* byte order and return the reversed number.
*
* @param num -- The unsigned int to be converted.
*
* @returns Big endian version of the specified number.
**/
u4
cp_big_endian_u4(u4 num)
{
if(isBigEndian())
return num;
else
return ((num & 0xFF)<<24) +
((num >> 8 & 0xFF)<<16) +
((num >> 16 & 0xFF)<<8) +
(num >> 24);
}
/*****************************************************************************
*****************************************************************************
** **
** Functions after this point are not exposed as part of the API. **
** **
*****************************************************************************
*****************************************************************************/
/**
* Inserts the given CP_INFO node into the constant pool list.
*
* @param class -- The class containing the constant pool into which the
* node will be inserted.
* @param node -- The node to be inserted.
*
* @returns The constant pool index of the node after insertion.
* Returns -1 on error.
**/
static int
cp_insert(JVM_CLASS *class, CP_INFO *node) {
CP_NODE * n;
Dlist cp;
if(!class || !node) {
BAD_ARG();
return -1;
}
cp = class->constant_pool;
debug_msg("&& in cp_insert, inserting node w/tag = %s\n",
jvm_constant_tags[node->tag]);
n = (CP_NODE *)malloc(sizeof(CP_NODE));
if(!n) return -1;
n->val = node;
n->index = dl_empty(cp) ? 1 : ((CP_NODE *) dl_last(cp)->val)->next_idx;
n->next_idx = n->index + cp_entry_width[node->tag];
dl_insert_b(cp, n);
return n->index;
}
/**
* This function inserts a Constant into the constants_table. We're keeping
* track of constants in order to build the constant pool for bytecode
* generation.
*
* @param class -- The class containing the constant pool to be searched.
* @param tok -- The type of constant contained in the 'val' argument.
* @param val -- The constant value to be inserted.
* @param force_insert -- If FALSE, certain constants will be excluded
* depending on the data type/value (see cp_find_or_insert()). If TRUE,
* the constant will be inserted regardless of its value.
*
* @returns The constant pool index of the value after insertion.
* Returns -1 on error.
**/
static int
insert_constant(JVM_CLASS *class, int tok, const void *val, BOOL force_insert)
{
if(!class || !val) {
BAD_ARG();
return -1;
}
switch(tok) {
case CP_INTEGER_CONST:
return insert_int_constant(class, val, force_insert);
case CP_FLOAT_CONST:
return insert_float_constant(class, val, force_insert);
case CP_LONG_CONST:
return insert_long_constant(class, val, force_insert);
case CP_EXPONENTIAL_CONST:
case CP_DOUBLE_CONST:
return insert_double_constant(class, val, force_insert);
case CP_TRUE_CONST:
case CP_FALSE_CONST:
/* boolean literals do not need constant pool entries because
* we can use the iconst_1 opcode for TRUE and iconst_0 for FALSE.
*/
return -1;
case CP_STRING_CONST:
return insert_string_constant(class, val, force_insert);
}
return -1;
}
/**
* This function returns the endianness of the machine we're running on.
* Such information is used during bytecode generation since the numerical
* constants are always stored in big endian format.
*
* @returns TRUE if this machine is big endian, FALSE otherwise.
**/
static BOOL
isBigEndian()
{
#ifdef WORDS_BIGENDIAN
return TRUE;
#else
return FALSE;
#endif
}
/**
* Searches the constant pool for a UTF8 string.
*
* @param class -- The class containing the constant pool to be searched.
* @param value -- The UTF8 constant value to be searched for.
*
* @returns If the value is found, return its constant pool index.
* Return -1 otherwise.
**/
static int
cp_lookup_utf8(JVM_CLASS *class, const void *value) {
Dlist temp;
CP_INFO * ctemp;
if(!class || !value) {
BAD_ARG();
return -1;
}
debug_msg("&&hit utf8 constant\n");
debug_msg("&&value = %s\n",(char *)value);
dl_traverse(temp,class->constant_pool) {
ctemp = ((CP_NODE *)(temp->val))->val;
if(ctemp->tag == CONSTANT_Utf8) {
if(strlen((char*)value) == (unsigned int)ctemp->cpnode.Utf8.length)
if(!strncmp((char*)ctemp->cpnode.Utf8.bytes, (char*)value,
ctemp->cpnode.Utf8.length) )
return ((CP_NODE *)(temp->val))->index;
}
}
return -1;
}
/**
* Searches the constant pool for an integer constant.
*
* @param class -- The class containing the constant pool to be searched.
* @param value -- The constant value to be searched for.
*
* @returns If the value is found, return its constant pool index.
* Return -1 otherwise.
**/
static int
cp_lookup_int(JVM_CLASS *class, const void *value) {
Dlist temp;
CP_INFO * ctemp;
if(!class || !value) {
BAD_ARG();
return -1;
}
dl_traverse(temp,class->constant_pool) {
ctemp = ((CP_NODE *)(temp->val))->val;
if( ctemp->tag == CONSTANT_Integer) {
u4 ival = cp_big_endian_u4( *((u4*)value) );
if(!memcmp((void *)&ival, (void*)&ctemp->cpnode.Integer.bytes, sizeof(u4)))
return ((CP_NODE *)(temp->val))->index;
}
}
return -1;
}
/**
* Searches the constant pool for a float constant.
*
* @param class -- The class containing the constant pool to be searched.
* @param value -- The constant value to be searched for.
*
* @returns If the value is found, return its constant pool index.
* Return -1 otherwise.
**/
static int
cp_lookup_float(JVM_CLASS *class, const void *value) {
Dlist temp;
CP_INFO * ctemp;
if(!class || !value) {
BAD_ARG();
return -1;
}
dl_traverse(temp,class->constant_pool) {
ctemp = ((CP_NODE *)(temp->val))->val;
if( ctemp->tag == CONSTANT_Float) {
u4 fval = cp_big_endian_u4( *((u4*)value) );
if(!memcmp((void *)&fval, (void*)&ctemp->cpnode.Float.bytes, sizeof(u4)))
return ((CP_NODE *)(temp->val))->index;
}
}
return -1;
}
/**
* Searches the constant pool for a long constant.
*
* @param class -- The class containing the constant pool to be searched.
* @param value -- The constant value to be searched for.
*
* @returns If the value is found, return its constant pool index.
* Return -1 otherwise.
**/
static int
cp_lookup_long(JVM_CLASS *class, const void *value) {
Dlist temp;
CP_INFO * ctemp;
if(!class || !value) {
BAD_ARG();
return -1;
}
dl_traverse(temp,class->constant_pool) {
ctemp = ((CP_NODE *)(temp->val))->val;
if( ctemp->tag == CONSTANT_Long) {
u4 hi_bytes, lo_bytes;
memcpy(&hi_bytes,value,sizeof(u4));
memcpy(&lo_bytes,(char*)value+4,sizeof(u4));
/* convert byte order if necessary, then compare, and return */
if(!isBigEndian()) {
u4 bytetemp = hi_bytes;
hi_bytes = cp_big_endian_u4(lo_bytes);
lo_bytes = cp_big_endian_u4(bytetemp);
}
if( !memcmp(&hi_bytes,
(void *)&ctemp->cpnode.Long.high_bytes,
sizeof(u4))
&& !memcmp(&lo_bytes,
(void *)&ctemp->cpnode.Long.low_bytes,
sizeof(u4)))
return ((CP_NODE *)(temp->val))->index;
}
}
return -1;
}
/**
* Searches the constant pool for a double precision constant.
*
* @param class -- The class containing the constant pool to be searched.
* @param value -- The constant value to be searched for.
*
* @returns If the value is found, return its constant pool index.
* Return -1 otherwise.
**/
static int
cp_lookup_double(JVM_CLASS *class, const void *value) {
Dlist temp;
CP_INFO * ctemp;
if(!class || !value) {
BAD_ARG();
return -1;
}
dl_traverse(temp,class->constant_pool) {
ctemp = ((CP_NODE *)(temp->val))->val;
if( ctemp->tag == CONSTANT_Double) {
u4 hi_bytes, lo_bytes;
memcpy(&hi_bytes,value,sizeof(u4));
memcpy(&lo_bytes,(char*)value+4,sizeof(u4));
/* convert byte order if necessary, then compare, and return */
if(!isBigEndian()) {
u4 bytetemp = hi_bytes;
hi_bytes = cp_big_endian_u4(lo_bytes);
lo_bytes = cp_big_endian_u4(bytetemp);
}
if( !memcmp(&hi_bytes,
(void *)&ctemp->cpnode.Double.high_bytes,
sizeof(u4))
&& !memcmp(&lo_bytes,
(void *)&ctemp->cpnode.Double.low_bytes,
sizeof(u4)))
return ((CP_NODE *)(temp->val))->index;
}
}
return -1;
}
/**
* Searches the constant pool for a class constant.
*
* @param class -- The class containing the constant pool to be searched.
* @param value -- The constant value to be searched for.
*
* @returns If the value is found, return its constant pool index.
* Return -1 otherwise.
**/
static int
cp_lookup_class(JVM_CLASS *class, const void *value) {
Dlist temp;
CP_INFO * ctemp;
int this_len;
if(!class || !value) {
BAD_ARG();
return -1;
}
debug_msg("&&hit class constant\n");
debug_msg("&&value = %s\n",(char *)value);
dl_traverse(temp,class->constant_pool) {
ctemp = ((CP_NODE *)(temp->val))->val;
if(ctemp->tag == CONSTANT_Class) {
this_len = cp_entry_by_index(class,
ctemp->cpnode.Class.name_index)->val->cpnode.Utf8.length;
if(!this_len) continue;
if((unsigned int)this_len == strlen((char*) value)) {
CP_NODE *e = cp_entry_by_index(class, ctemp->cpnode.Class.name_index);
if(!e) continue;
if(!strncmp( (char *) (e->val->cpnode.Utf8.bytes),
(char *)value, strlen((char*)value)))
return ((CP_NODE *)(temp->val))->index;
}
}
}
return -1;
}
/**
* Searches the constant pool for a method/field reference.
*
* @param class -- The class containing the constant pool to be searched.
* @param tag -- The type of constant contained in the 'value' argument.
* @param value -- The constant value to be searched for.
*
* @returns If the value is found, return its constant pool index.
* Return -1 otherwise.
**/
static int
cp_lookup_ref(JVM_CLASS *class, JVM_CONSTANT tag, const void *value) {
Dlist temp;
CP_INFO * ctemp;
JVM_METHODREF *mref = (JVM_METHODREF *)value;
CP_NODE *nameref;
if(!class || !value) {
BAD_ARG();
return -1;
}
#define err_lookup() \
if(tmpC) free(tmpC); \
if(tmpM) free(tmpM); \
if(tmpM) free(tmpD);
debug_msg("&&looking up Method/field ref\n");
debug_msg("&& mref->classname = '%s'\n",mref->classname);
debug_msg("&& mref->methodname = '%s'\n",mref->methodname);
debug_msg("&& mref->descriptor = '%s'\n",mref->descriptor);
/* for the methodref to match, we need to check that the class, method,
* and descriptor strings all match.
*/
dl_traverse(temp,class->constant_pool) {
ctemp = ((CP_NODE *)(temp->val))->val;
if(ctemp->tag == tag) {
char *tmpC, *tmpM, *tmpD;
tmpC = tmpM = tmpD = NULL;
nameref = cp_entry_by_index(class,ctemp->cpnode.Methodref.class_index);
if(!nameref) continue;
nameref = cp_entry_by_index(class,nameref->val->cpnode.Class.name_index);
if(!nameref) continue;
tmpC = cp_null_term_utf8(nameref->val);
if(!tmpC) continue;
debug_msg("&& name_nad_type_index = %d\n",
ctemp->cpnode.Methodref.name_and_type_index);
nameref = cp_entry_by_index(class,
ctemp->cpnode.Methodref.name_and_type_index);
if(!nameref) {
err_lookup();
continue;
}
debug_msg("&& name index = %d\n",
nameref->val->cpnode.NameAndType.name_index);
nameref = cp_entry_by_index(class,
nameref->val->cpnode.NameAndType.name_index);
if(!nameref) {
err_lookup();
continue;
}
debug_msg("&& ok, nodetype of nameref is %s\n",
jvm_constant_tags[nameref->val->tag]);
debug_msg("&& name[0] = %c\n",nameref->val->cpnode.Utf8.bytes[0]);
tmpM = cp_null_term_utf8(nameref->val);
if(!tmpM) {
err_lookup();
continue;
}
nameref = cp_entry_by_index(class,
ctemp->cpnode.Methodref.name_and_type_index);
if(!nameref) {
err_lookup();
continue;
}
nameref = cp_entry_by_index(class,
nameref->val->cpnode.NameAndType.descriptor_index);
if(!nameref) {
err_lookup();
continue;
}
tmpD = cp_null_term_utf8(nameref->val);
if(!tmpD) {
err_lookup();
continue;
}
if( !strcmp(tmpC, mref->classname)
&& !strcmp(tmpM, mref->methodname)
&& !strcmp(tmpD, mref->descriptor) )
{
err_lookup();
return ((CP_NODE *)(temp->val))->index;
}
else {
err_lookup();
}
}
}
#undef err_lookup
return -1;
}
/**
* Searches the constant pool for a name and type reference.
*
* @param class -- The class containing the constant pool to be searched.
* @param value -- The constant value to be searched for.
*
* @returns If the value is found, return its constant pool index.
* Return -1 otherwise.
**/
static int
cp_lookup_nameandtype(JVM_CLASS *class, const void *value) {
Dlist temp;
CP_INFO * ctemp;
JVM_METHODREF *mref = (JVM_METHODREF *)value;
CP_NODE *nref, *dref;
char *tmpM, *tmpD;
if(!class || !value) {
BAD_ARG();
return -1;
}
debug_msg("&& up NameAndType\n");
debug_msg("&& mref->classname = '%s'\n",mref->classname);
debug_msg("&& mref->methodname = '%s'\n",mref->methodname);
debug_msg("&& mref->descriptor = '%s'\n",mref->descriptor);
dl_traverse(temp,class->constant_pool) {
ctemp = ((CP_NODE *)(temp->val))->val;
if(ctemp->tag == CONSTANT_NameAndType) {
nref = cp_entry_by_index(class,ctemp->cpnode.NameAndType.name_index);
if(!nref) continue;
dref = cp_entry_by_index(class,ctemp->cpnode.NameAndType.descriptor_index);
if(!dref) continue;
tmpM = cp_null_term_utf8(nref->val);
if(!tmpM) continue;
tmpD = cp_null_term_utf8(dref->val);
if(!tmpD) {
free(tmpM);
continue;
}
if( !strcmp(tmpM, mref->methodname)
&& !strcmp(tmpD, mref->descriptor))
{
free(tmpM);
free(tmpD);
return ((CP_NODE *)(temp->val))->index;
}
else {
free(tmpM);
free(tmpD);
}
}
}
return -1;
}
/**
* Searches the constant pool for a String constant.
*
* @param class -- The class containing the constant pool to be searched.
* @param value -- The constant value to be searched for.
*
* @returns If the value is found, return its constant pool index.
* Return -1 otherwise.
**/
static int
cp_lookup_string(JVM_CLASS *class, const void *value) {
Dlist temp;
CP_INFO * ctemp;
CP_NODE *sref;
char *tmpS;
if(!class || !value) {
BAD_ARG();
return -1;
}
dl_traverse(temp,class->constant_pool) {
ctemp = ((CP_NODE *)(temp->val))->val;
if(ctemp->tag == CONSTANT_String) {
sref = cp_entry_by_index(class,ctemp->cpnode.String.string_index);
if(!sref) continue;
tmpS = cp_null_term_utf8(sref->val);
if(!tmpS) continue;
if(!strcmp(tmpS,(char *)value)) {
free(tmpS);
return ((CP_NODE *)(temp->val))->index;
}
else
free(tmpS);
}
}
return -1;
}
/**
* Inserts a class constant into the constant pool.
*
* @param class -- The class containing the constant pool to be searched.
* @param value -- The constant value to be inserted.
*
* @returns The constant pool index for the given constant value.
* On error, returns -1.
**/
static int
insert_class(JVM_CLASS *class, const void *value) {
CP_INFO *newnode;
int temp;
char *t;
int i;
if(!class || !value) {
BAD_ARG();
return -1;
}
debug_msg("&& find/insert Class %s...\n",(char*)value);
t = strdup((char *)value);
if(!t) return -1;
for(i=0;i<strlen(t);i++)
if(t[i]=='.') t[i]='/';
temp = cp_find_or_insert(class, CONSTANT_Utf8, t);
free(t);
newnode = (CP_INFO *)malloc(sizeof(CP_INFO));
if(!newnode || (temp < 0)) return -1;
newnode->tag = CONSTANT_Class;
newnode->cpnode.Class.name_index = temp;
/* now return the CP_NODE pointer created by cp_insert */
return cp_insert(class,newnode);
}
/**
* Inserts a class constant into the constant pool.
*
* @param class -- The class containing the constant pool to be searched.
* @param tag -- The type of constant contained in the 'value' argument.
* @param value -- The constant value to be inserted.
*
* @returns The constant pool index for the given constant value.
* On error, returns -1.
**/
static int
insert_ref(JVM_CLASS *class, JVM_CONSTANT tag, const void *value) {
JVM_METHODREF *mref = (JVM_METHODREF *)value;
CP_INFO *newnode;
int temp;
if(!class || !value) {
BAD_ARG();
return -1;
}
debug_msg("&& ok.. going to find/insert a method reference...\n");
newnode = (CP_INFO *)malloc(sizeof(CP_INFO));
if(!newnode) return -1;
newnode->tag = (u1) tag;
debug_msg("&& first find/insert %s...\n",mref->classname);
temp = cp_find_or_insert(class,CONSTANT_Class,mref->classname);
if(temp < 0) {
free(newnode);
return -1;
}
newnode->cpnode.Methodref.class_index = temp;
debug_msg("&& then find/insert the name_and_type...\n");
temp = cp_find_or_insert(class,CONSTANT_NameAndType,mref);
if(temp < 0) {
free(newnode);
return -1;
}
newnode->cpnode.Methodref.name_and_type_index = temp;
return cp_insert(class,newnode);
}
/**
* Inserts a class constant into the constant pool.
*
* @param class -- The class containing the constant pool to be searched.
* @param value -- The constant value to be inserted.
*
* @returns The constant pool index for the given constant value.
* On error, returns -1.
**/
static int
insert_nameandtype(JVM_CLASS *class, const void *value) {
JVM_METHODREF *mref = (JVM_METHODREF *)value;
CP_INFO *newnode;
int temp;
if(!class || !value) {
BAD_ARG();
return -1;
}
debug_msg("&& find/insert NameAndType...\n");
newnode = (CP_INFO *)malloc(sizeof(CP_INFO));
if(!newnode) return -1;
newnode->tag = CONSTANT_NameAndType;
temp = cp_find_or_insert(class,CONSTANT_Utf8,mref->methodname);
if(temp < 0) {
free(newnode);
return -1;
}
newnode->cpnode.NameAndType.name_index = temp;
temp = cp_find_or_insert(class,CONSTANT_Utf8,mref->descriptor);
if(temp < 0) {
free(newnode);
return -1;
}
newnode->cpnode.NameAndType.descriptor_index = temp;
return cp_insert(class,newnode);
}
/**
* Inserts a class constant into the constant pool.
*
* @param class -- The class containing the constant pool to be searched.
* @param value -- The constant value to be inserted.
*
* @returns The constant pool index for the given constant value.
* On error, returns -1.
**/
static int
insert_utf8(JVM_CLASS *class, const void *value) {
CP_INFO *newnode;
if(!class || !value) {
BAD_ARG();
return -1;
}
newnode = (CP_INFO *)malloc(sizeof(CP_INFO));
if(!newnode) return -1;
newnode->tag = CONSTANT_Utf8;
newnode->cpnode.Utf8.length = strlen(value);
newnode->cpnode.Utf8.bytes = (u1 *) malloc(newnode->cpnode.Utf8.length);
if(!newnode->cpnode.Utf8.bytes) {
free(newnode);
return -1;
}
strncpy((char*)newnode->cpnode.Utf8.bytes,value,newnode->cpnode.Utf8.length);
return cp_insert(class, newnode);
}
/**
* Inserts a class constant into the constant pool.
*
* @param class -- The class containing the constant pool to be searched.
* @param val -- The constant value to be inserted.
* @param force_insert -- If FALSE, certain constants will be excluded
* depending on the data type/value (see cp_find_or_insert()). If TRUE,
* the constant will be inserted regardless of its value.
*
* @returns The constant pool index for the given constant value.
* On error, returns -1.
**/
static int
insert_int_constant(JVM_CLASS *class, const void *val, BOOL force_insert) {
CP_INFO * newnode;
int intVal;
if(!class || !val) {
BAD_ARG();
return -1;
}
intVal = *((int*)val);
/* if integer value is between JVM_SHORT_MIN and JVM_SHORT_MAX,
* then we do not need to use the ldc opcode. Thus, there's no
* need to create a constant pool entry.
*/
if(( (cp_lookup(class, CONSTANT_Integer, (void *)&intVal) < 0)
&& (intVal < JVM_SHORT_MIN || intVal > JVM_SHORT_MAX) )
|| force_insert)
{
newnode = (CP_INFO *)malloc(sizeof(CP_INFO));
if(!newnode) return -1;
newnode->tag = CONSTANT_Integer;
newnode->cpnode.Integer.bytes = cp_big_endian_u4((u4)intVal);
return cp_insert(class, newnode);
}
return -1;
}
/**
* Inserts a class constant into the constant pool.
*
* @param class -- The class containing the constant pool to be searched.
* @param val -- The constant value to be inserted.
* @param force_insert -- If FALSE, certain constants will be excluded
* depending on the data type/value (see cp_find_or_insert()). If TRUE,
* the constant will be inserted regardless of its value.
*
* @returns The constant pool index for the given constant value.
* On error, returns -1.
**/
static int
insert_float_constant(JVM_CLASS *class, const void *val, BOOL force_insert) {
CP_INFO * newnode;
float floatVal;
if(!class || !val) {
BAD_ARG();
return -1;
}
floatVal = *((float *)val);
/* if float value is 0.0, 1.0, or 2.0 then we can use
* the fconst_<i> opcode. Thus, there's no
* need to create a constant pool entry.
*/
if(( (cp_lookup(class, CONSTANT_Float, (void *)&floatVal) < 0)
&& ( floatVal != 0.0 && floatVal != 1.0 && floatVal != 2.0) )
|| force_insert)
{
u4 tmp;
memcpy(&tmp,&floatVal,sizeof(tmp));
newnode = (CP_INFO *)malloc(sizeof(CP_INFO));
if(!newnode) return -1;
newnode->tag = CONSTANT_Float;
newnode->cpnode.Float.bytes = cp_big_endian_u4(tmp);
return cp_insert(class, newnode);
}
return -1;
}
/**
* Inserts a class constant into the constant pool.
*
* @param class -- The class containing the constant pool to be searched.
* @param val -- The constant value to be inserted.
* @param force_insert -- If FALSE, certain constants will be excluded
* depending on the data type/value (see cp_find_or_insert()). If TRUE,
* the constant will be inserted regardless of its value.
*
* @returns The constant pool index for the given constant value.
* On error, returns -1.
**/
static int
insert_long_constant(JVM_CLASS *class, const void *val, BOOL force_insert) {
CP_INFO * newnode;
u4 tmp1, tmp2;
u8 longVal;
if(!class || !val) {
BAD_ARG();
return -1;
}
longVal = *((u8 *)val);
/* if long value is 0 or 1, then we can use
* the lconst_<i> opcode. Thus, there's no
* need to create a constant pool entry.
*/
if(( (cp_lookup(class, CONSTANT_Long, (void *)&longVal) < 0)
&& ( longVal != 0 && longVal != 1 ) )
|| force_insert)
{
newnode = (CP_INFO *)malloc(sizeof(CP_INFO));
if(!newnode) return -1;
newnode->tag = CONSTANT_Long;
memcpy(&tmp1,&longVal,sizeof(tmp1));
memcpy(&tmp2,(char*)&longVal+4,sizeof(tmp2));
if(isBigEndian()) {
newnode->cpnode.Long.high_bytes = tmp1;
newnode->cpnode.Long.low_bytes = tmp2;
}
else {
newnode->cpnode.Long.high_bytes = cp_big_endian_u4(tmp2);
newnode->cpnode.Long.low_bytes = cp_big_endian_u4(tmp1);
}
return cp_insert(class, newnode);
}
return -1;
}
/**
* Inserts a class constant into the constant pool.
*
* @param class -- The class containing the constant pool to be searched.
* @param val -- The constant value to be inserted.
* @param force_insert -- If FALSE, certain constants will be excluded
* depending on the data type/value (see cp_find_or_insert()). If TRUE,
* the constant will be inserted regardless of its value.
*
* @returns The constant pool index for the given constant value.
* On error, returns -1.
**/
static int
insert_double_constant(JVM_CLASS *class, const void *val, BOOL force_insert) {
unsigned int tmp1, tmp2;
CP_INFO * newnode;
double doubleVal;
if(!class || !val) {
BAD_ARG();
return -1;
}
doubleVal = *((double *)val);
/* if double value is 0.0 or 1.0, then we can use
* the dconst_<i> opcode. Thus, there's no
* need to create a constant pool entry.
*/
if(( (cp_lookup(class, CONSTANT_Double, (void *)&doubleVal) < 0)
&& ( doubleVal != 0.0 && doubleVal != 1.0 ) )
|| force_insert)
{
newnode = (CP_INFO *)malloc(sizeof(CP_INFO));
if(!newnode) return -1;
newnode->tag = CONSTANT_Double;
memcpy(&tmp1,&doubleVal,sizeof(tmp1));
memcpy(&tmp2,(char*)&doubleVal+4,sizeof(tmp2));
if(isBigEndian()) {
newnode->cpnode.Double.high_bytes = tmp1;
newnode->cpnode.Double.low_bytes = tmp2;
}
else {
newnode->cpnode.Double.high_bytes = cp_big_endian_u4(tmp2);
newnode->cpnode.Double.low_bytes = cp_big_endian_u4(tmp1);
}
return cp_insert(class, newnode);
}
return -1;
}
/**
* Inserts a class constant into the constant pool.
*
* @param class -- The class containing the constant pool to be searched.
* @param val -- The constant value to be inserted.
* @param force_insert -- If FALSE, certain constants will be excluded
* depending on the data type/value (see cp_find_or_insert()). If TRUE,
* the constant will be inserted regardless of its value.
*
* @returns The constant pool index for the given constant value.
* On error, returns -1.
**/
static int
insert_string_constant(JVM_CLASS *class, const void *val, BOOL force_insert) {
CP_INFO * newnode;
int idx;
if(!class || !val) {
BAD_ARG();
return -1;
}
/* unique string literals always go into the constant pool.
* first, we have to create a CONSTANT_Utf8 entry for the
* string itself. then we create a CONSTANT_String entry
* whose string_index points to the Utf8 string.
*
* Note that we only malloc enough for the string itself
* since the Utf8 string should not be null-terminated.
*/
debug_msg("inserting a string... '%s'\n",(char *)val);
idx = cp_lookup(class, CONSTANT_Utf8, val);
if(idx < 0)
{
debug_msg("&& in insert_constant, inserting '%s'\n",(char *)val);
newnode = (CP_INFO *)malloc(sizeof(CP_INFO));
if(!newnode) return -1;
newnode->tag = CONSTANT_Utf8;
newnode->cpnode.Utf8.length = strlen(val);
newnode->cpnode.Utf8.bytes = (u1 *) malloc(newnode->cpnode.Utf8.length);
if(!newnode->cpnode.Utf8.bytes) {
free(newnode);
return -1;
}
strncpy((char *)newnode->cpnode.Utf8.bytes, val,
newnode->cpnode.Utf8.length);
idx = cp_insert(class, newnode);
}
else if(idx == 0) {
debug_err("WARNING insert_constant(): idx is 0\n");
}
newnode = (CP_INFO *)malloc(sizeof(CP_INFO));
if(!newnode) return -1;
newnode->tag = CONSTANT_String;
newnode->cpnode.String.string_index = (u2)idx;
return cp_insert(class, newnode);
}
/**
* Find the constant pool index for the given constant if it exists in
* the constant pool. If not, create a new entry and return its index.
* See cp_find_or_insert().
*
* @param class -- The class containing the constant pool to be searched.
* @param tag -- The type of constant contained in the 'value' argument.
* @param value -- The constant value to be searched for.
* @param force_insert -- If FALSE, certain constants will be excluded
* depending on the data type/value (see cp_find_or_insert()). If TRUE,
* the constant will be inserted regardless of its value.
*
* @returns The constant pool index for the given constant value.
* If the value was not inserted because it was a special value
* as mentioned above or if an error occurred then -1 is returned.
**/
static int
cp_find_function_body(JVM_CLASS *class, JVM_CONSTANT tag, const void *value,
BOOL force_insert)
{
int temp;
if(!class || !value) {
BAD_ARG();
return -1;
}
debug_msg("&& cp_find_or_insert\n");
/* First, check to see if it's already in the list. */
if( (temp = cp_lookup(class,tag,value)) >= 0 ) {
debug_msg("&& found entry, returning\n");
return temp;
}
debug_msg("&& entry not found, continuing...\n");
/* It's not in the list, so we insert it and return a pointer to
* the new node
*/
switch(tag) {
case CONSTANT_Class:
return insert_class(class, value);
case CONSTANT_Fieldref:
case CONSTANT_InterfaceMethodref:
case CONSTANT_Methodref:
return insert_ref(class, tag, value);
case CONSTANT_NameAndType:
return insert_nameandtype(class, value);
case CONSTANT_Utf8:
return insert_utf8(class, value);
case CONSTANT_Integer:
return insert_constant(class, CP_INTEGER_CONST, value, force_insert);
case CONSTANT_Float:
return insert_constant(class, CP_FLOAT_CONST, value, force_insert);
case CONSTANT_Long:
return insert_constant(class, CP_LONG_CONST, value, force_insert);
case CONSTANT_Double:
return insert_constant(class, CP_DOUBLE_CONST, value, force_insert);
case CONSTANT_String:
return insert_constant(class, CP_STRING_CONST, value, force_insert);
default:
debug_err("cp_find_or_insert: WARNING - tag not yet implemented!\n");
return -1;
}
/* should never hit this return stmt once this function is fully-implemented.
* still might return NULL from elsewhere if insert_constant returns NULL,
* though (e.g. if trying to insert integer 0, etc).
*/
return -1;
}
|