Skip to content

Commit

Permalink
📖 DOC: Update V8 performance metrics documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaban-Eissa committed Jun 13, 2024
1 parent d450042 commit 11e03e7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion v8-performance-metrics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,6 @@ At this step, the V8 engine takes the AST and scopes and outputs bytecodes.


#### Understanding V8’s Bytecode
--------------------------------

How Ignition Generates Bytecode - Bytecodes are considered small building blocks that can be composed together to build a JavaScript functionality. They abstract the low-level details of machine code. V8 has several hundred bytecodes. There are bytecodes for operators like `Add` or `TypeOf`, or for property loads like `LdaNamedProperty`. V8 also has some pretty specific bytecodes like `CreateObjectLiteral` or `SuspendGenerator`. The header file [bytecodes.h](https://github.com/v8/v8/blob/master/src/interpreter/bytecodes.h) defines the complete list of V8’s bytecodes.

Expand Down

0 comments on commit 11e03e7

Please sign in to comment.