forked from onlyliuxin/coding2017
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from Mr-ChangK/master
week7
- Loading branch information
Showing
13 changed files
with
562 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
group23/1028361767/mini-jvm/src/com/coderising/jvm/attr/AttributeInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.coderising.jvm.attr; | ||
|
||
public abstract class AttributeInfo { | ||
public static final String CODE = "Code"; | ||
public static final String CONST_VALUE = "ConstantValue"; | ||
public static final String EXCEPTIONS = "Exceptions"; | ||
public static final String LINE_NUM_TABLE = "LineNumberTable"; | ||
public static final String LOCAL_VAR_TABLE = "LocalVariableTable"; | ||
public static final String STACK_MAP_TABLE = "StackMapTable"; | ||
int attrNameIndex; | ||
int attrLen ; | ||
public AttributeInfo(int attrNameIndex, int attrLen) { | ||
|
||
this.attrNameIndex = attrNameIndex; | ||
this.attrLen = attrLen; | ||
} | ||
|
||
|
||
} |
85 changes: 85 additions & 0 deletions
85
group23/1028361767/mini-jvm/src/com/coderising/jvm/attr/CodeAttr.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
package com.coderising.jvm.attr; | ||
|
||
import com.coderising.jvm.clz.ClassFile; | ||
import com.coderising.jvm.constant.ConstantPool; | ||
import com.coderising.jvm.loader.ByteCodeIterator; | ||
|
||
|
||
public class CodeAttr extends AttributeInfo { | ||
private int maxStack ; | ||
private int maxLocals ; | ||
private int codeLen ; | ||
private String code; | ||
public String getCode() { | ||
return code; | ||
} | ||
|
||
//private ByteCodeCommand[] cmds ; | ||
//public ByteCodeCommand[] getCmds() { | ||
// return cmds; | ||
//} | ||
private LineNumberTable lineNumTable; | ||
private LocalVariableTable localVarTable; | ||
private StackMapTable stackMapTable; | ||
|
||
public CodeAttr(int attrNameIndex, int attrLen, int maxStack, int maxLocals, int codeLen,String code /*ByteCodeCommand[] cmds*/) { | ||
super(attrNameIndex, attrLen); | ||
this.maxStack = maxStack; | ||
this.maxLocals = maxLocals; | ||
this.codeLen = codeLen; | ||
this.code = code; | ||
//this.cmds = cmds; | ||
} | ||
|
||
public void setLineNumberTable(LineNumberTable t) { | ||
this.lineNumTable = t; | ||
} | ||
|
||
public void setLocalVariableTable(LocalVariableTable t) { | ||
this.localVarTable = t; | ||
} | ||
|
||
public static CodeAttr parse(ClassFile clzFile, ByteCodeIterator iter){ | ||
int attrNameIndex = iter.nextU2ToInt(); | ||
int attrLen = iter.nextU4ToInt(); | ||
int maxStack = iter.nextU2ToInt(); | ||
int maxLocals = iter.nextU2ToInt(); | ||
int codeLen = iter.nextU4ToInt(); | ||
String code = iter.nextUxToHexString(codeLen); | ||
System.out.println(code); | ||
CodeAttr attr = new CodeAttr(attrNameIndex, attrLen, maxStack, maxLocals, codeLen, code); | ||
int expTableLen = iter.nextU2ToInt(); | ||
if(expTableLen > 0){ | ||
String expTable = iter.nextUxToHexString(expTableLen); | ||
System.out.println("expTable: " + expTable); | ||
// TODO 异常表处理 | ||
} | ||
int subAttrCount = iter.nextU2ToInt(); | ||
ConstantPool pool = clzFile.getConstantPool(); | ||
for (int i = 1; i <= subAttrCount; i++) { | ||
int subAttrNameIndex = iter.nextU2ToInt(); | ||
String subAttrName = pool.getUTF8String(subAttrNameIndex); | ||
iter.back(2); | ||
if(AttributeInfo.LINE_NUM_TABLE.equalsIgnoreCase(subAttrName)){ | ||
attr.setLineNumberTable(LineNumberTable.parse(iter)); | ||
}else if(AttributeInfo.LOCAL_VAR_TABLE.equalsIgnoreCase(subAttrName)){ | ||
attr.setLocalVariableTable(LocalVariableTable.parse(iter)); | ||
}else if(AttributeInfo.STACK_MAP_TABLE.equalsIgnoreCase(subAttrName)){ | ||
attr.setStackMapTable(StackMapTable.parse(iter)); | ||
}else{ | ||
//TODO | ||
throw new RuntimeException("CodeAttr.parse not implement " + subAttrName); | ||
} | ||
} | ||
return attr; | ||
} | ||
private void setStackMapTable(StackMapTable t) { | ||
this.stackMapTable = t; | ||
|
||
} | ||
|
||
|
||
|
||
|
||
|
||
} |
51 changes: 51 additions & 0 deletions
51
group23/1028361767/mini-jvm/src/com/coderising/jvm/attr/LineNumberTable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
package com.coderising.jvm.attr; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
import com.coderising.jvm.loader.ByteCodeIterator; | ||
|
||
public class LineNumberTable extends AttributeInfo { | ||
List<LineNumberItem> items = new ArrayList<LineNumberItem>(); | ||
|
||
private static class LineNumberItem{ | ||
int startPC; | ||
int lineNum; | ||
public int getStartPC() { | ||
return startPC; | ||
} | ||
public void setStartPC(int startPC) { | ||
this.startPC = startPC; | ||
} | ||
public int getLineNum() { | ||
return lineNum; | ||
} | ||
public void setLineNum(int lineNum) { | ||
this.lineNum = lineNum; | ||
} | ||
} | ||
public void addLineNumberItem(LineNumberItem item){ | ||
this.items.add(item); | ||
} | ||
public LineNumberTable(int attrNameIndex, int attrLen) { | ||
super(attrNameIndex, attrLen); | ||
|
||
} | ||
|
||
public static LineNumberTable parse(ByteCodeIterator iter){ | ||
int attrNameIndex = iter.nextU2ToInt(); | ||
int attrLen = iter.nextU4ToInt(); | ||
LineNumberTable table = new LineNumberTable(attrNameIndex, attrLen); | ||
int lineNumberTableLen = iter.nextU2ToInt(); | ||
for(int i=0;i<lineNumberTableLen;i++){ | ||
LineNumberItem item = new LineNumberItem(); | ||
item.setStartPC(iter.nextU2ToInt()); | ||
item.setLineNum(iter.nextU2ToInt()); | ||
table.addLineNumberItem(item); | ||
} | ||
return table; | ||
} | ||
|
||
|
||
|
||
} |
39 changes: 39 additions & 0 deletions
39
group23/1028361767/mini-jvm/src/com/coderising/jvm/attr/LocalVariableItem.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
package com.coderising.jvm.attr; | ||
|
||
public class LocalVariableItem { | ||
private int startPC; | ||
private int length; | ||
private int nameIndex; | ||
private int descIndex; | ||
private int index; | ||
public int getStartPC() { | ||
return startPC; | ||
} | ||
public void setStartPC(int startPC) { | ||
this.startPC = startPC; | ||
} | ||
public int getLength() { | ||
return length; | ||
} | ||
public void setLength(int length) { | ||
this.length = length; | ||
} | ||
public int getNameIndex() { | ||
return nameIndex; | ||
} | ||
public void setNameIndex(int nameIndex) { | ||
this.nameIndex = nameIndex; | ||
} | ||
public int getDescIndex() { | ||
return descIndex; | ||
} | ||
public void setDescIndex(int descIndex) { | ||
this.descIndex = descIndex; | ||
} | ||
public int getIndex() { | ||
return index; | ||
} | ||
public void setIndex(int index) { | ||
this.index = index; | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
group23/1028361767/mini-jvm/src/com/coderising/jvm/attr/LocalVariableTable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
package com.coderising.jvm.attr; | ||
|
||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
import com.coderising.jvm.constant.ConstantPool; | ||
|
||
import com.coderising.jvm.loader.ByteCodeIterator; | ||
|
||
public class LocalVariableTable extends AttributeInfo{ | ||
|
||
List<LocalVariableItem> items = new ArrayList<LocalVariableItem>(); | ||
|
||
public LocalVariableTable(int attrNameIndex, int attrLen) { | ||
super(attrNameIndex, attrLen); | ||
} | ||
|
||
public static LocalVariableTable parse(ByteCodeIterator iter){ | ||
int attrNameIndex = iter.nextU2ToInt(); | ||
int attrLen = iter.nextU4ToInt(); | ||
LocalVariableTable table = new LocalVariableTable(attrNameIndex, attrLen); | ||
int localVarLen = iter.nextU2ToInt(); | ||
for(int i=0;i<localVarLen;i++){ | ||
LocalVariableItem item = new LocalVariableItem(); | ||
item.setStartPC(iter.nextU2ToInt()); | ||
item.setLength(iter.nextU2ToInt()); | ||
item.setNameIndex(iter.nextU2ToInt()); | ||
item.setDescIndex(iter.nextU2ToInt()); | ||
item.setIndex(iter.nextU2ToInt()); | ||
table.addLocalVariableItem(item); | ||
} | ||
return table; | ||
} | ||
private void addLocalVariableItem(LocalVariableItem item) { | ||
this.items.add(item); | ||
} | ||
|
||
|
||
} |
30 changes: 30 additions & 0 deletions
30
group23/1028361767/mini-jvm/src/com/coderising/jvm/attr/StackMapTable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package com.coderising.jvm.attr; | ||
|
||
|
||
import com.coderising.jvm.loader.ByteCodeIterator; | ||
|
||
public class StackMapTable extends AttributeInfo{ | ||
|
||
private String originalCode; | ||
|
||
public StackMapTable(int attrNameIndex, int attrLen) { | ||
super(attrNameIndex, attrLen); | ||
} | ||
|
||
public static StackMapTable parse(ByteCodeIterator iter){ | ||
int index = iter.nextU2ToInt(); | ||
int len = iter.nextU4ToInt(); | ||
StackMapTable t = new StackMapTable(index,len); | ||
|
||
//后面的StackMapTable太过复杂, 不再处理, 只把原始的代码读进来保存 | ||
String code = iter.nextUxToHexString(len); | ||
t.setOriginalCode(code); | ||
|
||
return t; | ||
} | ||
|
||
private void setOriginalCode(String code) { | ||
this.originalCode = code; | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.