save
[cdsspec-compiler.git] / benchmark / cliffc-hashtable / main.cc
index 86eecb72aa4c5646071781f4ed75135d4c5a7091..f18064db98e398ed7eb8a555db1ad866cab3010f 100644 (file)
@@ -1,5 +1,5 @@
 #include <iostream>
-
+#include <threads.h>
 #include "cliffc_hashtable.h"
 
 using namespace std;
@@ -19,8 +19,8 @@ slot* const cliffc_hashtable<TypeK, TypeV>::TOMBSTONE = new slot(false, NULL);
 
 class IntWrapper {
        private:
-           int _val;
                public:
+           int _val;
 
                IntWrapper(int val) : _val(val) {}
 
@@ -35,23 +35,98 @@ class IntWrapper {
                int hashCode() {
                        return _val;
                }
+               
+               bool operator==(const IntWrapper& rhs) {
+                       return false;
+               }
 
-               bool equals(const shared_ptr<void> another) {
+               bool equals(const void *another) {
                        if (another == NULL)
                                return false;
-                       shared_ptr<IntWrapper> ptr =
-                               static_pointer_cast<IntWrapper>(another);
+                       IntWrapper *ptr =
+                               (IntWrapper*) another;
                        return ptr->_val == _val;
                }
 };
 
-int main(int argc, char *argv[]) {
-       cliffc_hashtable<IntWrapper, IntWrapper> table;
-       IntWrapper k1(3), k2(4), v1(1), v2(2);
+cliffc_hashtable<IntWrapper, IntWrapper> *table;
+IntWrapper *val1, *val2;
+
+void threadA(void *arg) {
+       
+       IntWrapper *k1 = new IntWrapper(3), *k2 = new IntWrapper(2),
+               *k3 = new IntWrapper(1024), *k4 = new IntWrapper(1025);
+       IntWrapper *v1 = new IntWrapper(1024), *v2 = new IntWrapper(1025),
+               *v3 = new IntWrapper(73), *v4 = new IntWrapper(81);
+       
+       table->put(k1, v1);
+       table->put(k2, v2);
+       //table->put(k4, v3);
+       //table->put(v3, v3);
        
+       val1 = table->get(k3);
+       if (val1 != NULL)
+               model_print("val1: %d\n", val1->_val);
+       else
+               model_print("val1: NULL\n");
+       //table->put(k3, v3);
+       
+}
+
+void threadB(void *arg) {
+       /*
+       IntWrapper *k1 = new IntWrapper(3), *k2 = new IntWrapper(5),
+               *k3 = new IntWrapper(1024), *k4 = new IntWrapper(1025);
+       IntWrapper *v1 = new IntWrapper(1024), *v2 = new IntWrapper(1025),
+               *v3 = new IntWrapper(73), *v4 = new IntWrapper(81);
+       table->put(k1, v3);
+       val1 = table->get(k2);
+       table->put(k2, v4);
+       val1 = table->get(k2);
+       */
+}
 
-       table.put(k1, v1);
-       table.put(k2, v2);
-       cout << table.get(k2)->get() << endl;
-       return 1;
+void threadMain(void *arg) {
+       /*
+       for (int i = 0; i < 5; i++) {
+               IntWrapper *k = new IntWrapper(i), *v = new IntWrapper(i * 2);
+               table->put(k, v);
+       }
+       */
+       IntWrapper *k1 = new IntWrapper(3), *k2 = new IntWrapper(5),
+               *k3 = new IntWrapper(1024), *k4 = new IntWrapper(1025);
+       IntWrapper *v1 = new IntWrapper(1024), *v2 = new IntWrapper(1025),
+               *v3 = new IntWrapper(73), *v4 = new IntWrapper(81);
+       table->put(k3, v3);
+       //val1 = table->get(k2);
 }
+
+int user_main(int argc, char *argv[]) {
+       thrd_t t1, t2;
+       table = new cliffc_hashtable<IntWrapper, IntWrapper>(2);
+       val1 = NULL;
+       val2 = NULL;
+       //threadMain(NULL);
+
+       thrd_create(&t1, threadA, NULL);
+       thrd_create(&t2, threadB, NULL);
+       threadMain(NULL);
+
+       thrd_join(t1);
+       thrd_join(t2);
+       /*
+       if (val1 == NULL) {
+               cout << "val1: NULL" << endl;
+       } else {
+               cout << val1->get() << endl;
+       }
+       //MODEL_ASSERT(val1 == NULL || val1->get() == 2 || val1->get() == 81);
+       if (val2 == NULL) {
+               cout << "val2: NULL" << endl;
+       } else {
+               cout << val2->get() << endl;
+       }
+       */
+       return 0;
+}
+