Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
JNvrtcJNI.src.JNvrtc.cpp Maven / Gradle / Ivy
/*
* JCuda - Java bindings for NVIDIA CUDA driver and runtime API
*
* Copyright (c) 2009-2016 Marco Hutter - http://www.jcuda.org
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
#include "JNvrtc.hpp"
#include "JNvrtc_common.hpp"
#include
#include
/**
* Called when the library is loaded. Will initialize all
* required field and method IDs
*/
JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *jvm, void *reserved)
{
JNIEnv *env = NULL;
if (jvm->GetEnv((void **)&env, JNI_VERSION_1_4))
{
return JNI_ERR;
}
Logger::log(LOG_TRACE, "Initializing JCuda\n");
jclass cls = NULL;
// Initialize the JNIUtils and PointerUtils
if (initJNIUtils(env) == JNI_ERR) return JNI_ERR;
if (initPointerUtils(env) == JNI_ERR) return JNI_ERR;
return JNI_VERSION_1_4;
}
JNIEXPORT void JNICALL JNI_OnUnload(JavaVM *vm, void *reserved)
{
}
/*
* Class: jcuda_nvrtc_JNvrtc
* Method: setLogLevel
* Signature: (I)V
*/
JNIEXPORT void JNICALL Java_jcuda_nvrtc_JNvrtc_setLogLevel
(JNIEnv *env, jclass cls, jint logLevel)
{
Logger::setLogLevel((LogLevel)logLevel);
}
/*
* Class: jcuda_nvrtc_JNvrtc
* Method: nvrtcGetErrorStringNative
* Signature: (I)Ljava/lang/String;
*/
JNIEXPORT jstring JNICALL Java_jcuda_nvrtc_JNvrtc_nvrtcGetErrorStringNative
(JNIEnv *env, jclass cls, jint result)
{
Logger::log(LOG_TRACE, "Executing nvrtcGetErrorString\n");
const char *nativeString = nvrtcGetErrorString((nvrtcResult)result);
jstring string = NULL;
if (nativeString != NULL)
{
string = env->NewStringUTF(nativeString);
}
return string;
}
/*
* Class: jcuda_nvrtc_JNvrtc
* Method: nvrtcVersionNative
* Signature: ([I[I)I
*/
JNIEXPORT jint JNICALL Java_jcuda_nvrtc_JNvrtc_nvrtcVersionNative
(JNIEnv *env, jclass cls, jintArray major, jintArray minor)
{
if (major == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'major' is null for nvrtcVersion");
return JCUDA_INTERNAL_ERROR;
}
if (minor == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'minor' is null for nvrtcVersion");
return JCUDA_INTERNAL_ERROR;
}
Logger::log(LOG_TRACE, "Executing nvrtcVersion\n");
int nativeMajor = 0;
int nativeMinor = 0;
int result = nvrtcVersion(&nativeMajor, &nativeMinor);
if (!set(env, major, 0, nativeMajor)) return JCUDA_INTERNAL_ERROR;
if (!set(env, minor, 0, nativeMinor)) return JCUDA_INTERNAL_ERROR;
return result;
}
/*
* Class: jcuda_nvrtc_JNvrtc
* Method: nvrtcGetNumSupportedArchsNative
* Signature: ([I)I
*/
JNIEXPORT jint JNICALL Java_jcuda_nvrtc_JNvrtc_nvrtcGetNumSupportedArchsNative
(JNIEnv *env, jclass cls, jintArray numArchs) {
if (numArchs == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'numArchs' is null for nvrtcGetNumSupportedArchs");
return JCUDA_INTERNAL_ERROR;
}
Logger::log(LOG_TRACE, "Executing nvrtcGetNumSupportedArchs\n");
int nativeNumArchs = 0;
int result = nvrtcGetNumSupportedArchs(&nativeNumArchs);
if (!set(env, numArchs, 0, nativeNumArchs)) return JCUDA_INTERNAL_ERROR;
return result;
}
/*
* Class: jcuda_nvrtc_JNvrtc
* Method: nvrtcGetSupportedArchsNative
* Signature: ([I)I
*/
JNIEXPORT jint JNICALL Java_jcuda_nvrtc_JNvrtc_nvrtcGetSupportedArchsNative
(JNIEnv *env, jclass cls, jintArray supportedArchs) {
if (supportedArchs == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'supportedArchs' is null for nvrtcGetSupportedArchs");
return JCUDA_INTERNAL_ERROR;
}
Logger::log(LOG_TRACE, "Executing nvrtcGetSupportedArchs\n");
int *nativeSupportedArchs;
if (!initNative(env, supportedArchs, nativeSupportedArchs, false)) return JCUDA_INTERNAL_ERROR;
int nativeNumArchs = 0;
int result = nvrtcGetSupportedArchs(nativeSupportedArchs);
if (!releaseNative(env, nativeSupportedArchs, supportedArchs, true)) return JCUDA_INTERNAL_ERROR;
return result;
}
/*
* Class: jcuda_nvrtc_JNvrtc
* Method: nvrtcCreateProgramNative
* Signature: (Ljcuda/nvrtc/nvrtcProgram;Ljava/lang/String;Ljava/lang/String;I[Ljava/lang/String;[Ljava/lang/String;)I
*/
JNIEXPORT jint JNICALL Java_jcuda_nvrtc_JNvrtc_nvrtcCreateProgramNative
(JNIEnv *env, jclass cls, jobject prog, jstring src, jstring name, jint numHeaders, jobjectArray headers, jobjectArray includeNames)
{
if (prog == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'prog' is null for nvrtcCreateProgram");
return JCUDA_INTERNAL_ERROR;
}
if (src == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'src' is null for nvrtcCreateProgram");
return JCUDA_INTERNAL_ERROR;
}
Logger::log(LOG_TRACE, "Executing nvrtcCreateProgram\n");
nvrtcProgram nativeProg = (nvrtcProgram)(intptr_t)getNativePointerValue(env, prog);
char *nativeSrc = convertString(env, src);
char *nativeName = NULL;
if (name != NULL)
{
nativeName = convertString(env, name);
}
char **nativeHeaders = NULL;
if (headers != NULL)
{
jsize actualNum = env->GetArrayLength(headers);
if (actualNum != numHeaders)
{
ThrowByName(env, "java/lang/IllegalArgumentException",
"The headers array length must be numHeaders");
return JCUDA_INTERNAL_ERROR;
}
nativeHeaders = convertStringArray(env, headers);
if (nativeHeaders == NULL)
{
return JCUDA_INTERNAL_ERROR;
}
}
char **nativeIncludeNames = NULL;
if (includeNames != NULL)
{
jsize actualNum = env->GetArrayLength(includeNames);
if (actualNum != numHeaders)
{
ThrowByName(env, "java/lang/IllegalArgumentException",
"The includeNames array length must be numHeaders");
return JCUDA_INTERNAL_ERROR;
}
nativeIncludeNames = convertStringArray(env, includeNames);
if (nativeIncludeNames == NULL)
{
return JCUDA_INTERNAL_ERROR;
}
}
int result = nvrtcCreateProgram(&nativeProg, nativeSrc, nativeName, (int)numHeaders,
const_cast(nativeHeaders),
const_cast(nativeIncludeNames));
setNativePointerValue(env, prog, (jlong)nativeProg);
delete[] nativeSrc;
delete[] nativeName;
deleteStringArray(nativeHeaders, numHeaders);
deleteStringArray(nativeIncludeNames, numHeaders);
return result;
}
/*
* Class: jcuda_nvrtc_JNvrtc
* Method: nvrtcDestroyProgramNative
* Signature: (Ljcuda/nvrtc/nvrtcProgram;)I
*/
JNIEXPORT jint JNICALL Java_jcuda_nvrtc_JNvrtc_nvrtcDestroyProgramNative
(JNIEnv *env, jclass cls, jobject prog)
{
if (prog == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'prog' is null for nvrtcDestroyProgram");
return JCUDA_INTERNAL_ERROR;
}
Logger::log(LOG_TRACE, "Executing nvrtcDestroyProgram\n");
nvrtcProgram nativeProg = (nvrtcProgram)(intptr_t)getNativePointerValue(env, prog);
int result = nvrtcDestroyProgram(&nativeProg);
setNativePointerValue(env, prog, (jlong)nativeProg);
return result;
}
/*
* Class: jcuda_nvrtc_JNvrtc
* Method: nvrtcCompileProgramNative
* Signature: (Ljcuda/nvrtc/nvrtcProgram;I[Ljava/lang/String;)I
*/
JNIEXPORT jint JNICALL Java_jcuda_nvrtc_JNvrtc_nvrtcCompileProgramNative
(JNIEnv *env, jclass cls, jobject prog, jint numOptions, jobjectArray options)
{
if (prog == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'prog' is null for nvrtcCompileProgram");
return JCUDA_INTERNAL_ERROR;
}
Logger::log(LOG_TRACE, "Executing nvrtcCompileProgram\n");
nvrtcProgram nativeProg = (nvrtcProgram)(intptr_t)getNativePointerValue(env, prog);
char **nativeOptions = NULL;
if (options != NULL)
{
jsize actualNum = env->GetArrayLength(options);
if (actualNum != numOptions)
{
ThrowByName(env, "java/lang/IllegalArgumentException",
"The options array length must be numOptions");
return JCUDA_INTERNAL_ERROR;
}
nativeOptions = convertStringArray(env, options);
if (nativeOptions == NULL)
{
return JCUDA_INTERNAL_ERROR;
}
}
int result = nvrtcCompileProgram(nativeProg, (int)numOptions,
const_cast(nativeOptions));
setNativePointerValue(env, prog, (jlong)nativeProg);
deleteStringArray(nativeOptions, numOptions);
return result;
}
/*
* Class: jcuda_nvrtc_JNvrtc
* Method: nvrtcGetPTXSizeNative
* Signature: (Ljcuda/nvrtc/nvrtcProgram;[J)I
*/
JNIEXPORT jint JNICALL Java_jcuda_nvrtc_JNvrtc_nvrtcGetPTXSizeNative
(JNIEnv *env, jclass cls, jobject prog, jlongArray ptxSizeRet)
{
if (prog == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'prog' is null for nvrtcGetPTXSize");
return JCUDA_INTERNAL_ERROR;
}
if (ptxSizeRet == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'ptxSizeRet' is null for nvrtcGetPTXSize");
return JCUDA_INTERNAL_ERROR;
}
Logger::log(LOG_TRACE, "Executing nvrtcGetPTXSize\n");
nvrtcProgram nativeProg = (nvrtcProgram)(intptr_t)getNativePointerValue(env, prog);
size_t nativePtxSizeRet = 0;
int result = nvrtcGetPTXSize(nativeProg, &nativePtxSizeRet);
if (!set(env, ptxSizeRet, 0, nativePtxSizeRet)) return JCUDA_INTERNAL_ERROR;
return result;
}
/*
* Class: jcuda_nvrtc_JNvrtc
* Method: nvrtcGetPTXNative
* Signature: (Ljcuda/nvrtc/nvrtcProgram;[Ljava/lang/String;)I
*/
JNIEXPORT jint JNICALL Java_jcuda_nvrtc_JNvrtc_nvrtcGetPTXNative
(JNIEnv *env, jclass cls, jobject prog, jobjectArray ptx)
{
if (prog == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'prog' is null for nvrtcGetPTX");
return JCUDA_INTERNAL_ERROR;
}
if (ptx == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'ptx' is null for nvrtcGetPTX");
return JCUDA_INTERNAL_ERROR;
}
Logger::log(LOG_TRACE, "Executing nvrtcGetPTX\n");
int length = env->GetArrayLength(ptx);
if (length == 0)
{
ThrowByName(env, "java/lang/IllegalArgumentException",
"String array must at least have length 1");
return JCUDA_INTERNAL_ERROR;
}
nvrtcProgram nativeProg = (nvrtcProgram)(intptr_t)getNativePointerValue(env, prog);
size_t nativePtxSizeRet = 0;
int result = nvrtcGetPTXSize(nativeProg, &nativePtxSizeRet);
if (result != NVRTC_SUCCESS)
{
return result;
}
char *nativePtx = new char[nativePtxSizeRet];
if (nativePtx == NULL)
{
ThrowByName(env, "java/lang/OutOfMemoryError",
"Out of memory while creating result string");
return JCUDA_INTERNAL_ERROR;
}
result = nvrtcGetPTX(nativeProg, nativePtx);
jstring ptxElement = env->NewStringUTF(nativePtx);
delete[] nativePtx;
if (ptxElement == NULL)
{
ThrowByName(env, "java/lang/OutOfMemoryError",
"Out of memory while creating result string");
return JCUDA_INTERNAL_ERROR;
}
env->SetObjectArrayElement(ptx, 0, ptxElement);
return result;
}
/*
* Class: jcuda_nvrtc_JNvrtc
* Method: nvrtcGetCUBINSizeNative
* Signature: (Ljcuda/nvrtc/nvrtcProgram;[J)I
*/
JNIEXPORT jint JNICALL Java_jcuda_nvrtc_JNvrtc_nvrtcGetCUBINSizeNative
(JNIEnv* env, jclass cls, jobject prog, jlongArray cubinSizeRet)
{
if (prog == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'prog' is null for nvrtcGetCUBINSize");
return JCUDA_INTERNAL_ERROR;
}
if (cubinSizeRet == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'cubinSizeRet' is null for nvrtcGetCUBINSize");
return JCUDA_INTERNAL_ERROR;
}
Logger::log(LOG_TRACE, "Executing nvrtcGetCUBINSize\n");
nvrtcProgram nativeProg = (nvrtcProgram)(intptr_t)getNativePointerValue(env, prog);
size_t nativeCubinSizeRet = 0;
int result = nvrtcGetCUBINSize(nativeProg, &nativeCubinSizeRet);
if (!set(env, cubinSizeRet, 0, nativeCubinSizeRet)) return JCUDA_INTERNAL_ERROR;
return result;
}
/*
* Class: jcuda_nvrtc_JNvrtc
* Method: nvrtcGetCUBINNative
* Signature: (Ljcuda/nvrtc/nvrtcProgram;[B)I
*/
JNIEXPORT jint JNICALL Java_jcuda_nvrtc_JNvrtc_nvrtcGetCUBINNative
(JNIEnv* env, jclass cls, jobject prog, jbyteArray cubin)
{
if (prog == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'prog' is null for nvrtcGetCUBIN");
return JCUDA_INTERNAL_ERROR;
}
if (cubin == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'ptx' is null for nvrtcGetCUBIN");
return JCUDA_INTERNAL_ERROR;
}
Logger::log(LOG_TRACE, "Executing nvrtcGetCUBIN\n");
int length = env->GetArrayLength(cubin);
nvrtcProgram nativeProg = (nvrtcProgram)(intptr_t)getNativePointerValue(env, prog);
char* nativeCubin = (char*)env->GetPrimitiveArrayCritical(cubin, NULL);
int result = nvrtcGetCUBIN(nativeProg, nativeCubin);
env->ReleasePrimitiveArrayCritical(cubin, nativeCubin, 0);
return result;
}
/*
* Class: jcuda_nvrtc_JNvrtc
* Method: nvrtcGetNVVMSizeNative
* Signature: (Ljcuda/nvrtc/nvrtcProgram;[J)I
*/
JNIEXPORT jint JNICALL Java_jcuda_nvrtc_JNvrtc_nvrtcGetNVVMSizeNative
(JNIEnv *env, jclass cls, jobject prog, jlongArray nvvmSizeRet)
{
if (prog == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'prog' is null for nvrtcGetNVVMSize");
return JCUDA_INTERNAL_ERROR;
}
if (nvvmSizeRet == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'nvvmSizeRet' is null for nvrtcGetNVVMSize");
return JCUDA_INTERNAL_ERROR;
}
Logger::log(LOG_TRACE, "Executing nvrtcGetNVVMSize\n");
nvrtcProgram nativeProg = (nvrtcProgram)(intptr_t)getNativePointerValue(env, prog);
size_t nativeNvvmSizeRet = 0;
int result = nvrtcGetNVVMSize(nativeProg, &nativeNvvmSizeRet);
if (!set(env, nvvmSizeRet, 0, nativeNvvmSizeRet)) return JCUDA_INTERNAL_ERROR;
return result;
}
/*
* Class: jcuda_nvrtc_JNvrtc
* Method: nvrtcGetNVVMNative
* Signature: (Ljcuda/nvrtc/nvrtcProgram;[B)I
*/
JNIEXPORT jint JNICALL Java_jcuda_nvrtc_JNvrtc_nvrtcGetNVVMNative
(JNIEnv* env, jclass cls, jobject prog, jbyteArray nvvm)
{
if (prog == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'prog' is null for nvrtcGetNVVM");
return JCUDA_INTERNAL_ERROR;
}
if (nvvm == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'ptx' is null for nvrtcGetNVVM");
return JCUDA_INTERNAL_ERROR;
}
Logger::log(LOG_TRACE, "Executing nvrtcGetNVVM\n");
int length = env->GetArrayLength(nvvm);
nvrtcProgram nativeProg = (nvrtcProgram)(intptr_t)getNativePointerValue(env, prog);
char* nativeNvvm = (char*)env->GetPrimitiveArrayCritical(nvvm, NULL);
int result = nvrtcGetNVVM(nativeProg, nativeNvvm);
env->ReleasePrimitiveArrayCritical(nvvm, nativeNvvm, 0);
return result;
}
/*
* Class: jcuda_nvrtc_JNvrtc
* Method: nvrtcGetProgramLogSizeNative
* Signature: (Ljcuda/nvrtc/nvrtcProgram;[J)I
*/
JNIEXPORT jint JNICALL Java_jcuda_nvrtc_JNvrtc_nvrtcGetProgramLogSizeNative
(JNIEnv *env, jclass cls, jobject prog, jlongArray logSizeRet)
{
if (prog == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'prog' is null for nvrtcGetProgramLogSize");
return JCUDA_INTERNAL_ERROR;
}
if (logSizeRet == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'logSizeRet' is null for nvrtcGetProgramLogSize");
return JCUDA_INTERNAL_ERROR;
}
Logger::log(LOG_TRACE, "Executing nvrtcGetProgramLogSize\n");
nvrtcProgram nativeProg = (nvrtcProgram)(intptr_t)getNativePointerValue(env, prog);
size_t nativeLogSizeRet = 0;
int result = nvrtcGetProgramLogSize(nativeProg, &nativeLogSizeRet);
if (!set(env, logSizeRet, 0, nativeLogSizeRet)) return JCUDA_INTERNAL_ERROR;
return result;
}
/*
* Class: jcuda_nvrtc_JNvrtc
* Method: nvrtcGetProgramLogNative
* Signature: (Ljcuda/nvrtc/nvrtcProgram;[Ljava/lang/String;)I
*/
JNIEXPORT jint JNICALL Java_jcuda_nvrtc_JNvrtc_nvrtcGetProgramLogNative
(JNIEnv *env, jclass cls, jobject prog, jobjectArray log)
{
if (prog == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'prog' is null for nvrtcGetProgramLog");
return JCUDA_INTERNAL_ERROR;
}
if (log == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'log' is null for nvrtcGetProgramLog");
return JCUDA_INTERNAL_ERROR;
}
Logger::log(LOG_TRACE, "Executing nvrtcGetProgramLog\n");
int length = env->GetArrayLength(log);
if (length == 0)
{
ThrowByName(env, "java/lang/IllegalArgumentException",
"String array must at least have length 1");
return JCUDA_INTERNAL_ERROR;
}
nvrtcProgram nativeProg = (nvrtcProgram)(intptr_t)getNativePointerValue(env, prog);
size_t nativeLogSizeRet = 0;
int result = nvrtcGetProgramLogSize(nativeProg, &nativeLogSizeRet);
if (result != NVRTC_SUCCESS)
{
return result;
}
char *nativeLog = new char[nativeLogSizeRet];
if (nativeLog == NULL)
{
ThrowByName(env, "java/lang/OutOfMemoryError",
"Out of memory while creating result string");
return JCUDA_INTERNAL_ERROR;
}
result = nvrtcGetProgramLog(nativeProg, nativeLog);
jstring logElement = env->NewStringUTF(nativeLog);
delete[] nativeLog;
if (logElement == NULL)
{
ThrowByName(env, "java/lang/OutOfMemoryError",
"Out of memory while creating result string");
return JCUDA_INTERNAL_ERROR;
}
env->SetObjectArrayElement(log, 0, logElement);
return result;
}
/*
* Class: jcuda_nvrtc_JNvrtc
* Method: nvrtcAddNameExpressionNative
* Signature: (Ljcuda/nvrtc/nvrtcProgram;Ljava/lang/String;)I
*/
JNIEXPORT jint JNICALL Java_jcuda_nvrtc_JNvrtc_nvrtcAddNameExpressionNative
(JNIEnv *env, jclass cls, jobject prog, jstring name_expression)
{
if (prog == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'prog' is null for nvrtcAddNameExpression");
return JCUDA_INTERNAL_ERROR;
}
if (name_expression == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'name_expression' is null for nvrtcAddNameExpression");
return JCUDA_INTERNAL_ERROR;
}
Logger::log(LOG_TRACE, "Executing nvrtcAddNameExpression\n");
nvrtcProgram nativeProg = (nvrtcProgram)(intptr_t)getNativePointerValue(env, prog);
char *nativeName_expression = convertString(env, name_expression);
int result = nvrtcAddNameExpression(nativeProg, nativeName_expression);
delete[] nativeName_expression;
return result;
}
/*
* Class: jcuda_nvrtc_JNvrtc
* Method: nvrtcGetLoweredNameNative
* Signature: (Ljcuda/nvrtc/nvrtcProgram;Ljava/lang/String;[Ljava/lang/String;)I
*/
JNIEXPORT jint JNICALL Java_jcuda_nvrtc_JNvrtc_nvrtcGetLoweredNameNative
(JNIEnv *env, jclass cls, jobject prog, jstring name_expression, jobjectArray lowered_name)
{
if (prog == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'prog' is null for nvrtcGetLoweredName");
return JCUDA_INTERNAL_ERROR;
}
if (name_expression == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'name_expression' is null for nvrtcGetLoweredName");
return JCUDA_INTERNAL_ERROR;
}
if (lowered_name == NULL)
{
ThrowByName(env, "java/lang/NullPointerException",
"Parameter 'lowered_name' is null for nvrtcGetLoweredName");
return JCUDA_INTERNAL_ERROR;
}
int length = env->GetArrayLength(lowered_name);
if (length == 0)
{
ThrowByName(env, "java/lang/IllegalArgumentException",
"String array lowered_name must at least have length 1");
return JCUDA_INTERNAL_ERROR;
}
Logger::log(LOG_TRACE, "Executing nvrtcGetLoweredName\n");
nvrtcProgram nativeProg = (nvrtcProgram)(intptr_t)getNativePointerValue(env, prog);
char *nativeName_expression = convertString(env, name_expression);
const char *nativeLowered_name;
int result = nvrtcGetLoweredName(nativeProg, nativeName_expression, &nativeLowered_name);
jstring lowered_nameElement = env->NewStringUTF(nativeLowered_name);
if (lowered_nameElement == NULL)
{
ThrowByName(env, "java/lang/OutOfMemoryError",
"Out of memory while creating result string");
return JCUDA_INTERNAL_ERROR;
}
env->SetObjectArrayElement(lowered_name, 0, lowered_nameElement);
delete[] nativeName_expression;
return result;
}