reflectasm icon indicating copy to clipboard operation
reflectasm copied to clipboard

High performance Java reflection

Results 19 reflectasm issues
Sort by recently updated
recently updated
newest added

When instrumenting this example with our agent: ``` package main; import com.esotericsoftware.reflectasm.MethodAccess; public class Main { public static void main(String[] args) { StringBuilder obj = new StringBuilder("ff"); MethodAccess access =...

_From [[email protected]](https://code.google.com/u/111911381883684391380/) on February 06, 2013 10:02:22_ If I understand your process, it is quite feasible to create an additional utility class e.g. MultiArgumentConstructorAccess which will be able to execute...

bug
imported
Priority-Medium

sorry I haven't used this great framework, and this time I just expound the situation which my clients meet . first, he uses Jacoco in his programs, then he meets...

If a class has dozens or more properties, reflectasm performance is slower than java native performance

I encountered the following error on Android 11, please help me take a look 05-13 10:01:27.988 W/System.err( 1026): java.lang.reflect.InvocationTargetException 05-13 10:01:27.988 W/System.err( 1026): at java.lang.reflect.Method.invoke(Native Method) 05-13 10:01:27.988 W/System.err( 1026):...

Note: this PR changes the minimum Java version 9. This may or may not be wanted... I'm a bit unsure about this change. Especially the fallback case in `AccessClassLoader.defineClass` (which...

Hello, On Debian unstable or testing, version 1.11.9 of reflectasm is packaged, and the default JDK is OpenJDK-17. The build-time test ClassLoaderTest.testAutoUnloadClassloaders fails from time to time (see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1031480#5 for...

Hi there, if had a interface as below: public interface SomeClass2 { public static String staticMethod (String a, int b) { return "meow! " + a + ", " +...