added 'getParent' to Pseudocode
fixed DataFlowInfoTest: variable data shouldn't be built for locals as independent declarations
This commit is contained in:
@@ -17,6 +17,7 @@
|
||||
package org.jetbrains.jet.lang.cfg.pseudocode;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import org.jetbrains.jet.lang.psi.JetElement;
|
||||
|
||||
import java.util.List;
|
||||
@@ -26,6 +27,9 @@ public interface Pseudocode {
|
||||
@NotNull
|
||||
JetElement getCorrespondingElement();
|
||||
|
||||
@Nullable
|
||||
Pseudocode getParent();
|
||||
|
||||
@NotNull
|
||||
Set<LocalFunctionDeclarationInstruction> getLocalDeclarations();
|
||||
|
||||
|
||||
@@ -78,6 +78,7 @@ public class PseudocodeImpl implements Pseudocode {
|
||||
private final List<Instruction> mutableInstructionList = new ArrayList<Instruction>();
|
||||
private final List<Instruction> instructions = new ArrayList<Instruction>();
|
||||
|
||||
private Pseudocode parent = null;
|
||||
private Set<LocalFunctionDeclarationInstruction> localDeclarations = null;
|
||||
//todo getters
|
||||
private final Map<JetElement, Instruction> representativeInstructions = new HashMap<JetElement, Instruction>();
|
||||
@@ -122,6 +123,26 @@ public class PseudocodeImpl implements Pseudocode {
|
||||
return localDeclarations;
|
||||
}
|
||||
|
||||
@Override
|
||||
@Nullable
|
||||
public Pseudocode getParent() {
|
||||
return parent;
|
||||
}
|
||||
|
||||
private void setParent(Pseudocode parent) {
|
||||
this.parent = parent;
|
||||
}
|
||||
|
||||
@NotNull
|
||||
public Pseudocode getRootPseudocode() {
|
||||
Pseudocode parent = getParent();
|
||||
while (parent != null) {
|
||||
if (parent.getParent() == null) return parent;
|
||||
parent = parent.getParent();
|
||||
}
|
||||
return this;
|
||||
}
|
||||
|
||||
/*package*/ PseudocodeLabel createLabel(String name) {
|
||||
PseudocodeLabel label = new PseudocodeLabel(name);
|
||||
labels.add(label);
|
||||
@@ -292,7 +313,9 @@ public class PseudocodeImpl implements Pseudocode {
|
||||
|
||||
@Override
|
||||
public void visitLocalFunctionDeclarationInstruction(LocalFunctionDeclarationInstruction instruction) {
|
||||
((PseudocodeImpl)instruction.getBody()).postProcess();
|
||||
PseudocodeImpl body = (PseudocodeImpl) instruction.getBody();
|
||||
body.setParent(PseudocodeImpl.this);
|
||||
body.postProcess();
|
||||
instruction.setNext(getSinkInstruction());
|
||||
}
|
||||
|
||||
|
||||
@@ -34,25 +34,25 @@ sink:
|
||||
}
|
||||
---------------------
|
||||
L3:
|
||||
<START> INIT: in: {} out: {}
|
||||
v(x: Int) INIT: in: {} out: {x=D}
|
||||
w(x) INIT: in: {x=D} out: {x=ID}
|
||||
mark(val y = x + a use(a)) INIT: in: {x=ID} out: {x=ID}
|
||||
v(val y = x + a) INIT: in: {x=ID} out: {x=ID, y=D}
|
||||
mark(x + a) INIT: in: {x=ID, y=D} out: {x=ID, y=D} USE: in: {a=READ, x=READ} out: {a=READ, x=READ}
|
||||
r(x) USE: in: {a=READ} out: {a=READ, x=READ}
|
||||
<START> INIT: in: {a=ID, f=D} out: {a=ID, f=D}
|
||||
v(x: Int) INIT: in: {a=ID, f=D} out: {a=ID, f=D, x=D}
|
||||
w(x) INIT: in: {a=ID, f=D, x=D} out: {a=ID, f=D, x=ID}
|
||||
mark(val y = x + a use(a)) INIT: in: {a=ID, f=D, x=ID} out: {a=ID, f=D, x=ID}
|
||||
v(val y = x + a) INIT: in: {a=ID, f=D, x=ID} out: {a=ID, f=D, x=ID, y=D}
|
||||
mark(x + a) INIT: in: {a=ID, f=D, x=ID, y=D} out: {a=ID, f=D, x=ID, y=D} USE: in: {a=READ, x=READ} out: {a=READ, x=READ}
|
||||
r(x) USE: in: {a=READ} out: {a=READ, x=READ}
|
||||
r(a)
|
||||
call(+, plus)
|
||||
w(y) INIT: in: {x=ID, y=D} out: {x=ID, y=ID}
|
||||
mark(use(a)) INIT: in: {x=ID, y=ID} out: {x=ID, y=ID} USE: in: {a=READ} out: {a=READ}
|
||||
r(a) USE: in: {} out: {a=READ}
|
||||
w(y) INIT: in: {a=ID, f=D, x=ID, y=D} out: {a=ID, f=D, x=ID, y=ID}
|
||||
mark(use(a)) INIT: in: {a=ID, f=D, x=ID, y=ID} out: {a=ID, f=D, x=ID, y=ID} USE: in: {a=READ} out: {a=READ}
|
||||
r(a) USE: in: {} out: {a=READ}
|
||||
call(use, use)
|
||||
L4:
|
||||
<END>
|
||||
error:
|
||||
<ERROR> INIT: in: {} out: {}
|
||||
sink:
|
||||
<SINK> INIT: in: {x=ID, y=ID} out: {x=ID, y=ID} USE: in: {} out: {}
|
||||
<SINK> INIT: in: {a=ID, f=D, x=ID, y=ID} out: {a=ID, f=D, x=ID, y=ID} USE: in: {} out: {}
|
||||
=====================
|
||||
== use ==
|
||||
fun use(vararg a: Any?) = a
|
||||
|
||||
@@ -42,7 +42,7 @@ public abstract class AbstractDataFlowTest extends AbstractPseudocodeTest {
|
||||
@NotNull StringBuilder out,
|
||||
@NotNull BindingContext bindingContext
|
||||
) {
|
||||
PseudocodeVariablesData pseudocodeVariablesData = new PseudocodeVariablesData(pseudocode, bindingContext);
|
||||
PseudocodeVariablesData pseudocodeVariablesData = new PseudocodeVariablesData(pseudocode.getRootPseudocode(), bindingContext);
|
||||
final Map<Instruction, Edges<Map<VariableDescriptor, VariableInitState>>> variableInitializers =
|
||||
pseudocodeVariablesData.getVariableInitializers();
|
||||
final Map<Instruction, Edges<Map<VariableDescriptor, VariableUseState>>> useStatusData =
|
||||
|
||||
Reference in New Issue
Block a user