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
c12f8723
Commit
c12f8723
authored
Feb 23, 2015
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
annotate.py improvements
Annotate constants - functions - heap values Collapse nop regions
parent
ff99ecf5
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
130 additions
and
4 deletions
+130
-4
src/codegen/irgen/irgenerator.cpp
src/codegen/irgen/irgenerator.cpp
+4
-1
src/runtime/builtin_modules/builtins.cpp
src/runtime/builtin_modules/builtins.cpp
+11
-1
src/runtime/objmodel.cpp
src/runtime/objmodel.cpp
+19
-0
tools/annotate.py
tools/annotate.py
+96
-2
No files found.
src/codegen/irgen/irgenerator.cpp
View file @
c12f8723
...
@@ -834,13 +834,16 @@ private:
...
@@ -834,13 +834,16 @@ private:
return
rtn
;
return
rtn
;
}
}
CompilerVariable
*
getNone
()
{
Co
ncreteCo
mpilerVariable
*
getNone
()
{
ConcreteCompilerVariable
*
v
=
new
ConcreteCompilerVariable
(
ConcreteCompilerVariable
*
v
=
new
ConcreteCompilerVariable
(
typeFromClass
(
none_cls
),
embedConstantPtr
(
None
,
g
.
llvm_value_type_ptr
),
false
);
typeFromClass
(
none_cls
),
embedConstantPtr
(
None
,
g
.
llvm_value_type_ptr
),
false
);
return
v
;
return
v
;
}
}
ConcreteCompilerVariable
*
_getGlobal
(
AST_Name
*
node
,
UnwindInfo
unw_info
)
{
ConcreteCompilerVariable
*
_getGlobal
(
AST_Name
*
node
,
UnwindInfo
unw_info
)
{
if
(
node
->
id
.
str
()
==
"None"
)
return
getNone
();
bool
do_patchpoint
=
ENABLE_ICGETGLOBALS
&&
(
irstate
->
getEffortLevel
()
!=
EffortLevel
::
INTERPRETED
);
bool
do_patchpoint
=
ENABLE_ICGETGLOBALS
&&
(
irstate
->
getEffortLevel
()
!=
EffortLevel
::
INTERPRETED
);
if
(
do_patchpoint
)
{
if
(
do_patchpoint
)
{
ICSetupInfo
*
pp
=
createGetGlobalIC
(
getOpInfoForNode
(
node
,
unw_info
).
getTypeRecorder
());
ICSetupInfo
*
pp
=
createGetGlobalIC
(
getOpInfoForNode
(
node
,
unw_info
).
getTypeRecorder
());
...
...
src/runtime/builtin_modules/builtins.cpp
View file @
c12f8723
...
@@ -861,11 +861,19 @@ Box* getreversed(Box* o) {
...
@@ -861,11 +861,19 @@ Box* getreversed(Box* o) {
return
new
(
seqreviter_cls
)
BoxedSeqIter
(
o
,
len
-
1
);
return
new
(
seqreviter_cls
)
BoxedSeqIter
(
o
,
len
-
1
);
}
}
Box
*
pydump
(
void
*
p
)
{
Box
*
pydump
(
Box
*
p
)
{
dump
(
p
);
dump
(
p
);
return
None
;
return
None
;
}
}
Box
*
pydumpAddr
(
Box
*
p
)
{
if
(
p
->
cls
!=
int_cls
)
raiseExcHelper
(
TypeError
,
"Requires an int"
);
dump
((
void
*
)
static_cast
<
BoxedInt
*>
(
p
)
->
n
);
return
None
;
}
class
BoxedEnvironmentError
:
public
BoxedException
{
class
BoxedEnvironmentError
:
public
BoxedException
{
public:
public:
// Box* args, *message, *myerrno, *strerror, *filename;
// Box* args, *message, *myerrno, *strerror, *filename;
...
@@ -1102,6 +1110,8 @@ void setupBuiltins() {
...
@@ -1102,6 +1110,8 @@ void setupBuiltins() {
builtins_module
->
giveAttr
(
"trap"
,
trap_obj
);
builtins_module
->
giveAttr
(
"trap"
,
trap_obj
);
builtins_module
->
giveAttr
(
"dump"
,
builtins_module
->
giveAttr
(
"dump"
,
new
BoxedBuiltinFunctionOrMethod
(
boxRTFunction
((
void
*
)
pydump
,
UNKNOWN
,
1
),
"dump"
));
new
BoxedBuiltinFunctionOrMethod
(
boxRTFunction
((
void
*
)
pydump
,
UNKNOWN
,
1
),
"dump"
));
builtins_module
->
giveAttr
(
"dumpAddr"
,
new
BoxedBuiltinFunctionOrMethod
(
boxRTFunction
((
void
*
)
pydumpAddr
,
UNKNOWN
,
1
),
"dumpAddr"
));
builtins_module
->
giveAttr
(
builtins_module
->
giveAttr
(
"getattr"
,
new
BoxedBuiltinFunctionOrMethod
(
boxRTFunction
((
void
*
)
getattrFunc
,
UNKNOWN
,
3
,
1
,
false
,
false
),
"getattr"
,
new
BoxedBuiltinFunctionOrMethod
(
boxRTFunction
((
void
*
)
getattrFunc
,
UNKNOWN
,
3
,
1
,
false
,
false
),
...
...
src/runtime/objmodel.cpp
View file @
c12f8723
...
@@ -2017,6 +2017,25 @@ extern "C" void dump(void* p) {
...
@@ -2017,6 +2017,25 @@ extern "C" void dump(void* p) {
printf
(
"%ld elements
\n
"
,
static_cast
<
BoxedList
*>
(
b
)
->
size
);
printf
(
"%ld elements
\n
"
,
static_cast
<
BoxedList
*>
(
b
)
->
size
);
}
}
if
(
isSubclass
(
b
->
cls
,
module_cls
))
{
printf
(
"The '%s' module
\n
"
,
static_cast
<
BoxedModule
*>
(
b
)
->
name
().
c_str
());
}
/*
if (b->cls->instancesHaveHCAttrs()) {
HCAttrs* attrs = b->getHCAttrsPtr();
printf("Has %ld attrs\n", attrs->hcls->attr_offsets.size());
for (const auto& p : attrs->hcls->attr_offsets) {
printf("Index %d: %s: %p\n", p.second, p.first.c_str(), attrs->attr_list->attrs[p.second]);
}
}
*/
return
;
}
if
(
al
->
kind_id
==
gc
::
GCKind
::
HIDDEN_CLASS
)
{
printf
(
"Hidden class object
\n
"
);
return
;
return
;
}
}
...
...
tools/annotate.py
View file @
c12f8723
import
commands
import
os
import
re
import
subprocess
import
subprocess
import
sys
import
sys
...
@@ -13,6 +16,78 @@ def get_objdump(func):
...
@@ -13,6 +16,78 @@ def get_objdump(func):
raise
Exception
(
"Couldn't find function %r to objdump"
%
func
)
raise
Exception
(
"Couldn't find function %r to objdump"
%
func
)
_symbols
=
None
def
lookupAsSymbol
(
n
):
global
_symbols
if
_symbols
is
None
:
_symbols
=
{}
nm_output
=
commands
.
getoutput
(
"nm pyston_release"
)
for
l
in
nm_output
.
split
(
'
\
n
'
):
addr
=
l
[:
16
]
if
addr
.
isalnum
():
_symbols
[
int
(
addr
,
16
)]
=
l
[
19
:]
sym
=
_symbols
.
get
(
n
,
None
)
if
not
sym
:
return
sym
demangled
=
None
if
sym
.
startswith
(
'_'
)
and
os
.
path
.
exists
(
"tools/demangle"
):
demangled
=
commands
.
getoutput
(
"tools/demangle %s"
%
sym
)
if
demangled
!=
"Error: unable to demangle"
:
return
demangled
return
sym
+
"()"
_heap_proc
=
None
heapmap_args
=
None
# heapmap_args = ["./pyston_release", "-i", "minibenchmarks/fasta.py"]
def
lookupAsHeapAddr
(
n
):
global
_heap_proc
if
_heap_proc
is
None
:
if
heapmap_args
is
None
:
return
None
_heap_proc
=
subprocess
.
Popen
(
heapmap_args
,
stdout
=
subprocess
.
PIPE
,
stdin
=
subprocess
.
PIPE
)
while
True
:
l
=
_heap_proc
.
stdout
.
readline
()
if
l
.
startswith
(
"Pyston v0.2"
):
break
_heap_proc
.
stdin
.
write
(
"dumpAddr(%d)
\
n
print '!!!!'
\
n
"
%
n
)
lines
=
[]
while
True
:
l
=
_heap_proc
.
stdout
.
readline
()
if
l
==
'!!!!
\
n
'
:
break
lines
.
append
(
l
)
s
=
''
.
join
(
lines
[
1
:
-
1
])
if
"Class: NoneType"
in
s
:
return
"None"
if
"non-gc memory"
in
s
:
return
"(non-gc memory)"
if
"Hidden class object"
in
s
:
return
"(hcls object)"
if
"Class: type"
in
s
:
m
=
re
.
search
(
"Type name: ([^
\
n
]+)"
,
s
)
return
"The '%s' class"
%
m
.
group
(
1
)
if
"Python object"
in
s
:
m
=
re
.
search
(
"Class: ([^
\
n
]+)"
,
s
)
return
"A '%s' object"
%
m
.
group
(
1
)
print
s
def
lookupConstant
(
n
):
sym
=
lookupAsSymbol
(
n
)
if
sym
:
return
"# "
+
sym
heap
=
lookupAsHeapAddr
(
n
)
if
heap
:
return
"# "
+
heap
return
""
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
# TODO: if it's not passed, maybe default to annotating the
# TODO: if it's not passed, maybe default to annotating the
# first function in the profile (the one in which the plurality of
# first function in the profile (the one in which the plurality of
...
@@ -37,9 +112,28 @@ if __name__ == "__main__":
...
@@ -37,9 +112,28 @@ if __name__ == "__main__":
counts
[
addr
]
=
int
(
count
)
counts
[
addr
]
=
int
(
count
)
nops
=
None
# (count, num, start, end)
for
l
in
objdump
.
split
(
'
\
n
'
)[
7
:]:
for
l
in
objdump
.
split
(
'
\
n
'
)[
7
:]:
addr
=
l
.
split
(
':'
)[
0
]
addr
=
l
.
split
(
':'
)[
0
]
count
=
counts
.
pop
(
addr
.
strip
(),
0
)
count
=
counts
.
pop
(
addr
.
strip
(),
0
)
print
str
(
count
).
rjust
(
8
),
l
m
=
re
.
search
(
"movabs
\
\
$0x([0-9a-f]+),"
,
l
)
extra
=
""
if
m
:
n
=
int
(
m
.
group
(
1
),
16
)
extra
=
lookupConstant
(
n
)
if
l
.
endswith
(
"
\
t
nop"
):
addr
=
l
.
split
()[
0
][:
-
1
]
if
not
nops
:
nops
=
(
count
,
1
,
addr
,
addr
)
else
:
nops
=
(
nops
[
0
]
+
count
,
nops
[
1
]
+
1
,
nops
[
2
],
addr
)
else
:
if
nops
:
print
str
(
nops
[
0
]).
rjust
(
8
),
(
" %s-%s nop*%d"
%
(
nops
[
2
],
nops
[
3
],
nops
[
1
])).
ljust
(
70
)
nops
=
None
print
str
(
count
).
rjust
(
8
),
l
.
ljust
(
70
),
extra
assert
not
counts
,
counts
assert
not
counts
,
counts
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