Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: LWJGL/lwjgl3
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: LWJGL/lwjgl3
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: tinycc
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 2 commits
  • 20 files changed
  • 2 contributors

Commits on Jan 30, 2017

  1. Add TinyCC bindings

    Spasi committed Jan 30, 2017
    Configuration menu
    Copy the full SHA
    3cde851 View commit details
    Browse the repository at this point in the history
  2. Use ASM to generate classes at runtime; map jclass to Class; add JNI … (

    #272)
    
    * Use ASM to generate classes at runtime; map jclass to Class; add JNI ClassToPointer function
    
    Why ASM?
    - ASM is 3x faster than Javassist in the current use-case
    - the ASM jar is smaller
    - the code required to generate a class is less
    
    Why map jclass to Class?
    - no need to go through JNI just to lookup a Class by name
    - in some cases, we already have the Class instance and need not look it up again by name
    - more importantly, this allows to define classes as very light-weight HotSpot Anonymous Classes (those cannot be looked-up by name)
    
    Why ClassToPointer?
    - some methods seem to need the jclass as a long (in the ClassbackTest)
    - we always already have a reference to the actual Class object, only conversion to long is needed
    httpdigest authored and Spasi committed Jan 30, 2017
    Configuration menu
    Copy the full SHA
    b7c3328 View commit details
    Browse the repository at this point in the history
Loading