[llvm-commits] CVS: llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/README broken_light.h build check_functions.cpp check_functions.h direction.cpp direction.h intersection.cpp intersection.h light.cpp light.h main.cpp roadlet.cpp roadlet.h sim.h vehicle.cpp vehicle.h

Chris Lattner lattner at cs.uiuc.edu
Mon Oct 4 13:01:28 PDT 2004



Changes in directory llvm-test/MultiSource/Benchmarks/Prolangs-C++/city:

README added (r1.1)
broken_light.h added (r1.1)
build added (r1.1)
check_functions.cpp added (r1.1)
check_functions.h added (r1.1)
direction.cpp added (r1.1)
direction.h added (r1.1)
intersection.cpp added (r1.1)
intersection.h added (r1.1)
light.cpp added (r1.1)
light.h added (r1.1)
main.cpp added (r1.1)
roadlet.cpp added (r1.1)
roadlet.h added (r1.1)
sim.h added (r1.1)
vehicle.cpp added (r1.1)
vehicle.h added (r1.1)
---
Log message:

Initial checkin of all of the source


---
Diffs of the changes:  (+942 -0)

Index: llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/README
diff -c /dev/null llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/README:1.1
*** /dev/null	Mon Oct  4 15:01:23 2004
--- llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/README	Mon Oct  4 15:01:12 2004
***************
*** 0 ****
--- 1,8 ----
+ Obtained from Bradley Kuhn, student of David Binkley, Loyola College.
+ The source for this program is a C++ textbook, the name is mentioned
+ in the following paper:
+ 	"An enabling optimization for C++ virtual functions"
+ 	by Kuhn and Binkley
+ 	in Proceedings of Mid-Atlantic States Graduate Workshop on
+ 		Programming Languages and Systems, East Stroudsburg,
+ 		PA, April 1995.


Index: llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/broken_light.h
diff -c /dev/null llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/broken_light.h:1.1
*** /dev/null	Mon Oct  4 15:01:26 2004
--- llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/broken_light.h	Mon Oct  4 15:01:12 2004
***************
*** 0 ****
--- 1,29 ----
+ // broken_light.cc
+ 
+ #ifndef _broken_light_h
+ #define _broken_light_h
+ 
+ #include "light.h"
+ #include "stream.h"
+ extern "C" random();
+ 
+ #define BROKEN_LIGHT_ID 1
+ 
+ class broken_light : public light
+ {
+ public:
+     virtual int next_state();
+     broken_light() : light() { __ = BROKEN_LIGHT_ID; };
+     broken_light(int t1, int t2, int t3, int t4) : light (t1,t2,t3,t4){};
+ };
+ 
+ inline virtual int broken_light::next_state()
+ {
+     cout << "next state called\n";
+     if ((random() % 4) == 1)
+ 	return (current_state);
+     else
+         return ((current_state + 1 ) % 4);
+ }
+ 
+ #endif


Index: llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/build
diff -c /dev/null llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/build:1.1
*** /dev/null	Mon Oct  4 15:01:26 2004
--- llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/build	Mon Oct  4 15:01:12 2004
***************
*** 0 ****
--- 1,21 ----
+ #!/bin/csh
+ 
+ g++ -c -s *.cc -o no.o
+ g++ -s *.cc -o no
+ 
+ g++ -c -s -finline-functions -O2 *.cc -o no.inline.O2.o
+ g++ -s -finline-functions -O2 *.cc -o no.inline.O2
+ 
+ g++ -c -s -finline-functions -O3 *.cc -o no.inline.O3.o
+ g++ -s -finline-functions -O3 *.cc -o no.inline.O3
+  
+ g++ -c -s -O2 *.cc -o no.O2.o
+ g++ -s  -O2 *.cc -o no.O2
+ 
+ g++ -c -s -O3 *.cc -o no.O3.o
+ g++ -s  -O3 *.cc -o no.O3
+ 
+ g++ -c -s -finline-functions *.cc -o no.inline.o
+ g++ -s -finline-functions *.cc -o no.inline
+ 
+ 


Index: llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/check_functions.cpp
diff -c /dev/null llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/check_functions.cpp:1.1
*** /dev/null	Mon Oct  4 15:01:26 2004
--- llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/check_functions.cpp	Mon Oct  4 15:01:12 2004
***************
*** 0 ****
--- 1,149 ----
+ // check-functions.cc
+ 
+ #include "direction.h"
+ #include "roadlet.h"
+ #include "vehicle.h"
+ #include "stream.h"
+ 
+ 
+ // roadlet r is the the 'd' of v->location()
+ 
+ 
+ roadlet * return_null(roadlet * r, vehicle *v, direction)
+ {
+     return(NULL);
+ }
+ 
+ 
+ roadlet * is_empty(roadlet *r, vehicle *v, direction d)
+ {
+     if (!r->occupied())
+ 	return(r);
+     else
+ 	return(NULL);
+ }
+ 
+ 
+ //check both left and right.  This makes sense for roads of two or fewer lanes.
+ roadlet * lane_switch_ok(roadlet *r, vehicle *v, direction d)
+ {
+     direction dir = v->direction();
+     //cout << "dir = " << dir << "\n";
+     cout << "lane switch for " << *v << " at " << *r <<'\n';
+ 
+     if (r->occupied())
+ 	return(NULL);
+ 
+     /*if ((r->neighbor(dir.right()) != NULL) && 
+ 	(r->neighbor(dir.right())->occupied()))
+ 	return(NULL);
+ 
+     if ((r->neighbor(dir.left()) != NULL) && 
+ 	(r->neighbor(dir.left())->occupied()))
+ 	return(NULL);
+ don;t check right or left */
+ 
+     if ((r->neighbor(dir.back()) != NULL) && 
+ 	(r->neighbor(dir.back())->occupied()))
+ 	return(NULL);
+ 
+ cout << "lane switch said true \n";
+     return(r);
+ }
+ 
+ 
+ //f from notes
+ roadlet * strait (roadlet *r, vehicle *v, direction d)
+ {
+     if (!r->occupied() && (v->direction() == d))
+ 	return(r);
+     else
+ 	return(NULL);
+ 
+ 
+ }
+ 
+ 
+ // h from notes
+ roadlet * strait_or_left (roadlet *r, vehicle *v, direction d)
+ {
+     if (!r->occupied() && 
+           ((v->direction() == d) || (v->direction().left() == d)))
+ 	return(r);
+     else
+ 	return(NULL);
+ }
+ 
+ 
+ //g from notes
+ roadlet * strait_or_right (roadlet *r, vehicle *v, direction d)
+ {
+     if (!r->occupied() && 
+           ((v->direction() == d) || (v->direction().right() == d)))
+ 	return(r);
+     else
+ 	return(NULL);
+ }
+ 
+ roadlet * green_light(intersection_roadlet* r, vehicle* v, direction d)
+ {
+     if ((d == N) || (d == S))
+     {
+ 	if (!r->occupied() && (r->light()->greenNS()))
+ 	    return(r);
+         else
+ 	    return(NULL);
+     }
+     else
+     {
+ 	if (!r->occupied() && (r->light()->greenEW()))
+ 	    return(r);
+         else
+ 	    return(NULL);
+     }
+ }
+ 
+ roadlet * green_OR_plan_rightONred(intersection_roadlet* r, vehicle* v, direction d)
+ {
+     int right_on_red ;
+     int green_light;
+ 
+     cout << "green or right on red\n";
+ 
+     //if (r->light()->yellow() )
+ 	// stop car;
+ 
+     if ((d == N) || (d == S))
+     {
+         right_on_red = (r->light()->redNS()) ; // && no on coming traffic 
+ 	green_light = r->light()->greenNS();
+     }
+     else
+     {
+         right_on_red = (r->light()->redEW()) ; // && no on coming traffic 
+ 	green_light = r->light()->greenEW();
+     }
+        
+ 
+     if (right_on_red)      //verify that there is a road to the right
+     {
+         if (r->neighbor(d.right()) == NULL)
+ 	{
+ 	    right_on_red = FALSE;
+ 	}
+ 	else
+         {
+            v->plan = d.right().as_int();
+            cout << "plan for " << *v << " is " << direction(v->plan) << "\n";
+         }
+     }
+ 
+     if (green_light) cout << "green!\n";
+     if (right_on_red) cout << "right on red\n";
+     if (!r->occupied() && (right_on_red || green_light))
+     {
+ 	return(r);
+     }
+     else
+ 	return(NULL);
+ }


