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
f1599afc
Commit
f1599afc
authored
Oct 06, 2016
by
Marius Wachtler
Committed by
Boxiang Sun
Oct 20, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BSTVisitor: pass code constants always in
we will soon need this
parent
647b99e8
Changes
13
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
66 additions
and
47 deletions
+66
-47
src/analysis/fpc.h
src/analysis/fpc.h
+2
-0
src/analysis/function_analysis.cpp
src/analysis/function_analysis.cpp
+17
-11
src/analysis/function_analysis.h
src/analysis/function_analysis.h
+5
-3
src/analysis/type_analysis.cpp
src/analysis/type_analysis.cpp
+3
-4
src/codegen/ast_interpreter.cpp
src/codegen/ast_interpreter.cpp
+6
-5
src/codegen/irgen.cpp
src/codegen/irgen.cpp
+7
-6
src/codegen/irgen/hooks.cpp
src/codegen/irgen/hooks.cpp
+2
-2
src/codegen/irgen/irgenerator.h
src/codegen/irgen/irgenerator.h
+1
-1
src/core/bst.h
src/core/bst.h
+11
-6
src/core/cfg.cpp
src/core/cfg.cpp
+6
-5
src/core/cfg.h
src/core/cfg.h
+2
-1
src/core/types.h
src/core/types.h
+2
-1
test/unittests/analysis.cpp
test/unittests/analysis.cpp
+2
-2
No files found.
src/analysis/fpc.h
View file @
f1599afc
...
@@ -32,7 +32,9 @@ template <typename T> class BBAnalyzer {
...
@@ -32,7 +32,9 @@ template <typename T> class BBAnalyzer {
public:
public:
typedef
VRegMap
<
T
>
Map
;
typedef
VRegMap
<
T
>
Map
;
typedef
llvm
::
DenseMap
<
CFGBlock
*
,
Map
>
AllMap
;
typedef
llvm
::
DenseMap
<
CFGBlock
*
,
Map
>
AllMap
;
const
CodeConstants
&
code_constants
;
BBAnalyzer
(
const
CodeConstants
&
code_constants
)
:
code_constants
(
code_constants
)
{}
virtual
~
BBAnalyzer
()
{}
virtual
~
BBAnalyzer
()
{}
virtual
T
merge
(
T
from
,
T
into
)
const
=
0
;
virtual
T
merge
(
T
from
,
T
into
)
const
=
0
;
...
...
src/analysis/function_analysis.cpp
View file @
f1599afc
...
@@ -70,7 +70,9 @@ private:
...
@@ -70,7 +70,9 @@ private:
public:
public:
LivenessBBVisitor
(
LivenessAnalysis
*
analysis
)
LivenessBBVisitor
(
LivenessAnalysis
*
analysis
)
:
statuses
(
analysis
->
cfg
->
getVRegInfo
().
getTotalNumOfVRegs
()),
analysis
(
analysis
)
{}
:
NoopBSTVisitor
(
analysis
->
code_constants
),
statuses
(
analysis
->
cfg
->
getVRegInfo
().
getTotalNumOfVRegs
()),
analysis
(
analysis
)
{}
bool
firstIsUse
(
int
vreg
)
const
{
return
getStatusFirst
(
vreg
)
==
Status
::
USED
;
}
bool
firstIsUse
(
int
vreg
)
const
{
return
getStatusFirst
(
vreg
)
==
Status
::
USED
;
}
bool
firstIsDef
(
int
vreg
)
const
{
return
getStatusFirst
(
vreg
)
==
Status
::
DEFINED
;
}
bool
firstIsDef
(
int
vreg
)
const
{
return
getStatusFirst
(
vreg
)
==
Status
::
DEFINED
;
}
...
@@ -94,7 +96,8 @@ public:
...
@@ -94,7 +96,8 @@ public:
}
}
};
};
LivenessAnalysis
::
LivenessAnalysis
(
CFG
*
cfg
)
:
cfg
(
cfg
),
result_cache
(
cfg
->
getVRegInfo
().
getTotalNumOfVRegs
())
{
LivenessAnalysis
::
LivenessAnalysis
(
CFG
*
cfg
,
const
CodeConstants
&
code_constants
)
:
cfg
(
cfg
),
code_constants
(
code_constants
),
result_cache
(
cfg
->
getVRegInfo
().
getTotalNumOfVRegs
())
{
Timer
_t
(
"LivenessAnalysis()"
,
100
);
Timer
_t
(
"LivenessAnalysis()"
,
100
);
for
(
CFGBlock
*
b
:
cfg
->
blocks
)
{
for
(
CFGBlock
*
b
:
cfg
->
blocks
)
{
...
@@ -180,7 +183,8 @@ private:
...
@@ -180,7 +183,8 @@ private:
typedef
DefinednessAnalysis
::
DefinitionLevel
DefinitionLevel
;
typedef
DefinednessAnalysis
::
DefinitionLevel
DefinitionLevel
;
public:
public:
DefinednessBBAnalyzer
()
{}
DefinednessBBAnalyzer
(
const
CodeConstants
&
code_constants
)
:
BBAnalyzer
<
DefinednessAnalysis
::
DefinitionLevel
>
(
code_constants
)
{}
virtual
DefinitionLevel
merge
(
DefinitionLevel
from
,
DefinitionLevel
into
)
const
{
virtual
DefinitionLevel
merge
(
DefinitionLevel
from
,
DefinitionLevel
into
)
const
{
assert
(
from
!=
DefinitionLevel
::
Unknown
);
assert
(
from
!=
DefinitionLevel
::
Unknown
);
...
@@ -210,7 +214,8 @@ private:
...
@@ -210,7 +214,8 @@ private:
}
}
public:
public:
DefinednessVisitor
(
Map
&
state
)
:
state
(
state
)
{}
DefinednessVisitor
(
const
CodeConstants
&
code_constants
,
Map
&
state
)
:
NoopBSTVisitor
(
code_constants
),
state
(
state
)
{}
bool
visit_vreg
(
int
*
vreg
,
bool
is_dest
)
override
{
bool
visit_vreg
(
int
*
vreg
,
bool
is_dest
)
override
{
if
(
*
vreg
<
0
)
if
(
*
vreg
<
0
)
return
false
;
return
false
;
...
@@ -250,7 +255,7 @@ public:
...
@@ -250,7 +255,7 @@ public:
};
};
void
DefinednessBBAnalyzer
::
processBB
(
Map
&
starting
,
CFGBlock
*
block
)
const
{
void
DefinednessBBAnalyzer
::
processBB
(
Map
&
starting
,
CFGBlock
*
block
)
const
{
DefinednessVisitor
visitor
(
starting
);
DefinednessVisitor
visitor
(
code_constants
,
starting
);
for
(
int
i
=
0
;
i
<
block
->
body
.
size
();
i
++
)
{
for
(
int
i
=
0
;
i
<
block
->
body
.
size
();
i
++
)
{
block
->
body
[
i
]
->
accept
(
&
visitor
);
block
->
body
[
i
]
->
accept
(
&
visitor
);
...
@@ -265,7 +270,8 @@ void DefinednessBBAnalyzer::processBB(Map& starting, CFGBlock* block) const {
...
@@ -265,7 +270,8 @@ void DefinednessBBAnalyzer::processBB(Map& starting, CFGBlock* block) const {
}
}
}
}
void
DefinednessAnalysis
::
run
(
VRegMap
<
DefinednessAnalysis
::
DefinitionLevel
>
initial_map
,
CFGBlock
*
initial_block
)
{
void
DefinednessAnalysis
::
run
(
const
CodeConstants
&
code_constants
,
VRegMap
<
DefinednessAnalysis
::
DefinitionLevel
>
initial_map
,
CFGBlock
*
initial_block
)
{
Timer
_t
(
"DefinednessAnalysis()"
,
10
);
Timer
_t
(
"DefinednessAnalysis()"
,
10
);
// Don't run this twice:
// Don't run this twice:
...
@@ -276,8 +282,8 @@ void DefinednessAnalysis::run(VRegMap<DefinednessAnalysis::DefinitionLevel> init
...
@@ -276,8 +282,8 @@ void DefinednessAnalysis::run(VRegMap<DefinednessAnalysis::DefinitionLevel> init
assert
(
initial_map
.
numVregs
()
==
nvregs
);
assert
(
initial_map
.
numVregs
()
==
nvregs
);
auto
&&
vreg_info
=
cfg
->
getVRegInfo
();
auto
&&
vreg_info
=
cfg
->
getVRegInfo
();
computeFixedPoint
(
std
::
move
(
initial_map
),
initial_block
,
DefinednessBBAnalyzer
(
),
false
,
defined_at_beginning
,
computeFixedPoint
(
std
::
move
(
initial_map
),
initial_block
,
DefinednessBBAnalyzer
(
code_constants
),
false
,
defined_at_end
);
defined_at_
beginning
,
defined_at_
end
);
for
(
const
auto
&
p
:
defined_at_end
)
{
for
(
const
auto
&
p
:
defined_at_end
)
{
assert
(
p
.
second
.
numVregs
()
==
nvregs
);
assert
(
p
.
second
.
numVregs
()
==
nvregs
);
...
@@ -325,7 +331,7 @@ PhiAnalysis::PhiAnalysis(VRegMap<DefinednessAnalysis::DefinitionLevel> initial_m
...
@@ -325,7 +331,7 @@ PhiAnalysis::PhiAnalysis(VRegMap<DefinednessAnalysis::DefinitionLevel> initial_m
int
num_vregs
=
initial_map
.
numVregs
();
int
num_vregs
=
initial_map
.
numVregs
();
assert
(
num_vregs
==
vreg_info
.
getTotalNumOfVRegs
());
assert
(
num_vregs
==
vreg_info
.
getTotalNumOfVRegs
());
definedness
.
run
(
std
::
move
(
initial_map
),
initial_block
);
definedness
.
run
(
liveness
->
getCodeConstants
(),
std
::
move
(
initial_map
),
initial_block
);
Timer
_t
(
"PhiAnalysis()"
,
10
);
Timer
_t
(
"PhiAnalysis()"
,
10
);
...
@@ -413,11 +419,11 @@ bool PhiAnalysis::isPotentiallyUndefinedAt(int vreg, CFGBlock* block) {
...
@@ -413,11 +419,11 @@ bool PhiAnalysis::isPotentiallyUndefinedAt(int vreg, CFGBlock* block) {
return
definedness
.
defined_at_beginning
.
find
(
block
)
->
second
[
vreg
]
!=
DefinednessAnalysis
::
Defined
;
return
definedness
.
defined_at_beginning
.
find
(
block
)
->
second
[
vreg
]
!=
DefinednessAnalysis
::
Defined
;
}
}
std
::
unique_ptr
<
LivenessAnalysis
>
computeLivenessInfo
(
CFG
*
cfg
)
{
std
::
unique_ptr
<
LivenessAnalysis
>
computeLivenessInfo
(
CFG
*
cfg
,
const
CodeConstants
&
code_constants
)
{
static
StatCounter
counter
(
"num_liveness_analysis"
);
static
StatCounter
counter
(
"num_liveness_analysis"
);
counter
.
log
();
counter
.
log
();
return
std
::
unique_ptr
<
LivenessAnalysis
>
(
new
LivenessAnalysis
(
cfg
));
return
std
::
unique_ptr
<
LivenessAnalysis
>
(
new
LivenessAnalysis
(
cfg
,
code_constants
));
}
}
std
::
unique_ptr
<
PhiAnalysis
>
computeRequiredPhis
(
const
ParamNames
&
args
,
CFG
*
cfg
,
LivenessAnalysis
*
liveness
)
{
std
::
unique_ptr
<
PhiAnalysis
>
computeRequiredPhis
(
const
ParamNames
&
args
,
CFG
*
cfg
,
LivenessAnalysis
*
liveness
)
{
...
...
src/analysis/function_analysis.h
View file @
f1599afc
...
@@ -34,6 +34,7 @@ class LivenessBBVisitor;
...
@@ -34,6 +34,7 @@ class LivenessBBVisitor;
class
LivenessAnalysis
{
class
LivenessAnalysis
{
private:
private:
CFG
*
cfg
;
CFG
*
cfg
;
const
CodeConstants
&
code_constants
;
friend
class
LivenessBBVisitor
;
friend
class
LivenessBBVisitor
;
typedef
llvm
::
DenseMap
<
CFGBlock
*
,
std
::
unique_ptr
<
LivenessBBVisitor
>>
LivenessCacheMap
;
typedef
llvm
::
DenseMap
<
CFGBlock
*
,
std
::
unique_ptr
<
LivenessBBVisitor
>>
LivenessCacheMap
;
...
@@ -42,10 +43,11 @@ private:
...
@@ -42,10 +43,11 @@ private:
VRegMap
<
llvm
::
DenseMap
<
CFGBlock
*
,
bool
>>
result_cache
;
VRegMap
<
llvm
::
DenseMap
<
CFGBlock
*
,
bool
>>
result_cache
;
public:
public:
LivenessAnalysis
(
CFG
*
cfg
);
LivenessAnalysis
(
CFG
*
cfg
,
const
CodeConstants
&
code_constants
);
~
LivenessAnalysis
();
~
LivenessAnalysis
();
bool
isLiveAtEnd
(
int
vreg
,
CFGBlock
*
block
);
bool
isLiveAtEnd
(
int
vreg
,
CFGBlock
*
block
);
const
CodeConstants
&
getCodeConstants
()
const
{
return
code_constants
;
}
};
};
class
PhiAnalysis
;
class
PhiAnalysis
;
...
@@ -66,7 +68,7 @@ private:
...
@@ -66,7 +68,7 @@ private:
public:
public:
DefinednessAnalysis
()
{}
DefinednessAnalysis
()
{}
void
run
(
VRegMap
<
DefinitionLevel
>
initial_map
,
CFGBlock
*
initial_block
);
void
run
(
const
CodeConstants
&
code_constants
,
VRegMap
<
DefinitionLevel
>
initial_map
,
CFGBlock
*
initial_block
);
DefinitionLevel
isDefinedAtEnd
(
int
vreg
,
CFGBlock
*
block
);
DefinitionLevel
isDefinedAtEnd
(
int
vreg
,
CFGBlock
*
block
);
const
VRegSet
&
getDefinedVregsAtEnd
(
CFGBlock
*
block
);
const
VRegSet
&
getDefinedVregsAtEnd
(
CFGBlock
*
block
);
...
@@ -100,7 +102,7 @@ public:
...
@@ -100,7 +102,7 @@ public:
bool
isPotentiallyUndefinedAt
(
int
vreg
,
CFGBlock
*
block
);
bool
isPotentiallyUndefinedAt
(
int
vreg
,
CFGBlock
*
block
);
};
};
std
::
unique_ptr
<
LivenessAnalysis
>
computeLivenessInfo
(
CFG
*
);
std
::
unique_ptr
<
LivenessAnalysis
>
computeLivenessInfo
(
CFG
*
,
const
CodeConstants
&
);
std
::
unique_ptr
<
PhiAnalysis
>
computeRequiredPhis
(
const
ParamNames
&
,
CFG
*
,
LivenessAnalysis
*
);
std
::
unique_ptr
<
PhiAnalysis
>
computeRequiredPhis
(
const
ParamNames
&
,
CFG
*
,
LivenessAnalysis
*
);
std
::
unique_ptr
<
PhiAnalysis
>
computeRequiredPhis
(
const
OSREntryDescriptor
*
,
LivenessAnalysis
*
);
std
::
unique_ptr
<
PhiAnalysis
>
computeRequiredPhis
(
const
OSREntryDescriptor
*
,
LivenessAnalysis
*
);
}
}
...
...
src/analysis/type_analysis.cpp
View file @
f1599afc
...
@@ -89,17 +89,16 @@ private:
...
@@ -89,17 +89,16 @@ private:
ExprTypeMap
&
expr_types
;
ExprTypeMap
&
expr_types
;
TypeSpeculations
&
type_speculations
;
TypeSpeculations
&
type_speculations
;
TypeAnalysis
::
SpeculationLevel
speculation
;
TypeAnalysis
::
SpeculationLevel
speculation
;
const
CodeConstants
&
code_constants
;
BasicBlockTypePropagator
(
CFGBlock
*
block
,
TypeMap
&
initial
,
ExprTypeMap
&
expr_types
,
BasicBlockTypePropagator
(
CFGBlock
*
block
,
TypeMap
&
initial
,
ExprTypeMap
&
expr_types
,
TypeSpeculations
&
type_speculations
,
TypeAnalysis
::
SpeculationLevel
speculation
,
TypeSpeculations
&
type_speculations
,
TypeAnalysis
::
SpeculationLevel
speculation
,
const
CodeConstants
&
code_constants
)
const
CodeConstants
&
code_constants
)
:
block
(
block
),
:
StmtVisitor
(
code_constants
),
block
(
block
),
sym_table
(
initial
),
sym_table
(
initial
),
expr_types
(
expr_types
),
expr_types
(
expr_types
),
type_speculations
(
type_speculations
),
type_speculations
(
type_speculations
),
speculation
(
speculation
),
speculation
(
speculation
)
{}
code_constants
(
code_constants
)
{}
void
run
()
{
void
run
()
{
for
(
int
i
=
0
;
i
<
block
->
body
.
size
();
i
++
)
{
for
(
int
i
=
0
;
i
<
block
->
body
.
size
();
i
++
)
{
...
...
src/codegen/ast_interpreter.cpp
View file @
f1599afc
...
@@ -182,6 +182,7 @@ public:
...
@@ -182,6 +182,7 @@ public:
Box
**
getVRegs
()
{
return
vregs
;
}
Box
**
getVRegs
()
{
return
vregs
;
}
const
ScopingResults
&
getScopeInfo
()
{
return
scope_info
;
}
const
ScopingResults
&
getScopeInfo
()
{
return
scope_info
;
}
const
CodeConstants
&
getCodeConstants
()
{
return
getCode
()
->
code_constants
;
}
const
CodeConstants
&
getCodeConstants
()
{
return
getCode
()
->
code_constants
;
}
LivenessAnalysis
*
getLiveness
()
{
return
source_info
->
getLiveness
(
getCodeConstants
());
}
void
addSymbol
(
int
vreg
,
Box
*
value
,
bool
allow_duplicates
);
void
addSymbol
(
int
vreg
,
Box
*
value
,
bool
allow_duplicates
);
void
setGenerator
(
Box
*
gen
);
void
setGenerator
(
Box
*
gen
);
...
@@ -487,7 +488,7 @@ void ASTInterpreter::doStore(int vreg, STOLEN(Value) value) {
...
@@ -487,7 +488,7 @@ void ASTInterpreter::doStore(int vreg, STOLEN(Value) value) {
return
;
return
;
}
}
if
(
jit
)
{
if
(
jit
)
{
bool
is_live
=
source_info
->
getLiveness
()
->
isLiveAtEnd
(
vreg
,
current_block
);
bool
is_live
=
getLiveness
()
->
isLiveAtEnd
(
vreg
,
current_block
);
if
(
is_live
)
if
(
is_live
)
jit
->
emitSetLocal
(
vreg
,
value
);
jit
->
emitSetLocal
(
vreg
,
value
);
else
else
...
@@ -658,7 +659,7 @@ Box* ASTInterpreter::doOSR(BST_Jump* node) {
...
@@ -658,7 +659,7 @@ Box* ASTInterpreter::doOSR(BST_Jump* node) {
static
StatCounter
ast_osrs
(
"num_ast_osrs"
);
static
StatCounter
ast_osrs
(
"num_ast_osrs"
);
ast_osrs
.
log
();
ast_osrs
.
log
();
LivenessAnalysis
*
liveness
=
source_info
->
getLiveness
();
LivenessAnalysis
*
liveness
=
getLiveness
();
std
::
unique_ptr
<
PhiAnalysis
>
phis
=
computeRequiredPhis
(
getCode
()
->
param_names
,
source_info
->
cfg
,
liveness
);
std
::
unique_ptr
<
PhiAnalysis
>
phis
=
computeRequiredPhis
(
getCode
()
->
param_names
,
source_info
->
cfg
,
liveness
);
llvm
::
SmallVector
<
int
,
16
>
dead_vregs
;
llvm
::
SmallVector
<
int
,
16
>
dead_vregs
;
...
@@ -1538,7 +1539,7 @@ Value ASTInterpreter::getVReg(int vreg, bool is_kill) {
...
@@ -1538,7 +1539,7 @@ Value ASTInterpreter::getVReg(int vreg, bool is_kill) {
if
(
is_kill
)
{
if
(
is_kill
)
{
is_live
=
false
;
is_live
=
false
;
}
else
{
}
else
{
is_live
=
source_info
->
getLiveness
()
->
isLiveAtEnd
(
vreg
,
current_block
);
is_live
=
getLiveness
()
->
isLiveAtEnd
(
vreg
,
current_block
);
}
}
if
(
is_live
)
{
if
(
is_live
)
{
...
@@ -1595,7 +1596,7 @@ Value ASTInterpreter::visit_loadname(BST_LoadName* node) {
...
@@ -1595,7 +1596,7 @@ Value ASTInterpreter::visit_loadname(BST_LoadName* node) {
bool
is_live
=
true
;
bool
is_live
=
true
;
if
(
node
->
lookup_type
==
ScopeInfo
::
VarScopeType
::
FAST
)
{
if
(
node
->
lookup_type
==
ScopeInfo
::
VarScopeType
::
FAST
)
{
assert
(
node
->
vreg
>=
0
);
assert
(
node
->
vreg
>=
0
);
is_live
=
source_info
->
getLiveness
()
->
isLiveAtEnd
(
node
->
vreg
,
current_block
);
is_live
=
getLiveness
()
->
isLiveAtEnd
(
node
->
vreg
,
current_block
);
}
}
if
(
is_live
)
if
(
is_live
)
...
@@ -1696,7 +1697,7 @@ void ASTInterpreter::visit_storename(BST_StoreName* node) {
...
@@ -1696,7 +1697,7 @@ void ASTInterpreter::visit_storename(BST_StoreName* node) {
if
(
jit
)
{
if
(
jit
)
{
bool
is_live
=
true
;
bool
is_live
=
true
;
if
(
!
closure
)
if
(
!
closure
)
is_live
=
source_info
->
getLiveness
()
->
isLiveAtEnd
(
node
->
vreg
,
current_block
);
is_live
=
getLiveness
()
->
isLiveAtEnd
(
node
->
vreg
,
current_block
);
if
(
is_live
)
{
if
(
is_live
)
{
if
(
closure
)
{
if
(
closure
)
{
jit
->
emitSetLocalClosure
(
node
,
value
);
jit
->
emitSetLocalClosure
(
node
,
value
);
...
...
src/codegen/irgen.cpp
View file @
f1599afc
...
@@ -344,7 +344,8 @@ private:
...
@@ -344,7 +344,8 @@ private:
SymbolTable
*
sym_table
;
SymbolTable
*
sym_table
;
bool
created_new_sym_table
;
bool
created_new_sym_table
;
SymTableDstVRegDeleter
(
SymbolTable
*
sym_table
)
:
sym_table
(
sym_table
),
created_new_sym_table
(
false
)
{}
SymTableDstVRegDeleter
(
const
CodeConstants
&
code_constants
,
SymbolTable
*
sym_table
)
:
NoopBSTVisitor
(
code_constants
),
sym_table
(
sym_table
),
created_new_sym_table
(
false
)
{}
protected:
protected:
bool
visit_vreg
(
int
*
vreg
,
bool
is_dst
=
false
)
override
{
bool
visit_vreg
(
int
*
vreg
,
bool
is_dst
=
false
)
override
{
...
@@ -360,9 +361,9 @@ protected:
...
@@ -360,9 +361,9 @@ protected:
}
}
public:
public:
static
std
::
pair
<
SymbolTable
*
,
bool
/* created_new_sym_table */
>
removeDestVRegsFromSymTable
(
SymbolTable
*
sym_table
,
static
std
::
pair
<
SymbolTable
*
,
bool
/* created_new_sym_table */
>
BST_Invoke
*
stmt
)
{
removeDestVRegsFromSymTable
(
const
CodeConstants
&
code_constants
,
SymbolTable
*
sym_table
,
BST_Invoke
*
stmt
)
{
SymTableDstVRegDeleter
visitor
(
sym_table
);
SymTableDstVRegDeleter
visitor
(
code_constants
,
sym_table
);
stmt
->
accept
(
&
visitor
);
stmt
->
accept
(
&
visitor
);
return
std
::
make_pair
(
visitor
.
sym_table
,
visitor
.
created_new_sym_table
);
return
std
::
make_pair
(
visitor
.
sym_table
,
visitor
.
created_new_sym_table
);
}
}
...
@@ -738,7 +739,7 @@ static void emitBBs(IRGenState* irstate, TypeAnalysis* types, const OSREntryDesc
...
@@ -738,7 +739,7 @@ static void emitBBs(IRGenState* irstate, TypeAnalysis* types, const OSREntryDesc
bool
created_new_sym_table
=
false
;
bool
created_new_sym_table
=
false
;
if
(
last_inst
->
type
==
BST_TYPE
::
Invoke
&&
bst_cast
<
BST_Invoke
>
(
last_inst
)
->
exc_dest
==
block
)
if
(
last_inst
->
type
==
BST_TYPE
::
Invoke
&&
bst_cast
<
BST_Invoke
>
(
last_inst
)
->
exc_dest
==
block
)
std
::
tie
(
sym_table
,
created_new_sym_table
)
=
SymTableDstVRegDeleter
::
removeDestVRegsFromSymTable
(
std
::
tie
(
sym_table
,
created_new_sym_table
)
=
SymTableDstVRegDeleter
::
removeDestVRegsFromSymTable
(
sym_table
,
bst_cast
<
BST_Invoke
>
(
last_inst
));
irstate
->
getCodeConstants
(),
sym_table
,
bst_cast
<
BST_Invoke
>
(
last_inst
));
generator
->
copySymbolsFrom
(
sym_table
);
generator
->
copySymbolsFrom
(
sym_table
);
for
(
auto
&&
p
:
*
definedness_tables
[
pred
])
{
for
(
auto
&&
p
:
*
definedness_tables
[
pred
])
{
...
@@ -1118,7 +1119,7 @@ std::pair<CompiledFunction*, llvm::Function*> doCompile(BoxedCode* code, SourceI
...
@@ -1118,7 +1119,7 @@ std::pair<CompiledFunction*, llvm::Function*> doCompile(BoxedCode* code, SourceI
computeBlockSetClosure
(
blocks
);
computeBlockSetClosure
(
blocks
);
}
}
LivenessAnalysis
*
liveness
=
source
->
getLiveness
();
LivenessAnalysis
*
liveness
=
source
->
getLiveness
(
code
->
code_constants
);
std
::
unique_ptr
<
PhiAnalysis
>
phis
;
std
::
unique_ptr
<
PhiAnalysis
>
phis
;
if
(
entry_descriptor
)
if
(
entry_descriptor
)
...
...
src/codegen/irgen/hooks.cpp
View file @
f1599afc
...
@@ -54,9 +54,9 @@
...
@@ -54,9 +54,9 @@
namespace
pyston
{
namespace
pyston
{
LivenessAnalysis
*
SourceInfo
::
getLiveness
()
{
LivenessAnalysis
*
SourceInfo
::
getLiveness
(
const
CodeConstants
&
code_constants
)
{
if
(
!
liveness_info
)
if
(
!
liveness_info
)
liveness_info
=
computeLivenessInfo
(
cfg
);
liveness_info
=
computeLivenessInfo
(
cfg
,
code_constants
);
return
liveness_info
.
get
();
return
liveness_info
.
get
();
}
}
...
...
src/codegen/irgen/irgenerator.h
View file @
f1599afc
...
@@ -116,7 +116,7 @@ public:
...
@@ -116,7 +116,7 @@ public:
SourceInfo
*
getSourceInfo
()
{
return
source_info
;
}
SourceInfo
*
getSourceInfo
()
{
return
source_info
;
}
LivenessAnalysis
*
getLiveness
()
{
return
source_info
->
getLiveness
();
}
LivenessAnalysis
*
getLiveness
()
{
return
source_info
->
getLiveness
(
getCodeConstants
()
);
}
PhiAnalysis
*
getPhis
()
{
return
phis
.
get
();
}
PhiAnalysis
*
getPhis
()
{
return
phis
.
get
();
}
const
ScopingResults
&
getScopeInfo
();
const
ScopingResults
&
getScopeInfo
();
...
...
src/core/bst.h
View file @
f1599afc
...
@@ -722,12 +722,15 @@ template <typename T> T* bst_cast(BST_stmt* node) {
...
@@ -722,12 +722,15 @@ template <typename T> T* bst_cast(BST_stmt* node) {
return
static_cast
<
T
*>
(
node
);
return
static_cast
<
T
*>
(
node
);
}
}
class
CodeConstants
;
class
BSTVisitor
{
class
BSTVisitor
{
public:
public:
BSTVisitor
()
{}
const
CodeConstants
&
code_constants
;
BSTVisitor
(
const
CodeConstants
&
code_constants
)
:
code_constants
(
code_constants
)
{}
virtual
~
BSTVisitor
()
{}
virtual
~
BSTVisitor
()
{}
const
CodeConstants
&
getCodeConstants
()
const
{
return
code_constants
;
}
// pseudo
// pseudo
virtual
bool
visit_vreg
(
int
*
vreg
,
bool
is_dst
=
false
)
{
RELEASE_ASSERT
(
0
,
""
);
}
virtual
bool
visit_vreg
(
int
*
vreg
,
bool
is_dst
=
false
)
{
RELEASE_ASSERT
(
0
,
""
);
}
...
@@ -788,7 +791,7 @@ public:
...
@@ -788,7 +791,7 @@ public:
class
NoopBSTVisitor
:
public
BSTVisitor
{
class
NoopBSTVisitor
:
public
BSTVisitor
{
protected:
protected:
public:
public:
NoopBSTVisitor
()
{}
NoopBSTVisitor
(
const
CodeConstants
&
code_constants
)
:
BSTVisitor
(
code_constants
)
{}
virtual
~
NoopBSTVisitor
()
{}
virtual
~
NoopBSTVisitor
()
{}
virtual
bool
visit_assert
(
BST_Assert
*
node
)
override
{
return
false
;
}
virtual
bool
visit_assert
(
BST_Assert
*
node
)
override
{
return
false
;
}
...
@@ -848,8 +851,12 @@ public:
...
@@ -848,8 +851,12 @@ public:
class
StmtVisitor
{
class
StmtVisitor
{
protected:
protected:
public:
public:
const
CodeConstants
&
code_constants
;
StmtVisitor
(
const
CodeConstants
&
code_constants
)
:
code_constants
(
code_constants
)
{}
virtual
~
StmtVisitor
()
{}
virtual
~
StmtVisitor
()
{}
const
CodeConstants
&
getCodeConstants
()
const
{
return
code_constants
;
}
virtual
void
visit_assert
(
BST_Assert
*
node
)
{
RELEASE_ASSERT
(
0
,
""
);
}
virtual
void
visit_assert
(
BST_Assert
*
node
)
{
RELEASE_ASSERT
(
0
,
""
);
}
virtual
void
visit_augbinop
(
BST_AugBinOp
*
node
)
{
RELEASE_ASSERT
(
0
,
""
);
}
virtual
void
visit_augbinop
(
BST_AugBinOp
*
node
)
{
RELEASE_ASSERT
(
0
,
""
);
}
virtual
void
visit_binop
(
BST_BinOp
*
node
)
{
RELEASE_ASSERT
(
0
,
""
);
}
virtual
void
visit_binop
(
BST_BinOp
*
node
)
{
RELEASE_ASSERT
(
0
,
""
);
}
...
@@ -904,20 +911,18 @@ public:
...
@@ -904,20 +911,18 @@ public:
virtual
void
visit_yield
(
BST_Yield
*
node
)
{
RELEASE_ASSERT
(
0
,
""
);
}
virtual
void
visit_yield
(
BST_Yield
*
node
)
{
RELEASE_ASSERT
(
0
,
""
);
}
};
};
class
CodeConstants
;
void
print_bst
(
BST_stmt
*
bst
,
const
CodeConstants
&
code_constants
);
void
print_bst
(
BST_stmt
*
bst
,
const
CodeConstants
&
code_constants
);
class
PrintVisitor
:
public
BSTVisitor
{
class
PrintVisitor
:
public
BSTVisitor
{
private:
private:
llvm
::
raw_ostream
&
stream
;
llvm
::
raw_ostream
&
stream
;
const
CodeConstants
&
code_constants
;
int
indent
;
int
indent
;
void
printIndent
();
void
printIndent
();
void
printOp
(
AST_TYPE
::
AST_TYPE
op_type
);
void
printOp
(
AST_TYPE
::
AST_TYPE
op_type
);
public:
public:
PrintVisitor
(
const
CodeConstants
&
code_constants
,
int
indent
,
llvm
::
raw_ostream
&
stream
)
PrintVisitor
(
const
CodeConstants
&
code_constants
,
int
indent
,
llvm
::
raw_ostream
&
stream
)
:
stream
(
stream
),
code_constants
(
code_constants
),
indent
(
indent
)
{}
:
BSTVisitor
(
code_constants
),
stream
(
stream
),
indent
(
indent
)
{}
virtual
~
PrintVisitor
()
{}
virtual
~
PrintVisitor
()
{}
void
flush
()
{
stream
.
flush
();
}
void
flush
()
{
stream
.
flush
();
}
...
...
src/core/cfg.cpp
View file @
f1599afc
...
@@ -2916,8 +2916,8 @@ public:
...
@@ -2916,8 +2916,8 @@ public:
enum
Step
{
TrackBlockUsage
=
0
,
UserVisible
,
CrossBlock
,
SingleBlockUse
}
step
;
enum
Step
{
TrackBlockUsage
=
0
,
UserVisible
,
CrossBlock
,
SingleBlockUse
}
step
;
AssignVRegsVisitor
(
llvm
::
DenseMap
<
int
*
,
InternedString
>&
id_vreg
)
AssignVRegsVisitor
(
const
CodeConstants
&
code_constants
,
llvm
::
DenseMap
<
int
*
,
InternedString
>&
id_vreg
)
:
current_block
(
0
),
next_vreg
(
0
),
id_vreg
(
id_vreg
)
{}
:
NoopBSTVisitor
(
code_constants
),
current_block
(
0
),
next_vreg
(
0
),
id_vreg
(
id_vreg
)
{}
bool
visit_vreg
(
int
*
vreg
,
bool
is_dst
=
false
)
override
{
bool
visit_vreg
(
int
*
vreg
,
bool
is_dst
=
false
)
override
{
if
(
is_dst
)
{
if
(
is_dst
)
{
...
@@ -3035,11 +3035,12 @@ public:
...
@@ -3035,11 +3035,12 @@ public:
}
}
};
};
void
VRegInfo
::
assignVRegs
(
CFG
*
cfg
,
const
ParamNames
&
param_names
,
llvm
::
DenseMap
<
int
*
,
InternedString
>&
id_vreg
)
{
void
VRegInfo
::
assignVRegs
(
const
CodeConstants
&
code_constants
,
CFG
*
cfg
,
const
ParamNames
&
param_names
,
llvm
::
DenseMap
<
int
*
,
InternedString
>&
id_vreg
)
{
assert
(
!
hasVRegsAssigned
());
assert
(
!
hasVRegsAssigned
());
// warning: don't rearrange the steps, they need to be run in this exact order!
// warning: don't rearrange the steps, they need to be run in this exact order!
AssignVRegsVisitor
visitor
(
id_vreg
);
AssignVRegsVisitor
visitor
(
code_constants
,
id_vreg
);
for
(
auto
step
:
{
AssignVRegsVisitor
::
TrackBlockUsage
,
AssignVRegsVisitor
::
UserVisible
,
for
(
auto
step
:
{
AssignVRegsVisitor
::
TrackBlockUsage
,
AssignVRegsVisitor
::
UserVisible
,
AssignVRegsVisitor
::
CrossBlock
,
AssignVRegsVisitor
::
SingleBlockUse
})
{
AssignVRegsVisitor
::
CrossBlock
,
AssignVRegsVisitor
::
SingleBlockUse
})
{
visitor
.
step
=
step
;
visitor
.
step
=
step
;
...
@@ -3347,7 +3348,7 @@ static std::pair<CFG*, CodeConstants> computeCFG(llvm::ArrayRef<AST_stmt*> body,
...
@@ -3347,7 +3348,7 @@ static std::pair<CFG*, CodeConstants> computeCFG(llvm::ArrayRef<AST_stmt*> body,
}
}
}
}
rtn
->
getVRegInfo
().
assignVRegs
(
rtn
,
param_names
,
visitor
.
id_vreg
);
rtn
->
getVRegInfo
().
assignVRegs
(
visitor
.
code_constants
,
rtn
,
param_names
,
visitor
.
id_vreg
);
if
(
VERBOSITY
(
"cfg"
)
>=
2
)
{
if
(
VERBOSITY
(
"cfg"
)
>=
2
)
{
...
...
src/core/cfg.h
View file @
f1599afc
...
@@ -168,7 +168,8 @@ public:
...
@@ -168,7 +168,8 @@ public:
int
getNumOfCrossBlockVRegs
()
const
{
return
num_vregs_cross_block
;
}
int
getNumOfCrossBlockVRegs
()
const
{
return
num_vregs_cross_block
;
}
bool
hasVRegsAssigned
()
const
{
return
num_vregs
!=
-
1
;
}
bool
hasVRegsAssigned
()
const
{
return
num_vregs
!=
-
1
;
}
void
assignVRegs
(
CFG
*
cfg
,
const
ParamNames
&
param_names
,
llvm
::
DenseMap
<
int
*
,
InternedString
>&
id_vreg
);
void
assignVRegs
(
const
CodeConstants
&
code_constants
,
CFG
*
cfg
,
const
ParamNames
&
param_names
,
llvm
::
DenseMap
<
int
*
,
InternedString
>&
id_vreg
);
};
};
// Control Flow Graph
// Control Flow Graph
...
...
src/core/types.h
View file @
f1599afc
...
@@ -484,6 +484,7 @@ public:
...
@@ -484,6 +484,7 @@ public:
};
};
// Data about a single textual function definition.
// Data about a single textual function definition.
class
CodeConstants
;
class
SourceInfo
{
class
SourceInfo
{
private:
private:
std
::
unique_ptr
<
LivenessAnalysis
>
liveness_info
;
std
::
unique_ptr
<
LivenessAnalysis
>
liveness_info
;
...
@@ -499,7 +500,7 @@ public:
...
@@ -499,7 +500,7 @@ public:
// between ast.h and core/types.h
// between ast.h and core/types.h
int
ast_type
;
int
ast_type
;
LivenessAnalysis
*
getLiveness
();
LivenessAnalysis
*
getLiveness
(
const
CodeConstants
&
code_constants
);
SourceInfo
(
BoxedModule
*
m
,
ScopingResults
scoping
,
FutureFlags
future_flags
,
int
ast_type
,
bool
is_generator
);
SourceInfo
(
BoxedModule
*
m
,
ScopingResults
scoping
,
FutureFlags
future_flags
,
int
ast_type
,
bool
is_generator
);
~
SourceInfo
();
~
SourceInfo
();
...
...
test/unittests/analysis.cpp
View file @
f1599afc
...
@@ -61,7 +61,7 @@ TEST_F(AnalysisTest, augassign) {
...
@@ -61,7 +61,7 @@ TEST_F(AnalysisTest, augassign) {
}
}
assert
(
cfg
);
assert
(
cfg
);
std
::
unique_ptr
<
LivenessAnalysis
>
liveness
=
computeLivenessInfo
(
cfg
);
std
::
unique_ptr
<
LivenessAnalysis
>
liveness
=
computeLivenessInfo
(
cfg
,
module_code
->
code_constants
);
auto
&&
vregs
=
cfg
->
getVRegInfo
();
auto
&&
vregs
=
cfg
->
getVRegInfo
();
//cfg->print();
//cfg->print();
...
@@ -105,7 +105,7 @@ void doOsrTest(bool is_osr, bool i_maybe_undefined) {
...
@@ -105,7 +105,7 @@ void doOsrTest(bool is_osr, bool i_maybe_undefined) {
}
}
assert
(
code
);
assert
(
code
);
CFG
*
cfg
=
code
->
source
->
cfg
;
CFG
*
cfg
=
code
->
source
->
cfg
;
std
::
unique_ptr
<
LivenessAnalysis
>
liveness
=
computeLivenessInfo
(
cfg
);
std
::
unique_ptr
<
LivenessAnalysis
>
liveness
=
computeLivenessInfo
(
cfg
,
module_code
->
code_constants
);
// cfg->print();
// cfg->print();
...
...
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