| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | separate (H2.Scheme.Execute) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | procedure Evaluate is | 
					
						
							| 
									
										
										
										
											2014-01-26 14:58:02 +00:00
										 |  |  | 	--pragma Inline (Evaluate);
 | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Operand: aliased Object_Pointer; | 
					
						
							|  |  |  | 	Car: aliased Object_Pointer; | 
					
						
							|  |  |  | 	Cdr: aliased Object_Pointer; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 15:28:46 +00:00
										 |  |  |      -- ----------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-23 13:41:41 +00:00
										 |  |  | 	generic | 
					
						
							| 
									
										
										
										
											2014-02-08 03:53:53 +00:00
										 |  |  | 		Result: Object_Pointer; -- Result to return if no <test> expressions exist.
 | 
					
						
							|  |  |  | 		Opcode: Opcode_Type; -- Switch to this opcode to evaluate the next <test>.
 | 
					
						
							| 
									
										
										
										
											2014-01-23 13:41:41 +00:00
										 |  |  | 	procedure Generic_And_Or_Syntax; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	procedure Generic_And_Or_Syntax is | 
					
						
							|  |  |  | 	begin | 
					
						
							|  |  |  | 		-- (and <test1> <test2> ...)
 | 
					
						
							|  |  |  | 		--   (and (= 2 2) (> 2 1))                  ==>  #t
 | 
					
						
							|  |  |  | 		--   (and (= 2 2) (< 2 1))                  ==>  #f
 | 
					
						
							| 
									
										
										
										
											2014-02-08 03:53:53 +00:00
										 |  |  | 		--   (and (= 2 2) (< 2 1) (= 3 3))          ==>  #f
 | 
					
						
							| 
									
										
										
										
											2014-01-23 13:41:41 +00:00
										 |  |  | 		--   (and 1 2 'c '(f g))                    ==>  (f g)
 | 
					
						
							|  |  |  | 		--   (and)                                  ==>  #t
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Operand := Cdr;  -- Skip "And"
 | 
					
						
							|  |  |  | 		if Operand = Nil_Pointer then | 
					
						
							|  |  |  | 			-- (and)
 | 
					
						
							| 
									
										
										
										
											2014-02-08 03:53:53 +00:00
										 |  |  | 			Return_Frame (Interp, Result); | 
					
						
							| 
									
										
										
										
											2014-01-23 13:41:41 +00:00
										 |  |  | 		elsif not Is_Cons(Operand) or else Get_Last_Cdr(Operand) /= Nil_Pointer then | 
					
						
							|  |  |  | 			-- (and . 10)
 | 
					
						
							|  |  |  | 			-- (and 1 2 . 10)
 | 
					
						
							|  |  |  | 			Ada.Text_IO.Put_LINE ("FUCKING cDR FOR DEFINE"); | 
					
						
							|  |  |  | 			raise Syntax_Error;	 | 
					
						
							|  |  |  | 		else | 
					
						
							| 
									
										
										
										
											2014-02-07 16:25:38 +00:00
										 |  |  | 			--Switch_Frame (Interp.Stack, Opcode, Get_Cdr(Operand), Nil_Pointer); -- <test2> onwards
 | 
					
						
							|  |  |  | 			--Push_Frame (Interp, Opcode_Evaluate_Object, Get_Car(Operand)); -- <test1>
 | 
					
						
							|  |  |  | 			Switch_Frame (Interp.Stack, Opcode_Evaluate_Object, Get_Car(Operand), Nil_Pointer); -- <test2> onwards
 | 
					
						
							|  |  |  | 			Push_Subframe (Interp, Opcode, Get_Cdr(Operand)); -- <test1> onwards
 | 
					
						
							| 
									
										
										
										
											2014-01-23 13:41:41 +00:00
										 |  |  | 		end if; | 
					
						
							|  |  |  | 	end Generic_And_Or_Syntax; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 03:53:53 +00:00
										 |  |  | 	procedure Evaluate_And_Syntax is new Generic_And_Or_Syntax(True_Pointer, Opcode_And_Finish); | 
					
						
							|  |  |  | 	procedure Evaluate_Or_Syntax is new Generic_And_Or_Syntax(False_Pointer, Opcode_Or_Finish); | 
					
						
							| 
									
										
										
										
											2014-01-23 13:41:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 15:28:46 +00:00
										 |  |  |      -- ----------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 	procedure Evaluate_Define_Syntax is | 
					
						
							|  |  |  | 		pragma Inline (Evaluate_Define_Syntax); | 
					
						
							|  |  |  | 	begin | 
					
						
							| 
									
										
										
										
											2014-01-22 14:11:30 +00:00
										 |  |  | -- TODO: limit the context where define can be used.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 		-- (define x 10) 
 | 
					
						
							|  |  |  | 		-- (define (add x y) (+ x y)) -> (define add (lambda (x y) (+ x y)))
 | 
					
						
							|  |  |  | 		Operand := Cdr; -- Skip "define"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if not Is_Cons(Operand) or else not Is_Cons(Get_Cdr(Operand)) then | 
					
						
							|  |  |  | 			-- e.g) (define)
 | 
					
						
							|  |  |  | 			--      (define . 10)
 | 
					
						
							| 
									
										
										
										
											2014-01-20 15:47:08 +00:00
										 |  |  | 			--      (define x . 10)
 | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 			Ada.Text_IO.Put_LINE ("TOO FEW ARGUMENTS FOR DEFINE"); | 
					
						
							|  |  |  | 			raise Syntax_Error; | 
					
						
							|  |  |  | 		end if; | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		Car := Get_Car(Operand); | 
					
						
							|  |  |  | 		Cdr := Get_Cdr(Operand); | 
					
						
							|  |  |  | 		if Is_Cons(Car) then | 
					
						
							|  |  |  | 			-- define a function:  (define (add x y) ...) 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 16:25:38 +00:00
										 |  |  | ada.text_io.put_line ("NOT IMPLEMENTED YET"); | 
					
						
							|  |  |  | raise Syntax_Error; | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 		elsif Is_Symbol(Car) then | 
					
						
							|  |  |  | 			-- define a symbol: (define x ...)
 | 
					
						
							|  |  |  | 			if Get_Cdr(Cdr) /= Nil_Pointer then | 
					
						
							|  |  |  | 				Ada.Text_IO.Put_LINE ("TOO MANY ARGUMENTS FOR DEFINE"); | 
					
						
							|  |  |  | 				raise Syntax_Error; | 
					
						
							|  |  |  | 			end if; | 
					
						
							|  |  |  | 			Cdr := Get_Car(Cdr); -- Value
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 16:25:38 +00:00
										 |  |  | 			-- Arrange to finish defining after value evaluation 
 | 
					
						
							|  |  |  | 			-- and to evaluate the value part.
 | 
					
						
							|  |  |  | 			--Switch_Frame (Interp.Stack, Opccode_Define_Finish, Car);
 | 
					
						
							|  |  |  | 			--Push_Frame (Interp, Opcode_Evaluate_Object, Cdr); 
 | 
					
						
							|  |  |  | 			Switch_Frame (Interp.Stack, Opcode_Evaluate_Object, Cdr, Nil_Pointer); | 
					
						
							|  |  |  | 			Push_Subframe (Interp, Opcode_Define_Finish, Car); | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 		else | 
					
						
							|  |  |  | 			Ada.Text_IO.Put_LINE ("NO SYMBOL NOR ARGUMENT LIST AFTER DEFINE"); | 
					
						
							|  |  |  | 			raise Syntax_Error;	 | 
					
						
							|  |  |  | 		end if; | 
					
						
							|  |  |  | 	end Evaluate_Define_Syntax; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 15:28:46 +00:00
										 |  |  |      -- ----------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-20 14:34:55 +00:00
										 |  |  | 	procedure Evaluate_If_Syntax is | 
					
						
							|  |  |  | 		pragma Inline (Evaluate_If_Syntax); | 
					
						
							|  |  |  | 	begin | 
					
						
							|  |  |  | 		-- (if <test> <consequent>)
 | 
					
						
							|  |  |  | 		-- (if <test> <consequent> <alternate>)
 | 
					
						
							| 
									
										
										
										
											2014-01-20 15:47:08 +00:00
										 |  |  | 		-- e.g) (if (> 3 2) 'yes)
 | 
					
						
							|  |  |  | 		--      (if (> 3 2) 'yes 'no)
 | 
					
						
							|  |  |  | 		--      (if (> 3 2) (- 3 2) (+ 3 2))      
 | 
					
						
							| 
									
										
										
										
											2014-01-20 14:34:55 +00:00
										 |  |  | 		Operand := Cdr;  -- Skip "if"
 | 
					
						
							|  |  |  | 		if Not Is_Cons(Operand) then | 
					
						
							|  |  |  | 			-- e.g) (if)
 | 
					
						
							|  |  |  | 			--      (if . 10)
 | 
					
						
							|  |  |  | 			Ada.Text_IO.Put_LINE ("NO CONDITIONAL FOR IF"); | 
					
						
							|  |  |  | 			raise Syntax_Error; | 
					
						
							|  |  |  | 		end if; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Car := Get_Car(Operand); -- <test>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Operand := Get_Cdr(Operand); -- cons cell containg <consequent>
 | 
					
						
							|  |  |  | 		if not Is_Cons(Operand) then | 
					
						
							|  |  |  | 			Ada.Text_IO.Put_Line ("NO ACTION FOR IF"); | 
					
						
							|  |  |  | 			raise Syntax_Error; | 
					
						
							|  |  |  | 		end if; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Cdr := Get_Cdr(Operand); -- cons cell containing <alternate>
 | 
					
						
							|  |  |  | 		if Cdr = Nil_Pointer then | 
					
						
							|  |  |  | 			-- no <alternate>. it's ok
 | 
					
						
							|  |  |  | Ada.Text_IO.Put_Line ("NO ALTERNATE"); | 
					
						
							|  |  |  | 			null; | 
					
						
							|  |  |  | 		elsif not Is_Cons(Cdr) then | 
					
						
							|  |  |  | 			-- no <alternate> but reduncant cdr.	
 | 
					
						
							|  |  |  | 			-- (if (> 3 2) 3 . 99)
 | 
					
						
							|  |  |  | 			Ada.Text_IO.Put_Line ("FUCKING CDR FOR IF"); | 
					
						
							|  |  |  | 			raise Syntax_Error; | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 		elsif Get_Cdr(Cdr) /= Nil_Pointer then | 
					
						
							|  |  |  | 			-- (if (> 3 2) 3 2 . 99) 
 | 
					
						
							|  |  |  | 			-- (if (> 3 2) 3 2 99) 
 | 
					
						
							|  |  |  | 			Ada.Text_IO.Put_Line ("TOO MANY ARGUMENTS FOR IF"); | 
					
						
							|  |  |  | 			raise Syntax_Error; | 
					
						
							|  |  |  | 		end if; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 16:25:38 +00:00
										 |  |  | 		-- Arrange to evaluate <consequent> or <alternate> after <test> 
 | 
					
						
							|  |  |  | 		-- evaluation and to evaluate <test>. Use Switch_Frame/Push_Subframe
 | 
					
						
							|  |  |  | 		-- instead of Switch_Frame/Push_Frame for continuation to work.
 | 
					
						
							|  |  |  | 		--Switch_Frame (Interp.Stack, Opcode_If_Finish, Operand, Nil_Pointer); 
 | 
					
						
							|  |  |  | 		--Push_Frame (Interp, Opcode_Evaluate_Object, Car); 
 | 
					
						
							|  |  |  | 		Switch_Frame (Interp.Stack, Opcode_Evaluate_Object, Car, Nil_Pointer); | 
					
						
							|  |  |  | 		Push_Subframe (Interp, Opcode_If_Finish, Operand); | 
					
						
							| 
									
										
										
										
											2014-01-20 14:34:55 +00:00
										 |  |  | 	end Evaluate_If_Syntax; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 15:28:46 +00:00
										 |  |  |      -- ----------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 	procedure Evaluate_Lambda_Syntax is | 
					
						
							|  |  |  | 		pragma Inline (Evaluate_Lambda_Syntax); | 
					
						
							|  |  |  | 	begin | 
					
						
							| 
									
										
										
										
											2014-01-20 15:47:08 +00:00
										 |  |  | 		-- (lambda <formals> <body>)
 | 
					
						
							| 
									
										
										
										
											2014-01-21 05:08:46 +00:00
										 |  |  | 		-- e.g)  (lambda (x y) (+ x y))
 | 
					
						
							|  |  |  | 		-- e.g)  (lambda (x y . z) z)
 | 
					
						
							|  |  |  | 		-- e.g)  (lambda x (car x))
 | 
					
						
							| 
									
										
										
										
											2014-01-20 15:47:08 +00:00
										 |  |  | 		Operand := Cdr; -- Skip "lambda". cons cell pointing to <formals>
 | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 		if not Is_Cons(Operand) then | 
					
						
							|  |  |  | 			-- e.g) (lambda)
 | 
					
						
							|  |  |  | 			--      (lambda . 10)
 | 
					
						
							| 
									
										
										
										
											2014-01-21 14:55:08 +00:00
										 |  |  | 			Ada.Text_IO.Put_LINE ("FUCKNING CDR FOR LAMBDA"); | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 			raise Syntax_Error; | 
					
						
							|  |  |  | 		end if; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-20 15:47:08 +00:00
										 |  |  | 		Car := Get_Car(Operand);  -- <formals>
 | 
					
						
							| 
									
										
										
										
											2014-01-22 14:11:30 +00:00
										 |  |  | 		if Car = Nil_Pointer or else Is_Symbol(Car) then | 
					
						
							|  |  |  | 			-- (lambda () ...) or (lambda x ...)
 | 
					
						
							|  |  |  | 			-- nothing to do	
 | 
					
						
							|  |  |  | 			null; | 
					
						
							| 
									
										
										
										
											2014-01-21 05:08:46 +00:00
										 |  |  | 		elsif Is_Cons(Car) then  | 
					
						
							| 
									
										
										
										
											2014-01-21 10:12:15 +00:00
										 |  |  | 			declare | 
					
						
							|  |  |  | 				Formals: Object_Pointer := Car; | 
					
						
							|  |  |  | 				V: Object_Pointer; | 
					
						
							|  |  |  | 			begin | 
					
						
							|  |  |  | 				Cdr := Formals; | 
					
						
							|  |  |  | 				loop | 
					
						
							|  |  |  | 					Car := Get_Car(Cdr); -- <formal argument>
 | 
					
						
							|  |  |  | 					if not Is_Symbol(Car) then | 
					
						
							|  |  |  | 						Ada.Text_IO.Put_Line ("WRONG FORMAL FOR LAMBDA"); | 
					
						
							|  |  |  | 						raise Syntax_Error; | 
					
						
							|  |  |  | 					end if; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-23 15:18:47 +00:00
										 |  |  | 					-- Check for a duplication formal argument
 | 
					
						
							|  |  |  | -- TODO: make duplication check optional or change the implementation more efficient so that this check is not repeated 
 | 
					
						
							| 
									
										
										
										
											2014-01-21 10:12:15 +00:00
										 |  |  | 					V := Formals; | 
					
						
							|  |  |  | 					loop | 
					
						
							|  |  |  | 						exit when V = Cdr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						if Get_Car(V) = Car then | 
					
						
							|  |  |  | 							Ada.Text_IO.Put_Line ("DUPLICATE FORMAL FOR LAMBDA"); | 
					
						
							|  |  |  | 							raise Syntax_Error; | 
					
						
							|  |  |  | 						end if; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						V := Get_Cdr(V); | 
					
						
							|  |  |  | 					end loop; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-23 15:18:47 +00:00
										 |  |  | 					-- Move on to the next formal argument
 | 
					
						
							| 
									
										
										
										
											2014-01-21 10:12:15 +00:00
										 |  |  | 					Cdr := Get_Cdr(Cdr); | 
					
						
							|  |  |  | 					exit when not Is_Cons(Cdr); | 
					
						
							|  |  |  | 				end loop; | 
					
						
							|  |  |  | 			end; | 
					
						
							| 
									
										
										
										
											2014-01-21 05:08:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if Cdr /= Nil_Pointer and then not Is_Symbol(Cdr) then | 
					
						
							|  |  |  | 				Ada.Text_IO.Put_Line ("FUCKING CDR IN FORMALS FOR LAMBDA"); | 
					
						
							|  |  |  | 				raise Syntax_Error; | 
					
						
							|  |  |  | 			end if; | 
					
						
							|  |  |  | 		else  | 
					
						
							| 
									
										
										
										
											2014-01-20 15:47:08 +00:00
										 |  |  | 			Ada.Text_IO.Put_Line ("INVALID FORMALS FOR LAMBDA"); | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 			raise Syntax_Error; | 
					
						
							|  |  |  | 		end if; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-20 15:47:08 +00:00
										 |  |  | 		Cdr := Get_Cdr(Operand); -- cons cell containing <body>
 | 
					
						
							|  |  |  | 		if not Is_Cons(Cdr) then | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 			Ada.Text_IO.Put_Line ("NO BODY"); | 
					
						
							|  |  |  | 			raise Syntax_Error; | 
					
						
							|  |  |  | 		end if; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-20 15:47:08 +00:00
										 |  |  | 		if Get_Last_Cdr(Cdr) /= Nil_Pointer then | 
					
						
							|  |  |  | 			-- (lambda (x y) (+ x y) . 99)
 | 
					
						
							|  |  |  | 			Ada.Text_IO.Put_Line ("FUCKING CDR IN BODY FOR LAMBDA"); | 
					
						
							|  |  |  | 			raise Syntax_Error; | 
					
						
							|  |  |  | 		end if; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-06 13:29:08 +00:00
										 |  |  | 		-- Create a closure object and return it the the upper frame.
 | 
					
						
							|  |  |  | 		Return_Frame (Interp, Make_Closure(Interp.Self, Operand, Get_Frame_Environment(Interp.Stack))); | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 	end Evaluate_Lambda_Syntax; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 15:28:46 +00:00
										 |  |  |      -- ----------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-24 07:58:46 +00:00
										 |  |  | 	procedure Check_Let_Syntax is | 
					
						
							|  |  |  | 		pragma Inline (Check_Let_Syntax); | 
					
						
							| 
									
										
										
										
											2014-01-23 15:18:47 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Bindings: Object_Pointer; | 
					
						
							|  |  |  | 		LetBody: Object_Pointer; | 
					
						
							| 
									
										
										
										
											2014-01-21 14:55:08 +00:00
										 |  |  | 	begin | 
					
						
							|  |  |  | 		-- let <bindings> <body>
 | 
					
						
							|  |  |  | 		Operand := Cdr; -- Skip "let".
 | 
					
						
							|  |  |  | 		if not Is_Cons(Operand) then | 
					
						
							|  |  |  | 			-- e.g) (let)
 | 
					
						
							|  |  |  | 			--      (let . 10)
 | 
					
						
							|  |  |  | 			Ada.Text_IO.Put_LINE ("FUCKNING CDR FOR LET"); | 
					
						
							|  |  |  | 			raise Syntax_Error; | 
					
						
							|  |  |  | 		end if; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-23 15:18:47 +00:00
										 |  |  | 		Bindings := Get_Car(Operand);  -- <bindings>
 | 
					
						
							| 
									
										
										
										
											2014-01-24 07:58:46 +00:00
										 |  |  | 		if Bindings /= Nil_Pointer and then not Is_Cons(Bindings) then | 
					
						
							| 
									
										
										
										
											2014-01-21 14:55:08 +00:00
										 |  |  | 			Ada.Text_IO.Put_Line ("INVALID BINDINGS FOR LET"); | 
					
						
							|  |  |  | 			raise Syntax_Error; | 
					
						
							|  |  |  | 		end if; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-23 15:18:47 +00:00
										 |  |  | 		Letbody := Get_Cdr(Operand); -- Cons cell to <body>
 | 
					
						
							| 
									
										
										
										
											2014-01-28 15:42:28 +00:00
										 |  |  | 		if not Is_Cons(Letbody) or else Get_Last_Cdr(Letbody) /= Nil_Pointer then | 
					
						
							| 
									
										
										
										
											2014-01-21 14:55:08 +00:00
										 |  |  | 			-- (let ((x 2)) )
 | 
					
						
							|  |  |  | 			-- (let ((x 2)) . 99)
 | 
					
						
							| 
									
										
										
										
											2014-01-28 15:42:28 +00:00
										 |  |  | 			-- (let ((x 2)) (+ x 2) . 99)
 | 
					
						
							| 
									
										
										
										
											2014-01-21 14:55:08 +00:00
										 |  |  | 			Ada.Text_IO.Put_Line ("INVALID BODY FOR LET"); | 
					
						
							|  |  |  | 			raise Syntax_Error; | 
					
						
							|  |  |  | 		end if; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-24 07:58:46 +00:00
										 |  |  | 		if Is_Cons(Bindings) then | 
					
						
							|  |  |  | 			Cdr := Bindings; | 
					
						
							|  |  |  | 			loop | 
					
						
							|  |  |  | 				Car := Get_Car(Cdr); -- <binding>
 | 
					
						
							|  |  |  | 				if not Is_Cons(Car) or else not Is_Cons(Get_Cdr(Car)) or else Get_Cdr(Get_Cdr(Car)) /= Nil_Pointer then | 
					
						
							|  |  |  | 					-- no binding name or no binding value or garbage after that
 | 
					
						
							|  |  |  | 					Ada.Text_IO.Put_Line ("WRONG BINDING FOR LET"); | 
					
						
							|  |  |  | 					raise Syntax_Error; | 
					
						
							|  |  |  | 				end if; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 				if not Is_Symbol(Get_Car(Car)) then | 
					
						
							|  |  |  | 					Ada.Text_IO.Put_Line ("WRONG BINDING NAME FOR LET"); | 
					
						
							|  |  |  | 					raise Syntax_Error; | 
					
						
							|  |  |  | 				end if; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 				-- Check for a duplicate binding name
 | 
					
						
							| 
									
										
										
										
											2014-01-23 15:18:47 +00:00
										 |  |  | -- TODO: make duplication check optional or change the implementation more efficient so that this check is not repeated 
 | 
					
						
							| 
									
										
										
										
											2014-01-24 07:58:46 +00:00
										 |  |  | 				declare | 
					
						
							|  |  |  | 					V: Object_Pointer; | 
					
						
							|  |  |  | 				begin | 
					
						
							|  |  |  | 					V := Bindings; | 
					
						
							|  |  |  | 					loop | 
					
						
							|  |  |  | 						exit when V = Cdr; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 						if Get_Car(Get_Car(V)) = Get_Car(Car) then | 
					
						
							|  |  |  | 							Ada.Text_IO.Put_Line ("DUPLICATE BINDING FOR LET"); | 
					
						
							|  |  |  | 							raise Syntax_Error; | 
					
						
							|  |  |  | 						end if; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 						V := Get_Cdr(V); | 
					
						
							|  |  |  | 					end loop; | 
					
						
							|  |  |  | 				end; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2014-01-23 15:18:47 +00:00
										 |  |  | 				-- Move on to the next binding
 | 
					
						
							| 
									
										
										
										
											2014-01-24 07:58:46 +00:00
										 |  |  | 				Cdr := Get_Cdr(Cdr); | 
					
						
							|  |  |  | 				exit when not Is_Cons(Cdr); | 
					
						
							|  |  |  | 			end loop; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 			if Cdr /= Nil_Pointer then | 
					
						
							|  |  |  | 				-- The last cdr is not nil.
 | 
					
						
							|  |  |  | 				Ada.Text_IO.Put_Line ("FUCKING CDR FOR LET BINDING"); | 
					
						
							|  |  |  | 				raise Syntax_Error; | 
					
						
							|  |  |  | 			end if; | 
					
						
							|  |  |  | 		end  if; | 
					
						
							| 
									
										
										
										
											2014-01-23 15:18:47 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		-- To avoid problems of temporary object pointer problems.
 | 
					
						
							|  |  |  | 		Car := Bindings; | 
					
						
							|  |  |  | 		Cdr := LetBody; | 
					
						
							| 
									
										
										
										
											2014-01-24 07:58:46 +00:00
										 |  |  | 	end Check_Let_Syntax; | 
					
						
							| 
									
										
										
										
											2014-01-23 15:18:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-24 07:58:46 +00:00
										 |  |  | 	procedure Evaluate_Let_Syntax is | 
					
						
							|  |  |  | 		pragma Inline (Evaluate_Let_Syntax); | 
					
						
							| 
									
										
										
										
											2014-01-26 14:58:02 +00:00
										 |  |  | 		Envir: aliased Object_Pointer; | 
					
						
							| 
									
										
										
										
											2014-01-24 07:58:46 +00:00
										 |  |  | 	begin | 
					
						
							|  |  |  | 		-- Some let samples:
 | 
					
						
							|  |  |  | 		-- #1.
 | 
					
						
							| 
									
										
										
										
											2014-01-24 12:48:58 +00:00
										 |  |  | 		--    (define x 99) ; define x in the root environment
 | 
					
						
							|  |  |  | 		--    (let () (define x 100)) ; x is defined in the new environment.
 | 
					
						
							|  |  |  | 		--    x ; this must be 99.
 | 
					
						
							| 
									
										
										
										
											2014-01-24 07:58:46 +00:00
										 |  |  | 		--
 | 
					
						
							|  |  |  | 		-- #2.
 | 
					
						
							| 
									
										
										
										
											2014-01-26 14:58:02 +00:00
										 |  |  | 		--   (define x 10) ; x-outer
 | 
					
						
							|  |  |  | 		--   (define y (let ((x (+ x 1))) x)) ; x-inner := x-outer + 1, y := x-inner
 | 
					
						
							|  |  |  | 		--   y ; 11 
 | 
					
						
							|  |  |  | 		--   x ; 10
 | 
					
						
							|  |  |  | 		--    
 | 
					
						
							| 
									
										
										
										
											2014-01-26 16:15:28 +00:00
										 |  |  | 		-- #3.
 | 
					
						
							|  |  |  | 		--   (define x (let ((x x)) x))
 | 
					
						
							|  |  |  | 		--    
 | 
					
						
							| 
									
										
										
										
											2014-01-24 07:58:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 15:28:46 +00:00
										 |  |  | 		Check_Let_Syntax; | 
					
						
							|  |  |  | 		-- Car: <bindings>, Cdr: <body>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		-- Switch the frame to Opcode_Grouped_Call and let its environment
 | 
					
						
							|  |  |  | 		-- be the new environment created. Use Reload_Frame() instead
 | 
					
						
							|  |  |  | 		-- of Switch_Frame() for continuation. This frame is executed once
 | 
					
						
							|  |  |  | 		-- the Opcode_Let_Binding frame pushed in the 'if' block is finished.
 | 
					
						
							|  |  |  | 		Reload_Frame (Interp, Opcode_Grouped_Call, Cdr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		-- Create a new environment over the current environment.
 | 
					
						
							|  |  |  | 		Envir := Make_Environment(Interp.Self, Get_Frame_Environment(Interp.Stack)); | 
					
						
							|  |  |  | 		Set_Frame_Environment (Interp.Stack, Envir); -- update the environment
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-24 07:58:46 +00:00
										 |  |  | 		if Car /= Nil_Pointer then | 
					
						
							|  |  |  | 			-- <bindings> is not empty
 | 
					
						
							| 
									
										
										
										
											2014-02-09 15:28:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-26 14:58:02 +00:00
										 |  |  | 			Push_Top (Interp, Envir'Unchecked_Access); | 
					
						
							|  |  |  | 			Envir := Get_Frame_Environment(Get_Frame_Parent(Interp.Stack)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 15:28:46 +00:00
										 |  |  | 			-- Say, <bindings> is ((x 2) (y 2)).
 | 
					
						
							|  |  |  | 			-- Get_Car(Car) is (x 2).
 | 
					
						
							|  |  |  | 			-- To get x, Get_Car(Get_Car(Car))
 | 
					
						
							|  |  |  | 			-- To get 2, Get_Car(Get_Cdr(Get_Car(Car)))
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			-- Arrange to evaluate the first <binding> expression in the parent environment.
 | 
					
						
							|  |  |  | 			Push_Frame_With_Environment (Interp, Opcode_Evaluate_Object, Get_Car(Get_Cdr(Get_Car(Car))), Envir); | 
					
						
							| 
									
										
										
										
											2014-01-28 17:03:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 15:28:46 +00:00
										 |  |  | 			-- Arrange to perform actual binding. Pass the <binding> name as an intermediate 
 | 
					
						
							|  |  |  | 			-- and the next remaing <binding> list as an operand.
 | 
					
						
							|  |  |  | 			Push_Subframe_With_Environment_And_Intermediate (Interp, Opcode_Let_Binding, Get_Cdr(Car), Envir, Get_Car(Get_Car(Car))); | 
					
						
							| 
									
										
										
										
											2014-01-26 14:58:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			Pop_Tops (Interp, 1); | 
					
						
							| 
									
										
										
										
											2014-01-24 07:58:46 +00:00
										 |  |  | 		end if; | 
					
						
							| 
									
										
										
										
											2014-01-21 14:55:08 +00:00
										 |  |  | 	end Evaluate_Let_Syntax; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-23 15:18:47 +00:00
										 |  |  | 	procedure Evaluate_Letast_Syntax is | 
					
						
							|  |  |  | 		pragma Inline (Evaluate_Letast_Syntax); | 
					
						
							| 
									
										
										
										
											2014-01-24 12:48:58 +00:00
										 |  |  | 		Envir: Object_Pointer; | 
					
						
							| 
									
										
										
										
											2014-01-23 15:18:47 +00:00
										 |  |  | 	begin | 
					
						
							| 
									
										
										
										
											2014-01-24 07:58:46 +00:00
										 |  |  | 		Check_Let_Syntax; | 
					
						
							|  |  |  | 		-- Car: <bindings>, Cdr: <body>
 | 
					
						
							| 
									
										
										
										
											2014-01-23 15:18:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 15:28:46 +00:00
										 |  |  | 		Set_Frame_Opcode (Interp.Stack, Opcode_Grouped_Call); | 
					
						
							| 
									
										
										
										
											2014-01-24 07:58:46 +00:00
										 |  |  | 		Set_Frame_Operand (Interp.Stack, Cdr);  | 
					
						
							| 
									
										
										
										
											2014-01-28 15:42:28 +00:00
										 |  |  | 		Clear_Frame_Result (Interp.Stack); | 
					
						
							| 
									
										
										
										
											2014-01-24 12:48:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-24 07:58:46 +00:00
										 |  |  | 		if Car /= Nil_Pointer then | 
					
						
							|  |  |  | 			-- <bindings> is not empty
 | 
					
						
							|  |  |  | 			Push_Frame (Interp, Opcode_Letast_Binding, Car); | 
					
						
							| 
									
										
										
										
											2014-01-26 14:58:02 +00:00
										 |  |  | 		else | 
					
						
							|  |  |  | 			-- <bindings> is empty. push the new environment
 | 
					
						
							|  |  |  | 			-- for <body> evaluation.
 | 
					
						
							|  |  |  | 			Envir := Make_Environment(Interp.Self, Get_Frame_Environment(Interp.Stack)); | 
					
						
							|  |  |  | 			Set_Frame_Environment (Interp.Stack, Envir); | 
					
						
							| 
									
										
										
										
											2014-01-24 07:58:46 +00:00
										 |  |  | 		end if; | 
					
						
							| 
									
										
										
										
											2014-01-23 15:18:47 +00:00
										 |  |  | 	end Evaluate_Letast_Syntax; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-24 13:57:06 +00:00
										 |  |  | 	procedure Evaluate_Letrec_Syntax is | 
					
						
							|  |  |  | 		pragma Inline (Evaluate_Letrec_Syntax); | 
					
						
							|  |  |  | 		Envir: Object_Pointer; | 
					
						
							|  |  |  | 	begin | 
					
						
							|  |  |  | 		Check_Let_Syntax; | 
					
						
							|  |  |  | 		-- Car: <bindings>, Cdr: <body>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 15:28:46 +00:00
										 |  |  | 		-- Switch the frame to Opcode_Grouped_Call and let its environment
 | 
					
						
							|  |  |  | 		-- be the new environment created. Use Reload_Frame() instead
 | 
					
						
							|  |  |  | 		-- of Switch_Frame() for continuation. This frame is executed once
 | 
					
						
							|  |  |  | 		-- the Opcode_Letrec_Binding frame pushed in the 'if' block is finished.
 | 
					
						
							|  |  |  | 		Reload_Frame (Interp, Opcode_Grouped_Call, Cdr); | 
					
						
							| 
									
										
										
										
											2014-01-24 13:57:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 15:28:46 +00:00
										 |  |  | 		-- Create a new environment over the current environment.
 | 
					
						
							| 
									
										
										
										
											2014-01-26 14:58:02 +00:00
										 |  |  | 		Envir := Make_Environment(Interp.Self, Get_Frame_Environment(Interp.Stack)); | 
					
						
							| 
									
										
										
										
											2014-02-09 15:28:46 +00:00
										 |  |  | 		Set_Frame_Environment (Interp.Stack, Envir); -- update the environment
 | 
					
						
							| 
									
										
										
										
											2014-01-24 13:57:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-26 14:58:02 +00:00
										 |  |  | 		if Car /= Nil_Pointer then | 
					
						
							| 
									
										
										
										
											2014-01-24 13:57:06 +00:00
										 |  |  | 			-- <bindings> is not empty
 | 
					
						
							| 
									
										
										
										
											2014-01-28 17:03:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 15:28:46 +00:00
										 |  |  | 			-- Say, <bindings> is ((x 2) (y 2)).
 | 
					
						
							|  |  |  | 			-- Get_Car(Car) is (x 2).
 | 
					
						
							|  |  |  | 			-- To get x, Get_Car(Get_Car(Car))
 | 
					
						
							|  |  |  | 			-- To get 2, Get_Car(Get_Cdr(Get_Car(Car)))
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			-- Arrange to evaluate the first <binding> expression in the parent environment.
 | 
					
						
							|  |  |  | 			Push_Frame (Interp, Opcode_Evaluate_Object, Get_Car(Get_Cdr(Get_Car(Car)))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			-- Arrange to perform actual binding. Pass the <binding> name as an intermediate 
 | 
					
						
							|  |  |  | 			-- and the next remaing <binding> list as an operand.
 | 
					
						
							|  |  |  | 			Push_Subframe_With_Intermediate (Interp, Opcode_Letrec_Binding, Get_Cdr(Car), Get_Car(Get_Car(Car))); | 
					
						
							| 
									
										
										
										
											2014-01-26 14:58:02 +00:00
										 |  |  | 		end if; | 
					
						
							| 
									
										
										
										
											2014-01-24 13:57:06 +00:00
										 |  |  | 	end Evaluate_Letrec_Syntax; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 15:28:46 +00:00
										 |  |  |      -- ----------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 	procedure Evaluate_Quote_Syntax is | 
					
						
							|  |  |  | 		pragma Inline (Evaluate_Quote_Syntax); | 
					
						
							|  |  |  | 	begin | 
					
						
							|  |  |  | 		Operand := Cdr; -- Skip "quote". Get the first argument.
 | 
					
						
							|  |  |  | 		if not Is_Cons(Operand) then | 
					
						
							|  |  |  | 			-- e.g) (quote)
 | 
					
						
							|  |  |  | 			--      (quote . 10)
 | 
					
						
							|  |  |  | 			Ada.Text_IO.Put_LINE ("FUCKNING CDR FOR QUOTE"); | 
					
						
							|  |  |  | 			raise Syntax_Error; | 
					
						
							|  |  |  | 		elsif Get_Cdr(Operand) /= Nil_Pointer then | 
					
						
							|  |  |  | 			Ada.Text_IO.Put_LINE ("WRONG NUMBER OF ARGUMENTS FOR QUOTE"); | 
					
						
							|  |  |  | 			raise Syntax_Error; | 
					
						
							|  |  |  | 		end if; | 
					
						
							| 
									
										
										
										
											2014-02-06 13:29:08 +00:00
										 |  |  | 		Return_Frame (Interp, Get_Car(Operand)); | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 	end Evaluate_Quote_Syntax; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 15:28:46 +00:00
										 |  |  |      -- ----------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-20 15:47:08 +00:00
										 |  |  | 	procedure Evaluate_Set_Syntax is | 
					
						
							|  |  |  | 		pragma Inline (Evaluate_Set_Syntax); | 
					
						
							|  |  |  | 	begin | 
					
						
							|  |  |  | 		-- (set! <variable> <expression>)
 | 
					
						
							|  |  |  | 		-- e.g) (set! x 10) 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Operand := Cdr; -- Skip "set!"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if not Is_Cons(Operand) or else not Is_Cons(Get_Cdr(Operand)) then | 
					
						
							|  |  |  | 			-- e.g) (set!)
 | 
					
						
							|  |  |  | 			--      (set . 10)
 | 
					
						
							|  |  |  | 			--      (set x . 10)
 | 
					
						
							| 
									
										
										
										
											2014-01-28 15:42:28 +00:00
										 |  |  | 			Ada.Text_IO.Put_LINE ("TOO FEW ARGUMENTS FOR SET!"); | 
					
						
							| 
									
										
										
										
											2014-01-20 15:47:08 +00:00
										 |  |  | 			raise Syntax_Error; | 
					
						
							|  |  |  | 		end if; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Car := Get_Car(Operand); -- <variable>
 | 
					
						
							|  |  |  | 		Cdr := Get_Cdr(Operand); -- cons cell to <expression>
 | 
					
						
							|  |  |  | 		if Is_Symbol(Car) then | 
					
						
							|  |  |  | 			if Get_Cdr(Cdr) /= Nil_Pointer then | 
					
						
							| 
									
										
										
										
											2014-01-28 15:42:28 +00:00
										 |  |  | 				Ada.Text_IO.Put_LINE ("TOO MANY ARGUMENTS FOR SET!"); | 
					
						
							| 
									
										
										
										
											2014-01-20 15:47:08 +00:00
										 |  |  | 				raise Syntax_Error; | 
					
						
							|  |  |  | 			end if; | 
					
						
							|  |  |  | 			Cdr := Get_Car(Cdr); -- <expression>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			-- Arrange to finish setting a variable after <expression> evaluation.
 | 
					
						
							| 
									
										
										
										
											2014-02-06 13:29:08 +00:00
										 |  |  | 			--Switch_Frame (Interp.Stack, Opcode_Set_Finish, Car, Nil_Pointer);
 | 
					
						
							| 
									
										
										
										
											2014-01-20 15:47:08 +00:00
										 |  |  | 			-- Arrange to evalaute the value part
 | 
					
						
							| 
									
										
										
										
											2014-02-05 15:08:59 +00:00
										 |  |  | 			--Push_Frame (Interp, Opcode_Evaluate_Object, Cdr); 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			-- These 2 lines derives the same result as the 2 lines commented out above.
 | 
					
						
							| 
									
										
										
										
											2014-02-06 13:29:08 +00:00
										 |  |  | 			Switch_Frame (Interp.Stack, Opcode_Evaluate_Object, Cdr, Nil_Pointer); | 
					
						
							| 
									
										
										
										
											2014-02-05 15:08:59 +00:00
										 |  |  | 			Push_Subframe (Interp, Opcode_Set_Finish, Car);  | 
					
						
							| 
									
										
										
										
											2014-01-20 15:47:08 +00:00
										 |  |  | 		else | 
					
						
							|  |  |  | 			Ada.Text_IO.Put_LINE ("INVALID SYMBOL AFTER SET!"); | 
					
						
							|  |  |  | 			raise Syntax_Error;	 | 
					
						
							|  |  |  | 		end if; | 
					
						
							|  |  |  | 	end Evaluate_Set_Syntax; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 15:28:46 +00:00
										 |  |  |      -- ----------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | begin | 
					
						
							|  |  |  | 	Push_Top (Interp, Operand'Unchecked_Access); | 
					
						
							|  |  |  | 	Push_Top (Interp, Car'Unchecked_Access); | 
					
						
							|  |  |  | 	Push_Top (Interp, Cdr'Unchecked_Access); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <<Start_Over>> | 
					
						
							|  |  |  | 	Operand := Get_Frame_Operand(Interp.Stack); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-28 15:42:28 +00:00
										 |  |  | declare | 
					
						
							|  |  |  | f: object_word; | 
					
						
							|  |  |  | for f'address use interp.stack'address; | 
					
						
							|  |  |  | o: object_word; | 
					
						
							|  |  |  | for o'address use operand'address; | 
					
						
							|  |  |  | begin | 
					
						
							|  |  |  | ada.text_io.put ("Frame" & object_word'image(f) & " EVALUATE OPERAND" & object_word'image(o) & " "); | 
					
						
							|  |  |  | print (interp, operand); | 
					
						
							|  |  |  | ada.text_io.put ("                      CURRENT RESULT "); | 
					
						
							|  |  |  | print (interp, get_Frame_result(interp.stack)); | 
					
						
							|  |  |  | end; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 	if not Is_Normal_Pointer(Operand) then | 
					
						
							|  |  |  | 		-- integer, character, specal pointers
 | 
					
						
							|  |  |  | 		-- TODO: some normal pointers may point to literal objects. e.g.) bignum
 | 
					
						
							|  |  |  | 		goto Literal; | 
					
						
							|  |  |  | 	end if; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case Operand.Tag is | 
					
						
							|  |  |  | 		when Symbol_Object => -- Is_Symbol(Operand)
 | 
					
						
							|  |  |  | 			-- TODO: find it in the Environment hierarchy.. not in the current environemnt.
 | 
					
						
							|  |  |  | 			Car := Get_Environment (Interp.Self, Operand); | 
					
						
							|  |  |  | 			if Car = null then | 
					
						
							|  |  |  | 				-- unbound
 | 
					
						
							|  |  |  | 				Ada.Text_IO.Put_Line ("Unbound symbol...."); | 
					
						
							|  |  |  | 				Print (Interp, Operand);		 | 
					
						
							|  |  |  | 				raise Evaluation_Error; | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				-- symbol found in the environment
 | 
					
						
							|  |  |  | 				Operand := Car;  | 
					
						
							|  |  |  | 				goto Literal;  -- In fact, this is not a literal, but can be handled in the same way
 | 
					
						
							|  |  |  | 			end if; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		when Cons_Object => -- Is_Cons(Operand)
 | 
					
						
							|  |  |  | 			Car := Get_Car(Operand); | 
					
						
							|  |  |  | 			Cdr := Get_Cdr(Operand); | 
					
						
							|  |  |  | 			if Is_Syntax(Car) then | 
					
						
							|  |  |  | 				-- special syntax symbol. normal evaluate rule doesn't 
 | 
					
						
							|  |  |  | 				-- apply for special syntax objects.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				case Car.Scode is | 
					
						
							| 
									
										
										
										
											2014-01-23 13:41:41 +00:00
										 |  |  | 					when And_Syntax => | 
					
						
							|  |  |  | 						Evaluate_And_Syntax; | 
					
						
							|  |  |  | 						 | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 					when Begin_Syntax => | 
					
						
							|  |  |  | 						Operand := Cdr; -- Skip "begin"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-28 15:42:28 +00:00
										 |  |  | 						if Operand = Nil_Pointer then | 
					
						
							|  |  |  | 							-- (begin)
 | 
					
						
							|  |  |  | 							-- Return nil to the upper frame for (begin).
 | 
					
						
							| 
									
										
										
										
											2014-02-06 13:29:08 +00:00
										 |  |  | 							Return_Frame (Interp, Nil_Pointer); | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 						else | 
					
						
							| 
									
										
										
										
											2014-01-28 15:42:28 +00:00
										 |  |  | 							if Get_Last_Cdr(Operand) /= Nil_Pointer then | 
					
						
							|  |  |  | 								Ada.Text_IO.Put_LINE ("FUCKNING CDR FOR BEGIN"); | 
					
						
							|  |  |  | 								raise Syntax_Error; | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 							end if; | 
					
						
							| 
									
										
										
										
											2014-01-28 15:42:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-06 13:29:08 +00:00
										 |  |  | 							Switch_Frame (Interp.Stack, Opcode_Grouped_Call, Operand, Nil_Pointer); | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 						end if; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-28 15:42:28 +00:00
										 |  |  | 						--if (Interp.Trait.Trait_Bits and No_Optimization) = 0 then
 | 
					
						
							|  |  |  | 						--	-- I call Evaluate_Group for optimization here.
 | 
					
						
							|  |  |  | 						--	Evaluate_Group; -- for optimization only. not really needed.
 | 
					
						
							|  |  |  | 						--	-- I can jump to Start_Over because Evaluate_Group called 
 | 
					
						
							|  |  |  | 						--	-- above pushes an Opcode_Evaluate_Object frame.
 | 
					
						
							|  |  |  | 						--	pragma Assert (Get_Frame_Opcode(Interp.Stack) = Opcode_Evaluate_Object);
 | 
					
						
							|  |  |  | 						--	goto Start_Over; -- for optimization only. not really needed.
 | 
					
						
							|  |  |  | 						--end if;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 					when Define_Syntax => | 
					
						
							|  |  |  | 						Evaluate_Define_Syntax; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-20 14:34:55 +00:00
										 |  |  | 					when If_Syntax => | 
					
						
							|  |  |  | 						Evaluate_If_Syntax; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 					when Lambda_Syntax => | 
					
						
							|  |  |  | 						Evaluate_Lambda_Syntax; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-21 14:55:08 +00:00
										 |  |  | 					when Let_Syntax => | 
					
						
							|  |  |  | 						Evaluate_Let_Syntax; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-23 15:18:47 +00:00
										 |  |  | 					when Letast_Syntax => | 
					
						
							|  |  |  | 						Evaluate_Letast_Syntax; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-24 13:57:06 +00:00
										 |  |  | 					when Letrec_Syntax => | 
					
						
							|  |  |  | 						Evaluate_Letrec_Syntax; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-23 13:41:41 +00:00
										 |  |  | 					when Or_Syntax => | 
					
						
							|  |  |  | 						Evaluate_Or_Syntax; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 					when Quote_Syntax => | 
					
						
							|  |  |  | 						Evaluate_Quote_Syntax; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-20 15:47:08 +00:00
										 |  |  | 					when Set_Syntax => -- set!
 | 
					
						
							|  |  |  | 						Evaluate_Set_Syntax; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 					when others => | 
					
						
							|  |  |  | 						Ada.Text_IO.Put_Line ("Unknown syntax");	 | 
					
						
							|  |  |  | 						--Set_Frame_Opcode (Interp.Stack, Opcode_Evaluate_Syntax);  -- Switch to syntax evaluation
 | 
					
						
							|  |  |  | 						raise Internal_Error; | 
					
						
							|  |  |  | 				end case; | 
					
						
							|  |  |  | 			else | 
					
						
							| 
									
										
										
										
											2014-01-28 15:42:28 +00:00
										 |  |  | 				-- procedure call
 | 
					
						
							|  |  |  | 				-- (<operator> <operand1> ...)
 | 
					
						
							|  |  |  | 				if Get_Last_Cdr(Operand) /= Nil_Pointer then | 
					
						
							|  |  |  | 					Ada.Text_IO.Put_Line ("ERROR: FUCKING CDR FOR PROCEDURE CALL.$$$$"); | 
					
						
							|  |  |  | 					raise Syntax_Error; | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 				end if; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-05 15:08:59 +00:00
										 |  |  | 				-- Switch the current frame to evaluate <operator>
 | 
					
						
							| 
									
										
										
										
											2014-02-06 13:29:08 +00:00
										 |  |  | 				Switch_Frame (Interp.Stack, Opcode_Evaluate_Object, Car, Nil_Pointer); | 
					
						
							| 
									
										
										
										
											2014-02-05 15:08:59 +00:00
										 |  |  | 				-- Push a new frame to evaluate arguments.
 | 
					
						
							|  |  |  | 				Push_Subframe (Interp, Opcode_Procedure_Call, Cdr); | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 			end if; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		when others => | 
					
						
							|  |  |  | 			-- normal literal object
 | 
					
						
							|  |  |  | 			goto Literal; | 
					
						
							|  |  |  | 	end case; | 
					
						
							|  |  |  | 	goto Done; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <<Literal>> | 
					
						
							| 
									
										
										
										
											2014-01-28 15:42:28 +00:00
										 |  |  | declare | 
					
						
							|  |  |  | w: object_word; | 
					
						
							|  |  |  | for w'address use operand'address; | 
					
						
							|  |  |  | begin | 
					
						
							|  |  |  | Ada.Text_IO.Put ("Return => (" & object_word'image(w) & ") =>" ); | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | Print (Interp, Operand); | 
					
						
							| 
									
										
										
										
											2014-01-28 15:42:28 +00:00
										 |  |  | end; | 
					
						
							| 
									
										
										
										
											2014-02-06 13:29:08 +00:00
										 |  |  | 	Return_Frame (Interp, Operand); | 
					
						
							| 
									
										
										
										
											2014-01-19 15:47:45 +00:00
										 |  |  | 	goto Done; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <<Done>> | 
					
						
							|  |  |  | 	Pop_Tops (Interp, 3); | 
					
						
							|  |  |  | end Evaluate; |