| 80 | TellCache::TellCache(Region& region, int m) |
| 81 | : _nq(region.alloc<int>(m)), _n_nq(0), _eq(-1) {} |
| 82 | forceinline void |
| 83 | TellCache::nq(int j) { |
| 84 | _nq[_n_nq++] = j; |
| 85 | } |
| 86 | forceinline void |
| 87 | TellCache::eq(int j) { |
| 88 | // For eq: -1 mean not yet assigned, -2 means failure, positive means value |