现在,我知道内联不能保证,但是......
鉴于以下情况:
struct Base {
virtual int f() = 0;
};
struct Derived : public Base {
virtual int f() final override {
return 42;
}
};
extern Base* b;
我们有:
int main() {
return static_cast<Derived*>(b)->f();
}
编译为:
main:
movl $42, %eax
ret
然而...
int main() {
return (static_cast<Derived*>(b)->*(&Derived::f))();
}
编译为:
main:
pushl %ebp
movl %esp, %ebp
andl $-16, %esp
subl $16, %esp
movl b, %eax
movl (%eax), %edx
movl %eax, (%esp)
call *(%edx)
leave
ret
这真是令人难过。
为什么对 PMF 的调用没有被内联?PMF 是一个常数表达式!