Index: llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/check_functions.h
diff -c /dev/null llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/check_functions.h:1.1
*** /dev/null	Mon Oct  4 15:01:27 2004
--- llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/check_functions.h	Mon Oct  4 15:01:13 2004
***************
*** 0 ****
--- 1,21 ----
+ // check_functions.h
+ 
+ 
+ #ifndef _check_function
+ #define _check_function
+ 
+ #include "direction.h"
+ #include "roadlet.h"
+ #include "vehicle.h"
+ #include "stream.h"
+ 
+ extern roadlet *return_null(roadlet*, vehicle *, direction);
+ extern roadlet *is_empty(roadlet *, vehicle *, direction);
+ extern roadlet *lane_switch_ok(roadlet *, vehicle *, direction);
+ extern roadlet *strait(roadlet *, vehicle *, direction);
+ extern roadlet *strait_or_left(roadlet *, vehicle *, direction);
+ extern roadlet *strait_or_right(roadlet *, vehicle *, direction);
+ extern roadlet *green_light(intersection_roadlet*, vehicle*, direction);
+ extern roadlet *green_OR_plan_rightONred(intersection_roadlet*, vehicle*, direction);
+ 
+ #endif _check_function


Index: llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/direction.cpp
diff -c /dev/null llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/direction.cpp:1.1
*** /dev/null	Mon Oct  4 15:01:27 2004
--- llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/direction.cpp	Mon Oct  4 15:01:13 2004
***************
*** 0 ****
--- 1,56 ----
+ // direction.cc
+ 
+ #include "direction.h"
+ 
+ char *direction::as_string()
+ {
+     char *dirs[] = { "N", "NE", "E", "SE", "S", "SW", "W", "NW", 
+ 		     "No direction"};
+     return(dirs[dir]);
+ }
+ int operator== (direction d1, direction d2)
+ {
+     return (d1.dir == d2.dir);
+ }
+ int operator!= (direction d1, direction d2)
+ {
+     return (d1.dir != d2.dir);
+ }
+ 
+ 
+ int operator<= (direction d1, direction d2)
+ {
+     return (d1.dir <= d2.dir);
+ }
+ 
+ 
+ ostream& operator<< (ostream& o, direction d)
+ {
+     o << d.as_string();
+     return (o);
+ }
+ 
+ 
+ const direction N (0);
+ const direction NE(1);
+ const direction E (2);
+ const direction SE(3);
+ const direction S (4);
+ const direction SW(5);
+ const direction W (6);
+ const direction NW(7);
+ const direction NO_DIRECTION(8);
+ #ifdef direction_test
+ #include "stream.h"
+ main()
+ {
+     direction d(0);
+ 
+     for(int i =0 ; i < 10; i++)
+     {
+ 	cout << d << ' ' << d.right() << ' ' << d.back() << ' ' << d.left() << '\n';
+ 	d++;
+     }
+ }
+ #endif
+ 


Index: llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/direction.h
diff -c /dev/null llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/direction.h:1.1
*** /dev/null	Mon Oct  4 15:01:27 2004
--- llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/direction.h	Mon Oct  4 15:01:13 2004
***************
*** 0 ****
--- 1,48 ----
+ // direction.h
+ 
+ #ifndef _direction_h
+ #define _direction_h
+ 
+ #include <stream.h>
+ 
+ class direction
+ {
+ private:
+     int dir;
+ 
+ public:
+     direction()     	{dir = 0;};
+     direction(int i) 	{dir = i % 9;};
+ 
+     int as_int()	{return (dir);};
+     char *as_string();
+     direction right_front()	{return(direction((dir + 1) % 8));};
+     direction right()		{return(direction((dir + 2) % 8));};
+     direction right_back()	{return(direction((dir + 3) % 8));};
+     direction back()		{return(direction((dir + 4) % 8));};
+     direction left_back() 	{return(direction((dir + 5) % 8));};
+     direction left()		{return(direction((dir + 6) % 8));};
+     direction left_front()	{return(direction((dir + 7) % 8));};
+ 
+     friend ostream& operator<< (ostream&, direction);
+     friend int operator<= (direction d1, direction d2);
+     friend int operator== (direction d1, direction d2);
+     friend int operator!= (direction d1, direction d2);
+     direction operator++ () {dir++; return(*this);}; // both pre and post
+ };
+ 
+ 
+ extern const direction N ;
+ extern const direction NE;
+ extern const direction E ;
+ extern const direction SE;
+ extern const direction S ;
+ extern const direction SW;
+ extern const direction W ;
+ extern const direction NW;
+ extern const direction NO_DIRECTION;
+ 
+ 
+ 
+ typedef direction type_direction;
+ #endif


Index: llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/intersection.cpp
diff -c /dev/null llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/intersection.cpp:1.1
*** /dev/null	Mon Oct  4 15:01:27 2004
--- llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/intersection.cpp	Mon Oct  4 15:01:13 2004
***************
*** 0 ****
--- 1,108 ----
+ // build_intersection.cc
+ 
+ #include "intersection.h"
+ extern "C" char *malloc();
+ 
+ 
+ void intersection_4x4::connectNin (roadlet *leftlane, roadlet *rightlane)
+ {
+     connect(leftlane, S, roadlets[0][1], N, green_light);
+     connect(rightlane, S, roadlets[0][0], N, green_OR_plan_rightONred);
+ }
+ 
+ void intersection_4x4::connectEin (roadlet *leftlane, roadlet *rightlane)
+ {
+     connect(leftlane, W, roadlets[1][3], E, green_light);
+     connect(rightlane, W, roadlets[0][3], E, green_OR_plan_rightONred);
+ }
+ 
+ void intersection_4x4::connectSin (roadlet *leftlane, roadlet *rightlane)
+ {
+     connect(leftlane, N, roadlets[3][2], S, green_light);
+     connect(rightlane, N, roadlets[3][3], S, green_OR_plan_rightONred);
+ }
+ 
+ void intersection_4x4::connectWin (roadlet *leftlane, roadlet *rightlane)
+ {
+     connect(leftlane, E, roadlets[2][0], W, green_light);
+     connect(rightlane, E, roadlets[3][0], W, green_OR_plan_rightONred);
+ }
+ 
+ void intersection_4x4::connectNout(roadlet *leftlane, roadlet *rightlane)
+ {
+     connect(roadlets[0][2], N, leftlane, S, strait);
+     connect(roadlets[0][3], N, rightlane, S, strait_or_right);
+ }
+ void intersection_4x4::connectEout(roadlet *leftlane, roadlet *rightlane)
+ {
+     connect(roadlets[2][3], E, leftlane, W, strait);
+     connect(roadlets[3][3], E, rightlane, W, strait_or_right);
+ }
+ void intersection_4x4::connectSout(roadlet *leftlane, roadlet *rightlane)
+ {
+     connect(roadlets[3][1], S, leftlane, N, strait);
+     connect(roadlets[3][0], S, rightlane, N, strait_or_right);
+ }
+ void intersection_4x4::connectWout(roadlet *leftlane, roadlet *rightlane)
+ {
+     connect(roadlets[1][0], W, leftlane, E, strait);
+     connect(roadlets[0][0], W, rightlane, E, strait_or_right);
+ }
+ 
+ 
+ intersection_4x4::intersection_4x4(char *name)
+ {
+     char *buff;
+ 
+     int i,j;
+ 
+     light_type *l;
+ 
+     l = new light();
+     the_light = l;
+ 
+     for(i=0; i<4; i++)
+ 	for(j=0; j<4; j++)
+ 	{
+ 	    buff = malloc(strlen(name) + 7);
+ 	    sprintf(buff, "%s %d %d", name, i, j);
+ 	    roadlets[i][j] = new intersection_roadlet(buff, l);
+ 	}
+ 
+ 
+     for(i=3; i>0; i--)
+     {
+ 	connect(roadlets[i][3], N, roadlets[i-1][3], S, &strait);
+ 	connect(roadlets[i][2], N, roadlets[i-1][2], S, &strait);
+     }
+     for(i=0; i<3; i++)
+     {
+ 	connect(roadlets[i][0], S, roadlets[i+1][0], N, &strait);
+ 	connect(roadlets[i][1], S, roadlets[i+1][1], N, &strait);
+     }
+     for(j=0; j<3; j++)
+     {
+ 	connect(roadlets[2][j], E, roadlets[2][j+1], W, &strait);
+ 	connect(roadlets[3][j], E, roadlets[3][j+1], W, &strait);
+     }
+     for(j=3; j>0; j--)
+     {
+ 	connect(roadlets[0][j], W, roadlets[0][j-1], E, &strait);
+ 	connect(roadlets[1][j], W, roadlets[1][j-1], E, &strait);
+     }
+ 
+     // override center square
+ // FIX ME i think car can circle forever in the middle of the intersection!
+ // FIX with PLAN of lefty is strait
+     connect(roadlets[2][2], N, roadlets[1][2], S, &strait_or_left);
+     connect(roadlets[1][2], W, roadlets[1][1], E, &strait_or_left);
+     connect(roadlets[1][1], S, roadlets[2][1], N, &strait_or_left);
+     connect(roadlets[2][1], E, roadlets[2][2], W, &strait_or_left);
+ 
+ car b("blocker");
+ b.set_location(roadlets[0][2]);         // a car
+ roadlets[0][2]->arrive(&b);
+ cout << b << '\n';
+ 
+ 
+ }


