[C++] std::optional與RVO:最高效的std::optional實踐與探究

来源:https://www.cnblogs.com/Nikola-K/archive/2023/09/04/17678203.html
-Advertisement-
Play Games

## 返回值優化RVO 在cppreference中,是這麼介紹RVO的 `In a return statement, when the operand is the name of a non-volatile object with automatic storage duration, wh ...


返回值優化RVO

在cppreference中,是這麼介紹RVO的

In a return statement, when the operand is the name of a non-volatile object with automatic storage duration, which isn't a function parameter or a catch clause parameter, and which is of the same class type (ignoring cv-qualification) as the function return type. This variant of copy elision is known as NRVO, "named return value optimization."

即在返回函數內部臨時變數(非函數參數,非catch參數)時,如果該參數的的類型和函數返回值類型相同,編譯器就被允許去直接構造返回值(即使copy/move構造函數具有副作用)。

std::optional

std::optional是在C++17引入的,常用於有可能構造失敗的函數,作為函數的返回值。

cppreference中,std::optional的例子如下:

#include <iostream>
#include <optional>
#include <string>
 
// optional can be used as the return type of a factory that may fail
std::optional<std::string> create(bool b)
{
    if (b)
        return "Godzilla";
    return {};
}
 
// std::nullopt can be used to create any (empty) std::optional
auto create2(bool b)
{
    return b ? std::optional<std::string>{"Godzilla"} : std::nullopt;
}
 
int main()
{
    std::cout << "create(false) returned "
              << create(false).value_or("empty") << '\n';
 
    // optional-returning factory functions are usable as conditions of while and if
    if (auto str = create2(true))
        std::cout << "create2(true) returned " << *str << '\n';
}

一個尷尬的情況是這個例子並沒有介紹在函數內部構造一個左值變數然後返回的情況,於是乎網上就出現了很多種return optional的寫法。本文就想探討下究竟哪一種寫法才是最高效的。

實驗

參數

編譯器:x86-64 gcc 13.2

編譯參數 -O1 -std=c++17

基於compiler explorer

準備工作

假設我們原始的函數具有以下形式

A always_success_0(int n) {
    A temp(someFn(n));
    return temp;
}

如果單純作為可能fail的函數的一層包裝,一種很自然的想法是只把函數的返回值改為std::optional,而函數體不變,即

optional<A> introduce_option_0(int n) {
    A temp(someFn(n));
    return temp;
}

很明顯這會破壞NRVO的條件,但究竟相差多少呢?有沒有輓回辦法?

我找了網上目前常見的寫法,我們可能有以下變體

optional<A> introduce_option_0(int n) {
    A temp(someFn(n));
    return temp;
}

optional<A> introduce_option_1(int n) {
    A temp(someFn(n));
    return std::move(temp);
}

optional<A> introduce_option_2(int n) {
    A temp(someFn(n));
    return {temp};
}

optional<A> introduce_option_3(int n) {
    A temp(someFn(n));
    return {std::move(temp)};
}

為了探究NRVO的條件和優化程度,對原本的函數也使用這4種變體

A always_success_0(int n) {
    A temp(someFn(n));
    return temp;
}

A always_success_1(int n) {
    A temp(someFn(n));
    return std::move(temp);
}

A always_success_2(int n) {
    A temp(someFn(n));
    return {temp};
}

A always_success_3(int n) {
    A temp(someFn(n));
    return {std::move(temp)};
}

同時讓我們定義struct A

struct A{
    int ctx;
    A(int x) noexcept {
        ctx=x+1;
        printf("default construct");
        }
    A(const A&) noexcept {
        printf("copy construct");
    }
    A(A&& ano) noexcept {
        printf("move construct");
    }
    ~A() noexcept {
        printf("destruct");
    }
};

tips:

使用noexcept使編譯器允許進一步優化,否則彙編會增加一段異常處理,如下圖所示
無noexcept彙編代碼

有noexcept彙編代碼

同時為了方便定位,防止編譯器進一步優化,我們將someFn寫成一個具有副作用的函數

int someFn(int n) {
    int x;
    scanf("%d",&x);
    return x+n;
}

現在我們有了進行編譯的所有代碼:

#include <cstdio>
#include <optional>
using std::optional;

int someFn(int n) {
    int x;
    scanf("%d",&x);
    return x+n;
}

struct A{
    int ctx;
    A(int x) noexcept {
        ctx=x+1;
        printf("default construct");
        }
    A(const A&) noexcept {
        printf("copy construct");
    }
    A(A&& ano) noexcept {
        printf("move construct");
    }
    ~A() noexcept {
        printf("destruct");
    }
    A& operator=(const A&) {
        printf("copy op");
    }
    A& operator=(A&&) {
        printf("move op");
    }
};

A always_success_0(int n) {
    A temp(someFn(n));
    return temp;
}

A always_success_1(int n) {
    A temp(someFn(n));
    return std::move(temp);
}

A always_success_2(int n) {
    A temp(someFn(n));
    return {temp};
}

A always_success_3(int n) {
    A temp(someFn(n));
    return {std::move(temp)};
}

