Use THREAD instead of CHECK_NULL in return statements

XMLWordPrintable

    • Type: Bug
    • Resolution: Fixed
    • Priority: P2
    • 9
    • Affects Version/s: 9
    • Component/s: hotspot
    • gc
    • b42

        Take the following method as an example:
         Klass* ConstantPool::klass_ref_at(int which, TRAPS) {
          return klass_at(klass_ref_index_at(which), CHECK_NULL);
         }

        This will expand into:
         Klass* ConstantPool::klass_ref_at(int which, TRAPS) {
          return klass_at(klass_ref_index_at(which), THREAD);
          if (HAS_PENDING_EXCEPTIONS) {
            return NULL;
          }
          (void)(0);
         }

        The if-statement will never be reached.

        We have seen cases where the compiler warns about this, and the recent change to enable -Wreturn-type will make this more likely to happen.

        The suggested solution is to change the example above into:
         Klass* ConstantPool::klass_ref_at(int which, TRAPS) {
          return klass_at(klass_ref_index_at(which), THREAD);
         }

              Assignee:
              Stefan Karlsson
              Reporter:
              Stefan Karlsson
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

                Created:
                Updated:
                Resolved: