-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Classes needed for lambda merging in ProGuard #36
base: master
Are you sure you want to change the base?
Changes from all commits
ca6936c
f0ed6b2
7f1f0af
b626bfc
e92a27b
2acc29c
e61c38d
e39c05e
5f24388
3338829
4f74d43
0d9cb78
8c81564
ea25197
fc68b07
cd4a6a3
5550c96
9860f9e
fcfa75e
a33e5da
bf8155b
b2877ea
9d3bb0c
8c82796
758be93
528e7a7
7821839
b542b9b
99065f7
4ef0e59
67cde7f
72a80b9
7eeff48
02e8fd0
660a391
59f7999
7d34770
7441f81
082b3a8
31f231d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* ProGuardCORE -- library to process Java bytecode. | ||
* | ||
* Copyright (c) 2002-2022 Guardsquare NV | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package proguard.classfile.attribute.visitor; | ||
|
||
import proguard.classfile.Clazz; | ||
import proguard.classfile.constant.ClassConstant; | ||
import proguard.classfile.constant.Constant; | ||
import proguard.classfile.constant.visitor.ConstantVisitor; | ||
import proguard.classfile.visitor.ClassVisitor; | ||
import proguard.classfile.visitor.MemberVisitor; | ||
|
||
/** | ||
* This {@link ConstantVisitor} lets a given {@link ClassVisitor} visit the classes that are referenced by the visited | ||
* class constants. | ||
* | ||
* @author Joren Van Hecke | ||
*/ | ||
public class ClassConstantToClassVisitor implements ConstantVisitor | ||
{ | ||
|
||
private final ClassVisitor classVisitor; | ||
|
||
public ClassConstantToClassVisitor(ClassVisitor classVisitor) | ||
{ | ||
this.classVisitor = classVisitor; | ||
} | ||
|
||
public void visitAnyConstant(Clazz clazz, Constant constant) {} | ||
|
||
@Override | ||
public void visitClassConstant(Clazz clazz, ClassConstant classConstant) | ||
{ | ||
if (this.classVisitor != null && classConstant.referencedClass != null) | ||
{ | ||
classConstant.referencedClass.accept(this.classVisitor); | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/* | ||
* ProGuardCORE -- library to process Java bytecode. | ||
* | ||
* Copyright (c) 2002-2022 Guardsquare NV | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package proguard.classfile.editor; | ||
|
||
import org.apache.logging.log4j.LogManager; | ||
import org.apache.logging.log4j.Logger; | ||
import proguard.classfile.Clazz; | ||
import proguard.classfile.attribute.Attribute; | ||
import proguard.classfile.attribute.InnerClassesAttribute; | ||
import proguard.classfile.attribute.InnerClassesInfo; | ||
import proguard.classfile.attribute.visitor.AttributeVisitor; | ||
import proguard.classfile.attribute.visitor.InnerClassesInfoVisitor; | ||
|
||
import java.util.HashSet; | ||
import java.util.Objects; | ||
import java.util.Set; | ||
|
||
/** | ||
* This {@link AttributeVisitor} and {@link InnerClassesInfoVisitor} removes a given {@link Clazz} from all visited | ||
* {@link InnerClassesAttribute}s. | ||
* | ||
* @author Joren Van Hecke | ||
*/ | ||
public class InnerClassRemover implements AttributeVisitor, InnerClassesInfoVisitor | ||
{ | ||
private final Clazz classToBeRemoved; | ||
private final Set<InnerClassesInfo> innerClassesEntriesToBeRemoved = new HashSet<>(); | ||
private static final Logger logger = LogManager.getLogger(InnerClassRemover.class); | ||
|
||
public InnerClassRemover(Clazz clazz) | ||
{ | ||
this.classToBeRemoved = clazz; | ||
} | ||
|
||
@Override | ||
public void visitAnyAttribute(Clazz clazz, Attribute attribute) {} | ||
|
||
@Override | ||
public void visitInnerClassesAttribute(Clazz clazz, InnerClassesAttribute innerClassesAttribute) | ||
{ | ||
innerClassesAttribute.innerClassEntriesAccept(clazz, this); | ||
InnerClassesAttributeEditor editor = new InnerClassesAttributeEditor(innerClassesAttribute); | ||
logger.trace("{} inner class entries are removed from class {}", | ||
innerClassesEntriesToBeRemoved.size(), clazz); | ||
for (InnerClassesInfo entry : innerClassesEntriesToBeRemoved) | ||
{ | ||
editor.removeInnerClassesInfo(entry); | ||
} | ||
} | ||
|
||
@Override | ||
public void visitInnerClassesInfo(Clazz clazz, InnerClassesInfo innerClassesInfo) | ||
{ | ||
String innerClassName = clazz.getClassName(innerClassesInfo.u2innerClassIndex); | ||
if (Objects.equals(innerClassName, this.classToBeRemoved.getName())) | ||
{ | ||
logger.trace("Removing inner classes entry of class {} enqueued to be removed from class {}", | ||
innerClassName, clazz); | ||
innerClassesEntriesToBeRemoved.add(innerClassesInfo); | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package proguard.classfile.visitor; | ||
|
||
import proguard.classfile.Clazz; | ||
import proguard.classfile.constant.ClassConstant; | ||
import proguard.classfile.constant.Constant; | ||
import proguard.classfile.constant.visitor.ConstantVisitor; | ||
|
||
public class ClassReferenceFinder implements ConstantVisitor | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This might be replacable by the following It's extracted from Usable like the following:
But I see that
|
||
{ | ||
private final Clazz referencedClass; | ||
private boolean classIsReferenced = false; | ||
|
||
public ClassReferenceFinder(Clazz referencedClass) | ||
{ | ||
this.referencedClass = referencedClass; | ||
} | ||
|
||
public void visitAnyConstant(Clazz clazz, Constant constant) {} | ||
|
||
public void visitClassConstant(Clazz clazz, ClassConstant classConstant) | ||
{ | ||
if (classConstant.referencedClass != null && classConstant.referencedClass.equals(referencedClass)) | ||
{ | ||
this.classIsReferenced = true; | ||
} | ||
} | ||
|
||
public boolean classReferenceFound() | ||
{ | ||
return this.classIsReferenced; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,29 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
package proguard.classfile.visitor; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import proguard.classfile.Clazz; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import proguard.classfile.Method; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import proguard.classfile.attribute.Attribute; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import proguard.classfile.attribute.CodeAttribute; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import proguard.classfile.attribute.visitor.AttributeVisitor; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
public class CodeSizeCounter | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
implements AttributeVisitor | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
private int totalCodeSize = 0; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Implementations for AttributeVisitor | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@Override | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
public void visitAnyAttribute(Clazz clazz, Attribute attribute) {} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@Override | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
totalCodeSize += codeAttribute.u4codeLength; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
public int getCount() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return totalCodeSize; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+9
to
+29
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
We have a class like this already but it's not in ProGuardCORE at the moment. There's already the Can you move this also into the attribute/visitor package, since it's an |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package proguard.classfile.visitor; | ||
|
||
import proguard.classfile.Clazz; | ||
import proguard.classfile.constant.Constant; | ||
import proguard.classfile.constant.Utf8Constant; | ||
import proguard.classfile.constant.visitor.ConstantVisitor; | ||
|
||
public class DescriptorTypeUpdater implements ConstantVisitor | ||
{ | ||
private final String originalType; | ||
private final String replacingType; | ||
public DescriptorTypeUpdater(String originalType, String replacingType) | ||
{ | ||
this.originalType = originalType; | ||
this.replacingType = replacingType; | ||
} | ||
|
||
@Override | ||
public void visitAnyConstant(Clazz clazz, Constant constant) {} | ||
|
||
@Override | ||
public void visitUtf8Constant(Clazz clazz, Utf8Constant utf8Constant) { | ||
utf8Constant.setString(utf8Constant.getString().replace(originalType, replacingType)); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here we should be using a
|
||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package testutils | ||
|
||
import proguard.classfile.Clazz | ||
import proguard.classfile.Method | ||
import proguard.classfile.attribute.CodeAttribute | ||
import proguard.classfile.instruction.Instruction | ||
import proguard.classfile.instruction.visitor.InstructionVisitor | ||
import proguard.classfile.util.InstructionSequenceMatcher | ||
|
||
class MatchDetector(val matcher: InstructionSequenceMatcher, vararg val arguments: Int) : InstructionVisitor { | ||
var matchIsFound = false | ||
var matchedArguments = IntArray(arguments.size) | ||
|
||
override fun visitAnyInstruction( | ||
clazz: Clazz, | ||
method: Method, | ||
codeAttribute: CodeAttribute, | ||
offset: Int, | ||
instruction: Instruction | ||
) { | ||
println(instruction.toString(clazz, offset)) | ||
instruction.accept(clazz, method, codeAttribute, offset, matcher) | ||
if (matcher.isMatching()) { | ||
matchIsFound = true | ||
matchedArguments = matcher.matchedArguments(arguments) | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add the ProGuardCORE header to all the classes?