[NFC][CLANG] Fix dereference issue before null check found by Coverity static analyze...
authorManna, Soumi <soumi.manna@intel.com>
Fri, 19 May 2023 17:05:45 +0000 (10:05 -0700)
committerManna, Soumi <soumi.manna@intel.com>
Fri, 19 May 2023 17:16:14 +0000 (10:16 -0700)
commitbe37e3e25982c9346df883fcc61e7b60311594a4
tree2f74ab3fc26bd8938c23662e45d67fe73cbb6011
parent55903151a2a505284ce3fcd955b1d394df0b55ea
[NFC][CLANG] Fix dereference issue before null check found by Coverity static analyzer tool

Reported by Coverity static analyzer tool:

Inside "ParsePragma.cpp" file, in <unnamed>::PragmaRISCVHandler::HandlePragma(clang::Preprocessor &, clang::PragmaIntroducer, clang::Token &): All paths that lead to this null pointer comparison already dereference the pointer earlier

  PP.Lex(Tok);
  II = Tok.getIdentifierInfo();
  //deref_ptr_in_call: Dereferencing pointer II.
  StringRef IntrinsicClass = II->getName();

    //Dereference before null check (REVERSE_INULL)
    //check_after_deref: Null-checking II suggests that it may be null, but it has already been dereferenced on all paths leading to the check.
    if (!II || !(II->isStr("vector") || II->isStr("sifive_vector"))) {
      PP.Diag(Tok.getLocation(), diag::warn_pragma_invalid_argument)
          << PP.getSpelling(Tok) << "riscv" << /*Expected=*/true
          << "'vector' or 'sifive_vector'";
      return;
  }

This patch removes redundant StringRef type 'IntrinsicClass' and checks
II->isStr("vector") || II->isStr("sifive_vector") instead to set Actions.DeclareRISCVVBuiltins or
Actions.DeclareRISCVVectorBuiltins.

Reviewed By: erichkeane

Differential Revision: https://reviews.llvm.org/D150895
clang/lib/Parse/ParsePragma.cpp