forked from flang-compiler/f18
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a9aadfb
commit 0d387d1
Showing
7 changed files
with
1,109 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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 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 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,25 @@ | ||
# Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unused-parameter") | ||
|
||
add_library(FortranBurnside | ||
flattened.cc | ||
) | ||
|
||
install (TARGETS FortranBurnside | ||
ARCHIVE DESTINATION lib | ||
LIBRARY DESTINATION lib | ||
RUNTIME DESTINATION bin | ||
) |
This file contains 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,78 @@ | ||
// Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
#ifndef FORTRAN_BURNSIDE_BUILDER_H_ | ||
#define FORTRAN_BURNSIDE_BUILDER_H_ | ||
|
||
#include "../semantics/symbol.h" | ||
#include "llvm/ADT/DenseMap.h" | ||
#include "mlir/IR/Builders.h" | ||
#include "mlir/IR/Function.h" | ||
#include "mlir/IR/Module.h" | ||
#include <string> | ||
|
||
namespace llvm { | ||
class StringRef; | ||
} | ||
|
||
namespace Fortran::burnside { | ||
|
||
/// Miscellaneous helper routines for building MLIR | ||
/// [Coding style](https://llvm.org/docs/CodingStandards.html) | ||
|
||
class SymMap { | ||
llvm::DenseMap<const semantics::Symbol *, mlir::Value *> symbolMap; | ||
|
||
public: | ||
void addSymbol(const semantics::Symbol *symbol, mlir::Value *value); | ||
|
||
mlir::Value *lookupSymbol(const semantics::Symbol *symbol); | ||
}; | ||
|
||
std::string applyNameMangling(llvm::StringRef parserName); | ||
|
||
/// Get the current Module | ||
inline mlir::ModuleOp getModule(mlir::OpBuilder *bldr) { | ||
return bldr->getBlock()->getParent()->getParentOfType<mlir::ModuleOp>(); | ||
} | ||
|
||
/// Get the current Function | ||
inline mlir::FuncOp getFunction(mlir::OpBuilder *bldr) { | ||
return bldr->getBlock()->getParent()->getParentOfType<mlir::FuncOp>(); | ||
} | ||
|
||
/// Get the entry block of the current Function | ||
inline mlir::Block *getEntryBlock(mlir::OpBuilder *bldr) { | ||
return &getFunction(bldr).front(); | ||
} | ||
|
||
/// Create a new basic block | ||
inline mlir::Block *createBlock(mlir::OpBuilder *bldr, mlir::Region *region) { | ||
return bldr->createBlock(region, region->end()); | ||
} | ||
|
||
inline mlir::Block *createBlock(mlir::OpBuilder *bldr) { | ||
return createBlock(bldr, bldr->getBlock()->getParent()); | ||
} | ||
|
||
/// Get a function by name (or null) | ||
mlir::FuncOp getNamedFunction(llvm::StringRef name); | ||
|
||
/// Create a new Function | ||
mlir::FuncOp createFunction( | ||
mlir::ModuleOp module, llvm::StringRef name, mlir::FunctionType funcTy); | ||
|
||
} // Fortran::burnside | ||
|
||
#endif // FORTRAN_BURNSIDE_BUILDER_H_ |
Oops, something went wrong.