Table of Contents
JavaScript running trilogy
When does JS pre-compilation happen
JS pre-compilation example
Home Web Front-end JS Tutorial Analysis of JavaScript precompilation principle

Analysis of JavaScript precompilation principle

Feb 28, 2017 pm 02:28 PM
javascript

Today I spent a lot of time reviewing knowledge about scope, precompilation, etc.

I read a lot of blog posts and opened books I have read before (it seems that many books do not talk about precompilation) )
I found that I thought I learned very clearly at first, but in fact there are still some misunderstandings
(Many blog posts are misleading)
I will sort out the messy ideas tonight
Let’s sort out the pre-compiled ones first Knowledge, I will explain the scope in detail when I have time in the future


Everyone must understand that this pre-compilation is different from traditional compilation (you can understand that js pre-compilation is a special compilation process)
JavaScript is an interpreted language.
Since it is an interpreted language, it means compiling one line and executing one line.
Traditional compilation will go through many steps, such as word segmentation, parsing, and code generation.
I will give you more information when I have time in the future. Everyone’s popular science
Let me share with you what I understand about JS pre-compilation

JavaScript running trilogy

What does the script execution js engine do?

  1. Syntax analysis

  2. Pre-compilation

  3. Explanation and execution

There are two steps before executing the code
The syntax analysis is very simple, that is, the engine checks whether your code has any low-level syntax errors
Explanation and execution, as the name suggests, is to execute the code
Preliminary The simple understanding of compilation is to open up some space in the memory and store some variables and functions
Understanding pre-compilation is also helpful for everyone to understand the scope

When does JS pre-compilation happen

Me The original misunderstanding also occurred here
When does precompilation occur?
I hope you will not let the above running process cause you to misunderstand.
Misunderstanding that precompilation only occurs before the code block in the script is executed
This is not wrong
Pre-compilation does indeed occur before execution in the script code
But most of it occurs before function execution

JS pre-compilation example

Before giving an example, let’s think about these concepts:

  • Variable declaration var…

  • Function declaration function…

<script>
    var a = 1;// 变量声明
    function b(y){//函数声明
        var x = 1;
        console.log(&#39;so easy&#39;);
    };    var c = function(){//是变量声明而不是函数声明!!
        //...
    }
    b(100);</script><script>
    var d = 0;</script>
Copy after login

Let’s see what the engine does to this code

  • The GO global object (Global Object) is created when the page is generated. (That is, the window object that everyone is familiar with)

  • The first script file is loaded

  • After the script is loaded, analyze whether the syntax is legal

  • Start pre-compilation

    • #Find the variable declaration as a GO attribute, and assign the value to undefined

    • Find the function declaration, as a GO attribute, the value is assigned to the function body

//伪代码GO/window = {    //页面加载创建GO同时,创建了document、navigator、screen等等属性,此处省略
    a: undefined,
    c: undefined,
    b: function(y){
        var x = 1;
        console.log(&#39;so easy&#39;);
    }
}
Copy after login
  • Explain the execution code (until function b is executed)

//伪代码
GO/window = {
    //变量随着执行流得到初始化
    a: 1,
    c: function(){
        //...
    },
    b: function(y){
        var x = 1;
        console.log(&#39;so easy&#39;);
    }
}
Copy after login
  • Before executing function b, pre-compilation occurs

    • Create AO active object (Active Object)

    • Search for formal parameters and variable declarations, assign the value to undefined

    • Assign the actual parameter value to the formal parameter

    • Find the function declaration and assign the value to the function body

//伪代码AO = {    //创建AO同时,创建了arguments等等属性,此处省略
    y: 100,
    x: undefined}
Copy after login
  • Explain the code in the execution function

  • ## After the first script file is executed, the second script file is loaded

  • After the second script file is loaded, syntax analysis is performed

  • After the syntax analysis is completed, start pre-compilation


    • Repeat the initial pre-compilation step...

Everyone It should be noted that


Variable declaration and function declaration occur during the pre-compilation phase, there is no initialization behavior (assignment), and anonymous functions do not participate in pre-compilation
Variables will only be made during the interpretation and execution phase Initialization Well~finally wrap up

Summary

Pre-compilation (before function execution)※

1. Create AO object (Active Object)
2 . Find function formal parameters and variable declarations within the function. The formal parameter names and variable names are used as attributes of the AO object, and the value is undefined
3. The actual parameters and formal parameters are unified, and the actual parameter values ​​are assigned to the formal parameters
4. Find the function declaration, the function name is used as an attribute of the AO object, and the value is the function reference

Precompiled (before the script code block script is executed)

1. Find the global variable declaration (including implicit global variable declaration, omitted var declaration), the variable name is used as an attribute of the global object, and the value is undefined
3. Find the function declaration, the function name is used as an attribute of the global object, and the value is a function reference


Understanding precompilation Improving behavior, this pointing, scope and performance issues are of great help

I will also summarize these issues in the future

The above is the content of the analysis of JavaScript precompilation principles. For more related content, please pay attention to PHP Chinese website (www.php.cn)!



Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1663
14
PHP Tutorial
1266
29
C# Tutorial
1237
24
How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to use JavaScript and WebSocket to implement a real-time online ordering system How to use JavaScript and WebSocket to implement a real-time online ordering system Dec 17, 2023 pm 12:09 PM

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

How to implement an online reservation system using WebSocket and JavaScript How to implement an online reservation system using WebSocket and JavaScript Dec 17, 2023 am 09:39 AM

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

JavaScript and WebSocket: Building an efficient real-time weather forecasting system JavaScript and WebSocket: Building an efficient real-time weather forecasting system Dec 17, 2023 pm 05:13 PM

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

Simple JavaScript Tutorial: How to Get HTTP Status Code Simple JavaScript Tutorial: How to Get HTTP Status Code Jan 05, 2024 pm 06:08 PM

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

How to use insertBefore in javascript How to use insertBefore in javascript Nov 24, 2023 am 11:56 AM

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

JavaScript and WebSocket: Building an efficient real-time image processing system JavaScript and WebSocket: Building an efficient real-time image processing system Dec 17, 2023 am 08:41 AM

JavaScript is a programming language widely used in web development, while WebSocket is a network protocol used for real-time communication. Combining the powerful functions of the two, we can create an efficient real-time image processing system. This article will introduce how to implement this system using JavaScript and WebSocket, and provide specific code examples. First, we need to clarify the requirements and goals of the real-time image processing system. Suppose we have a camera device that can collect real-time image data

See all articles