mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-05 17:37:22 +00:00
67 lines
1.8 KiB
Java
67 lines
1.8 KiB
Java
package com.jpexs.decompiler.flash.graph;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
import java.util.Stack;
|
|
|
|
/**
|
|
*
|
|
* @author JPEXS
|
|
*/
|
|
public abstract class GraphSource {
|
|
|
|
public abstract int size();
|
|
|
|
public abstract GraphSourceItem get(int pos);
|
|
|
|
public abstract boolean isEmpty();
|
|
|
|
public abstract List<GraphTargetItem> translatePart(List localData, Stack<GraphTargetItem> stack, int start, int end);
|
|
|
|
private void visitCode(int ip, int lastIp, HashMap<Integer, List<Integer>> refs) {
|
|
while (ip < size()) {
|
|
refs.get(ip).add(lastIp);
|
|
lastIp = ip;
|
|
if (refs.get(ip).size() > 1) {
|
|
break;
|
|
}
|
|
GraphSourceItem ins = get(ip);
|
|
|
|
|
|
if (ins.isExit()) {
|
|
break;
|
|
}
|
|
|
|
if (ins.isBranch() || ins.isJump()) {
|
|
List<Integer> branches = ins.getBranches(this);
|
|
for (int b : branches) {
|
|
if (b >= 0) {
|
|
visitCode(b, ip, refs);
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
ip++;
|
|
};
|
|
}
|
|
|
|
public HashMap<Integer, List<Integer>> visitCode(List<Integer> alternateEntries) {
|
|
HashMap<Integer, List<Integer>> refs = new HashMap<Integer, List<Integer>>();
|
|
for (int i = 0; i < size(); i++) {
|
|
refs.put(i, new ArrayList<Integer>());
|
|
}
|
|
visitCode(0, 0, refs);
|
|
int pos = 0;
|
|
for (int e : alternateEntries) {
|
|
pos++;
|
|
visitCode(e, -pos, refs);
|
|
}
|
|
return refs;
|
|
}
|
|
|
|
public abstract int adr2pos(long adr);
|
|
|
|
public abstract long pos2adr(int pos);
|
|
}
|