Compare code fragments A:
struct Vector2(T) {
// ...
auto opCast(U)() {
return U(x, y);
}
void opOpAssign(string op)(Vector2 vector) {
mixin ("x" ~ op ~ "= vector.x;");
mixin ("y" ~ op ~ "= vector.y;");
}
}
void main() {
auto fVec = Vector2!float(1.5, 1.5);
auto dVec = Vector2!double(1.5, 1.5);
// Benchmark: Loop following 10 million times.
fVec += cast(Vector2!float) dVec;
dVec -= cast(Vector2!double) fVec;
}
with B:
struct Vector2(T) {
// ...
void opOpAssign(string op, U)(Vector2!U vector) {
mixin ("x" ~ op ~ "= vector.x;");
mixin ("y" ~ op ~ "= vector.y;");
}
}
void main() {
auto fVec = Vector2!float(1.5, 1.5);
auto dVec = Vector2!double(1.5, 1.5);
// Benchmark: Same as A.
fVec += dVec;
dVec -= fVec;
}
In my benchmarks (DMD, Win7), A is ~50ms faster than B. Any reason why this is? If A is faster I would like to use it, but I can't get Vector2!double to implicitly cast to a Vector2!float no matter what I try. Any idea on how I can implicitly cast these types? Or is there some argument to why I shouldn't implicitly cast them?
I'm setting up GDC and LDC to do this benchmark with those compilers, but does anyone know offhand if this is a DMD only optimization issue?