FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ClearScript/ClearScriptBenchmarks/ClearScriptBenchmarks.cs at master · mayuzx/ClearScript · GitHub
mayuzx
/
ClearScript
Public
forked from
ClearFoundry/ClearScript
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
ClearScript
/
ClearScriptBenchmarks
/
ClearScriptBenchmarks.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
97 lines (81 loc) · 2.9 KB
Breadcrumbs
ClearScript
/
ClearScriptBenchmarks
/
ClearScriptBenchmarks.cs
Copy path
File metadata and controls
97 lines (81 loc) · 2.9 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
using
System
;
using
Microsoft
.
ClearScript
.
V8
;
using
Microsoft
.
ClearScript
.
Windows
;
namespace
Microsoft
.
ClearScript
.
Test
{
public
static
class
ClearScriptBenchmarks
{
#if
DEBUG
private
const
string
flavor
=
"Debug"
;
#else
private
const
string
flavor
=
"Release"
;
#endif
public
static
void
Main
(
)
{
Console
.
Clear
(
)
;
Console
.
WriteLine
(
"ClearScript Benchmarks ({0}, {1})
\n
"
,
flavor
,
Environment
.
Is64BitProcess
?
"64-bit"
:
"32-bit"
)
;
while
(
true
)
{
Console
.
WriteLine
(
"1. SunSpider - JScript"
)
;
Console
.
WriteLine
(
"2. SunSpider - V8 (default)"
)
;
Console
.
WriteLine
(
"3. SunSpider - V8 (no GlobalMembers support)"
)
;
Console
.
WriteLine
(
"4. Exit"
)
;
Console
.
WriteLine
(
)
;
var
exit
=
false
;
while
(
true
)
{
Console
.
Write
(
"-> "
)
;
var
input
=
Console
.
ReadLine
(
)
;
int
selection
;
if
(
!
int
.
TryParse
(
input
,
out
selection
)
)
{
Console
.
WriteLine
(
"Invalid selection"
)
;
continue
;
}
var
done
=
false
;
switch
(
selection
)
{
case
1
:
Run
(
(
)
=>
new
JScriptEngine
(
WindowsScriptEngineFlags
.
EnableStandardsMode
)
,
SunSpider
.
RunSuite
)
;
done
=
true
;
break
;
case
2
:
Run
(
(
)
=>
new
V8ScriptEngine
(
)
,
SunSpider
.
RunSuite
)
;
done
=
true
;
break
;
case
3
:
Run
(
(
)
=>
new
V8ScriptEngine
(
V8ScriptEngineFlags
.
DisableGlobalMembers
)
,
SunSpider
.
RunSuite
)
;
done
=
true
;
break
;
case
4
:
done
=
true
;
exit
=
true
;
break
;
default
:
Console
.
WriteLine
(
"Invalid selection"
)
;
break
;
}
if
(
done
)
{
Console
.
WriteLine
(
)
;
break
;
}
}
if
(
exit
)
{
break
;
}
}
}
private
static
void
Run
(
Func
<
ScriptEngine
>
engineFactory
,
Action
<
ScriptEngine
>
benchmark
)
{
Console
.
WriteLine
(
)
;
using
(
var
engine
=
engineFactory
(
)
)
{
benchmark
(
engine
)
;
}
}
}
}
Back
|
FazBrowse Home
|
New Git URL