Index: llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/intersection.h
diff -c /dev/null llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/intersection.h:1.1
*** /dev/null	Mon Oct  4 15:01:27 2004
--- llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/intersection.h	Mon Oct  4 15:01:13 2004
***************
*** 0 ****
--- 1,48 ----
+ // build_intersection.cc
+ 
+ #ifndef _intersection_h
+ #define _intersection_h
+ 
+ #include "stdio.h"
+ #include "direction.h"
+ #include "roadlet.h"
+ #include "check_functions.h"
+ #include "light.h"
+ 
+ // this function is not very OO. can that be fixed?
+ 
+ 
+ extern void connect(roadlet *, direction, 
+ 	            roadlet *, direction, 
+ 	            roadlet * (*r1_to_r2_filter_function)(roadlet *, vehicle *, direction));
+ 
+ class intersection
+ {
+ protected:
+     light *the_light;
+ public:
+     light *light() {return (the_light);};
+ };
+ 
+ class intersection_2x2 : public intersection
+ {
+ };
+ 
+ class intersection_4x4 : public intersection
+ {
+ protected:
+     roadlet *roadlets[4][4];
+ 
+ public:
+     intersection_4x4(char *name);
+     void connectSin(roadlet*, roadlet*) ;
+     void connectNout(roadlet*, roadlet*);
+     void connectNin(roadlet*, roadlet*);
+     void connectSout(roadlet*, roadlet*);
+     void connectEin(roadlet*, roadlet*);
+     void connectWout(roadlet*, roadlet*);
+     void connectWin(roadlet*, roadlet*);
+     void connectEout(roadlet*, roadlet*);
+ };
+ 
+ #endif


Index: llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/light.cpp
diff -c /dev/null llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/light.cpp:1.1
*** /dev/null	Mon Oct  4 15:01:27 2004
--- llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/light.cpp	Mon Oct  4 15:01:13 2004
***************
*** 0 ****
--- 1,53 ----
+ // light.cc
+ 
+ #include "broken_light.h"
+ #include "stream.h"
+ 
+ void light::tick()
+ {
+     time_remaining_in_current_state--;
+     if (time_remaining_in_current_state <= 0)
+     {
+         current_state = this->next_state();
+ 
+ 	cout << "current state = "<< current_state << '\n';
+ 	time_remaining_in_current_state = time_in_state[current_state];
+     }
+ }
+ 
+ 
+ 
+ void light::init(int t1, int t2, int t3, int t4) 
+ {
+     __ = LIGHT_ID;
+     current_state = 0;
+     time_in_state[0] = t1;
+     time_in_state[1] = t2;
+     time_in_state[2] = t3;
+     time_in_state[3] = t4;
+     time_remaining_in_current_state = time_in_state[current_state];
+ }
+ 
+ 
+ ostream& operator<< (ostream & o, light l)
+ {
+     o << l.current_state 
+       << " " << l.redNS() << l.yellowNS() << l.greenNS() 
+       << " " << l.redEW() << l.yellowEW() << l.greenEW();
+     return(o);
+ }
+ 
+ #ifdef test_light
+ #include "stream.h"
+ 
+ void main()
+ {
+     light l(3,1,4,1);
+ 
+     for(int i = 0; i < 20; i++)
+     {
+ 	cout << l << "\n";
+ 	l.tick();
+     }
+ }
+ #endif


