aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* GlueGen JavaCallback: Add experimental simple NativeObjectMap and full self-c...callback_gluemapSven Gothel2023-07-032-0/+209
* GlueGen JavaCallback: Unify native 'T_JavaCallbackGlueData' typedef structcallback_jniuserparamproxySven Gothel2023-07-023-11/+25
* GlueGen JavaCallback: CMethodBindingEmitter: Check, describe & clear exceptio...Sven Gothel2023-07-022-7/+103
* GlueGen JavaCallback: CMethodBindingEmitter: Check lockObj for NULL before Ge...Sven Gothel2023-07-021-0/+1
* CMethodBindingEmitter JavaCallback: Use a friendly readable basename for errorsSven Gothel2023-07-021-16/+19
* GlueGen Struct [18]: Drop redundant 'static get*ElemCount() { return 1 }` for...Sven Gothel2023-07-022-3/+5
* GlueGen JavaCallback: Native Callback: Reduce 'look-ahead' of read-after-free...Sven Gothel2023-07-021-9/+9
* GlueGen JavaCallback: Document native callback use-after-free potential (caug...Sven Gothel2023-07-021-1/+6
* GlueGen JavaCallback: Native callback: Check ObjectRef validity and synchroni...Sven Gothel2023-07-023-21/+66
* GlueGen JavaCallback: Use `SetCallback-KeyClass` if manually specified, even ...Sven Gothel2023-07-013-3/+32
* GlueGen JavaCallback: Only produce default 'Key' class if keys are used, expo...Sven Gothel2023-07-016-171/+556
* GlueGen JavaCallback: Release the associated data (natively) only after the a...Sven Gothel2023-07-011-2/+8
* GlueGen JavaCallback: Resolve key mapping of callback and associated resource...Sven Gothel2023-06-308-125/+911
* GlueGen FunctionType/MethodBinding: get*ParameterList(): Use a more flexible ...Sven Gothel2023-06-308-84/+210
* Test4JavaCallback: Just rename myUserParam -> myUserParam01 for future tests..Sven Gothel2023-06-291-22/+22
* GlueGen JavaCallback: Set-Callback: Ensure a previously mapped 'userParam' in...Sven Gothel2023-06-292-12/+42
* GlueGen JavaCallback: 1st Working Draft: Changed 'JavaCallbackDef' config, ad...Sven Gothel2023-06-299-155/+609
* GlueGen ProcAddressCMethodBindingEmitter.jniMangle() override: Only add addit...Sven Gothel2023-06-291-1/+1
* GlueGen FunctionType: Factor out getParameterList(..) from toString(..) and d...Sven Gothel2023-06-293-22/+113
* GlueGen CMethodBindingEmitter: Refactor emitBodyReturnResult() -> emitBodyMap...Sven Gothel2023-06-291-98/+148
* GlueGen: Move [de]captializeString(..) JavaEmitter -> static in CodeGenUtilsSven Gothel2023-06-292-7/+21
* GlueGen LibraryOnLoad Config: Generate `JNI_OnLoad(..)` for dynamic and `JNI_...Sven Gothel2023-06-293-4/+125
* GlueGen Struct [17]: Handle void pointers, i.e. `void*`, within a struct as `...Sven Gothel2023-06-292-10/+11
* GlueGen JavaCallback: Add JavaCallback.methodSignature to JNI arg-list and pa...Sven Gothel2023-06-261-0/+16
* GlueGen JavaCallback: Move JavaCallback into JavaConfiguration, accessible ac...Sven Gothel2023-06-262-52/+82
* GlueGen JavaCallback: Expose getJNIMethodDescriptor() for JNI mangled method ...Sven Gothel2023-06-263-14/+49
* GlueGen JavaCallback: Use new JavaType nature 'named-class', denoting the gen...Sven Gothel2023-06-262-1/+5
* GlueGen JavaType: Add new nature 'String clazzName': Future (not yet generate...Sven Gothel2023-06-261-35/+97
* GlueGen JavaCallback: Add preliminary implementation (WIP): Produces proper i...Sven Gothel2023-06-253-9/+146
* GlueGen JavaConfiguration: Add List<Integer> stringArguments(final AliasedSym...Sven Gothel2023-06-251-0/+18
* GlueGen JavaConfiguration: Add 'JavaCallbackDef <funcion-pointer-typedef-name...Sven Gothel2023-06-251-1/+47
* GlueGen FunctionSymbol: Simplify ctor reusing main-ctor; Be always reachable ...Sven Gothel2023-06-251-3/+2
* GlueGen Add JavaType.forObjectClass()Sven Gothel2023-06-251-0/+8
* GlueGen FunctionType: Expose toString(..) w/ 'isPointer' argumentSven Gothel2023-06-251-0/+3
* GlueGen: Fix Type.getSignature(..): Test for isFunctionPointer() to elaborate...Sven Gothel2023-06-251-6/+9
* JavaEmitter.generateArrayGetterSetterCode(): Place elemCountExpr null check w...Sven Gothel2023-06-251-8/+7
* GlueGen: Add JavaEmitter(JavaConfiguration) ctorSven Gothel2023-06-251-0/+5
* GlueGen Fix ProcAddressCMethodBindingEmitter.jniMangle(..) override: Use rena...Sven Gothel2023-06-251-1/+1
* GlueGen: Rename GlueEmitter.getConfig{uration->}() and drop JavaEmitter.getCo...Sven Gothel2023-06-255-14/+7
* GlueGen: Expose CMethodBindingEmitter.getJNIMangledArgs() as a public static ...Sven Gothel2023-06-251-14/+24
* GlueGen Struct [16]: Add support for pointer-pointer and function-pointer valuesSven Gothel2023-06-236-184/+429
* GlueGen: JavaConfiguration.promoteTypeInfo(): Fix primitive pointerDepth, i.e...Sven Gothel2023-06-231-1/+1
* GlueGen: JavaConfiguration.typeInfo(..): Clarify DEBUG_TYPE_INFO outputSven Gothel2023-06-231-12/+14
* GlueGen: Type: Have get{Base,Target}Type() stop at isFunctionPointer(), enhan...Sven Gothel2023-06-237-38/+76
* GlueGen: Type, JavaType: Align getSignature(..) outputSven Gothel2023-06-232-41/+48
* NIO NativeBuffer, {Element,Pointer}Buffer: Add limit, clear and flip; Arrange...Sven Gothel2023-06-234-94/+385
* GlueGen Test: Test2 -> Test2FuncPtrSven Gothel2023-06-231-3/+3
* JavaEmitter.typeToJavaTypeImpl(): Add targetType in GlueGenException and remo...Sven Gothel2023-06-211-13/+15
* GlueGen junit test2.h: Add an anonymous struct pointer w/ opaque long configSven Gothel2023-06-202-5/+4
* GlueGen Struct [15b]: FunctionPointer: Drop is<FuncName>Null() -> use get<Fun...Sven Gothel2023-06-204-27/+21