Skip to content

Commit 8db054b

Browse files
committedMay 5, 2015
split out code into better named file
1 parent d73a118 commit 8db054b

File tree

3 files changed

+53
-30
lines changed

3 files changed

+53
-30
lines changed
 

‎svm-partition-trace/src/main/java/com/lexicalscope/svm/partition/trace/PartitionInstrumentation.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.lexicalscope.svm.partition.trace;
22

33
import static com.lexicalscope.svm.partition.trace.ops.CheckPartitionAtMethodEntryExit.checkPartitionAtMethodEntryExit;
4-
import static com.lexicalscope.svm.partition.trace.ops.TrackPartitionAtNew.constructionOf;
4+
import static com.lexicalscope.svm.partition.trace.ops.TrackPartitionAtConstruction.constructionOf;
55
import static com.lexicalscope.svm.vm.j.klass.SMethodDescriptorMatchers.anyMethod;
66

77
import org.hamcrest.Matcher;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
package com.lexicalscope.svm.partition.trace.ops;
2+
3+
import static org.hamcrest.Matchers.any;
4+
5+
import org.hamcrest.Matcher;
6+
7+
import com.lexicalscope.svm.j.instruction.InstructionInternal;
8+
import com.lexicalscope.svm.j.instruction.LinearOp;
9+
import com.lexicalscope.svm.j.instruction.instrumentation.CompositeMethodInstrumentor;
10+
import com.lexicalscope.svm.j.instruction.instrumentation.InstructionInstrumentor;
11+
import com.lexicalscope.svm.j.instruction.instrumentation.MethodInstrumentor;
12+
import com.lexicalscope.svm.j.instruction.instrumentation.finders.FindConstructorCall;
13+
import com.lexicalscope.svm.partition.spec.CallContext;
14+
import com.lexicalscope.svm.vm.j.Instruction;
15+
import com.lexicalscope.svm.vm.j.InstructionCode;
16+
import com.lexicalscope.svm.vm.j.InstructionQueryAdapter;
17+
import com.lexicalscope.svm.vm.j.KlassInternalName;
18+
import com.lexicalscope.svm.vm.j.Vop;
19+
import com.lexicalscope.svm.vm.j.klass.SMethodDescriptor;
20+
21+
public class TrackPartitionAtConstruction {
22+
private final static Object aPart = new Object(){ @Override public String toString() { return "aPart"; }};
23+
private final static Object uPart = new Object(){ @Override public String toString() { return "uPart"; }};
24+
25+
private static MatcherPartition matcherPartition(final Matcher<? super CallContext> aPartNewInstanceMatcher, final Matcher<? super CallContext> uPartNewInstanceMatcher) {
26+
return new MatcherPartition(
27+
aPartNewInstanceMatcher,
28+
uPartNewInstanceMatcher,
29+
aPart,
30+
uPart);
31+
}
32+
33+
public static MethodInstrumentor constructionOf(
34+
final Matcher<? super CallContext> aPartNewInstanceMatcher,
35+
final Matcher<? super CallContext> uPartNewInstanceMatcher) {
36+
final MatcherPartition partition = matcherPartition(aPartNewInstanceMatcher, uPartNewInstanceMatcher);
37+
return new CompositeMethodInstrumentor(
38+
new FindConstructorCall(any(KlassInternalName.class)),
39+
new InstructionInstrumentor(){
40+
@Override public void candidate(final Instruction instruction) {
41+
final Vop tagger = instruction.query(new InstructionQueryAdapter<Vop>(){
42+
@Override public Vop invokespecial(final SMethodDescriptor methodName, final MethodArguments methodArguments) {
43+
return new TagConstructorRecieverWithPartition(methodName, methodArguments, partition);
44+
}
45+
});
46+
// TODO[tim]:make it easier to manufacture instructions
47+
assert tagger != null;
48+
instruction.insertHere(new InstructionInternal(new LinearOp(tagger), InstructionCode.synthetic));
49+
}
50+
});
51+
}
52+
}

‎svm-partition-trace/src/main/java/com/lexicalscope/svm/partition/trace/ops/TrackPartitionAtNew.java

-29
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,11 @@
11
package com.lexicalscope.svm.partition.trace.ops;
22

3-
import static org.hamcrest.Matchers.any;
4-
53
import org.hamcrest.Matcher;
64

7-
import com.lexicalscope.svm.j.instruction.InstructionInternal;
8-
import com.lexicalscope.svm.j.instruction.LinearOp;
95
import com.lexicalscope.svm.j.instruction.factory.InstructionSource;
10-
import com.lexicalscope.svm.j.instruction.instrumentation.CompositeMethodInstrumentor;
11-
import com.lexicalscope.svm.j.instruction.instrumentation.InstructionInstrumentor;
126
import com.lexicalscope.svm.j.instruction.instrumentation.MethodInstrumentor;
13-
import com.lexicalscope.svm.j.instruction.instrumentation.finders.FindConstructorCall;
147
import com.lexicalscope.svm.partition.spec.CallContext;
158
import com.lexicalscope.svm.vm.j.Instruction;
16-
import com.lexicalscope.svm.vm.j.InstructionCode;
179
import com.lexicalscope.svm.vm.j.InstructionQueryAdapter;
1810
import com.lexicalscope.svm.vm.j.KlassInternalName;
1911
import com.lexicalscope.svm.vm.j.Vop;
@@ -42,27 +34,6 @@ private static MatcherPartition matcherPartition(final Matcher<? super CallConte
4234
aPart,
4335
uPart);
4436
}
45-
46-
public static MethodInstrumentor constructionOf(
47-
final Matcher<? super CallContext> aPartNewInstanceMatcher,
48-
final Matcher<? super CallContext> uPartNewInstanceMatcher) {
49-
final MatcherPartition partition = matcherPartition(aPartNewInstanceMatcher, uPartNewInstanceMatcher);
50-
return new CompositeMethodInstrumentor(
51-
new FindConstructorCall(any(KlassInternalName.class)),
52-
new InstructionInstrumentor(){
53-
@Override public void candidate(final Instruction instruction) {
54-
final Vop tagger = instruction.query(new InstructionQueryAdapter<Vop>(){
55-
@Override public Vop invokespecial(final SMethodDescriptor methodName, final MethodArguments methodArguments) {
56-
return new TagConstructorRecieverWithPartition(methodName, methodArguments, partition);
57-
}
58-
});
59-
// TODO[tim]:make it easier to manufacture instructions
60-
assert tagger != null;
61-
instruction.insertHere(new InstructionInternal(new LinearOp(tagger), InstructionCode.synthetic));
62-
}
63-
});
64-
}
65-
6637
@Override public Instruction instrument(
6738
final InstructionSource instructions,
6839
final SMethodDescriptor method,

0 commit comments

Comments
 (0)
Please sign in to comment.