
Begin upstreaming of CUDA Fortran support in LLVM Flang. This first patch implements parsing for CUDA Fortran syntax, including: - a new LanguageFeature enum value for CUDA Fortran - driver change to enable that feature for *.cuf and *.CUF source files - parse tree representation of CUDA Fortran syntax - dumping and unparsing of the parse tree - the actual parsers for CUDA Fortran syntax - prescanning support for !@CUF and !$CUF - basic sanity testing via unparsing and parse tree dumps ... along with any minimized changes elsewhere to make these work, mostly no-op cases in common::visitors instances in semantics and lowering to allow them to compile in the face of new types in variant<> instances in the parse tree. Because CUDA Fortran allows the kernel launch chevron syntax ("call foo<<<blocks, threads>>>()") only on CALL statements and not on function references, the parse tree nodes for CallStmt, FunctionReference, and their shared Call were rearranged a bit; this caused a fair amount of one-line changes in many files. More patches will follow that implement CUDA Fortran in the symbol table and name resolution, and then semantic checking. Differential Revision: https://reviews.llvm.org/D150159
56 lines
2.1 KiB
C++
56 lines
2.1 KiB
C++
//===- FrontendOptions.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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Coding style: https://mlir.llvm.org/getting_started/DeveloperGuide/
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "flang/Frontend/FrontendOptions.h"
|
|
|
|
using namespace Fortran::frontend;
|
|
|
|
bool Fortran::frontend::isFixedFormSuffix(llvm::StringRef suffix) {
|
|
// Note: Keep this list in-sync with flang/test/lit.cfg.py
|
|
return suffix == "f77" || suffix == "f" || suffix == "F" || suffix == "ff" ||
|
|
suffix == "for" || suffix == "FOR" || suffix == "fpp" ||
|
|
suffix == "FPP";
|
|
}
|
|
|
|
bool Fortran::frontend::isFreeFormSuffix(llvm::StringRef suffix) {
|
|
// Note: Keep this list in-sync with flang/test/lit.cfg.py
|
|
return suffix == "f90" || suffix == "F90" || suffix == "ff90" ||
|
|
suffix == "f95" || suffix == "F95" || suffix == "ff95" ||
|
|
suffix == "f03" || suffix == "F03" || suffix == "f08" ||
|
|
suffix == "F08" || suffix == "f18" || suffix == "F18" ||
|
|
suffix == "cuf" || suffix == "CUF";
|
|
}
|
|
|
|
bool Fortran::frontend::isToBePreprocessed(llvm::StringRef suffix) {
|
|
return suffix == "F" || suffix == "FOR" || suffix == "fpp" ||
|
|
suffix == "FPP" || suffix == "F90" || suffix == "F95" ||
|
|
suffix == "F03" || suffix == "F08" || suffix == "F18" ||
|
|
suffix == "CUF";
|
|
}
|
|
|
|
bool Fortran::frontend::isCUDAFortranSuffix(llvm::StringRef suffix) {
|
|
return suffix == "cuf" || suffix == "CUF";
|
|
}
|
|
|
|
InputKind FrontendOptions::getInputKindForExtension(llvm::StringRef extension) {
|
|
if (isFixedFormSuffix(extension) || isFreeFormSuffix(extension)) {
|
|
return Language::Fortran;
|
|
}
|
|
|
|
if (extension == "bc" || extension == "ll")
|
|
return Language::LLVM_IR;
|
|
if (extension == "fir" || extension == "mlir")
|
|
return Language::MLIR;
|
|
|
|
return Language::Unknown;
|
|
}
|