I guess it's cheeky for me to give an answer, but I thought it up after posing the question, and it gives a fresh chance to get feedback. I include the code and a little micro-benchmark result.
So, my trick is that the [] operator and its ilk return the type of the smart pointer, rather than the element type, and by value. I reasoned that returning a 4-byte my_ptr by value is no worse than a 4-byte element reference.
inline my_ptr operator[](int i) const { return my_ptr(m_p+i); }
I've only added a few basic operators, but I think the pattern could be continued as required. Perhaps Boost already has something like this?
template <typename T>
class my_ptr {
T *m_p;
public:
inline my_ptr(T *p) : m_p(p) {}
inline my_ptr operator[](int i) const { return my_ptr(m_p+i); } // By value
inline my_ptr & operator= (T x) { *m_p = x; }
inline my_ptr & operator= (my_ptr &x) { *m_p = *x.m_p; }
inline my_ptr & operator+=(const my_ptr &x) { *m_p = *m_p + *x.m_p; }
inline friend ostream &operator<<(ostream &o, const my_ptr &x) {
o << *x.m_p;
return o;
}
};
I benchmark by summing an array of SIZE elements NRUNS times using gcc 4.4.5 with the -O3 switch, and SIZE and NRUNS equal to 1 << 15. On my crappy machine both take 3.45 seconds. The kernel looks like this:
s += data[i];
The bulk of the code is here:
#define NRUNS (1<<15)
#define SIZE (1<<15)
double data[SIZE];
int main(int argc, char *argv[])
{
double s, t1, t2;
my_ptr<double> s2(&s);
my_ptr<double> data2(data);
s = 0;
t1 = omp_get_wtime();
for (int n = 0; n < NRUNS; n++)
for (int i = 0; i < SIZE; ++i)
s += data[i];
t2 = omp_get_wtime();
cout << "sum=" << s << " " << "t2-t1=" << t2-t1 << "secs." << endl;
s2 = 0;
t1 = omp_get_wtime();
for (int n = 0; n < NRUNS; n++)
for (int i = 0; i < SIZE; ++i)
s2 += data2[i];
t2 = omp_get_wtime();
cout << "sum=" << s2 << " " << "t2-t1=" << t2-t1 << "secs." << endl;
return 0;
}
I also added a version inspired by Benjamin Lindley's "proxy" solution.
The declarations added to main are:
proxy<double> s3(s);
my_ptr2<double> data3(data);
while the proxy class and smart pointer (my_ptr2) are declared as:
template<typename T>
struct proxy
{
proxy(T & v) :value_(v) {}
proxy & operator =(const T & v) { value_ = v; return *this; }
proxy & operator+=(const T & v) { value_ += v; return *this; }
proxy & operator+=(const proxy & x) { value_ += x.value_; return *this; }
private:
T & value_;
};
template <typename T>
class my_ptr2 {
T *m_p;
public:
inline my_ptr2(T *p) : m_p(p) {}
inline proxy<T> operator[](int i) const {
return proxy<T>(m_p[i]);
}
inline friend ostream &operator<<(ostream &o, const my_ptr2 &x) {
o << *x.m_p;
return o;
}
};
The core of the kernel is now:
s = 0;
t1 = omp_get_wtime();
for (int n = 0; n < NRUNS; n++)
for (int i = 0; i < SIZE; ++i)
s3 += data3[i];
t2 = omp_get_wtime();
cout << "sum=" << s << " " << "t2-t1=" << t2-t1 << "secs." << endl;
and lo with -O3 it runs as quickly as the other two versions. I like it as, once developed, it would clearly separate the update of the smart pointer from its target data.
On the other hand, it may feel a little cumbersome to the user. This may still be acceptable: assuming my initial condition that the pointer should absolutely not be accessed directly.
ptris a (smart) pointer to &i, the index operator makes no sense. – harper Mar 19 '11 at 13:02