1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-21 02:27:10 +03:00
mal/ada/types.adb

773 lines
22 KiB
Ada
Raw Normal View History

2015-03-15 22:56:09 +03:00
with Ada.Characters.Latin_1;
with Ada.Strings.Fixed;
2015-04-19 20:08:51 +03:00
with Ada.Strings.Maps.Constants;
2015-03-15 22:56:09 +03:00
with Ada.Text_IO;
2015-03-19 00:12:54 +03:00
with Ada.Unchecked_Deallocation;
2015-04-19 20:08:51 +03:00
with Envs;
with Smart_Pointers;
2015-03-15 22:56:09 +03:00
package body Types is
package ACL renames Ada.Characters.Latin_1;
2015-03-17 01:48:48 +03:00
2015-04-19 20:08:51 +03:00
function "=" (A, B : Mal_Handle) return Mal_Handle is
begin
return New_Bool_Mal_Type (A = B);
end "=";
function "=" (A, B : Mal_Handle) return Boolean is
begin
if (not Is_Null (A) and not Is_Null (B)) and then
Deref (A).Sym_Type = Deref (B).Sym_Type then
case Deref (A).Sym_Type is
when Int =>
return (Deref_Int (A).Get_Int_Val = Deref_Int (B).Get_Int_Val);
when Floating =>
return (Deref_Float (A).Get_Float_Val = Deref_Float (B).Get_Float_Val);
when Bool =>
return (Deref_Bool (A).Get_Bool = Deref_Bool (B).Get_Bool);
when List =>
return (Deref_List (A).all = Deref_List (B).all);
when Str =>
return (Deref_String (A).Get_String = Deref_String (B).Get_String);
when Atom =>
return (Deref_Atom (A).Get_Atom = Deref_Atom (B).Get_Atom);
when Func =>
return (Deref_Func (A).Get_Func_Name = Deref_Func (B).Get_Func_Name);
2015-04-19 20:08:51 +03:00
when Unitary =>
return (Deref_Int(A).Get_Int_Val = Deref_Int(B).Get_Int_Val);
when Node =>
return (Deref_Int(A).Get_Int_Val = Deref_Int(B).Get_Int_Val);
when Lambda =>
return (Deref_Int(A).Get_Int_Val = Deref_Int(B).Get_Int_Val);
when Error =>
return (Deref_Int(A).Get_Int_Val = Deref_Int(B).Get_Int_Val);
end case;
elsif Is_Null (A) and Is_Null (B) then
return True;
else -- either one of the args is null or the sym_types don't match
return False;
end if;
end "=";
function Get_Meta (T : Mal_Type) return Mal_Handle is
begin
return T.Meta;
end Get_Meta;
procedure Set_Meta (T : in out Mal_Type'Class; SP : Mal_Handle) is
begin
T.Meta := SP;
end Set_Meta;
function To_String (T : Mal_Type'Class) return Mal_String is
begin
if not Is_Null (T.Meta) then
return "(with-meta " &
To_Str (T) & " " &
To_Str (Deref (T.Meta).all) & ")";
else
return To_Str (T);
end if;
end To_String;
-- A helper function that just view converts the smart pointer.
function Deref (S : Mal_Handle) return Mal_Ptr is
begin
return Mal_Ptr (Smart_Pointers.Deref (S));
end Deref;
-- A helper function to detect null smart pointers.
function Is_Null (S : Mal_Handle) return Boolean is
use Smart_Pointers;
begin
2015-04-19 20:08:51 +03:00
return Smart_Pointers."="(S, Null_Smart_Pointer);
end Is_Null;
-- To_Str on the abstract type...
function To_Str (T : Mal_Type) return Mal_String is
begin
raise Constraint_Error; -- Tha'll teach 'ee
return ""; -- Keeps the compiler happy.
end To_Str;
function New_Int_Mal_Type (Int : Mal_Integer) return Mal_Handle is
begin
return Smart_Pointers.New_Ptr
(new Int_Mal_Type'(Mal_Type with Int_Val => Int));
end New_Int_Mal_Type;
overriding function Sym_Type (T : Int_Mal_Type) return Sym_Types is
begin
return Int;
end Sym_Type;
function Get_Int_Val (T : Int_Mal_Type) return Mal_Integer is
begin
return T.Int_Val;
end Get_Int_Val;
overriding function To_Str (T : Int_Mal_Type) return Mal_String is
Res : Mal_String := Mal_Integer'Image (T.Int_Val);
begin
return Ada.Strings.Fixed.Trim (Res, Ada.Strings.Left);
end To_Str;
function Deref_Int (SP : Mal_Handle) return Int_Ptr is
2015-04-02 01:36:29 +03:00
begin
return Int_Ptr (Deref (SP));
end Deref_Int;
function New_Float_Mal_Type (Floating : Mal_Float) return Mal_Handle is
begin
return Smart_Pointers.New_Ptr
(new Float_Mal_Type'(Mal_Type with Float_Val => Floating));
end New_Float_Mal_Type;
overriding function Sym_Type (T : Float_Mal_Type) return Sym_Types is
begin
return Floating;
end Sym_Type;
function Get_Float_Val (T : Float_Mal_Type) return Mal_Float is
begin
return T.Float_Val;
end Get_Float_Val;
overriding function To_Str (T : Float_Mal_Type) return Mal_String is
Res : Mal_String := Mal_Float'Image (T.Float_Val);
begin
return Ada.Strings.Fixed.Trim (Res, Ada.Strings.Left);
end To_Str;
function Deref_Float (SP : Mal_Handle) return Float_Ptr is
2015-04-02 01:36:29 +03:00
begin
return Float_Ptr (Deref (SP));
end Deref_Float;
2015-04-19 20:08:51 +03:00
function New_Bool_Mal_Type (Bool : Boolean) return Mal_Handle is
begin
return Smart_Pointers.New_Ptr
(new Bool_Mal_Type'(Mal_Type with Bool_Val => Bool));
end New_Bool_Mal_Type;
overriding function Sym_Type (T : Bool_Mal_Type) return Sym_Types is
begin
return Bool;
end Sym_Type;
function Get_Bool (T : Bool_Mal_Type) return Boolean is
begin
return T.Bool_Val;
end Get_Bool;
overriding function To_Str (T : Bool_Mal_Type) return Mal_String is
Res : Mal_String := Boolean'Image (T.Bool_Val);
begin
return Ada.Strings.Fixed.Translate
(Res, Ada.Strings.Maps.Constants.Lower_Case_Map);
end To_Str;
function Deref_Bool (SP : Mal_Handle) return Bool_Ptr is
begin
return Bool_Ptr (Deref (SP));
end Deref_Bool;
function New_String_Mal_Type (Str : Mal_String) return Mal_Handle is
begin
return Smart_Pointers.New_Ptr
(new String_Mal_Type' (Mal_Type with The_String =>
Ada.Strings.Unbounded.To_Unbounded_String (Str)));
end New_String_Mal_Type;
overriding function Sym_Type (T : String_Mal_Type) return Sym_Types is
begin
return Str;
end Sym_Type;
function Get_String (T : String_Mal_Type) return Mal_String is
begin
return Ada.Strings.Unbounded.To_String (T.The_String);
end Get_String;
2015-04-19 20:08:51 +03:00
function Deref_String (SP : Mal_Handle) return String_Ptr is
begin
return String_Ptr (Deref (SP));
end Deref_String;
overriding function To_Str (T : String_Mal_Type) return Mal_String is
begin
return Ada.Strings.Unbounded.To_String (T.The_String);
end To_Str;
function New_Atom_Mal_Type (Str : Mal_String) return Mal_Handle is
begin
return Smart_Pointers.New_Ptr
(new Atom_Mal_Type'(Mal_Type with The_Atom =>
Ada.Strings.Unbounded.To_Unbounded_String (Str)));
end New_Atom_Mal_Type;
2015-03-23 01:37:42 +03:00
overriding function Sym_Type (T : Atom_Mal_Type) return Sym_Types is
2015-03-23 01:37:42 +03:00
begin
return Atom;
end Sym_Type;
function Get_Atom (T : Atom_Mal_Type) return Mal_String is
begin
return Ada.Strings.Unbounded.To_String (T.The_Atom);
end Get_Atom;
function Deref_Atom (S : Mal_Handle) return Atom_Ptr is
begin
2015-04-05 22:27:47 +03:00
return Atom_Ptr (Deref (S));
end Deref_Atom;
overriding function To_Str (T : Atom_Mal_Type) return Mal_String is
begin
return Ada.Strings.Unbounded.To_String (T.The_Atom);
end To_Str;
function New_Func_Mal_Type (Str : Mal_String; F : Builtin_Func)
return Mal_Handle is
begin
return Smart_Pointers.New_Ptr
(new Func_Mal_Type'(Mal_Type with
Func_Name => Ada.Strings.Unbounded.To_Unbounded_String (Str),
Func_P => F));
end New_Func_Mal_Type;
overriding function Sym_Type (T : Func_Mal_Type) return Sym_Types is
begin
return Func;
end Sym_Type;
function Get_Func_Name (T : Func_Mal_Type) return Mal_String is
begin
return Ada.Strings.Unbounded.To_String (T.Func_Name);
end Get_Func_Name;
function Call_Func
(FMT : Func_Mal_Type; Rest_List : Mal_Handle; Env : Envs.Env_Handle)
return Mal_Handle is
begin
return FMT.Func_P (Rest_List, Env);
end Call_Func;
function Deref_Func (S : Mal_Handle) return Func_Ptr is
begin
return Func_Ptr (Deref (S));
end Deref_Func;
overriding function To_Str (T : Func_Mal_Type) return Mal_String is
begin
return Ada.Strings.Unbounded.To_String (T.Func_Name);
end To_Str;
function New_Error_Mal_Type (Str : Mal_String) return Mal_Handle is
begin
return Smart_Pointers.New_Ptr
(new Error_Mal_Type'(Mal_Type with Error_Msg =>
Ada.Strings.Unbounded.To_Unbounded_String (Str)));
end New_Error_Mal_Type;
overriding function Sym_Type (T : Error_Mal_Type) return Sym_Types is
begin
return Error;
end Sym_Type;
overriding function To_Str (T : Error_Mal_Type) return Mal_String is
begin
return Ada.Strings.Unbounded.To_String (T.Error_Msg);
end To_Str;
function New_Unitary_Mal_Type (Func : Unitary_Functions; Op : Mal_Handle)
return Mal_Handle is
begin
return Smart_Pointers.New_Ptr
(new Unitary_Mal_Type'
(Mal_Type with The_Function => Func, The_Operand => Op));
end New_Unitary_Mal_Type;
overriding function Sym_Type (T : Unitary_Mal_Type) return Sym_Types is
begin
return Unitary;
end Sym_Type;
function Get_Func (T : Unitary_Mal_Type) return Unitary_Functions is
begin
return T.The_Function;
end Get_Func;
function Get_Op (T : Unitary_Mal_Type) return Mal_Handle is
begin
return T.The_Operand;
end Get_Op;
2015-04-02 01:36:29 +03:00
function Map_Nodes
(Func_Ptr : Func_Access;
L : Node_Mal_Type)
return Mal_Handle is
2015-04-02 01:36:29 +03:00
begin
if not Is_Null (L.Right) then
if Deref (L.Right).Sym_Type = Node then
return New_Node_Mal_Type
(Left => Func_Ptr.all (L.Left),
Right => Map_Nodes (Func_Ptr, Deref_Node (L.Right).all));
else
-- Left and right are both filled.
return New_Node_Mal_Type
(Left => Func_Ptr.all (L.Left),
Right => Func_Ptr.all (L.Right));
end if;
else -- Right is null.
return New_Node_Mal_Type
(Left => Func_Ptr.all (L.Left),
Right => Smart_Pointers.Null_Smart_Pointer);
end if;
end Map_Nodes;
function Reduce_Nodes
(Func_Ptr : Binary_Func_Access;
L : Node_Mal_Type)
return Mal_Handle is
2015-04-02 01:36:29 +03:00
C_Node : Node_Mal_Type := L;
Res : Mal_Handle;
2015-04-02 01:36:29 +03:00
begin
if Is_Null (C_Node.Left) then
return Smart_Pointers.Null_Smart_Pointer;
end if;
Res := C_Node.Left;
while not Is_Null (C_Node.Right) and then
Deref (C_Node.Right).Sym_Type = Node loop
C_Node := Deref_Node (C_Node.Right).all;
Res := Func_Ptr (Res, C_Node.Left);
end loop;
if not Is_Null (C_Node.Right) then
Res := Func_Ptr (Res, C_Node.Right);
end if;
return Res;
end Reduce_Nodes;
overriding function To_Str (T : Unitary_Mal_Type) return Mal_String is
begin
case T.The_Function is
when Quote =>
return "(quote " & To_String (Deref (T.The_Operand).all) & ")";
when Unquote =>
return "(unquote " & To_String (Deref (T.The_Operand).all) & ")";
when Quasiquote =>
return "(quasiquote " & To_String (Deref (T.The_Operand).all) & ")";
when Splice_Unquote =>
return
"(splice-unquote " & To_String (Deref (T.The_Operand).all) & ")";
when Deref =>
return
"(deref " & To_String (Deref (T.The_Operand).all) & ")";
end case;
end To_Str;
2015-04-19 20:08:51 +03:00
function Nodes_Equal (A, B : Mal_Handle) return Boolean is
begin
if (not Is_Null (A) and not Is_Null (B)) and then
Deref (A).Sym_Type = Deref (B).Sym_Type then
if Deref (A).Sym_Type = Node then
return
Nodes_Equal (Deref_Node (A).Left, Deref_Node (B).Left) and then
Nodes_Equal (Deref_Node (A).Right, Deref_Node (B).Right);
else
return A = B;
end if;
elsif Is_Null (A) and Is_Null (B) then
return True;
else -- either one of the args is null or the sym_types don't match
return False;
end if;
end Nodes_Equal;
function New_Node_Mal_Type (Left, Right : Mal_Handle :=
Smart_Pointers.Null_Smart_pointer)
return Mal_Handle is
begin
return Smart_Pointers.New_Ptr
(new Node_Mal_Type' (Mal_Type with Left => Left, Right => Right));
end New_Node_Mal_Type;
overriding function Sym_Type (T : Node_Mal_Type) return Sym_Types is
begin
return Node;
end Sym_Type;
procedure Append (To_List : in out Node_Mal_Type; Op : Mal_Handle) is
begin
if Is_Null (To_List.Left) then
To_List.Left := Op;
elsif Is_Null (To_List.Right) then
To_List.Right := Op;
elsif Sym_Type (Deref (To_List.Right).all) = Node then
declare
Node_P : Node_Ptr;
begin
Node_P := Deref_Node (To_List.Right);
Append (Node_P.all, Op);
end;
else
-- Right is not null and not a node i.e. a full node.
To_List.Right := New_Node_Mal_Type
(Left => To_List.Right,
Right => Op);
2015-03-23 01:37:42 +03:00
end if;
end Append;
2015-04-05 22:27:47 +03:00
function Node_Length (L : Mal_Handle) return Natural is
Right : Mal_Handle;
begin
if Is_Null (L) then
return 0;
else
Right := Deref_Node (L).Right;
if Is_Null (Right) then
-- Its a node; there must be something in the Left, right? ;)
return 1;
elsif Deref (Right).Sym_Type = Node then
-- Right is a node so recurse but +1 for the Left just passed.
return Node_Length (Right) + 1;
else
-- Right is not null but not node.
return 2;
end if;
end if;
end Node_Length;
2015-04-02 01:36:29 +03:00
-- Get the first item in the list:
function Car (L : List_Mal_Type) return Mal_Handle is
2015-04-02 01:36:29 +03:00
begin
if Is_Null (L.The_List) then
return Smart_Pointers.Null_Smart_Pointer;
else
return Deref_Node (L.The_List).Left;
end if;
end Car;
-- Get the rest of the list (second item onwards)
2015-04-05 22:27:47 +03:00
function Cdr (L : List_Mal_Type) return Mal_Handle is
2015-04-02 01:36:29 +03:00
begin
2015-04-05 22:27:47 +03:00
if Is_Null (L.The_List) or else
Is_Null (Deref_Node (L.The_List).Right) then
return New_List_Mal_Type (L.List_Type);
2015-04-02 01:36:29 +03:00
end if;
declare
Node_P : Node_Ptr;
begin
Node_P := Deref_Node (L.The_List);
-- Clojure lists are constants?
-- If not, need to copy P.Right to a new list...
-- Or maybe we copy on write?
2015-04-05 22:27:47 +03:00
if Deref (Node_P.Right).Sym_Type = Node then
return New_List_Mal_Type (L.List_Type, Node_P.Right);
else
-- Right is not a Node! We'd better make one.
return New_List_Mal_Type
(L.List_Type,
New_Node_Mal_Type (Left => Node_P.Right));
end if;
2015-04-02 01:36:29 +03:00
end;
end Cdr;
2015-04-05 22:27:47 +03:00
function Length (L : List_Mal_Type) return Natural is
begin
return Node_Length (L.The_List);
end Length;
2015-04-19 20:08:51 +03:00
function Is_Null (L : List_Mal_Type) return Boolean is
use Smart_Pointers;
begin
return Smart_Pointers."="(L.The_List, Null_Smart_Pointer);
end Is_Null;
2015-04-02 01:36:29 +03:00
function Null_List (L : List_Types) return List_Mal_Type is
begin
return (Mal_Type with List_Type => L,
The_List => Smart_Pointers.Null_Smart_Pointer);
end Null_List;
function Map
(Func_Ptr : Func_Access;
L : List_Mal_Type)
return Mal_Handle is
2015-04-02 01:36:29 +03:00
begin
if Is_Null (L.The_List) then
return New_List_Mal_Type (L.Get_List_Type);
else
return New_List_Mal_Type
(L.Get_List_Type,
Map_Nodes (Func_Ptr, Deref_Node (L.The_List).all));
end if;
end Map;
function Reduce
(Func_Ptr : Binary_Func_Access;
L : List_Mal_Type)
return Mal_Handle is
2015-04-02 01:36:29 +03:00
begin
if Is_Null (L.The_List) then
return New_List_Mal_Type (L.Get_List_Type);
else
return Reduce_Nodes (Func_Ptr, Deref_Node (L.The_List).all);
end if;
end Reduce;
overriding function To_Str (T : Node_Mal_Type) return Mal_String is
begin
if Is_Null (T.Left) then
-- Left is null and by implication so is right.
return "";
elsif Is_Null (T.Right) then
-- Left is not null but right is.
return To_Str (Deref (T.Left).all);
else
-- Left and right are both not null.
return To_Str (Deref (T.Left).all) &
" " &
To_Str (Deref (T.Right).all);
end if;
end To_Str;
function Deref_Node (SP : Mal_Handle) return Node_Ptr is
begin
return Node_Ptr (Deref (SP));
end Deref_Node;
2015-03-23 01:37:42 +03:00
2015-04-19 20:08:51 +03:00
function "=" (A, B : List_Mal_Type) return Boolean is
begin
2015-04-22 23:27:43 +03:00
return Nodes_Equal (A.The_List, B.The_List);
2015-04-19 20:08:51 +03:00
end "=";
function New_List_Mal_Type
(The_List : List_Mal_Type)
return Mal_Handle is
begin
return Smart_Pointers.New_Ptr
(new List_Mal_Type'(Mal_Type with
List_Type => The_List.List_Type,
The_List => The_List.The_List));
end New_List_Mal_Type;
2015-03-23 01:37:42 +03:00
2015-04-02 01:36:29 +03:00
function New_List_Mal_Type
(List_Type : List_Types;
The_First_Node : Mal_Handle := Smart_Pointers.Null_Smart_Pointer)
return Mal_Handle is
begin
return Smart_Pointers.New_Ptr
(new List_Mal_Type'(Mal_Type with
List_Type => List_Type,
2015-04-02 01:36:29 +03:00
The_List => The_First_Node));
end New_List_Mal_Type;
overriding function Sym_Type (T : List_Mal_Type) return Sym_Types is
2015-03-23 01:37:42 +03:00
begin
return List;
end Sym_Type;
2015-04-02 01:36:29 +03:00
function Get_List_Type (L : List_Mal_Type) return List_Types is
begin
return L.List_Type;
end Get_List_Type;
2015-04-22 23:27:43 +03:00
function Prepend (Op : Mal_Handle; To_List : List_Mal_Type)
return Mal_Handle is
begin
return New_List_Mal_Type
(To_List.Get_List_Type,
New_Node_Mal_Type (Op, To_List.The_List));
end Prepend;
procedure Append (To_List : in out List_Mal_Type; Op : Mal_Handle) is
Node_P : Node_Ptr;
begin
if Is_Null (Op) then
return; -- Say what
end if;
if Is_Null (To_List.The_List) then
To_List.The_List := New_Node_Mal_Type;
2015-03-23 01:37:42 +03:00
end if;
Node_P := Deref_Node (To_List.The_List);
Append (Node_P.all, Op);
end Append;
2015-03-23 01:37:42 +03:00
function Deref_List (SP : Mal_Handle) return List_Ptr is
2015-03-23 01:37:42 +03:00
begin
return List_Ptr (Deref (SP));
end Deref_List;
2015-03-23 01:37:42 +03:00
overriding function To_Str (T : List_Mal_Type) return Mal_String is
2015-03-23 01:37:42 +03:00
begin
if Is_Null (T.The_List) then
return Opening (T.List_Type) &
Closing (T.List_Type);
else
return Opening (T.List_Type) &
To_String (Deref (T.The_List).all) &
Closing (T.List_Type);
end if;
end To_Str;
2015-03-23 01:37:42 +03:00
2015-03-17 01:48:48 +03:00
function Opening (LT : List_Types) return Character is
Res : Character;
begin
case LT is
when List_List =>
Res := '(';
when Vector_List =>
Res := '[';
when Hashed_List =>
Res := '{';
end case;
return Res;
end Opening;
function Closing (LT : List_Types) return Character is
Res : Character;
begin
case LT is
when List_List =>
Res := ')';
when Vector_List =>
Res := ']';
when Hashed_List =>
Res := '}';
end case;
return Res;
end Closing;
2015-04-19 20:08:51 +03:00
function New_Lambda_Mal_Type
(Params : Mal_Handle; Expr : Mal_Handle)
return Mal_Handle is
begin
return Smart_Pointers.New_Ptr
(new Lambda_Mal_Type'
(Mal_Type with Env => Envs.Get_Current,
Params => Params,
Expr => Expr));
end New_Lambda_Mal_Type;
overriding function Sym_Type (T : Lambda_Mal_Type) return Sym_Types is
begin
return Lambda;
end Sym_Type;
function Get_Env (L : Lambda_Mal_Type) return Envs.Env_Handle is
begin
return L.Env;
end Get_Env;
procedure Set_Env (L : in out Lambda_Mal_Type; Env : Envs.Env_Handle) is
begin
L.Env := Env;
end Set_Env;
function Get_Params (L : Lambda_Mal_Type) return Mal_Handle is
begin
return L.Params;
end Get_Params;
function Get_Expr (L : Lambda_Mal_Type) return Mal_Handle is
begin
return L.Expr;
end Get_Expr;
overriding function To_Str (T : Lambda_Mal_Type) return Mal_String is
begin
-- return "(lambda " & Ada.Strings.Unbounded.To_String (T.Rep) & ")";
return "#<function>";
end To_Str;
function Deref_Lambda (SP : Mal_Handle) return Lambda_Ptr is
begin
return Lambda_Ptr (Deref (SP));
end Deref_Lambda;
function Arith_Op (A, B : Mal_Handle) return Mal_Handle is
2015-04-02 01:36:29 +03:00
use Types;
A_Sym_Type : Sym_Types := Deref (A).Sym_Type;
B_Sym_Type : Sym_Types := Deref (B).Sym_Type;
begin
if A_Sym_Type = Int and B_Sym_Type = Int then
return New_Int_Mal_Type
(Int_Op (Deref_Int (A).Get_Int_Val, Deref_Int (B).Get_Int_Val));
elsif A_Sym_Type = Int and B_Sym_Type = Floating then
return New_Float_Mal_Type
(Float_Op (Mal_Float (Deref_Int (A).Get_Int_Val),
Deref_Float (B).Get_Float_Val));
elsif A_Sym_Type = Floating and B_Sym_Type = Int then
return New_Float_Mal_Type
(Float_Op (Deref_Float (A).Get_Float_Val,
Mal_Float (Deref_Float (B).Get_Float_Val)));
2015-04-19 20:08:51 +03:00
elsif A_Sym_Type = Floating and B_Sym_Type = Floating then
2015-04-02 01:36:29 +03:00
return New_Float_Mal_Type
(Float_Op (Deref_Float (A).Get_Float_Val,
Deref_Float (B).Get_Float_Val));
2015-04-19 20:08:51 +03:00
else
if A_Sym_Type = Error then
return A;
elsif B_Sym_Type = Error then
return B;
else
return New_Error_Mal_Type ("Invalid operands");
end if;
2015-04-02 01:36:29 +03:00
end if;
end Arith_Op;
2015-04-19 20:08:51 +03:00
function Rel_Op (A, B : Mal_Handle) return Mal_Handle is
use Types;
A_Sym_Type : Sym_Types := Deref (A).Sym_Type;
B_Sym_Type : Sym_Types := Deref (B).Sym_Type;
begin
if A_Sym_Type = Int and B_Sym_Type = Int then
return New_Bool_Mal_Type
(Int_Rel_Op (Deref_Int (A).Get_Int_Val, Deref_Int (B).Get_Int_Val));
elsif A_Sym_Type = Int and B_Sym_Type = Floating then
return New_Bool_Mal_Type
(Float_Rel_Op (Mal_Float (Deref_Int (A).Get_Int_Val),
Deref_Float (B).Get_Float_Val));
elsif A_Sym_Type = Floating and B_Sym_Type = Int then
return New_Bool_Mal_Type
(Float_Rel_Op (Deref_Float (A).Get_Float_Val,
Mal_Float (Deref_Float (B).Get_Float_Val)));
else
return New_Bool_Mal_Type
(Float_Rel_Op (Deref_Float (A).Get_Float_Val,
Deref_Float (B).Get_Float_Val));
end if;
end Rel_Op;
2015-03-15 22:56:09 +03:00
end Types;