Index: llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/light.h
diff -c /dev/null llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/light.h:1.1
*** /dev/null	Mon Oct  4 15:01:27 2004
--- llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/light.h	Mon Oct  4 15:01:13 2004
***************
*** 0 ****
--- 1,35 ----
+ // light.h
+ 
+ #ifndef _light_h
+ #define _light_h
+ #include "ostream.h"
+ 
+ #define LIGHT_ID 0
+ 
+ class light
+ {
+ private:
+     void init(int, int, int, int);
+ 
+ protected:
+     int current_state;
+     int time_in_state[4];
+     int time_remaining_in_current_state;
+     virtual int next_state() {return ((current_state + 1 ) % 4);};
+ 
+ public:
+     int __;
+     light() {init(4,2,5,2);};
+     light(int t1, int t2, int t3, int t4) {init(t1,t2,t3,t4);};
+ 
+     void tick();
+     redNS()	{return ((current_state == 0) || (current_state == 1));};
+     yellowNS()	{return (current_state == 3);};
+     greenNS()	{return (current_state == 2);};
+     redEW()	{return ((current_state == 2) || (current_state == 3));};
+     yellowEW()	{return (current_state == 1);};
+     greenEW()	{return (current_state == 0);};
+     friend ostream& operator<< (ostream &, light);
+ };
+ typedef light light_type;
+ #endif


Index: llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/main.cpp
diff -c /dev/null llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/main.cpp:1.1
*** /dev/null	Mon Oct  4 15:01:27 2004
--- llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/main.cpp	Mon Oct  4 15:01:13 2004
***************
*** 0 ****
--- 1,107 ----
+ // main.c   -   simulation main driver
+ 
+ #include "stream.h"
+ #include "sim.h"
+ #include "direction.h"
+ #include "vehicle.h"
+ #include "roadlet.h"
+ #include "check_functions.h"
+ #include "intersection.h"
+ extern "C" 
+ {
+     void *malloc();
+     void srandom(int);
+ }
+ 
+ 
+ // connect r1->d1 to r2->d2
+ void connect(roadlet *r1, direction d1, 
+ 	     roadlet *r2, direction d2, 
+ 	     roadlet* (*r1_to_r2_filter_function)(roadlet *, vehicle *, direction))
+ {
+     //cout << "connecting " << *r1 << " " << *r2 << '\n';
+     r1->set_neighbor(d1, r2);
+     r2->set_neighbor(d2, r1);
+     r1->set_move_filter_function(d1, r1_to_r2_filter_function);
+ }
+ 
+ int main()
+ {
+     car c("fred");
+     roadlet *r1, *r2;
+     roadlet *r3, *r4;
+     char *buff;
+     int i;
+ 
+     srandom(5);
+ 
+     // build a two lane one direction road
+ 
+     r1 = new roadlet ("R start");
+     r3 = new roadlet ("L start");
+     connect(r1, W, r3, E, return_null); // there but can't move to
+ 
+     c.set_location(r1);		// a car
+     r1->arrive(&c);
+ 
+     for(i=0; i<10; i++)
+     {
+ 	buff = (char *)malloc(4);
+ 	sprintf(buff, "R%d", i);
+ 	r2 = new roadlet(buff);
+ 
+ 	buff = (char *)malloc(4);
+ 	sprintf(buff, "L%d", i);
+ 	r4 = new roadlet(buff);
+ 
+         connect(r1, N, r2, S, &is_empty);
+         connect(r3, N, r4, S, &is_empty);
+         connect(r1, NW, r4, SE, &lane_switch_ok);
+         connect(r3, NE, r2, SW, &lane_switch_ok);
+         connect(r2, W, r4, E, return_null); // can't more sideways
+ 
+ 	r1 = r2;
+ 	r3 = r4;
+     }
+ 
+     car b2("blocker 2");
+     b2.set_location(r1);		// a car
+     r1->arrive(&b2);
+     cout << b2 << '\n';
+ 
+     intersection_4x4 i1("intersection ");
+ 
+     i1.connectSin(r3, r1);
+ 
+     broken_light l(3,1,4,1);
+ 
+     for(i = 0; i < 100000; i++)
+     {
+ 	cout << l << "\n";
+ 	l.tick();
+     }
+ 
+     for(i=0; i< 100000; i++)
+     {
+         i1.light()->tick();
+     }
+ 
+ 
+     r1 = new roadlet ("East Road R ");
+     r3 = new roadlet ("East Road L ");
+     connect(r1, N, r3, S, return_null); // there but can't move to
+ 
+     car b("blocker");
+     b.set_location(r1);		// a car
+     r1->arrive(&b);
+     cout << b << '\n';
+ 
+     i1.connectEout(r3, r1);
+ 
+     for(i=0; i< 100000; i++)
+     {
+         cout << '\n' << i << ' ' << c << '\n';
+         c.tick();
+     }
+     cout << i << ' ' << c << '\n';
+ }


Index: llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/roadlet.cpp
diff -c /dev/null llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/roadlet.cpp:1.1
*** /dev/null	Mon Oct  4 15:01:27 2004
--- llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/roadlet.cpp	Mon Oct  4 15:01:13 2004
***************
*** 0 ****
--- 1,18 ----
+ // roadlet.cc
+ 
+ #include <stream.h>
+ #include "roadlet.h"
+ 
+ void roadlet::init(char *n)      
+ {
+     name = n; 
+     for(int i=0;i<8;i++) 
+ 	the_moves[i] = return_null; 
+ }
+ 
+ 
+ ostream& operator<<(ostream& o, roadlet r)
+ {
+     o << "roadlet " << r.name;
+     return (o);
+ }


Index: llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/roadlet.h
diff -c /dev/null llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/roadlet.h:1.1
*** /dev/null	Mon Oct  4 15:01:27 2004
--- llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/roadlet.h	Mon Oct  4 15:01:13 2004
***************
*** 0 ****
--- 1,55 ----
+ // roadlet.h
+ 
+ #ifndef _roadlet_h
+ #define _roadlet_h
+ 
+ #include "sim.h"
+ #include "light.h"
+ extern roadlet *return_null();
+ #include "check_functions.h"
+ #include "broken_light.h"
+ 
+ typedef roadlet * (*move_function)(roadlet *, vehicle *, direction);
+ 
+ 
+ class roadlet
+ {
+ private:
+     void init(char *n);
+ 
+ protected:
+     char *name;
+     vehicle *occupant = NULL;
+     roadlet *neighbors[8] = { NULL };
+     move_function the_moves[8];
+ 
+ public:
+     roadlet()                { init("unnamed");};
+     roadlet(char *n)         { init(n);};
+     int occupied()           { return(occupiedby() != NULL);};
+     vehicle *occupiedby()    {return(occupant);};
+     void arrive(vehicle *v)  {occupant = v;};
+     vehicle *depart()	     {vehicle *v=occupant; occupant=NULL; return(v);};
+ 
+     void set_neighbor(direction d, roadlet *n) { neighbors[d.as_int()] = n;};
+     roadlet *neighbor(direction d)            { return(neighbors[d.as_int()]);};
+ 
+     move_function *moves()  { return(the_moves);};
+     void set_move_filter_function(direction d, move_function f)
+ 	{the_moves[d.as_int()] = f; };
+ 
+     friend ostream& operator<< (ostream&, roadlet);
+ };
+ 
+ 
+ class intersection_roadlet : public roadlet
+ {
+ protected:
+     light *l;
+ 
+ public:
+     intersection_roadlet(char *name, light *alight) : roadlet(name) {l = alight;} ;
+     light *light() { return(l);};
+ };
+ 
+ #endif


Index: llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/sim.h
diff -c /dev/null llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/sim.h:1.1
*** /dev/null	Mon Oct  4 15:01:27 2004
--- llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/sim.h	Mon Oct  4 15:01:13 2004
***************
*** 0 ****
--- 1,21 ----
+ // sim.h
+ 
+ #ifndef _sim_h
+ #define _sim_h
+ 
+ #define TRUE 1
+ #define FALSE 0
+ 
+ class light;
+ class direction;
+ class roadlet;
+ class vehicle;
+ //class car : public vehicle;
+ class car;
+ // class truck : public vehicle;
+ class truck;
+ // class intersection_roadlet : public roadlet;
+ class intersection_roadlet;
+ 
+ 
+ #endif


