|
| 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 | +} |
0 commit comments