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
b47e2421
Commit
b47e2421
authored
Apr 03, 2015
by
Marius Wachtler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Emit PHI nodes in deterministic order to improve the effectiveness of the jit object cache
parent
ca7765ac
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
6 deletions
+15
-6
src/codegen/irgen.cpp
src/codegen/irgen.cpp
+13
-5
src/core/stringpool.h
src/core/stringpool.h
+2
-1
No files found.
src/codegen/irgen.cpp
View file @
b47e2421
...
...
@@ -16,6 +16,7 @@
#include <cstdio>
#include <iostream>
#include <set>
#include <sstream>
#include <stdint.h>
...
...
@@ -632,7 +633,7 @@ static void emitBBs(IRGenState* irstate, TypeAnalysis* types, const OSREntryDesc
}
std
::
unordered_
set
<
InternedString
>
names
;
std
::
set
<
InternedString
>
names
;
for
(
const
auto
&
s
:
source
->
phis
->
getAllRequiredFor
(
block
))
{
names
.
insert
(
s
);
if
(
source
->
phis
->
isPotentiallyUndefinedAfter
(
s
,
block
->
predecessors
[
0
]))
{
...
...
@@ -740,9 +741,16 @@ static void emitBBs(IRGenState* irstate, TypeAnalysis* types, const OSREntryDesc
// And go through and add phi nodes:
ConcreteSymbolTable
*
pred_st
=
phi_ending_symbol_tables
[
pred
];
for
(
auto
it
=
pred_st
->
begin
();
it
!=
pred_st
->
end
();
++
it
)
{
InternedString
name
=
it
->
first
;
ConcreteCompilerVariable
*
cv
=
it
->
second
;
// incoming CCV from predecessor block
// We have to sort the phi table by name in order to a get a deterministic ordering for the JIT object
// cache.
typedef
std
::
pair
<
InternedString
,
ConcreteCompilerVariable
*>
Entry
;
std
::
vector
<
Entry
>
sorted_pred_st
(
pred_st
->
begin
(),
pred_st
->
end
());
std
::
sort
(
sorted_pred_st
.
begin
(),
sorted_pred_st
.
end
(),
[](
const
Entry
&
lhs
,
const
Entry
&
rhs
)
{
return
lhs
.
first
<
rhs
.
first
;
});
for
(
auto
&
entry
:
sorted_pred_st
)
{
InternedString
name
=
entry
.
first
;
ConcreteCompilerVariable
*
cv
=
entry
.
second
;
// incoming CCV from predecessor block
// printf("block %d: adding phi for %s from pred %d\n", block->idx, name.c_str(), pred->idx);
llvm
::
PHINode
*
phi
=
emitter
->
getBuilder
()
->
CreatePHI
(
cv
->
getType
()
->
llvmType
(),
block
->
predecessors
.
size
(),
name
.
str
());
...
...
@@ -750,7 +758,7 @@ static void emitBBs(IRGenState* irstate, TypeAnalysis* types, const OSREntryDesc
ConcreteCompilerVariable
*
var
=
new
ConcreteCompilerVariable
(
cv
->
getType
(),
phi
,
true
);
generator
->
giveLocalSymbol
(
name
,
var
);
(
*
phis
)[
it
->
first
]
=
std
::
make_pair
(
it
->
second
->
getType
(),
phi
);
(
*
phis
)[
name
]
=
std
::
make_pair
(
cv
->
getType
(),
phi
);
}
}
}
...
...
src/core/stringpool.h
View file @
b47e2421
...
...
@@ -73,10 +73,11 @@ public:
return
this
->
_str
==
rhs
.
_str
;
}
// This function is slow because it does a string < string comparison and should be avoided.
bool
operator
<
(
InternedString
rhs
)
const
{
assert
(
this
->
_str
);
assert
(
this
->
pool
==
rhs
.
pool
);
return
this
->
_str
<
rhs
.
_str
;
return
*
this
->
_str
<
*
rhs
.
_str
;
}
friend
class
InternedStringPool
;
...
...
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