Skip to content
Snippets Groups Projects
Commit 47713ee5 authored by Xun Yang's avatar Xun Yang
Browse files

field access segfault gone, but still wrong

parent 72ff78df
No related branches found
No related tags found
2 merge requests!20Master,!19Namenode
......@@ -259,7 +259,7 @@ class MethodNode(ASTNode):
self.label = "M_" + self.typeName + "_" + self.name + "_" + self.paramTypes
self.code = pLabel(self.typeName + "_" + self.name + "_" + self.paramTypes, "method") # label
thisLoc = 8 # Right after ebp, eip
thisLoc = 8 # Right after ebp, eip
bodyCode = ""
if self.body:
......@@ -285,7 +285,7 @@ class MethodNode(ASTNode):
if not 'static' in f.mods and f.variableDcl.variableInit:
f.variableDcl.variableInit.codeGen()
bodyCode += f.variableDcl.variableInit.code
bodyCode += p("mov", "ebx", "[ebp + " + str(thisLoc) + "]") # THIS
bodyCode += p("mov", "ebx", "[ebp - " + str(thisLoc) + "]") # THIS
bodyCode += p("mov", "[ebx + " + str(f.offset) + " ]", "eax")
# body code
......
......@@ -12,7 +12,7 @@ class genNameNode():
# returns code
def codeGen(self):
if self.isThis:
self.code = p("mov", "eax", "[ebp + 8]")
self.code = p("mov", "eax", "[ebp - 8]")
elif self.nodeLink.__class__.__name__ == "VarDclNode":
self.code = p("mov", "eax", "[ebp - " + str(self.nodeLink.offset) + "]")
elif self.nodeLink.__class__.__name__ == "ParamNode":
......@@ -35,7 +35,7 @@ class genNameNode():
result = ""
if self.isThis:
result = p("mov", "eax", "ebp")
result += p("add", "eax", "8")
result += p("sub", "eax", "8")
elif self.nodeLink.__class__.__name__ == "VarDclNode":
result = p("mov", "eax", "ebp")
result += p("sub", "eax", str(self.nodeLink.offset))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment