-
Notifications
You must be signed in to change notification settings - Fork 14.4k
[flang] Implement !DIR$ VECTOR ALWAYS #93830
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
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
3d80163
[flang] Implement !DIR$ VECTOR ALWAYS
DavidTruby 1d33514
nit fixes for review
DavidTruby 5592699
Add check for directive location in semantics
DavidTruby 8658dc4
Add documentation for change in Directives.md
DavidTruby 1121dc5
More fixes for review
DavidTruby 857e4ea
Additional changes for review.
DavidTruby File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
//===-- lib/Semantics/canonicalize-directives.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 "canonicalize-directives.h" | ||
#include "flang/Parser/parse-tree-visitor.h" | ||
|
||
namespace Fortran::semantics { | ||
|
||
using namespace parser::literals; | ||
|
||
// Check that directives are associated with the correct constructs. | ||
// Directives that need to be associated with other constructs in the execution | ||
// part are moved to the execution part so they can be checked there. | ||
class CanonicalizationOfDirectives { | ||
public: | ||
CanonicalizationOfDirectives(parser::Messages &messages) | ||
: messages_{messages} {} | ||
|
||
template <typename T> bool Pre(T &) { return true; } | ||
template <typename T> void Post(T &) {} | ||
|
||
// Move directives that must appear in the Execution part out of the | ||
// Specification part. | ||
void Post(parser::SpecificationPart &spec); | ||
bool Pre(parser::ExecutionPart &x); | ||
|
||
// Ensure that directives associated with constructs appear accompanying the | ||
// construct. | ||
void Post(parser::Block &block); | ||
|
||
private: | ||
// Ensure that loop directives appear immediately before a loop. | ||
void CheckLoopDirective(parser::CompilerDirective &dir, parser::Block &block, | ||
std::list<parser::ExecutionPartConstruct>::iterator it); | ||
|
||
parser::Messages &messages_; | ||
|
||
// Directives to be moved to the Execution part from the Specification part. | ||
std::list<common::Indirection<parser::CompilerDirective>> | ||
directivesToConvert_; | ||
}; | ||
|
||
bool CanonicalizeDirectives( | ||
parser::Messages &messages, parser::Program &program) { | ||
CanonicalizationOfDirectives dirs{messages}; | ||
Walk(program, dirs); | ||
return !messages.AnyFatalError(); | ||
} | ||
|
||
static bool IsExecutionDirective(const parser::CompilerDirective &dir) { | ||
return std::holds_alternative<parser::CompilerDirective::VectorAlways>(dir.u); | ||
} | ||
|
||
void CanonicalizationOfDirectives::Post(parser::SpecificationPart &spec) { | ||
auto &list{ | ||
std::get<std::list<common::Indirection<parser::CompilerDirective>>>( | ||
spec.t)}; | ||
for (auto it{list.begin()}; it != list.end();) { | ||
if (IsExecutionDirective(it->value())) { | ||
directivesToConvert_.emplace_back(std::move(*it)); | ||
it = list.erase(it); | ||
} else { | ||
++it; | ||
} | ||
} | ||
} | ||
|
||
bool CanonicalizationOfDirectives::Pre(parser::ExecutionPart &x) { | ||
auto origFirst{x.v.begin()}; | ||
for (auto &dir : directivesToConvert_) { | ||
x.v.insert(origFirst, | ||
parser::ExecutionPartConstruct{ | ||
parser::ExecutableConstruct{std::move(dir)}}); | ||
} | ||
|
||
directivesToConvert_.clear(); | ||
return true; | ||
} | ||
|
||
template <typename T> T *GetConstructIf(parser::ExecutionPartConstruct &x) { | ||
if (auto *y{std::get_if<parser::ExecutableConstruct>(&x.u)}) { | ||
if (auto *z{std::get_if<common::Indirection<T>>(&y->u)}) { | ||
return &z->value(); | ||
} | ||
} | ||
return nullptr; | ||
} | ||
|
||
void CanonicalizationOfDirectives::CheckLoopDirective( | ||
parser::CompilerDirective &dir, parser::Block &block, | ||
std::list<parser::ExecutionPartConstruct>::iterator it) { | ||
|
||
// Skip over this and other compiler directives | ||
while (GetConstructIf<parser::CompilerDirective>(*it)) { | ||
++it; | ||
} | ||
|
||
if (it == block.end() || !GetConstructIf<parser::DoConstruct>(*it)) { | ||
std::string s{parser::ToUpperCaseLetters(dir.source.ToString())}; | ||
s.pop_back(); // Remove trailing newline from source string | ||
messages_.Say( | ||
dir.source, "A DO loop must follow the %s directive"_err_en_US, s); | ||
} | ||
} | ||
|
||
void CanonicalizationOfDirectives::Post(parser::Block &block) { | ||
for (auto it{block.begin()}; it != block.end(); ++it) { | ||
if (auto *dir{GetConstructIf<parser::CompilerDirective>(*it)}) { | ||
std::visit( | ||
common::visitors{[&](parser::CompilerDirective::VectorAlways &) { | ||
CheckLoopDirective(*dir, block, it); | ||
}, | ||
[&](auto &) {}}, | ||
dir->u); | ||
} | ||
} | ||
} | ||
|
||
} // namespace Fortran::semantics |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
//===-- lib/Semantics/canonicalize-directives.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 FORTRAN_SEMANTICS_CANONICALIZE_DIRECTIVES_H_ | ||
#define FORTRAN_SEMANTICS_CANONICALIZE_DIRECTIVES_H_ | ||
|
||
namespace Fortran::parser { | ||
struct Program; | ||
class Messages; | ||
} // namespace Fortran::parser | ||
|
||
namespace Fortran::semantics { | ||
bool CanonicalizeDirectives( | ||
parser::Messages &messages, parser::Program &program); | ||
} | ||
|
||
#endif // FORTRAN_SEMANTICS_CANONICALIZE_DIRECTIVES_H_ |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.