Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
Pyston
Commits
a7d756fa
Commit
a7d756fa
authored
Apr 27, 2015
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #469 from toshok/stats-work
Stats
parents
f95bd65f
d30281e3
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
38 additions
and
13 deletions
+38
-13
src/codegen/entry.cpp
src/codegen/entry.cpp
+2
-0
src/core/stats.cpp
src/core/stats.cpp
+7
-2
src/core/stats.h
src/core/stats.h
+5
-1
src/jit.cpp
src/jit.cpp
+5
-10
src/runtime/builtin_modules/pyston.cpp
src/runtime/builtin_modules/pyston.cpp
+19
-0
No files found.
src/codegen/entry.cpp
View file @
a7d756fa
...
...
@@ -361,6 +361,8 @@ static void handle_sigint(int signum) {
// TODO: this should set a flag saying a KeyboardInterrupt is pending.
// For now, just call abort(), so that we get a traceback at least.
fprintf
(
stderr
,
"SIGINT!
\n
"
);
joinRuntime
();
Stats
::
dump
();
abort
();
}
...
...
src/core/stats.cpp
View file @
a7d756fa
...
...
@@ -23,6 +23,7 @@ namespace pyston {
#if !DISABLE_STATS
std
::
vector
<
long
>*
Stats
::
counts
;
std
::
unordered_map
<
int
,
std
::
string
>*
Stats
::
names
;
bool
Stats
::
enabled
;
StatCounter
::
StatCounter
(
const
std
::
string
&
name
)
:
id
(
Stats
::
getStatId
(
name
))
{
}
...
...
@@ -50,7 +51,10 @@ int Stats::getStatId(const std::string& name) {
return
rtn
;
}
void
Stats
::
dump
()
{
void
Stats
::
dump
(
bool
includeZeros
)
{
if
(
!
Stats
::
enabled
)
return
;
printf
(
"Stats:
\n
"
);
std
::
vector
<
std
::
pair
<
std
::
string
,
int
>>
pairs
;
...
...
@@ -61,6 +65,7 @@ void Stats::dump() {
std
::
sort
(
pairs
.
begin
(),
pairs
.
end
());
for
(
int
i
=
0
;
i
<
pairs
.
size
();
i
++
)
{
if
(
includeZeros
||
(
*
counts
)[
pairs
[
i
].
second
]
>
0
)
printf
(
"%s: %ld
\n
"
,
pairs
[
i
].
first
.
c_str
(),
(
*
counts
)[
pairs
[
i
].
second
]);
}
}
...
...
src/core/stats.h
View file @
a7d756fa
...
...
@@ -32,13 +32,16 @@ struct Stats {
private:
static
std
::
vector
<
long
>*
counts
;
static
std
::
unordered_map
<
int
,
std
::
string
>*
names
;
static
bool
enabled
;
public:
static
int
getStatId
(
const
std
::
string
&
name
);
static
void
setEnabled
(
bool
enabled
)
{
Stats
::
enabled
=
enabled
;
}
static
void
log
(
int
id
,
int
count
=
1
)
{
(
*
counts
)[
id
]
+=
count
;
}
static
void
dump
();
static
void
clear
()
{
std
::
fill
(
counts
->
begin
(),
counts
->
end
(),
0
);
}
static
void
dump
(
bool
includeZeros
=
true
);
static
void
endOfInit
();
};
...
...
@@ -64,6 +67,7 @@ public:
#else
struct
Stats
{
static
void
setEnabled
(
bool
enabled
)
{}
static
void
dump
()
{
printf
(
"(Stats disabled)
\n
"
);
}
static
void
log
(
int
id
,
int
count
=
1
)
{}
static
int
getStatId
(
const
std
::
string
&
name
)
{
return
0
;
}
...
...
src/jit.cpp
View file @
a7d756fa
...
...
@@ -95,7 +95,6 @@ static int main(int argc, char** argv) {
int
code
;
bool
force_repl
=
false
;
bool
stats
=
false
;
bool
unbuffered
=
false
;
const
char
*
command
=
NULL
;
...
...
@@ -123,7 +122,7 @@ static int main(int argc, char** argv) {
}
else
if
(
code
==
'j'
)
{
DUMPJIT
=
true
;
}
else
if
(
code
==
's'
)
{
stats
=
true
;
Stats
::
setEnabled
(
true
)
;
}
else
if
(
code
==
'S'
)
{
Py_NoSiteFlag
=
1
;
}
else
if
(
code
==
'u'
)
{
...
...
@@ -241,7 +240,6 @@ static int main(int argc, char** argv) {
}
catch
(
ExcInfo
e
)
{
int
retcode
=
1
;
(
void
)
handle_toplevel_exn
(
e
,
&
retcode
);
if
(
stats
)
Stats
::
dump
();
return
retcode
;
}
...
...
@@ -269,7 +267,6 @@ static int main(int argc, char** argv) {
int
retcode
=
1
;
(
void
)
handle_toplevel_exn
(
e
,
&
retcode
);
if
(
!
force_repl
)
{
if
(
stats
)
Stats
::
dump
();
return
retcode
;
}
...
...
@@ -320,7 +317,6 @@ static int main(int argc, char** argv) {
}
catch
(
ExcInfo
e
)
{
int
retcode
=
0xdeadbeef
;
// should never be seen
if
(
handle_toplevel_exn
(
e
,
&
retcode
))
{
if
(
stats
)
Stats
::
dump
();
return
retcode
;
}
...
...
@@ -340,7 +336,6 @@ static int main(int argc, char** argv) {
int
rtncode
=
joinRuntime
();
_t
.
split
(
"finishing up"
);
if
(
stats
)
Stats
::
dump
();
return
rtncode
;
...
...
src/runtime/builtin_modules/pyston.cpp
View file @
a7d756fa
...
...
@@ -48,10 +48,29 @@ static Box* setOption(Box* option, Box* value) {
return
None
;
}
static
Box
*
clearStats
()
{
Stats
::
clear
();
return
None
;
}
static
Box
*
dumpStats
(
Box
*
includeZeros
)
{
if
(
includeZeros
->
cls
!=
bool_cls
)
raiseExcHelper
(
TypeError
,
"includeZeros must be a 'bool' object but received a '%s'"
,
getTypeName
(
includeZeros
));
Stats
::
dump
(((
BoxedBool
*
)
includeZeros
)
->
n
!=
0
);
return
None
;
}
void
setupPyston
()
{
pyston_module
=
createModule
(
"__pyston__"
,
"__builtin__"
);
pyston_module
->
giveAttr
(
"setOption"
,
new
BoxedBuiltinFunctionOrMethod
(
boxRTFunction
((
void
*
)
setOption
,
UNKNOWN
,
2
),
"setOption"
));
pyston_module
->
giveAttr
(
"clearStats"
,
new
BoxedBuiltinFunctionOrMethod
(
boxRTFunction
((
void
*
)
clearStats
,
NONE
,
0
),
"clearStats"
));
pyston_module
->
giveAttr
(
"dumpStats"
,
new
BoxedBuiltinFunctionOrMethod
(
boxRTFunction
((
void
*
)
dumpStats
,
NONE
,
1
,
1
,
false
,
false
),
"dumpStats"
,
{
False
}));
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment