Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cs444
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xun Yang
cs444
Commits
014420b3
Commit
014420b3
authored
5 years ago
by
Xun Yang
Browse files
Options
Downloads
Patches
Plain Diff
some type checking stuff
parent
c604e257
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
AST.py
+7
-1
7 additions, 1 deletion
AST.py
AstBuilding.py
+3
-0
3 additions, 0 deletions
AstBuilding.py
ExprPrimaryNodes.py
+12
-2
12 additions, 2 deletions
ExprPrimaryNodes.py
MemberNodes.py
+1
-1
1 addition, 1 deletion
MemberNodes.py
TheTypeNode.py
+51
-24
51 additions, 24 deletions
TheTypeNode.py
with
74 additions
and
28 deletions
AST.py
+
7
−
1
View file @
014420b3
...
...
@@ -12,6 +12,7 @@ class ASTNode():
def
__init__
(
self
,
parseTree
):
self
.
parseTree
=
parseTree
self
.
children
=
[]
self
.
myType
=
""
# either empty string or a TypeStruct
# Do certains actions on every node of the AST tree
# call the same method in each class and its children recursively
...
...
@@ -40,7 +41,7 @@ class ASTNode():
else
:
c
.
recurseBuildEnv
(
result
)
if
c
.
__class__
.
__name__
==
'
VarDclNode
'
:
preVarDcl
=
c
preVarDcl
=
c
def
buildEnv
(
self
,
parentEnv
):
...
...
@@ -53,6 +54,11 @@ class ASTNode():
def
checkHierarchy
(
self
):
pass
def
checkType
(
self
):
for
c
in
self
.
children
:
if
c
and
hasattr
(
c
,
'
checkType
'
):
c
.
checkType
()
def
printNodePretty
(
self
,
prefix
=
0
):
pp
=
pprint
.
PrettyPrinter
(
indent
=
prefix
)
pp
.
pprint
(
self
.
__class__
.
__name__
)
...
...
This diff is collapsed.
Click to expand it.
AstBuilding.py
+
3
−
0
View file @
014420b3
...
...
@@ -42,4 +42,7 @@ def buildEnvAndLink(ASTs):
for
t
in
ASTs
:
t
[
1
].
recurseAction
(
"
checkHierarchy
"
)
for
t
in
ASTs
:
t
[
1
].
checkType
()
#######################################################
This diff is collapsed.
Click to expand it.
ExprPrimaryNodes.py
+
12
−
2
View file @
014420b3
from
AST
import
ASTNode
,
getParseTreeNodes
from
Environment
import
Env
from
UnitNodes
import
LiteralNode
from
TheTypeNode
import
TypeNode
from
TheTypeNode
import
TypeNode
,
TypeStruct
# file containing smaller (lower level nodes) in the AST
# nodes in this file:
...
...
@@ -48,7 +48,7 @@ def makeNodeFromAllPrimary(parseTree):
if
parseTree
.
children
[
0
].
children
[
0
].
name
==
'
arrayAccess
'
:
return
ArrayAccessNode
(
parseTree
.
children
[
0
].
children
[
0
])
parseTree
=
parseTree
.
children
[
0
].
children
[
0
]
if
parseTree
.
name
==
'
primary
'
:
if
parseTree
.
children
[
0
].
name
==
'
arrayAccess
'
:
return
ArrayAccessNode
(
parseTree
.
children
[
0
])
...
...
@@ -207,6 +207,16 @@ class ExprNode(ASTNode):
self
.
children
.
append
(
self
.
left
)
self
.
children
.
append
(
self
.
right
)
def
checkType
(
self
):
super
().
checkType
()
# check children's type first to populate their myType field
if
self
.
op
==
'
==
'
or
self
.
op
==
'
!=
'
:
if
(
self
.
left
.
myType
==
self
.
right
.
myType
)
or
(
self
.
left
.
myType
.
isNum
()
and
self
.
right
.
myType
.
isNum
()):
self
.
myType
=
TypeStruct
(
"
boolean
"
)
else
:
raise
Exception
(
'
ERROR: Incompatible types for comparison.
'
)
# TODO: type check other types of expr
###################################################################################
# fieldAccess primary PERIOD ID
...
...
This diff is collapsed.
Click to expand it.
MemberNodes.py
+
1
−
1
View file @
014420b3
...
...
@@ -61,7 +61,7 @@ class MethodNode(ASTNode):
for
n
in
nameNodes
:
paramNode
=
ParamNode
(
n
)
self
.
params
.
append
(
paramNode
)
self
.
paramTypes
+=
paramNode
.
paramType
.
name
self
.
paramTypes
+=
paramNode
.
paramType
.
myType
.
name
nameNodes
=
getParseTreeNodes
([
'
type
'
,
'
VOID
'
],
parseTree
,
[
'
methodBody
'
,
'
params
'
])
for
n
in
nameNodes
:
...
...
This diff is collapsed.
Click to expand it.
TheTypeNode.py
+
51
−
24
View file @
014420b3
from
AST
import
ASTNode
,
getParseTreeNodes
##################################################################################
# type: primitiveType, ArrayType, RefType
# TypeNode: an AST node represents a type
# TypeStruct: a struct holding type information for type checking
class
TypeNode
(
ASTNode
):
# always list all fields in the init method to show the class structure
def
__init__
(
self
,
parseTree
):
self
.
parseTree
=
parseTree
self
.
name
=
''
self
.
isArray
=
False
self
.
isPrimitive
=
False
self
.
env
=
None
self
.
children
=
[]
self
.
myType
=
None
# pointer pointing to the type
self
.
myType
=
""
# empty string or typeStruct
if
parseTree
==
'
VOID
'
:
self
.
name
=
'
void
'
self
.
isPrimitive
=
True
self
.
myType
=
TypeStruct
(
'
void
'
)
else
:
nameNodes
=
getParseTreeNodes
([
'
BOOLEAN
'
,
'
BYTE
'
,
'
CHAR
'
,
'
INT
'
,
'
SHORT
'
],
parseTree
)
if
nameNodes
:
self
.
isPrimitive
=
True
self
.
name
=
nameNodes
[
0
].
lex
self
.
myType
=
TypeStruct
(
nameNodes
[
0
].
lex
)
else
:
self
.
name
=
getParseTreeNodes
([
'
ID
'
,
'
COMPID
'
],
parseTree
)[
0
].
lex
self
.
myType
=
TypeStruct
(
getParseTreeNodes
([
'
ID
'
,
'
COMPID
'
],
parseTree
)[
0
].
lex
)
nameNodes
=
getParseTreeNodes
([
'
LSQRBRACK
'
],
parseTree
)
if
nameNodes
:
self
.
isArray
=
True
self
.
myType
.
isArray
=
True
def
__eq__
(
self
,
other
):
return
self
.
nam
e
==
other
.
nam
e
return
self
.
myTyp
e
==
other
.
myTyp
e
def
linkType
(
self
):
self
.
myType
.
link
(
self
.
env
)
class
TypeStruct
():
def
__init__
(
self
,
name
):
self
.
isArray
=
False
self
.
isPrimitive
=
False
self
.
typePointer
=
None
self
.
name
=
name
if
name
in
[
'
boolean
'
,
'
byte
'
,
'
char
'
,
'
int
'
,
'
short
'
,
'
void
'
]:
self
.
isPrimitive
=
True
def
link
(
self
,
env
):
if
not
self
.
isPrimitive
:
self
.
myType
=
self
.
env
.
getNode
(
self
.
name
,
'
type
'
)
self
.
name
=
self
.
myType
.
canonName
# Use canonName instead of simple name for comparison
else
:
self
.
myType
=
self
.
name
self
.
typePointer
=
env
.
getNode
(
self
.
name
,
'
type
'
)
self
.
name
=
self
.
typePointer
.
canonName
# Use canonName instead of simple name for comparison
def
__eq__
(
self
,
other
):
return
self
.
name
==
other
.
name
def
isNum
(
self
):
return
self
.
name
in
[
'
int
'
,
'
short
'
,
'
char
'
,
'
byte
'
]
# if self is assignable to input typeNode: left := self
def
assignable
(
self
,
left
):
if
self
==
left
\
or
(
self
.
name
in
[
'
short
'
,
'
char
'
,
'
byte
'
]
and
left
.
name
==
'
int
'
)
\
or
(
self
.
name
==
'
byte
'
and
left
.
name
==
'
short
'
)
\
or
(
not
left
.
isPrimitive
and
self
.
name
==
'
null
'
):
return
True
return
False
# if self is assignable to input typeNode: self := right
# right is either a TypeNode or a LiteralNode
def
assignable
(
self
,
right
):
if
self
.
isArray
==
right
.
isArray
:
if
self
==
right
\
or
(
right
.
name
in
[
'
short
'
,
'
char
'
,
'
byte
'
]
and
self
.
name
==
'
int
'
)
\
or
(
right
.
name
==
'
byte
'
and
self
.
name
==
'
short
'
)
\
or
(
not
self
.
isPrimitive
and
right
.
name
==
'
null
'
):
return
True
# check if self is super of right
elif
((
not
self
.
isPrimitive
)
and
(
not
right
.
isPrimitive
))
\
and
(
self
.
name
in
getSupers
(
right
.
typePointer
)):
return
True
return
False
return
False
# is java.Object added to super class of everything/
# helper: get list of all super class/interface of a ClassInterNode
def
getSupers
(
classType
):
result
=
[]
if
not
classType
.
super
:
return
result
for
s
in
classType
.
super
:
result
.
append
(
s
.
canonName
)
result
.
extend
(
getSupers
(
s
))
return
result
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment