Skip to content

[Frontend][OpenMP] Implement directive name parser #146776

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Jul 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 77 additions & 0 deletions llvm/include/llvm/Frontend/OpenMP/DirectiveNameParser.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
//===- DirectiveNameParser.h ------------------------------------- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_FRONTEND_OPENMP_DIRECTIVENAMEPARSER_H
#define LLVM_FRONTEND_OPENMP_DIRECTIVENAMEPARSER_H

#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringMap.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Frontend/OpenMP/OMP.h"

#include <memory>

namespace llvm::omp {
/// Parser class for OpenMP directive names. It only recognizes names listed
/// in OMP.td, in particular it does not recognize Fortran's end-directives
/// if they are not explicitly listed in OMP.td.
///
/// The class itself may be a singleton, once it's constructed it never
/// changes.
///
/// Usage:
/// {
/// DirectiveNameParser Parser; // Could be static const.
///
/// DirectiveNameParser::State *S = Parser.initial();
/// for (StringRef Token : Tokens)
/// S = Parser.consume(S, Token); // Passing nullptr is ok.
///
/// if (S == nullptr) {
/// // Error: ended up in a state from which there is no possible path
/// // to a successful parse.
/// } else if (S->Value == OMPD_unknown) {
/// // Parsed a sequence of tokens that are not a complete name, but
/// // parsing more tokens could lead to a successful parse.
/// } else {
/// // Success.
/// ParsedId = S->Value;
/// }
/// }
struct DirectiveNameParser {
DirectiveNameParser(SourceLanguage L = SourceLanguage::C);

struct State {
Directive Value = Directive::OMPD_unknown;

private:
using TransitionMapTy = StringMap<State>;
std::unique_ptr<TransitionMapTy> Transition;

State *next(StringRef Tok);
const State *next(StringRef Tok) const;
bool isValid() const {
return Value != Directive::OMPD_unknown || !Transition->empty();
}
friend struct DirectiveNameParser;
};

const State *initial() const { return &InitialState; }
const State *consume(const State *Current, StringRef Tok) const;

static SmallVector<StringRef> tokenize(StringRef N);

private:
void insertName(StringRef Name, Directive D);
State *insertTransition(State *From, StringRef Tok);

State InitialState;
};
} // namespace llvm::omp

#endif // LLVM_FRONTEND_OPENMP_DIRECTIVENAMEPARSER_H
1 change: 1 addition & 0 deletions llvm/lib/Frontend/OpenMP/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ add_llvm_component_library(LLVMFrontendOpenMP
OMP.cpp
OMPContext.cpp
OMPIRBuilder.cpp
DirectiveNameParser.cpp

ADDITIONAL_HEADER_DIRS
${LLVM_MAIN_INCLUDE_DIR}/llvm/Frontend
Expand Down
83 changes: 83 additions & 0 deletions llvm/lib/Frontend/OpenMP/DirectiveNameParser.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
//===- DirectiveNameParser.cpp --------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "llvm/Frontend/OpenMP/DirectiveNameParser.h"
#include "llvm/ADT/Sequence.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Frontend/OpenMP/OMP.h"

#include <cassert>
#include <memory>

namespace llvm::omp {
DirectiveNameParser::DirectiveNameParser(SourceLanguage L) {
// Take every directive, get its name in every version, break the name up
// into whitespace-separated tokens, and insert each token.
for (size_t I : llvm::seq<size_t>(Directive_enumSize)) {
auto D = static_cast<Directive>(I);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do you need the cast here?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If D is size_t, then I get

error: no match for ‘operator==’ (operand types are ‘long unsigned int’ and ‘llvm::omp::Directive’)

if (D == Directive::OMPD_unknown || !(getDirectiveLanguages(D) & L))
continue;
for (unsigned Ver : getOpenMPVersions())
insertName(getOpenMPDirectiveName(D, Ver), D);
}
}

const DirectiveNameParser::State *
DirectiveNameParser::consume(const State *Current, StringRef Tok) const {
if (!Current)
return Current;
assert(Current->isValid() && "Invalid input state");
if (const State *Next = Current->next(Tok))
return Next->isValid() ? Next : nullptr;
return nullptr;
}

SmallVector<StringRef> DirectiveNameParser::tokenize(StringRef Str) {
SmallVector<StringRef> Tokens;
SplitString(Str, Tokens);
return Tokens;
}

void DirectiveNameParser::insertName(StringRef Name, Directive D) {
State *Where = &InitialState;

for (StringRef Tok : tokenize(Name))
Where = insertTransition(Where, Tok);

Where->Value = D;
}

DirectiveNameParser::State *
DirectiveNameParser::insertTransition(State *From, StringRef Tok) {
assert(From && "Expecting state");
if (!From->Transition)
From->Transition = std::make_unique<State::TransitionMapTy>();
if (State *Next = From->next(Tok))
return Next;

auto [Where, DidIt] = From->Transition->try_emplace(Tok, State());
assert(DidIt && "Map insertion failed");
return &Where->second;
}

const DirectiveNameParser::State *
DirectiveNameParser::State::next(StringRef Tok) const {
if (!Transition)
return nullptr;
auto F = Transition->find(Tok);
return F != Transition->end() ? &F->second : nullptr;
}

DirectiveNameParser::State *DirectiveNameParser::State::next(StringRef Tok) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can it be made const?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

if (!Transition)
return nullptr;
auto F = Transition->find(Tok);
return F != Transition->end() ? &F->second : nullptr;
}
} // namespace llvm::omp
1 change: 1 addition & 0 deletions llvm/unittests/Frontend/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ add_llvm_unittest(LLVMFrontendTests
OpenMPCompositionTest.cpp
OpenMPDecompositionTest.cpp
OpenMPDirectiveNameTest.cpp
OpenMPDirectiveNameParserTest.cpp

DEPENDS
acc_gen
Expand Down
171 changes: 171 additions & 0 deletions llvm/unittests/Frontend/OpenMPDirectiveNameParserTest.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,171 @@
//===- llvm/unittests/Frontend/OpenMPDirectiveNameParserTest.cpp ----------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "llvm/ADT/Sequence.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Frontend/OpenMP/DirectiveNameParser.h"
#include "llvm/Frontend/OpenMP/OMP.h"
#include "gtest/gtest.h"

#include <cctype>
#include <sstream>
#include <string>
#include <tuple>
#include <vector>

using namespace llvm;

static const omp::DirectiveNameParser &getParser() {
static omp::DirectiveNameParser Parser(omp::SourceLanguage::C |
omp::SourceLanguage::Fortran);
return Parser;
}

static std::vector<std::string> tokenize(StringRef S) {
std::vector<std::string> Tokens;

using TokenIterator = std::istream_iterator<std::string>;
std::string Copy = S.str();
std::istringstream Stream(Copy);

for (auto I = TokenIterator(Stream), E = TokenIterator(); I != E; ++I)
Tokens.push_back(*I);
return Tokens;
}

static std::string &prepareParamName(std::string &Name) {
for (size_t I = 0, E = Name.size(); I != E; ++I) {
// The parameter name must only have alphanumeric characters.
if (!isalnum(Name[I]))
Name[I] = 'X';
}
return Name;
}

namespace llvm {
template <> struct enum_iteration_traits<omp::Directive> {
static constexpr bool is_iterable = true;
};
} // namespace llvm

// Test tokenizing.

class Tokenize : public testing::TestWithParam<omp::Directive> {};

static bool isEqual(const SmallVector<StringRef> &A,
const std::vector<std::string> &B) {
if (A.size() != B.size())
return false;

for (size_t I = 0, E = A.size(); I != E; ++I) {
if (A[I] != StringRef(B[I]))
return false;
}
return true;
}

TEST_P(Tokenize, T) {
omp::Directive DirId = GetParam();
StringRef Name = omp::getOpenMPDirectiveName(DirId, omp::FallbackVersion);

SmallVector<StringRef> tokens1 = omp::DirectiveNameParser::tokenize(Name);
std::vector<std::string> tokens2 = tokenize(Name);
ASSERT_TRUE(isEqual(tokens1, tokens2));
}

static std::string
getParamName1(const testing::TestParamInfo<Tokenize::ParamType> &Info) {
omp::Directive DirId = Info.param;
std::string Name =
omp::getOpenMPDirectiveName(DirId, omp::FallbackVersion).str();
return prepareParamName(Name);
}

INSTANTIATE_TEST_SUITE_P(
DirectiveNameParserTest, Tokenize,
testing::ValuesIn(
llvm::enum_seq(static_cast<omp::Directive>(0),
static_cast<omp::Directive>(omp::Directive_enumSize))),
getParamName1);

// Test parsing of valid names.

using ValueType = std::tuple<omp::Directive, unsigned>;

class ParseValid : public testing::TestWithParam<ValueType> {};

TEST_P(ParseValid, T) {
auto [DirId, Version] = GetParam();
if (DirId == omp::Directive::OMPD_unknown)
return;

std::string Name = omp::getOpenMPDirectiveName(DirId, Version).str();

// Tokenize and parse
auto &Parser = getParser();
auto *State = Parser.initial();
ASSERT_TRUE(State != nullptr);

std::vector<std::string> Tokens = tokenize(Name);
for (auto &Tok : Tokens) {
State = Parser.consume(State, Tok);
ASSERT_TRUE(State != nullptr);
}

ASSERT_EQ(State->Value, DirId);
}

static std::string
getParamName2(const testing::TestParamInfo<ParseValid::ParamType> &Info) {
auto [DirId, Version] = Info.param;
std::string Name = omp::getOpenMPDirectiveName(DirId, Version).str() + "v" +
std::to_string(Version);
return prepareParamName(Name);
}

INSTANTIATE_TEST_SUITE_P(
DirectiveNameParserTest, ParseValid,
testing::Combine(testing::ValuesIn(llvm::enum_seq(
static_cast<omp::Directive>(0),
static_cast<omp::Directive>(omp::Directive_enumSize))),
testing::ValuesIn(omp::getOpenMPVersions())),
getParamName2);

// Test parsing of invalid names

class ParseInvalid : public testing::TestWithParam<std::string> {};

TEST_P(ParseInvalid, T) {
std::string Name = GetParam();

auto &Parser = getParser();
auto *State = Parser.initial();
ASSERT_TRUE(State != nullptr);

std::vector<std::string> Tokens = tokenize(Name);
for (auto &Tok : Tokens)
State = Parser.consume(State, Tok);

ASSERT_TRUE(State == nullptr || State->Value == omp::Directive::OMPD_unknown);
}

namespace {
using namespace std;

INSTANTIATE_TEST_SUITE_P(DirectiveNameParserTest, ParseInvalid,
testing::Values(
// Names that contain invalid tokens
"bad"s, "target teams invalid"s,
"target sections parallel"s,
"target teams distribute parallel for wrong"s,
// Valid beginning, but not a complete name
"begin declare"s,
// Complete name with extra tokens
"distribute simd target"s));
} // namespace