├── .cdtproject ├── .externalToolBuilders ├── JamVMAutogen.launch └── JamVMConfigure.launch ├── .project ├── ACKNOWLEDGEMENTS ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── acinclude.m4 ├── autogen.sh ├── configure.ac ├── depcomp ├── install-sh ├── missing ├── mkinstalldirs └── src ├── Makefile.am ├── access.c ├── alloc.c ├── alloc.h ├── annotations.h ├── arch ├── Makefile.am ├── arm.h ├── i386.h ├── mips.h ├── parisc.h ├── powerpc.h ├── sparc.h ├── x86.h └── x86_64.h ├── cast.c ├── class.c ├── class.h ├── classlib ├── Makefile.am ├── gnuclasspath │ ├── Makefile.am │ ├── alloc.c │ ├── annotations.c │ ├── class.c │ ├── classlib-defs.h │ ├── classlib-excep.h │ ├── classlib-symbol.h │ ├── classlib.h │ ├── dll.c │ ├── excep.c │ ├── frame.c │ ├── gnuclasspath.h │ ├── jni.c │ ├── lib │ │ ├── Makefile.am │ │ ├── README │ │ ├── gnu │ │ │ ├── Makefile.am │ │ │ └── classpath │ │ │ │ ├── Makefile.am │ │ │ │ ├── VMStackWalker.java │ │ │ │ └── VMSystemProperties.java │ │ ├── jamvm │ │ │ ├── Makefile.am │ │ │ ├── ThreadInfoHelper.java │ │ │ └── java │ │ │ │ ├── Makefile.am │ │ │ │ └── lang │ │ │ │ ├── JarLauncher.java │ │ │ │ ├── Makefile.am │ │ │ │ └── VMClassLoaderData.java │ │ ├── java │ │ │ ├── Makefile.am │ │ │ ├── lang │ │ │ │ ├── Makefile.am │ │ │ │ ├── VMClass.java │ │ │ │ ├── VMClassLoader.java │ │ │ │ ├── VMRuntime.java │ │ │ │ ├── VMString.java │ │ │ │ ├── VMThread.java │ │ │ │ ├── VMThrowable.java │ │ │ │ └── reflect │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── VMConstructor.java │ │ │ │ │ ├── VMField.java │ │ │ │ │ └── VMMethod.java │ │ │ └── security │ │ │ │ ├── Makefile.am │ │ │ │ └── VMAccessController.java │ │ └── sun │ │ │ ├── Makefile.am │ │ │ └── reflect │ │ │ ├── Makefile.am │ │ │ └── annotation │ │ │ ├── AnnotationInvocationHandler.java │ │ │ └── Makefile.am │ ├── natives.c │ ├── properties.c │ ├── reflect.c │ └── thread.c └── openjdk │ ├── Makefile.am │ ├── access.c │ ├── alloc.c │ ├── class.c │ ├── classlib-defs.h │ ├── classlib-excep.h │ ├── classlib-symbol.h │ ├── classlib.h │ ├── dll.c │ ├── excep.c │ ├── frame.c │ ├── jmm.h │ ├── jni.c │ ├── jvm.c │ ├── management.c │ ├── mh.c │ ├── natives.c │ ├── openjdk.h │ ├── perf.c │ ├── properties.c │ ├── reflect.c │ ├── shutdown.c │ ├── thread.c │ └── trace.h ├── dll.c ├── dll_ffi.c ├── excep.c ├── excep.h ├── execute.c ├── frame.c ├── frame.h ├── hash.c ├── hash.h ├── hooks.c ├── init.c ├── interp ├── Makefile.am ├── direct.c ├── engine │ ├── Makefile.am │ ├── compute_relocatability.c │ ├── interp-direct-common.h │ ├── interp-direct.h │ ├── interp-indirect.h │ ├── interp-inlining.h │ ├── interp-threading.h │ ├── interp.c │ ├── interp.h │ ├── interp2.c │ └── relocatability.c ├── inlining.c ├── inlining.h └── shared.h ├── jam.c ├── jam.h ├── jni-internal.h ├── jni-stubs.c ├── jni.c ├── jni.h ├── lock.c ├── lock.h ├── natives.c ├── natives.h ├── os ├── Makefile.am ├── bsd │ ├── Makefile.am │ ├── arm │ │ ├── Makefile.am │ │ ├── callNative.S │ │ ├── callNativeEABI.S │ │ ├── callNativeOABI.S │ │ ├── dll_md.c │ │ └── init.c │ ├── i386 │ │ ├── Makefile.am │ │ ├── dll_md.c │ │ └── init.c │ ├── os.c │ ├── powerpc │ │ ├── Makefile.am │ │ ├── callNative.S │ │ ├── dll_md.c │ │ └── init.c │ ├── sparc │ │ ├── Makefile.am │ │ └── init.c │ └── x86_64 │ │ ├── Makefile.am │ │ ├── callNative.S │ │ ├── dll_md.c │ │ └── init.c ├── darwin │ ├── Makefile.am │ ├── arm │ │ ├── Makefile.am │ │ ├── callNative.S │ │ ├── callNativeEABI.S │ │ ├── callNativeOABI.S │ │ ├── dll_md.c │ │ └── init.c │ ├── i386 │ │ ├── Makefile.am │ │ ├── dll_md.c │ │ └── init.c │ ├── os.c │ └── powerpc │ │ ├── Makefile.am │ │ ├── callNative.S │ │ ├── callNative32.S │ │ ├── callNative64.S │ │ ├── dll_md.c │ │ └── init.c ├── linux │ ├── Makefile.am │ ├── arm │ │ ├── Makefile.am │ │ ├── callNative.S │ │ ├── callNativeEABI.S │ │ ├── callNativeEABIHard.S │ │ ├── callNativeEABIHardARM.S │ │ ├── callNativeOABI.S │ │ ├── dll_md.c │ │ └── init.c │ ├── i386 │ │ ├── Makefile.am │ │ ├── dll_md.c │ │ ├── init.c │ │ ├── jni-stubs.c │ │ └── stubs_md.c │ ├── mips │ │ ├── Makefile.am │ │ ├── callNative.S │ │ ├── dll_md.c │ │ └── init.c │ ├── os.c │ ├── parisc │ │ ├── Makefile.am │ │ └── init.c │ ├── powerpc │ │ ├── Makefile.am │ │ ├── callNative.S │ │ ├── dll_md.c │ │ └── init.c │ └── x86_64 │ │ ├── Makefile.am │ │ ├── callNative.S │ │ ├── dll_md.c │ │ └── init.c └── solaris │ ├── Makefile.am │ ├── os.c │ └── x86 │ ├── Makefile.am │ ├── callNative64.S │ ├── dll_md.c │ └── init.c ├── properties.c ├── properties.h ├── reflect.c ├── reflect.h ├── resolve.c ├── shutdown.c ├── sig.c ├── sig.h ├── string.c ├── stubs.c ├── stubs.h ├── symbol.c ├── symbol.h ├── thread.c ├── thread.h ├── time.c ├── tools └── gen-stubs.c ├── utf8.c ├── zip.c └── zip.h /.cdtproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/.cdtproject -------------------------------------------------------------------------------- /.externalToolBuilders/JamVMAutogen.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/.externalToolBuilders/JamVMAutogen.launch -------------------------------------------------------------------------------- /.externalToolBuilders/JamVMConfigure.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/.externalToolBuilders/JamVMConfigure.launch -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/.project -------------------------------------------------------------------------------- /ACKNOWLEDGEMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/ACKNOWLEDGEMENTS -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Robert Lougher 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/README -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/depcomp -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/install-sh -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/missing -------------------------------------------------------------------------------- /mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/mkinstalldirs -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/access.c -------------------------------------------------------------------------------- /src/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/alloc.c -------------------------------------------------------------------------------- /src/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/alloc.h -------------------------------------------------------------------------------- /src/annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/annotations.h -------------------------------------------------------------------------------- /src/arch/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/arch/Makefile.am -------------------------------------------------------------------------------- /src/arch/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/arch/arm.h -------------------------------------------------------------------------------- /src/arch/i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/arch/i386.h -------------------------------------------------------------------------------- /src/arch/mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/arch/mips.h -------------------------------------------------------------------------------- /src/arch/parisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/arch/parisc.h -------------------------------------------------------------------------------- /src/arch/powerpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/arch/powerpc.h -------------------------------------------------------------------------------- /src/arch/sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/arch/sparc.h -------------------------------------------------------------------------------- /src/arch/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/arch/x86.h -------------------------------------------------------------------------------- /src/arch/x86_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/arch/x86_64.h -------------------------------------------------------------------------------- /src/cast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/cast.c -------------------------------------------------------------------------------- /src/class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/class.c -------------------------------------------------------------------------------- /src/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/class.h -------------------------------------------------------------------------------- /src/classlib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/Makefile.am -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/Makefile.am -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/alloc.c -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/annotations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/annotations.c -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/class.c -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/classlib-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/classlib-defs.h -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/classlib-excep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/classlib-excep.h -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/classlib-symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/classlib-symbol.h -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/classlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/classlib.h -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/dll.c -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/excep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/excep.c -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/frame.c -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/gnuclasspath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/gnuclasspath.h -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/jni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/jni.c -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/Makefile.am -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/README -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/gnu/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/gnu/Makefile.am -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/gnu/classpath/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/gnu/classpath/Makefile.am -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/gnu/classpath/VMStackWalker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/gnu/classpath/VMStackWalker.java -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/gnu/classpath/VMSystemProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/gnu/classpath/VMSystemProperties.java -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/jamvm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/jamvm/Makefile.am -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/jamvm/ThreadInfoHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/jamvm/ThreadInfoHelper.java -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/jamvm/java/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/jamvm/java/Makefile.am -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/jamvm/java/lang/JarLauncher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/jamvm/java/lang/JarLauncher.java -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/jamvm/java/lang/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/jamvm/java/lang/Makefile.am -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/jamvm/java/lang/VMClassLoaderData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/jamvm/java/lang/VMClassLoaderData.java -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/java/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/java/Makefile.am -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/java/lang/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/java/lang/Makefile.am -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/java/lang/VMClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/java/lang/VMClass.java -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/java/lang/VMClassLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/java/lang/VMClassLoader.java -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/java/lang/VMRuntime.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/java/lang/VMRuntime.java -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/java/lang/VMString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/java/lang/VMString.java -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/java/lang/VMThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/java/lang/VMThread.java -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/java/lang/VMThrowable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/java/lang/VMThrowable.java -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/java/lang/reflect/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/java/lang/reflect/Makefile.am -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/java/lang/reflect/VMConstructor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/java/lang/reflect/VMConstructor.java -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/java/lang/reflect/VMField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/java/lang/reflect/VMField.java -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/java/lang/reflect/VMMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/java/lang/reflect/VMMethod.java -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/java/security/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/java/security/Makefile.am -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/java/security/VMAccessController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/java/security/VMAccessController.java -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/sun/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/sun/Makefile.am -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/sun/reflect/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/sun/reflect/Makefile.am -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/sun/reflect/annotation/AnnotationInvocationHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/sun/reflect/annotation/AnnotationInvocationHandler.java -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/lib/sun/reflect/annotation/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/lib/sun/reflect/annotation/Makefile.am -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/natives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/natives.c -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/properties.c -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/reflect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/reflect.c -------------------------------------------------------------------------------- /src/classlib/gnuclasspath/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/gnuclasspath/thread.c -------------------------------------------------------------------------------- /src/classlib/openjdk/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/Makefile.am -------------------------------------------------------------------------------- /src/classlib/openjdk/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/access.c -------------------------------------------------------------------------------- /src/classlib/openjdk/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/alloc.c -------------------------------------------------------------------------------- /src/classlib/openjdk/class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/class.c -------------------------------------------------------------------------------- /src/classlib/openjdk/classlib-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/classlib-defs.h -------------------------------------------------------------------------------- /src/classlib/openjdk/classlib-excep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/classlib-excep.h -------------------------------------------------------------------------------- /src/classlib/openjdk/classlib-symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/classlib-symbol.h -------------------------------------------------------------------------------- /src/classlib/openjdk/classlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/classlib.h -------------------------------------------------------------------------------- /src/classlib/openjdk/dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/dll.c -------------------------------------------------------------------------------- /src/classlib/openjdk/excep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/excep.c -------------------------------------------------------------------------------- /src/classlib/openjdk/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/frame.c -------------------------------------------------------------------------------- /src/classlib/openjdk/jmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/jmm.h -------------------------------------------------------------------------------- /src/classlib/openjdk/jni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/jni.c -------------------------------------------------------------------------------- /src/classlib/openjdk/jvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/jvm.c -------------------------------------------------------------------------------- /src/classlib/openjdk/management.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/management.c -------------------------------------------------------------------------------- /src/classlib/openjdk/mh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/mh.c -------------------------------------------------------------------------------- /src/classlib/openjdk/natives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/natives.c -------------------------------------------------------------------------------- /src/classlib/openjdk/openjdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/openjdk.h -------------------------------------------------------------------------------- /src/classlib/openjdk/perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/perf.c -------------------------------------------------------------------------------- /src/classlib/openjdk/properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/properties.c -------------------------------------------------------------------------------- /src/classlib/openjdk/reflect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/reflect.c -------------------------------------------------------------------------------- /src/classlib/openjdk/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/shutdown.c -------------------------------------------------------------------------------- /src/classlib/openjdk/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/thread.c -------------------------------------------------------------------------------- /src/classlib/openjdk/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/classlib/openjdk/trace.h -------------------------------------------------------------------------------- /src/dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/dll.c -------------------------------------------------------------------------------- /src/dll_ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/dll_ffi.c -------------------------------------------------------------------------------- /src/excep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/excep.c -------------------------------------------------------------------------------- /src/excep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/excep.h -------------------------------------------------------------------------------- /src/execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/execute.c -------------------------------------------------------------------------------- /src/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/frame.c -------------------------------------------------------------------------------- /src/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/frame.h -------------------------------------------------------------------------------- /src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/hash.c -------------------------------------------------------------------------------- /src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/hash.h -------------------------------------------------------------------------------- /src/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/hooks.c -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/init.c -------------------------------------------------------------------------------- /src/interp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/interp/Makefile.am -------------------------------------------------------------------------------- /src/interp/direct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/interp/direct.c -------------------------------------------------------------------------------- /src/interp/engine/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/interp/engine/Makefile.am -------------------------------------------------------------------------------- /src/interp/engine/compute_relocatability.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/interp/engine/compute_relocatability.c -------------------------------------------------------------------------------- /src/interp/engine/interp-direct-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/interp/engine/interp-direct-common.h -------------------------------------------------------------------------------- /src/interp/engine/interp-direct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/interp/engine/interp-direct.h -------------------------------------------------------------------------------- /src/interp/engine/interp-indirect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/interp/engine/interp-indirect.h -------------------------------------------------------------------------------- /src/interp/engine/interp-inlining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/interp/engine/interp-inlining.h -------------------------------------------------------------------------------- /src/interp/engine/interp-threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/interp/engine/interp-threading.h -------------------------------------------------------------------------------- /src/interp/engine/interp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/interp/engine/interp.c -------------------------------------------------------------------------------- /src/interp/engine/interp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/interp/engine/interp.h -------------------------------------------------------------------------------- /src/interp/engine/interp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/interp/engine/interp2.c -------------------------------------------------------------------------------- /src/interp/engine/relocatability.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/interp/engine/relocatability.c -------------------------------------------------------------------------------- /src/interp/inlining.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/interp/inlining.c -------------------------------------------------------------------------------- /src/interp/inlining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/interp/inlining.h -------------------------------------------------------------------------------- /src/interp/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/interp/shared.h -------------------------------------------------------------------------------- /src/jam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/jam.c -------------------------------------------------------------------------------- /src/jam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/jam.h -------------------------------------------------------------------------------- /src/jni-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/jni-internal.h -------------------------------------------------------------------------------- /src/jni-stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/jni-stubs.c -------------------------------------------------------------------------------- /src/jni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/jni.c -------------------------------------------------------------------------------- /src/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/jni.h -------------------------------------------------------------------------------- /src/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/lock.c -------------------------------------------------------------------------------- /src/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/lock.h -------------------------------------------------------------------------------- /src/natives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/natives.c -------------------------------------------------------------------------------- /src/natives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/natives.h -------------------------------------------------------------------------------- /src/os/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/Makefile.am -------------------------------------------------------------------------------- /src/os/bsd/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/bsd/Makefile.am -------------------------------------------------------------------------------- /src/os/bsd/arm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/bsd/arm/Makefile.am -------------------------------------------------------------------------------- /src/os/bsd/arm/callNative.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/bsd/arm/callNative.S -------------------------------------------------------------------------------- /src/os/bsd/arm/callNativeEABI.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/bsd/arm/callNativeEABI.S -------------------------------------------------------------------------------- /src/os/bsd/arm/callNativeOABI.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/bsd/arm/callNativeOABI.S -------------------------------------------------------------------------------- /src/os/bsd/arm/dll_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/bsd/arm/dll_md.c -------------------------------------------------------------------------------- /src/os/bsd/arm/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/bsd/arm/init.c -------------------------------------------------------------------------------- /src/os/bsd/i386/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/bsd/i386/Makefile.am -------------------------------------------------------------------------------- /src/os/bsd/i386/dll_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/bsd/i386/dll_md.c -------------------------------------------------------------------------------- /src/os/bsd/i386/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/bsd/i386/init.c -------------------------------------------------------------------------------- /src/os/bsd/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/bsd/os.c -------------------------------------------------------------------------------- /src/os/bsd/powerpc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/bsd/powerpc/Makefile.am -------------------------------------------------------------------------------- /src/os/bsd/powerpc/callNative.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/bsd/powerpc/callNative.S -------------------------------------------------------------------------------- /src/os/bsd/powerpc/dll_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/bsd/powerpc/dll_md.c -------------------------------------------------------------------------------- /src/os/bsd/powerpc/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/bsd/powerpc/init.c -------------------------------------------------------------------------------- /src/os/bsd/sparc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/bsd/sparc/Makefile.am -------------------------------------------------------------------------------- /src/os/bsd/sparc/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/bsd/sparc/init.c -------------------------------------------------------------------------------- /src/os/bsd/x86_64/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/bsd/x86_64/Makefile.am -------------------------------------------------------------------------------- /src/os/bsd/x86_64/callNative.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/bsd/x86_64/callNative.S -------------------------------------------------------------------------------- /src/os/bsd/x86_64/dll_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/bsd/x86_64/dll_md.c -------------------------------------------------------------------------------- /src/os/bsd/x86_64/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/bsd/x86_64/init.c -------------------------------------------------------------------------------- /src/os/darwin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/darwin/Makefile.am -------------------------------------------------------------------------------- /src/os/darwin/arm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/darwin/arm/Makefile.am -------------------------------------------------------------------------------- /src/os/darwin/arm/callNative.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/darwin/arm/callNative.S -------------------------------------------------------------------------------- /src/os/darwin/arm/callNativeEABI.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/darwin/arm/callNativeEABI.S -------------------------------------------------------------------------------- /src/os/darwin/arm/callNativeOABI.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/darwin/arm/callNativeOABI.S -------------------------------------------------------------------------------- /src/os/darwin/arm/dll_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/darwin/arm/dll_md.c -------------------------------------------------------------------------------- /src/os/darwin/arm/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/darwin/arm/init.c -------------------------------------------------------------------------------- /src/os/darwin/i386/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/darwin/i386/Makefile.am -------------------------------------------------------------------------------- /src/os/darwin/i386/dll_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/darwin/i386/dll_md.c -------------------------------------------------------------------------------- /src/os/darwin/i386/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/darwin/i386/init.c -------------------------------------------------------------------------------- /src/os/darwin/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/darwin/os.c -------------------------------------------------------------------------------- /src/os/darwin/powerpc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/darwin/powerpc/Makefile.am -------------------------------------------------------------------------------- /src/os/darwin/powerpc/callNative.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/darwin/powerpc/callNative.S -------------------------------------------------------------------------------- /src/os/darwin/powerpc/callNative32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/darwin/powerpc/callNative32.S -------------------------------------------------------------------------------- /src/os/darwin/powerpc/callNative64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/darwin/powerpc/callNative64.S -------------------------------------------------------------------------------- /src/os/darwin/powerpc/dll_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/darwin/powerpc/dll_md.c -------------------------------------------------------------------------------- /src/os/darwin/powerpc/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/darwin/powerpc/init.c -------------------------------------------------------------------------------- /src/os/linux/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/Makefile.am -------------------------------------------------------------------------------- /src/os/linux/arm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/arm/Makefile.am -------------------------------------------------------------------------------- /src/os/linux/arm/callNative.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/arm/callNative.S -------------------------------------------------------------------------------- /src/os/linux/arm/callNativeEABI.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/arm/callNativeEABI.S -------------------------------------------------------------------------------- /src/os/linux/arm/callNativeEABIHard.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/arm/callNativeEABIHard.S -------------------------------------------------------------------------------- /src/os/linux/arm/callNativeEABIHardARM.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/arm/callNativeEABIHardARM.S -------------------------------------------------------------------------------- /src/os/linux/arm/callNativeOABI.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/arm/callNativeOABI.S -------------------------------------------------------------------------------- /src/os/linux/arm/dll_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/arm/dll_md.c -------------------------------------------------------------------------------- /src/os/linux/arm/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/arm/init.c -------------------------------------------------------------------------------- /src/os/linux/i386/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/i386/Makefile.am -------------------------------------------------------------------------------- /src/os/linux/i386/dll_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/i386/dll_md.c -------------------------------------------------------------------------------- /src/os/linux/i386/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/i386/init.c -------------------------------------------------------------------------------- /src/os/linux/i386/jni-stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/i386/jni-stubs.c -------------------------------------------------------------------------------- /src/os/linux/i386/stubs_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/i386/stubs_md.c -------------------------------------------------------------------------------- /src/os/linux/mips/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/mips/Makefile.am -------------------------------------------------------------------------------- /src/os/linux/mips/callNative.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/mips/callNative.S -------------------------------------------------------------------------------- /src/os/linux/mips/dll_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/mips/dll_md.c -------------------------------------------------------------------------------- /src/os/linux/mips/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/mips/init.c -------------------------------------------------------------------------------- /src/os/linux/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/os.c -------------------------------------------------------------------------------- /src/os/linux/parisc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/parisc/Makefile.am -------------------------------------------------------------------------------- /src/os/linux/parisc/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/parisc/init.c -------------------------------------------------------------------------------- /src/os/linux/powerpc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/powerpc/Makefile.am -------------------------------------------------------------------------------- /src/os/linux/powerpc/callNative.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/powerpc/callNative.S -------------------------------------------------------------------------------- /src/os/linux/powerpc/dll_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/powerpc/dll_md.c -------------------------------------------------------------------------------- /src/os/linux/powerpc/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/powerpc/init.c -------------------------------------------------------------------------------- /src/os/linux/x86_64/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/x86_64/Makefile.am -------------------------------------------------------------------------------- /src/os/linux/x86_64/callNative.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/x86_64/callNative.S -------------------------------------------------------------------------------- /src/os/linux/x86_64/dll_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/x86_64/dll_md.c -------------------------------------------------------------------------------- /src/os/linux/x86_64/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/linux/x86_64/init.c -------------------------------------------------------------------------------- /src/os/solaris/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/solaris/Makefile.am -------------------------------------------------------------------------------- /src/os/solaris/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/solaris/os.c -------------------------------------------------------------------------------- /src/os/solaris/x86/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/solaris/x86/Makefile.am -------------------------------------------------------------------------------- /src/os/solaris/x86/callNative64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/solaris/x86/callNative64.S -------------------------------------------------------------------------------- /src/os/solaris/x86/dll_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/solaris/x86/dll_md.c -------------------------------------------------------------------------------- /src/os/solaris/x86/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/os/solaris/x86/init.c -------------------------------------------------------------------------------- /src/properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/properties.c -------------------------------------------------------------------------------- /src/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/properties.h -------------------------------------------------------------------------------- /src/reflect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/reflect.c -------------------------------------------------------------------------------- /src/reflect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/reflect.h -------------------------------------------------------------------------------- /src/resolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/resolve.c -------------------------------------------------------------------------------- /src/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/shutdown.c -------------------------------------------------------------------------------- /src/sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/sig.c -------------------------------------------------------------------------------- /src/sig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/sig.h -------------------------------------------------------------------------------- /src/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/string.c -------------------------------------------------------------------------------- /src/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/stubs.c -------------------------------------------------------------------------------- /src/stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/stubs.h -------------------------------------------------------------------------------- /src/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/symbol.c -------------------------------------------------------------------------------- /src/symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/symbol.h -------------------------------------------------------------------------------- /src/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/thread.c -------------------------------------------------------------------------------- /src/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/thread.h -------------------------------------------------------------------------------- /src/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/time.c -------------------------------------------------------------------------------- /src/tools/gen-stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/tools/gen-stubs.c -------------------------------------------------------------------------------- /src/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/utf8.c -------------------------------------------------------------------------------- /src/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/zip.c -------------------------------------------------------------------------------- /src/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xranby/jamvm/HEAD/src/zip.h --------------------------------------------------------------------------------