Skip to content

Commit c6babab

Browse files
taga3sfujii
authored andcommitted
Fixed missing parenthesis in the 'offlineasm' reference
Minor typo fix to add missing parenthesis after 'offlineasm/'. ``` docs / Deep Dive / JSC / JavaScriptCore.md ```
1 parent 54c7b11 commit c6babab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/Deep Dive/JSC/JavaScriptCore.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Parser carries out the ​syntactic analysis, i.e. consuming the tokens from the
2222

2323
#### LLInt
2424

25-
LLInt, short for Low Level Interpreter, executes the bytecodes produced by the parser. The bulk of the Low Level Interpreter is in ​llint/. The LLInt is written in a portable assembly called offlineasm (see ​offlineasm/, which can compile to x86, ARMv7, and C. The LLInt is intended to have zero start-up cost besides lexing and parsing, while obeying the calling, stack, and register conventions used by the just-in-time compilers. For example, calling a LLInt function works "as if" the function was compiled to native code, except that the machine code entrypoint is actually a shared LLInt prologue. The LLInt includes optimizations such as inline caching to ensure fast property access.
25+
LLInt, short for Low Level Interpreter, executes the bytecodes produced by the parser. The bulk of the Low Level Interpreter is in ​llint/. The LLInt is written in a portable assembly called offlineasm (see ​offlineasm/), which can compile to x86, ARMv7, and C. The LLInt is intended to have zero start-up cost besides lexing and parsing, while obeying the calling, stack, and register conventions used by the just-in-time compilers. For example, calling a LLInt function works "as if" the function was compiled to native code, except that the machine code entrypoint is actually a shared LLInt prologue. The LLInt includes optimizations such as inline caching to ensure fast property access.
2626

2727
#### Baseline
2828

0 commit comments

Comments
 (0)