Skip to content

Commit 07dd725

Browse files
author
Kim Barrett
committedJul 31, 2024
8337418: Fix -Wzero-as-null-pointer-constant warnings in prims code
Reviewed-by: dholmes, shade, jwaters, sspitsyn
1 parent c73b3cb commit 07dd725

File tree

7 files changed

+23
-26
lines changed

7 files changed

+23
-26
lines changed
 

‎src/hotspot/share/prims/jni.cpp

+11-11
Original file line numberDiff line numberDiff line change
@@ -1148,7 +1148,7 @@ JNI_ENTRY(ResultType, \
11481148
jni_Call##Result##Method(JNIEnv *env, jobject obj, jmethodID methodID, ...)) \
11491149
\
11501150
EntryProbe; \
1151-
ResultType ret = 0;\
1151+
ResultType ret{}; \
11521152
DT_RETURN_MARK_FOR(Result, Call##Result##Method, ResultType, \
11531153
(const ResultType&)ret);\
11541154
\
@@ -1203,7 +1203,7 @@ JNI_ENTRY(ResultType, \
12031203
jni_Call##Result##MethodV(JNIEnv *env, jobject obj, jmethodID methodID, va_list args)) \
12041204
\
12051205
EntryProbe;\
1206-
ResultType ret = 0;\
1206+
ResultType ret{}; \
12071207
DT_RETURN_MARK_FOR(Result, Call##Result##MethodV, ResultType, \
12081208
(const ResultType&)ret);\
12091209
\
@@ -1254,7 +1254,7 @@ DEFINE_CALLMETHODV(jdouble, Double, T_DOUBLE
12541254
JNI_ENTRY(ResultType, \
12551255
jni_Call##Result##MethodA(JNIEnv *env, jobject obj, jmethodID methodID, const jvalue *args)) \
12561256
EntryProbe; \
1257-
ResultType ret = 0;\
1257+
ResultType ret{}; \
12581258
DT_RETURN_MARK_FOR(Result, Call##Result##MethodA, ResultType, \
12591259
(const ResultType&)ret);\
12601260
\
@@ -1546,7 +1546,7 @@ JNI_ENTRY(ResultType, \
15461546
jni_CallStatic##Result##Method(JNIEnv *env, jclass cls, jmethodID methodID, ...)) \
15471547
\
15481548
EntryProbe; \
1549-
ResultType ret = 0;\
1549+
ResultType ret{}; \
15501550
DT_RETURN_MARK_FOR(Result, CallStatic##Result##Method, ResultType, \
15511551
(const ResultType&)ret);\
15521552
\
@@ -1601,7 +1601,7 @@ JNI_ENTRY(ResultType, \
16011601
jni_CallStatic##Result##MethodV(JNIEnv *env, jclass cls, jmethodID methodID, va_list args)) \
16021602
\
16031603
EntryProbe; \
1604-
ResultType ret = 0;\
1604+
ResultType ret{}; \
16051605
DT_RETURN_MARK_FOR(Result, CallStatic##Result##MethodV, ResultType, \
16061606
(const ResultType&)ret);\
16071607
\
@@ -1657,7 +1657,7 @@ JNI_ENTRY(ResultType, \
16571657
jni_CallStatic##Result##MethodA(JNIEnv *env, jclass cls, jmethodID methodID, const jvalue *args)) \
16581658
\
16591659
EntryProbe; \
1660-
ResultType ret = 0;\
1660+
ResultType ret{}; \
16611661
DT_RETURN_MARK_FOR(Result, CallStatic##Result##MethodA, ResultType, \
16621662
(const ResultType&)ret);\
16631663
\
@@ -1750,7 +1750,7 @@ DT_RETURN_MARK_DECL(GetFieldID, jfieldID
17501750
JNI_ENTRY(jfieldID, jni_GetFieldID(JNIEnv *env, jclass clazz,
17511751
const char *name, const char *sig))
17521752
HOTSPOT_JNI_GETFIELDID_ENTRY(env, clazz, (char *) name, (char *) sig);
1753-
jfieldID ret = 0;
1753+
jfieldID ret = nullptr;
17541754
DT_RETURN_MARK(GetFieldID, jfieldID, (const jfieldID&)ret);
17551755

17561756
Klass* k = java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz));
@@ -3035,12 +3035,12 @@ extern "C" void* JNICALL jni_GetDirectBufferAddress(JNIEnv *env, jobject buf)
30353035

30363036
if (!directBufferSupportInitializeEnded) {
30373037
if (!initializeDirectBufferSupport(env, thread)) {
3038-
return 0;
3038+
return nullptr;
30393039
}
30403040
}
30413041

30423042
if ((buf != nullptr) && (!env->IsInstanceOf(buf, directBufferClass))) {
3043-
return 0;
3043+
return nullptr;
30443044
}
30453045

30463046
ret = (void*)(intptr_t)env->GetLongField(buf, directBufferAddressField);
@@ -3647,8 +3647,8 @@ static jint JNI_CreateJavaVM_inner(JavaVM **vm, void **penv, void *args) {
36473647
}
36483648

36493649
// Creation failed. We must reset vm_created
3650-
*vm = 0;
3651-
*(JNIEnv**)penv = 0;
3650+
*vm = nullptr;
3651+
*(JNIEnv**)penv = nullptr;
36523652
// reset vm_created last to avoid race condition. Use OrderAccess to
36533653
// control both compiler and architectural-based reordering.
36543654
assert(vm_created == IN_PROGRESS, "must be");

‎src/hotspot/share/prims/jvm.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -3747,21 +3747,21 @@ JVM_ENTRY(jobjectArray, JVM_DumpThreads(JNIEnv *env, jclass threadClass, jobject
37473747

37483748
// Check if threads is null
37493749
if (threads == nullptr) {
3750-
THROW_(vmSymbols::java_lang_NullPointerException(), 0);
3750+
THROW_NULL(vmSymbols::java_lang_NullPointerException());
37513751
}
37523752

37533753
objArrayOop a = objArrayOop(JNIHandles::resolve_non_null(threads));
37543754
objArrayHandle ah(THREAD, a);
37553755
int num_threads = ah->length();
37563756
// check if threads is non-empty array
37573757
if (num_threads == 0) {
3758-
THROW_(vmSymbols::java_lang_IllegalArgumentException(), 0);
3758+
THROW_NULL(vmSymbols::java_lang_IllegalArgumentException());
37593759
}
37603760

37613761
// check if threads is not an array of objects of Thread class
37623762
Klass* k = ObjArrayKlass::cast(ah->klass())->element_klass();
37633763
if (k != vmClasses::Thread_klass()) {
3764-
THROW_(vmSymbols::java_lang_IllegalArgumentException(), 0);
3764+
THROW_NULL(vmSymbols::java_lang_IllegalArgumentException());
37653765
}
37663766

37673767
ResourceMark rm(THREAD);

‎src/hotspot/share/prims/jvmtiExport.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -2068,7 +2068,7 @@ void JvmtiExport::post_exception_throw(JavaThread *thread, Method* method, addre
20682068

20692069
jmethodID catch_jmethodID;
20702070
if (current_bci < 0) {
2071-
catch_jmethodID = 0;
2071+
catch_jmethodID = nullptr;
20722072
current_bci = 0;
20732073
} else {
20742074
catch_jmethodID = jem.to_jmethodID(current_mh);
@@ -2105,8 +2105,8 @@ void JvmtiExport::notice_unwind_due_to_exception(JavaThread *thread, Method* met
21052105
JvmtiTrace::safe_get_thread_name(thread),
21062106
(mh() == nullptr) ? "null" : mh()->klass_name()->as_C_string(),
21072107
(mh() == nullptr) ? "null" : mh()->name()->as_C_string(),
2108-
location==0? "no location:" : "",
2109-
location==0? 0 : location - mh()->code_base(),
2108+
location == nullptr ? "no location:" : "",
2109+
location == nullptr ? 0 : location - mh()->code_base(),
21102110
in_handler_frame? "in handler frame" : "not handler frame" ));
21112111

21122112
if (state->is_exception_detected()) {

‎src/hotspot/share/prims/jvmtiTrace.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ void JvmtiTrace::shutdown() {
261261

262262

263263
const char* JvmtiTrace::enum_name(const char** names, const jint* values, jint value) {
264-
for (int index = 0; names[index] != 0; ++index) {
264+
for (int index = 0; names[index] != nullptr; ++index) {
265265
if (values[index] == value) {
266266
return names[index];
267267
}

‎src/hotspot/share/prims/methodHandles.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,6 @@ Symbol* MethodHandles::signature_polymorphic_intrinsic_name(vmIntrinsics::ID iid
436436
case vmIntrinsics::_linkToNative: return vmSymbols::linkToNative_name();
437437
default:
438438
fatal("unexpected intrinsic id: %d %s", vmIntrinsics::as_int(iid), vmIntrinsics::name_at(iid));
439-
return 0;
440439
}
441440
}
442441

@@ -449,7 +448,6 @@ Bytecodes::Code MethodHandles::signature_polymorphic_intrinsic_bytecode(vmIntrin
449448
case vmIntrinsics::_invokeBasic: return Bytecodes::_invokehandle;
450449
default:
451450
fatal("unexpected id: (%d) %s", (uint)id, vmIntrinsics::name_at(id));
452-
return Bytecodes::_illegal;
453451
}
454452
}
455453

@@ -463,7 +461,6 @@ int MethodHandles::signature_polymorphic_intrinsic_ref_kind(vmIntrinsics::ID iid
463461
case vmIntrinsics::_linkToInterface: return JVM_REF_invokeInterface;
464462
default:
465463
fatal("unexpected intrinsic id: %d %s", vmIntrinsics::as_int(iid), vmIntrinsics::name_at(iid));
466-
return 0;
467464
}
468465
}
469466

‎src/hotspot/share/prims/perf.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -68,7 +68,7 @@ PERF_ENTRY(jobject, Perf_Attach(JNIEnv *env, jobject unused, int vmid))
6868

6969
PerfWrapper("Perf_Attach");
7070

71-
char* address = 0;
71+
char* address = nullptr;
7272
size_t capacity = 0;
7373

7474
// attach to the PerfData memory region for the specified VM
@@ -90,7 +90,7 @@ PERF_ENTRY(void, Perf_Detach(JNIEnv *env, jobject unused, jobject buffer))
9090
return;
9191
}
9292

93-
void* address = 0;
93+
void* address = nullptr;
9494
jlong capacity = 0;
9595

9696
// get buffer address and capacity

‎src/hotspot/share/prims/unsafe.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ static jclass Unsafe_DefineClass_impl(JNIEnv *env, jstring name, jbyteArray data
652652

653653
jbyte *body;
654654
char *utfName = nullptr;
655-
jclass result = 0;
655+
jclass result = nullptr;
656656
char buf[128];
657657

658658
assert(data != nullptr, "Class bytes must not be null");
@@ -665,7 +665,7 @@ static jclass Unsafe_DefineClass_impl(JNIEnv *env, jstring name, jbyteArray data
665665
body = NEW_C_HEAP_ARRAY_RETURN_NULL(jbyte, length, mtInternal);
666666
if (body == nullptr) {
667667
throw_new(env, "java/lang/OutOfMemoryError");
668-
return 0;
668+
return nullptr;
669669
}
670670

671671
env->GetByteArrayRegion(data, offset, length, body);

0 commit comments

Comments
 (0)
Please sign in to comment.