Skip to Content
詳解 Rustアトミック操作とロック ―並行処理実装のための低レイヤプログラミング
book

詳解 Rustアトミック操作とロック ―並行処理実装のための低レイヤプログラミング

by Mara Bos, 中田 秀基
November 2023
Intermediate to advanced
236 pages
3h 24m
Japanese
O'Reilly Japan, Inc.
Content preview from 詳解 Rustアトミック操作とロック ―並行処理実装のための低レイヤプログラミング

3章メモリオーダリング

「2章 アトミック操作」で、メモリオーダリングの概念について簡単に説明した。本章では、このトピックについて解説する。利用可能なメモリオーダリングの選択肢について説明し、最も重要な、それぞれを使うべき場合を詳述する。

3.1 リオーダと最適化

プロセッサやコンパイラは、プログラムを可能な限り速く実行するためにあらゆるトリックを使う。例えば、プログラム中の2つの命令が互いに影響せず、順序を入れ替えたほうが速く実行できるなら、プロセッサはそれらをアウトオブオーダ†1で実行するかもしれない。つまり、ある命令がメインメモリから何らかのデータを読み込むために短時間ブロックするなら、プログラムの挙動に影響しない限り、後続する命令のうちいくつかが、その命令よりも先に実行され先に終了するかもしれない。同様にコンパイラも、そうした方がプログラムの実行が早くなると信じる理由があれば、プログラムの一部をリオーダ(並び替え)し書き換えるかもれしれない。ただし、プログラムの挙動に影響しない場合に限られる。

[†1] 訳注:アウトオブオーダ(out-of-order)とは、命令列を並んだ通りの順番でなく、追い越しを許して実行すること。

例として次の関数を見てみよう。

fn f(a: &mut i32, b: &mut i32) {
    *a += 1;
    *b += 1;
    *a += 1;
}

コンパイラはほぼ間違いなく、これらの操作の順番は結果に影響しないことを理解する。これら3つの加算操作の間で、*a*bの値に依存するようなことは何も起こらないからだ(オーバフローチェックが無効になっているとする)。したがって、コンパイラは2番目と3番目の操作の順番を入れ替え、さらに最初の2つの操作を1つの加算に統合するかもしれない。 ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

データ保護完全ガイド ―あらゆるデータの保全と回復を可能にする

データ保護完全ガイド ―あらゆるデータの保全と回復を可能にする

W. Curtis Preston, 佐野 泰之, 池田 祥孝
作って動かすALife ―実装を通した人工生命モデル理論入門

作って動かすALife ―実装を通した人工生命モデル理論入門

岡 瑞起, 池上 高志, ドミニク チェン, 青木 竜太, 丸山 典宏

Publisher Resources

ISBN: 9784814400515Publisher Website