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
|
------------------------------------------------------------------------------
-- --
-- POLYORB COMPONENTS --
-- --
-- V A L U E S --
-- --
-- B o d y --
-- --
-- Copyright (C) 2005-2012, Free Software Foundation, Inc. --
-- --
-- This is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. This software is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- --
-- TABILITY 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 and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- PolyORB is maintained by AdaCore --
-- (email: sales@adacore.com) --
-- --
------------------------------------------------------------------------------
with Namet; use Namet;
with GNAT.Table;
package body Values is
Hex : constant String := "0123456789ABCDEF";
package VT is
new GNAT.Table (Value_Type, Value_Id, No_Value + 1, 10, 10);
subtype ULL is Unsigned_Long_Long;
procedure Add_ULL_To_Name_Buffer (U : ULL; B : ULL; S : Integer := 1);
LULL_Div_10 : constant Unsigned_Long_Long := LULL / 10;
---------
-- "*" --
---------
function "*" (L, R : Value_Type) return Value_Type
is
V : Value_Type := L;
begin
case V.K is
when K_Short .. K_Unsigned_Long_Long | K_Octet =>
if L.Base = R.Base then
V.Base := 10;
end if;
V.Sign := L.Sign * R.Sign;
V.IVal := L.IVal * R.IVal;
when K_Fixed_Point_Type =>
V.Sign := L.Sign * R.Sign;
V.IVal := L.IVal * R.IVal;
V.Total := L.Total + R.Total;
V.Scale := L.Scale + R.Scale;
Normalize_Fixed_Point_Value (V);
when K_Float .. K_Long_Double =>
V.FVal := L.FVal * R.FVal;
when others =>
return Bad_Value;
end case;
return V;
end "*";
---------
-- "+" --
---------
function "+" (L, R : Value_Type) return Value_Type
is
V : Value_Type := R;
NL : Value_Type := L;
NR : Value_Type := R;
begin
case R.K is
when K_Short .. K_Unsigned_Long_Long | K_Octet =>
if L.Base /= R.Base then
V.Base := 10;
end if;
if L.Sign = R.Sign then
V.IVal := L.IVal + R.IVal;
elsif R.IVal <= L.IVal then
V.Sign := L.Sign;
V.IVal := L.IVal - R.IVal;
else
V.Sign := -L.Sign;
V.IVal := R.IVal - L.IVal;
end if;
when K_Fixed_Point_Type =>
if NL.Scale > NR.Scale then
NR.IVal := NR.IVal * 10 ** Integer (L.Scale - R.Scale);
V.Scale := NL.Scale;
else
NL.IVal := L.IVal * 10 ** Integer (R.Scale - L.Scale);
V.Scale := NR.Scale;
end if;
if NL.Sign = NR.Sign then
V.IVal := NL.IVal + NR.IVal;
elsif NR.IVal <= NL.IVal then
V.Sign := NL.Sign;
V.IVal := NL.IVal - NR.IVal;
else
V.Sign := -NL.Sign;
V.IVal := NR.IVal - NL.IVal;
end if;
Normalize_Fixed_Point_Value (V);
when K_Float .. K_Long_Double =>
V.FVal := L.FVal + R.FVal;
when others =>
return Bad_Value;
end case;
return V;
end "+";
---------
-- "-" --
---------
function "-" (R : Value_Type) return Value_Type
is
V : Value_Type := R;
begin
case R.K is
when K_Short .. K_Unsigned_Long_Long
| K_Octet
| K_Fixed_Point_Type =>
V.Sign := -V.Sign;
when K_Float .. K_Long_Double =>
V.FVal := -V.FVal;
when others =>
return Bad_Value;
end case;
return V;
end "-";
---------
-- "-" --
---------
function "-" (L, R : Value_Type) return Value_Type
is
V : Value_Type := R;
begin
case R.K is
when K_Short .. K_Unsigned_Long_Long
| K_Octet
| K_Fixed_Point_Type =>
V.Sign := -V.Sign;
when K_Float .. K_Long_Double =>
V.FVal := -V.FVal;
when others =>
return Bad_Value;
end case;
return L + V;
end "-";
---------
-- "/" --
---------
function "/" (L, R : Value_Type) return Value_Type
is
V : Value_Type := L;
NL : Value_Type := L;
begin
case V.K is
when K_Short .. K_Unsigned_Long_Long | K_Octet =>
if L.Base = R.Base then
V.Base := 10;
end if;
V.Sign := L.Sign * R.Sign;
V.IVal := L.IVal / R.IVal;
when K_Float .. K_Long_Double =>
V.FVal := L.FVal / R.FVal;
when K_Fixed_Point_Type =>
while NL.IVal < LULL_Div_10 loop
NL.IVal := NL.IVal * 10;
NL.Total := NL.Total + 1;
NL.Scale := NL.Scale + 1;
end loop;
V.Sign := L.Sign * R.Sign;
V.IVal := NL.IVal / R.IVal;
V.Scale := NL.Scale - R.Scale;
Normalize_Fixed_Point_Value (V);
when others =>
return Bad_Value;
end case;
return V;
end "/";
---------
-- "<" --
---------
function "<" (L, R : Value_Type) return Boolean is
begin
case R.K is
when K_Short .. K_Unsigned_Long_Long
| K_Octet
| K_Boolean =>
if L.Sign > 0 then
if R.Sign > 0 then
return L.IVal < R.IVal;
else
return False;
end if;
elsif R.Sign > 0 then
return True;
else
return L.IVal > R.IVal;
end if;
when K_Enumerator =>
return L.Pos < R.Pos;
when K_Fixed_Point_Type =>
raise Program_Error;
when K_Float .. K_Long_Double =>
raise Program_Error;
when K_Char .. K_Wide_Char =>
return L.CVal < R.CVal;
when others =>
return False;
end case;
end "<";
-----------
-- "and" --
-----------
function "and" (L, R : Value_Type) return Value_Type
is
LV : Value_Type := L;
RV : Value_Type := R;
begin
case L.K is
when K_Short .. K_Unsigned_Long_Long | K_Octet =>
if LV.Base /= RV.Base then
LV.Base := 10;
end if;
if LV.Sign < 0 then
LV.IVal := LULL - LV.IVal;
end if;
if RV.Sign < 0 then
RV.IVal := LULL - RV.IVal;
end if;
LV.IVal := LV.IVal and RV.IVal;
LV.Sign := 1;
when K_Boolean =>
LV.IVal := LV.IVal and RV.IVal;
when others =>
return Bad_Value;
end case;
return LV;
end "and";
-----------
-- "mod" --
-----------
function "mod" (L, R : Value_Type) return Value_Type
is
V : Value_Type := L;
begin
case L.K is
when K_Short .. K_Unsigned_Long_Long | K_Octet =>
if L.Base /= R.Base then
V.Base := 10;
end if;
V.Sign := L.Sign * R.Sign;
V.IVal := L.IVal mod R.IVal;
when others =>
return Bad_Value;
end case;
return V;
end "mod";
-----------
-- "not" --
-----------
function "not" (R : Value_Type) return Value_Type
is
V : Value_Type := R;
begin
case V.K is
when K_Octet
| K_Short
| K_Unsigned_Short
| K_Long
| K_Unsigned_Long =>
V.IVal := Unsigned_Long_Long (not Unsigned_Long (V.IVal));
when K_Long_Long
| K_Unsigned_Long_Long =>
V.IVal := not V.IVal;
when K_Boolean =>
V.IVal := 1 - V.IVal;
when others =>
return Bad_Value;
end case;
return V;
end "not";
----------
-- "or" --
----------
function "or" (L, R : Value_Type) return Value_Type
is
LV : Value_Type := L;
RV : Value_Type := R;
begin
case L.K is
when K_Short .. K_Unsigned_Long_Long | K_Octet =>
if LV.Base /= RV.Base then
LV.Base := 10;
end if;
if LV.Sign < 0 then
LV.IVal := LULL - LV.IVal;
end if;
if RV.Sign < 0 then
RV.IVal := LULL - RV.IVal;
end if;
LV.IVal := LV.IVal or RV.IVal;
LV.Sign := 1;
when K_Boolean =>
LV.IVal := LV.IVal or RV.IVal;
when others =>
return Bad_Value;
end case;
return LV;
end "or";
-----------
-- "xor" --
-----------
function "xor" (L, R : Value_Type) return Value_Type
is
LV : Value_Type := L;
RV : Value_Type := R;
begin
case LV.K is
when K_Short .. K_Unsigned_Long_Long | K_Octet =>
if LV.Base /= RV.Base then
LV.Base := 10;
end if;
if LV.Sign < 0 then
LV.IVal := LULL - LV.IVal;
end if;
if RV.Sign < 0 then
RV.IVal := LULL - RV.IVal;
end if;
LV.IVal := LV.IVal xor RV.IVal;
LV.Sign := 1;
when K_Boolean =>
LV.IVal := LV.IVal xor RV.IVal;
when others =>
return Bad_Value;
end case;
return LV;
end "xor";
----------------------------
-- Add_ULL_To_Name_Buffer --
----------------------------
procedure Add_ULL_To_Name_Buffer (U : ULL; B : ULL; S : Integer := 1)
is
Q : constant ULL := U / B;
R : constant ULL := U mod B;
begin
if Q /= 0 or else S > 1 then
Add_ULL_To_Name_Buffer (Q, B, S - 1);
end if;
Add_Char_To_Name_Buffer (Hex (Hex'First + Natural (R)));
end Add_ULL_To_Name_Buffer;
-------------
-- Convert --
-------------
function Convert (V : Value_Type; K : Node_Kind) return Value_Type
is
R : Value_Type (K);
begin
case K is
when K_Short .. K_Unsigned_Long_Long | K_Octet =>
R.IVal := V.IVal;
R.Sign := V.Sign;
R.Base := V.Base;
when K_Fixed_Point_Type =>
R.IVal := V.IVal;
R.Sign := V.Sign;
R.Total := V.Total;
R.Scale := V.Scale;
when K_Float .. K_Long_Double =>
R.FVal := V.FVal;
when K_Char .. K_Wide_Char =>
R.CVal := V.CVal;
when K_String .. K_Wide_String =>
R.SVal := V.SVal;
when K_Boolean =>
R.IVal := V.IVal;
when others =>
return V;
end case;
return R;
end Convert;
-----------
-- Image --
-----------
function Image (Value : Value_Id) return String
is
V : Value_Type;
begin
if Value = No_Value then
return "<>";
end if;
V := VT.Table (Value);
Name_Len := 0;
case V.K is
when K_Boolean =>
if V.IVal = 1 then
return "TRUE";
else
return "FALSE";
end if;
when K_Short .. K_Unsigned_Long_Long | K_Octet =>
if V.Sign < 0 then
Add_Char_To_Name_Buffer ('-');
elsif V.Base = 16 then
Add_Str_To_Name_Buffer ("0X");
elsif V.Base = 8 then
Add_Char_To_Name_Buffer ('0');
end if;
Add_ULL_To_Name_Buffer (V.IVal, ULL (V.Base));
when K_Fixed_Point_Type =>
if V.Sign < 0 then
Add_Char_To_Name_Buffer ('-');
end if;
Add_ULL_To_Name_Buffer (V.IVal / 10 ** Natural (V.Scale), 10);
if V.Scale > 0 then
Add_Char_To_Name_Buffer ('.');
Add_ULL_To_Name_Buffer (V.IVal mod 10 ** Natural (V.Scale), 10);
end if;
Add_Char_To_Name_Buffer ('D');
when K_Float .. K_Long_Double =>
Add_Str_To_Name_Buffer (Long_Double'Image (V.FVal));
declare
Index : Natural := Name_Len;
begin
-- Find exponent if any
while Index > 0 and then Name_Buffer (Index) /= 'E' loop
Index := Index - 1;
end loop;
-- Remove leading zero in exponent part.
if Index > 0 then
Index := Index + 2;
while Index <= Name_Len
and then Name_Buffer (Index) = '0'
loop
Name_Buffer (Index .. Name_Len - 1) :=
Name_Buffer (Index + 1 .. Name_Len);
Name_Len := Name_Len - 1;
end loop;
-- Remove exponent
if Index > Name_Len then
Name_Len := Name_Len - 2;
Index := Name_Len;
else
Index := Name_Len;
while Name_Buffer (Index) /= 'E' loop
Index := Index - 1;
end loop;
Index := Index - 1;
end if;
end if;
-- Remove trailing zero in fraction part.
while Name_Buffer (Index) = '0' loop
exit when Name_Buffer (Index - 1) = '.';
Name_Buffer (Index .. Name_Len - 1) :=
Name_Buffer (Index + 1 .. Name_Len);
Name_Len := Name_Len - 1;
Index := Index - 1;
end loop;
end;
when K_Char | K_Wide_Char =>
if V.K = K_Wide_Char then
Add_Char_To_Name_Buffer ('L');
end if;
Add_Char_To_Name_Buffer (''');
if V.CVal <= 127 then
declare
C : constant Character := Character'Val (Natural (V.CVal));
begin
if C in '!' .. '~' then
Add_Char_To_Name_Buffer (C);
else
Add_Char_To_Name_Buffer ('\');
Add_ULL_To_Name_Buffer (ULL (V.CVal), 8, 3);
end if;
end;
else
Add_Str_To_Name_Buffer ("\u");
Add_ULL_To_Name_Buffer (ULL (V.CVal), 16);
end if;
Add_Char_To_Name_Buffer (''');
when K_String | K_Wide_String | K_String_Type | K_Wide_String_Type =>
if V.SVal = No_Name then
return '"' & '"';
end if;
if V.K = K_Wide_String or else V.K = K_Wide_String_Type then
Add_Char_To_Name_Buffer ('L');
Add_Char_To_Name_Buffer ('"'); -- "
declare
S : constant String := Get_Name_String (V.SVal);
I : Natural := 0;
L : constant Natural := S'Last;
C : Natural;
begin
while I < L loop
I := I + 1;
if S (I) = ASCII.NUL then
I := I + 1;
Add_Char_To_Name_Buffer (S (I));
else
Add_Str_To_Name_Buffer ("""""\u");
C := Character'Pos (S (I));
Add_Char_To_Name_Buffer (Hex (C / 16 + 1));
Add_Char_To_Name_Buffer (Hex (C mod 16 + 1));
I := I + 1;
C := Character'Pos (S (I));
Add_Char_To_Name_Buffer (Hex (C / 16 + 1));
Add_Char_To_Name_Buffer (Hex (C mod 16 + 1));
Add_Str_To_Name_Buffer ("""""");
end if;
end loop;
end;
Add_Char_To_Name_Buffer ('"'); -- "
else
Add_Char_To_Name_Buffer ('"'); -- "
Get_Name_String_And_Append (V.SVal);
Add_Char_To_Name_Buffer ('"'); -- "
end if;
when K_Enumerator =>
Get_Name_String (V.SVal);
when others =>
raise Program_Error;
end case;
return Name_Buffer (1 .. Name_Len);
end Image;
---------------
-- Image_Ada --
---------------
function Image_Ada (Value : Value_Id) return String
is
V : Value_Type;
begin
if Value = No_Value then
return "<>";
end if;
V := VT.Table (Value);
Name_Len := 0;
case V.K is
when K_Boolean =>
if V.IVal = 1 then
return "True";
else
return "False";
end if;
when K_Short .. K_Unsigned_Long_Long | K_Octet =>
if V.Sign < 0 then
Add_Char_To_Name_Buffer ('-');
elsif V.Base = 16 then
Add_Str_To_Name_Buffer ("16#");
elsif V.Base = 8 then
Add_Str_To_Name_Buffer ("8#");
end if;
Add_ULL_To_Name_Buffer (V.IVal, ULL (V.Base));
if V.Base = 16 or else V.Base = 8 then
Add_Char_To_Name_Buffer ('#');
end if;
when K_Fixed_Point_Type =>
if V.Sign < 0 then
Add_Char_To_Name_Buffer ('-');
end if;
Add_ULL_To_Name_Buffer (V.IVal / 10 ** Natural (V.Scale), 10);
if V.Scale > 0 then
Add_Char_To_Name_Buffer ('.');
Add_ULL_To_Name_Buffer (V.IVal mod 10 ** Natural (V.Scale), 10);
end if;
when K_Float .. K_Long_Double =>
Add_Str_To_Name_Buffer (Long_Double'Image (V.FVal));
if Name_Buffer (Name_Buffer'First) = ' ' then
Set_Str_To_Name_Buffer
(Name_Buffer (Name_Buffer'First .. Name_Len));
end if;
declare
Index : Natural := Name_Len;
begin
-- Find exponent if any
while Index > 0 and then Name_Buffer (Index) /= 'E' loop
Index := Index - 1;
end loop;
-- Remove leading zero in exponent part.
if Index > 0 then
Index := Index + 2;
while Index <= Name_Len
and then Name_Buffer (Index) = '0'
loop
Name_Buffer (Index .. Name_Len - 1) :=
Name_Buffer (Index + 1 .. Name_Len);
Name_Len := Name_Len - 1;
end loop;
-- Remove exponent
if Index > Name_Len then
Name_Len := Name_Len - 2;
Index := Name_Len;
else
Index := Name_Len;
while Name_Buffer (Index) /= 'E' loop
Index := Index - 1;
end loop;
Index := Index - 1;
end if;
end if;
-- Remove trailing zero in fraction part.
while Name_Buffer (Index) = '0' loop
exit when Name_Buffer (Index - 1) = '.';
Name_Buffer (Index .. Name_Len - 1) :=
Name_Buffer (Index + 1 .. Name_Len);
Name_Len := Name_Len - 1;
Index := Index - 1;
end loop;
end;
when K_Char | K_Wide_Char =>
if V.CVal <= 127 then
declare
C : constant Character := Character'Val (Natural (V.CVal));
begin
if C in '!' .. '~' then
Add_Char_To_Name_Buffer (''');
Add_Char_To_Name_Buffer (C);
Add_Char_To_Name_Buffer (''');
else
if V.K = K_Wide_Char then
Add_Str_To_Name_Buffer ("Wide_");
end if;
Add_Str_To_Name_Buffer ("Character'Val (");
Add_ULL_To_Name_Buffer (ULL (V.CVal), 10);
Add_Char_To_Name_Buffer (')');
end if;
end;
else
Add_Str_To_Name_Buffer ("Wide_Character'Val (");
Add_ULL_To_Name_Buffer (ULL (V.CVal), 10);
Add_Char_To_Name_Buffer (')');
end if;
when K_String | K_Wide_String | K_String_Type | K_Wide_String_Type =>
if V.SVal = No_Name then
return '"' & '"';
end if;
Add_Char_To_Name_Buffer ('"'); -- "
Get_Name_String_And_Append (V.SVal);
Add_Char_To_Name_Buffer ('"'); -- "
when K_Enumerator =>
Get_Name_String (V.SVal);
when others =>
raise Program_Error;
end case;
return Name_Buffer (1 .. Name_Len);
end Image_Ada;
--------------
-- Negative --
--------------
function Negative (V : Value_Type) return Boolean is
begin
case V.K is
when K_Short .. K_Unsigned_Long_Long | K_Octet | K_Fixed_Point_Type =>
return V.Sign < 0;
when K_Float .. K_Long_Double =>
return V.FVal < 0.0;
when others =>
raise Program_Error;
end case;
end Negative;
--------------
-- Negative --
--------------
function Negative (V : Value_Id) return Boolean is
begin
if V = No_Value then
raise Program_Error;
end if;
return Negative (Value (V));
end Negative;
-----------------------
-- New_Boolean_Value --
-----------------------
function New_Boolean_Value
(Value : Boolean)
return Value_Id is
begin
return New_Value (Value_Type'(K_Boolean, Boolean'Pos (Value), 1, 10));
end New_Boolean_Value;
-------------------------
-- New_Character_Value --
-------------------------
function New_Character_Value
(Value : Unsigned_Short;
Wide : Boolean)
return Value_Id is
begin
if Wide then
return New_Value (Value_Type'(K_Wide_Char, Value));
else
return New_Value (Value_Type'(K_Char, Value));
end if;
end New_Character_Value;
--------------------
-- New_Enumerator --
--------------------
function New_Enumerator
(Img : Name_Id;
Pos : Unsigned_Long_Long)
return Value_Id is
begin
return New_Value (Value_Type'(K_Enumerator, Img, Pos));
end New_Enumerator;
---------------------------
-- New_Fixed_Point_Value --
---------------------------
function New_Fixed_Point_Value
(Value : Unsigned_Long_Long;
Sign : Short_Short;
Total : Unsigned_Short_Short;
Scale : Unsigned_Short_Short)
return Value_Id
is
V : Value_Id;
begin
V := New_Value
(Value_Type'(K_Fixed_Point_Type, Value, Sign, Total, Scale));
Normalize_Fixed_Point_Value (V, Total, Scale);
return V;
end New_Fixed_Point_Value;
------------------------------
-- New_Floating_Point_Value --
------------------------------
function New_Floating_Point_Value
(Value : Long_Double)
return Value_Id is
begin
return New_Value (Value_Type'(K_Long_Double, Value));
end New_Floating_Point_Value;
-----------------------
-- New_Integer_Value --
-----------------------
function New_Integer_Value
(Value : Unsigned_Long_Long;
Sign : Short_Short;
Base : Unsigned_Short_Short)
return Value_Id is
begin
return New_Value (Value_Type'(K_Unsigned_Long_Long, Value, Sign, Base));
end New_Integer_Value;
----------------------
-- New_String_Value --
----------------------
function New_String_Value
(Value : Name_Id;
Wide : Boolean)
return Value_Id is
begin
if Wide then
return New_Value (Value_Type'(K_Wide_String, Value));
else
return New_Value (Value_Type'(K_String, Value));
end if;
end New_String_Value;
---------------
-- New_Value --
---------------
function New_Value (Value : Value_Type) return Value_Id
is
V : Value_Id;
begin
VT.Increment_Last;
V := VT.Last;
VT.Table (V) := Value;
return V;
end New_Value;
---------------------------------
-- Normalize_Fixed_Point_Value --
---------------------------------
procedure Normalize_Fixed_Point_Value
(Value : in out Value_Id;
Total : Unsigned_Short_Short := Max_Digits;
Scale : Unsigned_Short_Short := Max_Digits)
is
V : Value_Type := Values.Value (Value);
begin
Normalize_Fixed_Point_Value (V, Total, Scale);
if V = Bad_Value then
Value := No_Value;
else
Set_Value (Value, V);
end if;
end Normalize_Fixed_Point_Value;
---------------------------------
-- Normalize_Fixed_Point_Value --
---------------------------------
procedure Normalize_Fixed_Point_Value
(Value : in out Value_Type;
Total : Unsigned_Short_Short := Max_Digits;
Scale : Unsigned_Short_Short := Max_Digits)
is
Quotient : Unsigned_Long_Long;
begin
-- Reduce the precision when it exceeds what is required
while Value.Scale > Scale loop
Value.IVal := Value.IVal / 10;
Value.Scale := Value.Scale - 1;
Value.Total := Value.Total - 1;
end loop;
-- Remove any trailing zero
while Value.Scale > 0 and then Value.IVal mod 10 = 0 loop
Value.IVal := Value.IVal / 10;
Value.Scale := Value.Scale - 1;
Value.Total := Value.Total - 1;
end loop;
-- Remove any leading zero and recompute total digits
Quotient := Value.IVal / 10;
Value.Total := 1;
while Quotient /= 0 loop
Quotient := Quotient / 10;
Value.Total := Value.Total + 1;
end loop;
-- Value overflows maximum value supported by fixed point type
if Value.Total > Total then
Value := Bad_Value;
end if;
end Normalize_Fixed_Point_Value;
---------------
-- Set_Value --
---------------
procedure Set_Value (V : Value_Id; X : Value_Type) is
begin
VT.Table (V) := X;
end Set_Value;
----------------
-- Shift_Left --
----------------
function Shift_Left (L, R : Value_Type) return Value_Type
is
LV : Value_Type := L;
RV : Value_Type := R;
begin
case RV.K is
when K_Short .. K_Unsigned_Long_Long | K_Octet =>
if RV.Sign < 0 then
RV.Sign := 1;
return Shift_Right (LV, RV);
end if;
-- Keep working with left operand base
LV.IVal := Shift_Left (LV.IVal, Natural (RV.IVal));
return LV;
when others =>
return Bad_Value;
end case;
end Shift_Left;
-----------------
-- Shift_Right --
-----------------
function Shift_Right (L, R : Value_Type) return Value_Type
is
LV : Value_Type := L;
RV : Value_Type := R;
begin
case RV.K is
when K_Short .. K_Unsigned_Long_Long | K_Octet =>
if RV.Sign < 0 then
RV.Sign := 1;
return Shift_Left (LV, RV);
end if;
-- Keep working with left operand base
LV.IVal := Shift_Right (LV.IVal, Natural (RV.IVal));
return LV;
when others =>
return Bad_Value;
end case;
end Shift_Right;
-----------
-- Value --
-----------
function Value (V : Value_Id) return Value_Type is
begin
return VT.Table (V);
end Value;
end Values;
|