optional<A> introduce_option_0(int n) {
    A temp(someFn(n));
    return temp;
}

optional<A> introduce_option_1(int n) {
    A temp(someFn(n));
    return std::move(temp);
}

optional<A> introduce_option_2(int n) {
    A temp(someFn(n));
    return {temp};
}

optional<A> introduce_option_3(int n) {
    A temp(someFn(n));
    return {std::move(temp)};
}

編譯

彙編1

我們可以看到always_success_0函數發生了RVO,只調用了一次構造函數。而always_success_1沒有進行RVO,額外調用了移動構造函數和析構函數,這也是濫用std::move的一個後果。

彙編2

再看到introduce_option_0函數,它與發生移動的always_success的彙編代碼相比,只多了一行設置std::optional::_Has_value布爾值的彙編。

函數 預設構造 拷貝構造 移動構造 析構 設置bool
always_success_0 1
always_success_1 1 1 1
always_success_2 1 1 1
always_success_3 1 1 1
introduce_option_0 1 1 1 1
introduce_option_1 1 1 1 1
introduce_option_2 1 1 1 1
introduce_option_3 1 1 1 1
*modify_reference *2 *1 1

*為UE庫中一些形如以下的函數,

bool modify_reference(int n, A& out) {
    out = someFn(n);
    return true;
}

*算上了函數調用前的接收者的預設構造

*函數內會調用移動賦值=而不是移動構造

Best result

可以觀察到,觸發了RVO的彙編會精簡很多,我們要想方設法去觸發RVO。以下兩種改良都可以觸發RVO

A not_always_success_best(int n, bool &b) {
    A temp(someFn(n));
    b = true;
    return temp;
}

optional<A> optional_best(int n) {
    optional<A> temp(someFn(n));
    return temp;
}

best practice

可以看到這兩種方式的函數體的彙編是一樣的,不一樣的只有參數傳遞時對棧的操作。

總結

std::optional最高效的寫法是觸發RVO的寫法,即:

optional<A> optional_best(int n) {
    optional<A> temp(someFn(n));
    return temp;
}

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • # 開發背景 - 短時間內完成網頁性能統計上傳,考慮到企業內實際環境,很多網頁/系統需要運行在IE 5 相容模式下,開發一個腳本,在不影響原網頁的情況下,收集相應 用戶電腦 打開網頁的性能指標。 # 收集要素 - 進入頁面時間,載入Js時間 - 頁面所有元素載入完成時間 - 因為在原網頁將該腳本放到 ...
  • 需求:在現有已經做好的後臺管理系統添加一個切換主題顏色的功能 分析:該項目用了很多uniapp的組件,css樣式沒有統一,類名也沒有統一 使用混合mixin.scss,並使用vuex 效果圖 功能:按鈕背景顏色、部分樣式、字體圖標、分頁跟隨主題顏色變化也變化 每一個用戶喜歡的主題顏色都不一樣,後端已 ...
  • 在 CSS 中,存在許多數學函數,這些函數能夠通過簡單的計算操作來生成某些屬性值,例如在[現代 CSS 解決方案:CSS 數學函數](https://github.com/chokcoco/iCSS/issues/177)一文中,我們詳細介紹了 + calc():用於計算任意長度、百分比或數值型數據 ...
  • ## 軟體開發原則 | 原則 | 介紹 | | | | | 單一職責原則 | 一個類或模塊應該只負責一項任務或功能 | | 開閉原則 | 軟體實體(類、模塊、函數等)應該對擴展開放,對修改關閉 | | 里氏替換原則 | 子類應該能夠替換其父類並且不會破壞程式的正確性 | | 介面隔離原則 | 客戶端 ...
  • ## 1.1、MVC 概述 - MVC:是一種軟體架構的思想,將軟體按照模型、視圖、控制器來劃分; - M( Model ):模型層,指工程中的 JavaBean ,作用是處理數據; - V( View ):視圖層,指工程中的 html 或 jsp 等頁面,作用是與用戶進行交互、展示數據; - C( ...
  • # 簡介 緩存是程式員們繞不開的話題,像是常用的本地緩存Guava,分散式緩存Redis等,是提供高性能服務的基礎。今天敬姐帶大家一起認識一個更高效的本地緩存——**Caffeine**。 ![img](https://img2023.cnblogs.com/blog/37001/202309/37 ...
  • ## 1、問題描述 - Eclipse導入了一個JavaEE項目 - 在虛擬機環境中新建了一個資料庫 - 資料庫可以使用本地客戶端工具正常連接 - 導入的JavaEE項目修改了數據源配置後無法啟動 - 相同的數據源配置通過在Idea新建的測試項目可以訪問 > 具體報錯如下: ``` java.sql ...
  • ## 1 下班前的寂靜 剛準備下班呢,測試大姐又給我提個`bug`,你看我這就操作了一次,`network`里咋有兩個請求? 我心一驚,”不可能啊!我代碼明明就調用一次後端介面,咋可能兩個請求!“。打開她的截圖一看:多個`options`請求。 我不慌不忙解釋道:”這不用管,是瀏覽器預設發送的一個預 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...