Changes to increase garbage collector heap
[IRC.git] / Robust / src / Runtime / DSTM / interface / addPrefetchEnhance.c
1 #include "addPrefetchEnhance.h"
2 #include "prelookup.h"
3
4 extern int numprefetchsites; // Number of prefetch sites
5 extern pfcstats_t *evalPrefetch; //Global array that keeps track of operation mode (ON/OFF) for each prefetch site
6 extern objstr_t *prefetchcache; //Global Prefetch cache
7 extern pthread_mutex_t prefetchcache_mutex; //Mutex to lock Prefetch Cache
8 extern unsigned int myIpAddr;
9
10 /* This function creates and initializes the
11  * evalPrefetch global array */
12 pfcstats_t *initPrefetchStats() {
13   pfcstats_t *ptr;
14   if((ptr = calloc(numprefetchsites, sizeof(pfcstats_t))) == NULL) {
15     printf("%s() Calloc error in %s at line %d\n", __func__, __FILE__, __LINE__);
16     return NULL;
17   }
18   int i;
19   /* Enable prefetching at the beginning */
20   for(i=0; i<numprefetchsites; i++) {
21     ptr[i].operMode = 1;
22     ptr[i].callcount = 0;
23     ptr[i].retrycount = RETRYINTERVAL; //N
24     ptr[i].uselesscount = SHUTDOWNINTERVAL; //M
25   }
26   return ptr;
27 }
28
29 int getRetryCount(int siteid) {
30   return evalPrefetch[siteid].retrycount;
31 }
32
33 int getUselessCount(int siteid) {
34   return evalPrefetch[siteid].uselesscount;
35 }
36
37 char getOperationMode(int siteid) {
38   return evalPrefetch[siteid].operMode;
39 }
40
41 /* This function updates counters and mode of operation of a
42  * prefetch site during runtime. When the prefetch call at a site
43  * generates oids that are found/not found in the prefetch cache,
44  * we take action accordingly */
45 void handleDynPrefetching(int numLocal, int ntuples, int siteid) {
46   if(numLocal < ntuples) {
47     /* prefetch not found locally(miss in cache) */
48     evalPrefetch[siteid].operMode = 1;
49     evalPrefetch[siteid].uselesscount = SHUTDOWNINTERVAL;
50   } else {
51     if(getOperationMode(siteid) != 0) {
52       evalPrefetch[siteid].uselesscount--;
53       if(evalPrefetch[siteid].uselesscount <= 0) {
54         evalPrefetch[siteid].operMode = 0;
55       }
56     }
57   }
58 }
59
60 /* This function clears from prefetch cache those
61  * entries that caused a transaction abort */
62 void cleanPCache(transrecord_t *record) {
63   transrecord_t *rec = record;
64   unsigned int size = rec->lookupTable->size;
65   chashlistnode_t *ptr = rec->lookupTable->table;
66   int i;
67   for(i = 0; i < size; i++) {
68     chashlistnode_t *curr = &ptr[i]; //for each entry in the cache lookupTable
69     while(curr != NULL) {
70       if(curr->key == 0)
71         break;
72       objheader_t *header1, *header2;
73       /* Not found in local machine's object store and found in prefetch cache */
74       if((header1 = mhashSearch(curr->key)) == NULL && ((header2 = prehashSearch(curr->key)) != NULL)) {
75         /* Remove from prefetch cache */
76         prehashRemove(curr->key);
77       }
78       curr = curr->next;
79     }
80   }
81 }
82
83 /* This function updates the prefetch cache with
84  * entries from the transaction cache when a
85  * transaction commits
86  * Return -1 on error else returns 0 */
87 int updatePrefetchCache(trans_req_data_t *tdata, transrecord_t *rec) {
88   int retval;
89   char oidType;
90   oidType = 'R';
91   if(tdata->f.numread > 0) {
92     if((retval = copyToCache(tdata->f.numread, (unsigned int *)(tdata->objread), rec, oidType)) != 0) {
93       printf("%s(): Error in copying objects read at %s, %d\n", __func__, __FILE__, __LINE__);
94       return -1;
95     }
96   }
97   if(tdata->f.nummod > 0) {
98     oidType = 'M';
99     if((retval = copyToCache(tdata->f.nummod, tdata->oidmod, rec, oidType)) != 0) {
100       printf("%s(): Error in copying objects read at %s, %d\n", __func__, __FILE__, __LINE__);
101       return -1;
102     }
103   }
104   return 0;
105 }
106
107 int copyToCache(int numoid, unsigned int *oidarray, transrecord_t *rec, char oidType) {
108   int i;
109   for (i = 0; i < numoid; i++) {
110     unsigned int oid;
111     if(oidType == 'R') {
112       char * objread = (char *) oidarray;
113       oid = *((unsigned int *)(objread+(sizeof(unsigned int)+
114                                         sizeof(unsigned short))*i));
115     } else {
116       oid = oidarray[i];
117     }
118     pthread_mutex_lock(&prefetchcache_mutex);
119     objheader_t * header;
120     if((header = (objheader_t *) chashSearch(rec->lookupTable, oid)) == NULL) {
121       printf("%s() obj %x is no longer in transaction cache at %s , %d\n", __func__, oid,__FILE__, __LINE__);
122       fflush(stdout);
123       return -1;
124     }
125     //copy into prefetch cache
126     int size;
127     GETSIZE(size, header);
128     objheader_t * newAddr;
129     if((newAddr = prefetchobjstrAlloc(size + sizeof(objheader_t))) == NULL) {
130       printf("%s(): Error in getting memory from prefetch cache at %s, %d\n", __func__,
131              __FILE__, __LINE__);
132       pthread_mutex_unlock(&prefetchcache_mutex);
133       return -1;
134     }
135     pthread_mutex_unlock(&prefetchcache_mutex);
136     memcpy(newAddr, header, size+sizeof(objheader_t));
137     //Increment version for every modified object
138     if(oidType == 'M') {
139       newAddr->version += 1;
140       newAddr->notifylist = NULL;
141     }
142     //make an entry in prefetch lookup hashtable
143     void *oldptr;
144     if((oldptr = prehashSearch(oid)) != NULL) {
145       prehashRemove(oid);
146       prehashInsert(oid, newAddr);
147     } else {
148       prehashInsert(oid, newAddr);
149     }
150   } //end of for
151   return 0;
152 }