gpt4 book ai didi

c++ - 在未使用 constexpr 函数的返回值的情况下,g++ 编译器是否将其视为常规函数?

转载 作者:行者123 更新时间:2023-12-01 21:24:03 24 4
gpt4 key购买 nike

我尝试查看 g++ 编译的 cpp constexpr 函数的编译代码。我看到,如果函数不返回任何内容,则编译器会将其视为常规函数,但如果它返回一个值并且我将该值分配给 constexpr 变量,则只有在编译时才会计算它。

代码示例:

constexpr int func(int x){
return x!=0 ? 1: throw "Error";
}

int main(){
func(2);
}

和编译器输出:

push    rbp
mov rbp, rsp
mov edi, 2
call func(int)
mov eax, 0
pop rbp
ret

如您所见,它在运行时调用 func。相反,如果我将函数结果赋值给 constexpr:

constexpr int func(int x){
return x!=0 ? 1: throw "Error";
}

int main(){
constexpr int x = func(2);
}

和编译器输出:

main:
push rbp
mov rbp, rsp
mov DWORD PTR [rbp-4], 1
mov eax, 0
pop rbp
ret

有人可以解释一下为什么编译器需要这个赋值来在编译时而不是运行时评估函数吗?

最佳答案

编译器可以决定是否在编译时或运行时计算 constexpr 函数。仅当函数在需要编译时常量表达式的上下文中使用(例如使用结果初始化 constexpr 变量)时,编译器必须在编译时计算该函数。

在您的第一个示例中,情况并非如此,并且由于您可能在 Debug模式下编译,因此该函数会像其他函数一样在运行时被调用。

引用自 cppreference (我突出显示):

The constexpr specifier declares that it is possible to evaluate the value of the function or variable at compile time. Such variables and functions can then be used where only compile time constant expressions are allowed (provided that appropriate function arguments are given).

如果您使用例如编译第一个示例-O3 您将看到函数调用已被优化掉。

关于c++ - 在未使用 constexpr 函数的返回值的情况下,g++ 编译器是否将其视为常规函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59537336/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com