オペコード
低レベル操作
「オペコード」はCoddyKit上の無料Web3 & DApp Development Fundamentalsレッスンです。 これはレッスン3/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはWeb3 & DApp Development Fundamentals学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Web3 & DApp Development Fundamentalsコースには全4レッスンが含まれています。
このレッスンの一部はまだ翻訳されておらず、英語で表示されています。
The EVM Instruction Set
At its lowest level, the EVM runs a sequence of opcodes — single-byte instructions that each do one thing.
Understanding opcodes reveals what your Solidity actually does and where gas goes.
What Is an Opcode?
An opcode (operation code) is a one-byte command the EVM executes. Examples include ADD, MUL, PUSH1, SLOAD, and JUMP.
Each opcode has a name, a numeric value, and a fixed gas cost.
0x01 = ADD
0x02 = MUL
0x60 = PUSH1
0x54 = SLOAD
0x56 = JUMPStack Manipulation Opcodes
Opcodes like PUSH, POP, DUP, and SWAP manage the stack.
PUSH adds a value, POP removes one, DUP duplicates an item, and SWAP exchanges two stack positions.
PUSH1 0x0A // [10]
DUP1 // [10, 10]
PUSH1 0x14 // [10, 10, 20]
SWAP1 // [10, 20, 10]Arithmetic Opcodes
Arithmetic opcodes pop operands and push results: ADD, SUB, MUL, DIV, and MOD.
All math is done on 256-bit unsigned integers (with signed variants available).
PUSH1 0x09 // [9]
PUSH1 0x04 // [9, 4]
SUB // [5] (9 - 4)Comparison and Logic
Opcodes like LT, GT, EQ, AND, OR, and ISZERO handle comparisons and bitwise logic.
They push 1 for true and 0 for false, which control flow then uses.
Memory and Storage Opcodes
Data movement opcodes touch the costly locations:
MLOAD/MSTORE— read/write memorySLOAD/SSTORE— read/write storage
SSTORE is one of the most expensive opcodes.
Control Flow Opcodes
JUMP and JUMPI (conditional jump) move execution to a JUMPDEST marker.
This is how the EVM implements loops and if-statements at the bytecode level.
PUSH1 0x10 // jump target
JUMPI // jump if top of stack != 0
// ... at offset 0x10:
JUMPDEST // valid landing spotEnvironment Opcodes
Opcodes like CALLER, CALLVALUE, ADDRESS, and TIMESTAMP expose context.
For example, CALLER pushes the address that initiated the call (this is what msg.sender compiles to).
Gas Cost per Opcode
Every opcode has a defined gas cost. Cheap ones like ADD cost 3 gas; expensive ones like SSTORE cost up to 20000.
The total gas of a transaction is the sum of all opcodes it executes.
ADD -> 3 gas
MLOAD -> 3 gas
SLOAD -> 2100 gas
SSTORE -> up to 20000 gasFrom Solidity to Opcodes
The Solidity compiler turns each high-level statement into many opcodes.
A single uint x = a + b; becomes PUSH, PUSH, ADD, and an MSTORE or SSTORE depending on where x lives.
Putting It Together
Opcodes are the EVM's atomic instructions for stack, arithmetic, logic, memory, storage, control flow, and environment.
Each carries a gas cost, and your Solidity ultimately becomes a stream of them.
Quick Check
Test your opcode knowledge.
Recap: Opcodes
You learned that:
- Opcodes are one-byte EVM instructions
- They cover the stack, arithmetic, logic, memory, storage, control flow, and environment
SSTOREis among the most expensive- Solidity compiles into many opcodes
Next: accounts and state.
よくある質問
「オペコード」レッスンは無料ですか?
はい。「オペコード」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Web3 & DApp Development Fundamentalsコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Web3 & DApp Development Fundamentalsコースには全4レッスンが含まれています。
「オペコード」で何を学びますか?
低レベル操作 ブラウザで直接実行するハンズオンコードでWeb3 & DApp Development Fundamentalsを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。
Web3 & DApp Development Fundamentalsを始めるのに経験は必要ですか?
事前経験は必要ありません。CoddyKitのWeb3 & DApp Development Fundamentalsは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン3/4です。
「オペコード」レッスンにはどのくらい時間がかかりますか?
ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。
このWeb3 & DApp Development Fundamentalsレッスンでコードを書いて実行できますか?
はい。すべてのWeb3 & DApp Development Fundamentalsレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。