28,248 reputation
1789212
bio website
location Maryland
age 28
visits member for 4 years, 8 months
seen yesterday
stats profile views 1,922

May
18
comment Why don't GCC and Clang use cvtss2sd [memory]?
The more detailed explanation in your edit is terrific! My only question is, why doesn't the CPU's logic track dependencies on the low quadword independently of dependencies on the upper quadword and understand that xxxsd instructions only read from/write to the low quadword of the register?
May
17
revised Why don't GCC and Clang use cvtss2sd [memory]?
added 299 characters in body
May
17
accepted Why don't GCC and Clang use cvtss2sd [memory]?
May
16
comment Why don't GCC and Clang use cvtss2sd [memory]?
Interesting, but leads to two questions: 1. Why aren't the high bits zeroed? Presumably if you're using this instruction your intent is to write non-vectorized code. 2. GCC and Clang seem to still do this even when the high bits of the xmm register aren't used, i.e. when only using non-vectorized instructions subsequently. Why is this?
May
16
asked Why don't GCC and Clang use cvtss2sd [memory]?
May
16
revised Inheritance: Evaluating In Derived Class's Scope?
added 150 characters in body
May
15
comment Inheritance: Evaluating In Derived Class's Scope?
RTTI would solve the problem for the specific case of wanting the size of the class, but it's not a general solution.
May
15
comment Inheritance: Evaluating In Derived Class's Scope?
I was aware of template mixins in D. It's a better solution than C++ has to offer, but it still requires something explicit to be done in the derived classes, which can be annoying even if it's a one-liner.
May
15
revised Inheritance: Evaluating In Derived Class's Scope?
deleted 32 characters in body
May
15
comment Inheritance: Evaluating In Derived Class's Scope?
@Adam: Right. Edited.
May
15
comment Inheritance: Evaluating In Derived Class's Scope?
printSize() will always print the size of the base class because it's compiled once in the scope of Base. I want it to print the size of the derived class if it's called on an instance of Derived.
May
15
asked Inheritance: Evaluating In Derived Class's Scope?
May
14
awarded  Nice Answer
May
9
comment C++: Devirtualize Leaf Classes
My point is that in any reasonable implementation, final will serve a devirtualization purpose even if technically the standard doesn't require it.
May
9
comment C++: Devirtualize Leaf Classes
BTW, I just confirmed by reading the disassembly that Clang does de-virtualize calls when final is used.
May
9
accepted C++: Devirtualize Leaf Classes
May
9
comment C++: Devirtualize Leaf Classes
Of course the standard isn't going to say anything about de-virtualization since vtables aren't even part of the standard, but any decent optimizer should do it anyhow.
May
9
asked C++: Devirtualize Leaf Classes
Apr
27
awarded  Nice Question
Apr
17
awarded  Popular Question