Home Web Front-end JS Tutorial Two sets of performance test data for eval_javascript skills

Two sets of performance test data for eval_javascript skills

May 16, 2016 pm 05:50 PM
eval Performance Testing

A Weibo post by @老赵 "Is the code generated by eval really inefficient? http://t.cn/zWTUBEo Contains personal attacks, please don't enter if you don't like it."
triggered the recent heated discussion about eval During the discussion, the leader @Franky and Hui Da @otakustay also gave wonderful data analysis.
I happened to have done a similar test before, so I followed suit and joined in the fun, providing two sets of data for your reference.

Update 1: Thanks to @otakustay’s guidance, in order to eliminate the impact of the eval('') call itself on the results, a new set of data A3 and B3 has been added. And retest all old data.
Update 2: Thanks to Mo Da @貘吃荍香 for the powerful Paizhuan, added 1). Test data after eval coverage of A4, B4; A5, B5; 2). A6, B6 eval aliases; 3). A7,B7 eval.call.

Test environment:
a. Machine: Intel(R) Corei7-2720 2.2Ghz (4 cores 8 threads), memory 8Gb
b. OS: Windows 7 Enterprise SP1 64-bit
c. Browser:
b.1 Google Chrome 21.0.1180.79 m
b.2 Firefox 14.0.1
b.3 IE9.0.8112.16421
d. Test method
d .1 Each use case is tested 5 times, and the minimum time is taken.
d.2 Firebug or Chrome Console was not turned on during the test. Turning on these tools will double the time, making it difficult to get the results of this use case within the effective time

Use Case A1:
We inline Call empty eval("") in the function

Copy code The code is as follows:

!function () {
var a = 1,
b = 2,
c = true;
function func() {
var d = 2;
e = !c;
eval("");
}
for (var i = 0; i < 2999999; i ) {
func(i, i 1, i 2);
}
}();

Use case A2:
Comment out eval("") in the inline function
Copy code The code is as follows:

!function() {
var a = 1,
b = 2,
c = true;
function func() {
var d = 2;
e = !c;
//eval("");
}
for (var i = 0; i < 2999999 ; i ) {
func(i, i 1, i 2);
}
}();

Use case A3:
excludes eval("" ) The impact of the call itself, we call eval("") in the outer function
Copy the code The code is as follows:

!function() {
var a = 1,
b = 2,
c = true;
function func() {
var d = 2;
e = !c;
}
for (var i = 0; i < 2999999; i ) {
eval("");
func(i, i 1, i 2 ; >
Copy code

The code is as follows:


function eval(){}
!function() { var a = 1, b = 2, c = true; function func() { var d = 2; e = !c;
eval("");
}
for (var i = 0; i < 2999999; i ) {
func(i, i 1, i 2);
}
}();


Use case A5:

It is also a function call, not eval and another empty function f




Copy code

The code is as follows:


function f(){}
!function() { var a = 1, b = 2, c = true; function func() { var d = 2; e = !c;
f("");
}
for (var i = 0; i < 2999999; i ) {
func(i, i 1, i 2);
}
}();


Use Case A6:
Assign eval to another variable f, and then call f




Copy the code

The code is as follows:


var f = eval;
!function() { var a = 1, b = 2, c = true; function func() { var d = 2; e = ! c;
f("");
}
for (var i = 0; i < 2999999; i ) {
func(i, i 1, i 2);
}
}();


Use Case A7:

Use eval.call to call




Copy Code

The code is as follows:


!function() {
var a = 1, b = 2, c = true; function func() { var d = 2; e = !c; eval.call(null, '');
}
for (var i = 0; i < 2999999; i ) {
func(i, i 1, i 2);
}
}();


A组测试结果: 

A1 A2 A3 A4 A5 A6 A7 A1 : A2 A1 : A3 A1 : A4 A4 : A5
Chrome 1612ms 8ms 1244ms 897ms 7ms 718ms 680ms 201.5 1.3 1.8 128.1
Firefox 2468ms 69ms 732ms 2928ms 134ms 5033ms 4984ms 35.8 3.4 0.8 21.9
IE 1207ms 23ms 233ms 1147ms 37ms 148ms 224ms 52.5 5.2 1.0 31.0
用例B1:
复制代码 代码如下:

for (var i = 0; i < 2999999; i++) {
!function() {
var a = 1,
b = 2,
c = true;
!function () {
var d = 2;
e = !c;
eval("");
}();
}();
}

用例B2:
复制代码 代码如下:

for (var i = 0; i < 2999999; i++) {
!function() {
var a = 1,
b = 2,
c = true;
!function () {
var d = 2;
e = !c;
//eval("");
}();
}();
}

用例B3:
复制代码 代码如下:

for (var i = 0; i < 2999999; i++) {
!function() {
var a = 1,
b = 2,
c = true;
!function () {
var d = 2;
e = !c;
}();
}();
eval("");
}

用例B4:
复制代码 代码如下:

var eval = function(){}
for (var i = 0; i < 2999999; i++) {
!function() {
var a = 1,
b = 2,
c = true;
!function () {
var d = 2;
e = !c;
eval("");
}();
}();
}

用例B5:
复制代码 代码如下:

var f = function(){}
for (var i = 0; i < 2999999; i++) {
!function() {
var a = 1,
b = 2,
c = true;
!function () {
var d = 2;
e = !c;
f("");
}();
}();
}

用例B6:
复制代码 代码如下:

var f = eval;
for (var i = 0; i < 2999999; i++) {
!function() {
var a = 1,
b = 2,
c = true;
!function () {
var d = 2;
e = !c;
f("");
}();
}();
}

用例B7:
复制代码 代码如下:

for (var i = 0; i < 2999999; i++) {
!function() {
var a = 1,
b = 2,
c = true;
!function () {
var d = 2;
e = !c;
eval.call(null, '');
}();
}();
}

B组测试结果:
B1 B2 B3 B4 B5 B6 B7 B1 : B3 B1 : B2 B1 : B4 B4 : B5
Chrome 1569ms 134ms 1093ms 1022ms 173ms 830ms 916ms 11.7 1.4 1.5 5.9
Firefox 5334ms 1017ms 5503ms 5280ms 1171ms 6797ms 6883ms 5.2 1.0 1.0 4.5
IE 3933ms 560ms 680ms 4118ms 583ms 745ms 854ms 7.0 5.8 1.0 111.3

Conclusion ( is limited to CASE in the text):

1. Repeated calls to eval itself are very time-consuming, even empty eval("");

2. eval has an impact on the execution efficiency of inline functions, which varies depending on the specific environment and code;

3. We can see that no matter which browser, whether it is group A or group B, 2 and 5 have better speed. It shows that no matter how the eval of the inline function in the example is called (even if eval is overwritten by an empty function), it will still have a great impact on the operating efficiency. The inference is (black box inference, non-authoritative, probably just conjecture) that as long as eval is found in the inline function, even if the eval is an overridden empty function, all externally defined variables and other contents will be initialized in Scope Variables. to the current Scope. Similarly, eval will have a greater impact on the optimization function of the JS engine at runtime for inline functions and reduce execution efficiency.

4. To make a digression, although IE10 is not used, but IE9 is used, the performance of eval processing is very good. IE has always been criticized by developers, but its rapid growth is worthy of recognition. This example is a good proof.

A more detailed analysis of the reasons. The descriptions in the following articles are very detailed and will not be repeated again. Welcome:) Especially Mo Da...

@老赵’s 《Is the code generated by eval really inefficient? 》
@Franky’s "Popular Science on Eval"
@otakustay’s "A Brief Talk on the Influence of Eval"

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

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)

How to use Docker for performance testing and stress testing of containers How to use Docker for performance testing and stress testing of containers Nov 07, 2023 pm 04:53 PM

How to use Docker for container performance testing and stress testing requires specific code examples. Introduction The rise of container virtualization technology has made the deployment and operation of applications more flexible and efficient. One of the most popular tools is Docker. As a lightweight containerization platform, Docker provides a convenient way to package, distribute and run applications, but how to test and evaluate the performance of containers, especially stress testing under high load conditions, It is a question that many people are concerned about. This article will introduce

What does eval mean in python? What does eval mean in python? May 22, 2019 pm 03:18 PM

eval means "evaluation" and is a built-in function in Python that is used to execute a string expression and return the calculation result of the expression; that is, when assigning a variable, the representation on the right side of the equal sign is written in the format of a string, The return value is the result of this expression. Syntax "eval(expression[, globals[, locals]])".

The difference between performance testing and unit testing in Go language The difference between performance testing and unit testing in Go language May 08, 2024 pm 03:09 PM

Performance tests evaluate an application's performance under different loads, while unit tests verify the correctness of a single unit of code. Performance testing focuses on measuring response time and throughput, while unit testing focuses on function output and code coverage. Performance tests simulate real-world environments with high load and concurrency, while unit tests run under low load and serial conditions. The goal of performance testing is to identify performance bottlenecks and optimize the application, while the goal of unit testing is to ensure code correctness and robustness.

Nginx load balancing performance testing and tuning practice Nginx load balancing performance testing and tuning practice Oct 15, 2023 pm 12:15 PM

Overview of performance testing and tuning practices of Nginx load balancing: As a high-performance reverse proxy server, Nginx is often used in load balancing application scenarios. This article will introduce how to perform performance testing of Nginx load balancing and improve its performance through tuning practices. Performance test preparation: Before performing the performance test, we need to prepare one or more servers with good performance, install Nginx, and configure reverse proxy and load balancing. Test tool selection: In order to simulate real load conditions, we can use common

How to implement MySQL underlying optimization: Advanced use and analysis of performance testing and tuning tools How to implement MySQL underlying optimization: Advanced use and analysis of performance testing and tuning tools Nov 08, 2023 pm 03:27 PM

How to achieve underlying optimization of MySQL: Advanced use and analysis of performance testing and tuning tools Introduction MySQL is a commonly used relational database management system that is widely used in various Web applications and large software systems. In order to ensure the operating efficiency and performance of the system, we need to perform underlying optimization of MySQL. This article describes how to use performance testing and tuning tools for advanced usage and analysis, and provides specific code examples. 1. Selection and use of performance testing tools Performance testing tools are important for evaluating system performance and bottlenecks

Red Magic 9 Pro in-depth performance test: it ends the performance competition early Red Magic 9 Pro in-depth performance test: it ends the performance competition early Feb 03, 2024 pm 04:35 PM

It has to be said that in this increasingly homogenized mobile phone market, the Red Magic is indeed a quite unique and unusual existence. While the entire gaming phone category is struggling due to the improved energy consumption ratio of Qualcomm Snapdragon, the Red Devils have always adhered to their own set of product concepts, with a straight body and active heat dissipation, all they want is a performance release. . When the entire industry's flagship mobile phones are becoming more and more slumped due to the constant accumulation of imaging modules, the Red Devils actually gives you a flat rear camera design. This may even be the first trend in the entire mobile phone industry in the past four or five years. The only product on the market. (Source: Red Devils) The most important thing is that, as the master of netizens’ opinions, Red Devils has really succeeded in attracting a group of fans. When the flagship sub-brands of several major manufacturers sell for around 3,000 yuan, this

How to disable eval in php under win How to disable eval in php under win Oct 31, 2022 am 09:33 AM

How to disable eval in PHP under win: 1. Download "PHP_diseval_extension"; 2. Find the PHP currently used by the server; 3. Open the PHP configuration file; 4. Add the "extension=diseval.so" code; 5. Restart the service.

Vue development advice: How to perform performance testing and performance tuning Vue development advice: How to perform performance testing and performance tuning Nov 22, 2023 pm 12:01 PM

In Vue development, performance is a very important issue. If we can develop applications with excellent performance, the user experience and market competitiveness will be greatly improved. To achieve this, we need to perform performance testing and performance tuning. This article will introduce how to perform performance testing and performance tuning. 1. Performance testing Performance testing is the key to improving application performance. It can detect the factors causing performance problems in the application and then optimize them. To conduct performance testing, we can adopt the following methods: 1. Benchmark test Benchmark test is

See all articles