Index: llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/vehicle.cpp
diff -c /dev/null llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/vehicle.cpp:1.1
*** /dev/null	Mon Oct  4 15:01:27 2004
--- llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/vehicle.cpp	Mon Oct  4 15:01:13 2004
***************
*** 0 ****
--- 1,107 ----
+ // vehicle.cc
+ // speed in (ticks per roadlet) / 100
+ // speed < 100 yields multiple ticks per move.
+ // speed > 100 yields multiple moves per tick.
+ 
+ #include <stream.h>
+ #include <stdio.h>
+ #include "sim.h"
+ #include "direction.h"
+ #include "vehicle.h"
+ #include "roadlet.h"
+ 
+ 
+ ostream& operator<<(ostream& o, vehicle v)
+ {
+     o << v.name << " at " << *(v.location) << " going " << v.direction();
+     return (o);
+ }
+ 
+ 
+ void vehicle::tick()
+ {
+     move_points = move_points + 100;
+     while (move_points >= speed)
+     {
+ 	move();
+ 	move_points = move_points - speed;
+     }
+ }
+ 
+ 
+ void vehicle::move()
+ {
+     direction d = NO_DIRECTION;
+ 
+     if (plan != -1)
+     {
+ 	cout << "there is a plan! "<< plan << " \n";
+         if (location->moves()[plan](location->neighbor(plan),this,plan) != NULL)
+ 	{
+ 	    d = direction(plan);
+ 	    plan = -1;
+ 	}  // else wait for plan to be possible
+     }
+     else
+         d = select_move();
+ 
+     if (d != NO_DIRECTION)
+     {
+         roadlet *r;
+ 
+         location->depart();
+         r = location->neighbor(d);
+         r->arrive(this);
+         location = r;
+ 	if ((d == N) || (d == S) || (d == E) || (d == W))
+ 	    dir = d;	// else = lane change only
+ 
+     }
+ }
+ 
+ 
+ direction vehicle::select_move()
+ {
+     roadlet *(**possible_moves)(roadlet*, vehicle *, type_direction);
+     direction dir, move_to_the[8];
+     int used;
+ 
+     possible_moves = location->moves();
+ 
+     for(used=0, dir=N; dir<=NW; dir ++)
+     {
+ 	// cout << "possible_moves[" << dir << "] " << possible_moves[dir.as_int()] << '\n';
+ 	if (possible_moves[dir.as_int()](location->neighbor(dir), this, dir) != NULL)
+ 	{
+ 	    move_to_the[used] = dir;
+ 	    used++;
+ 	}
+     }
+ 
+     if (used == 0)
+     {
+         cout << "vehicle::select_move "<< *this << " has no where to go!\n";
+ 	return(NO_DIRECTION);
+     }
+     else
+     {
+         int use = (int)random() % used;
+ 	return(move_to_the[use]);
+     }
+ }
+ 
+ 
+ // Car stuff
+ ostream& operator<< (ostream& o, car c)
+ {
+     o << "Car " << (vehicle)c; 
+     return (o);
+ }
+ 
+ 
+ // Truck stuff
+ ostream& operator<< (ostream& o, truck t)
+ {
+     o << "Truck " << (vehicle)t; 
+     return (o);
+ }


Index: llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/vehicle.h
diff -c /dev/null llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/vehicle.h:1.1
*** /dev/null	Mon Oct  4 15:01:27 2004
--- llvm-test/MultiSource/Benchmarks/Prolangs-C++/city/vehicle.h	Mon Oct  4 15:01:13 2004
***************
*** 0 ****
--- 1,58 ----
+ // vehicle.h
+ 
+ #ifndef _vehicle_h
+ #define _vehicle_h
+ 
+ #include "sim.h" 
+ 
+ class vehicle
+ {
+ private:
+     const int DEFAULT_SPEED = 100;
+     roadlet *location;
+     char *name;
+     int speed;
+     int move_points;			// move units accumulated towards moving
+     void init(roadlet *l, char *n, int s) 
+ 	{plan=-1,location=l, name=n, speed=s, move_points=0, dir = N;};
+ 
+ protected:
+     direction dir;
+     direction select_move();
+     void move();
+ 
+ public:
+     vehicle() {init(NULL, NULL, DEFAULT_SPEED);};
+     vehicle(char *n) {init(NULL, n, DEFAULT_SPEED);};
+     vehicle(roadlet *r, char *n) {init(r, n, DEFAULT_SPEED);};
+     vehicle(roadlet *r, char *n, int s) {init(r, n, s);};
+     // others include: r, s, rs, sr, ....
+ 
+     int plan;
+ 
+     direction direction() {return (dir);};
+     void set_location(roadlet *r)  {location = r;};
+ 
+     void tick();
+ 
+     friend ostream& operator<< (ostream&, vehicle);
+ };
+ 
+ class car : public vehicle
+ {
+ public:
+     car() : vehicle() { };
+     car(char *n) : vehicle(n) { };
+     friend ostream& operator<< (ostream&, car);
+ };
+ 
+ class truck : public vehicle
+ {
+ protected:
+     int weight;
+ 
+ public:
+     friend ostream& operator<< (ostream&, truck);
+     truck() { } ; // fixes moves array to be "if over weight then no else old function "
+ };
+ #endif






More information about the llvm-commits mailing list