-
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.
[gccjit][conversion] add primitive conversions for func and cf (#17)
* [gccjit][conversion] add primitive conversion patterns * wip * wip * [gccjit] translate func/br/cond_br * fix build * more fix * fix * suppress GCC false positive * suppress GCC false positive * suppress GCC false positive * fine, fine, I give up. can't you just shut the fucking up GCC * suppress GCC false positive
- Loading branch information
1 parent
ce1d726
commit c53909a
Showing
12 changed files
with
556 additions
and
107 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Copyright 2024 Schrodinger ZHU Yifan <[email protected]> | ||
// | ||
// 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 MLIR_GCCJIT_CONVERSION_CONVERTIONS_H | ||
#define MLIR_GCCJIT_CONVERSION_CONVERTIONS_H | ||
|
||
#include <mlir/IR/MLIRContext.h> | ||
|
||
#include "mlir-gccjit/Conversion/TypeConverter.h" | ||
|
||
namespace mlir::gccjit { | ||
void populateFuncToGCCJITPatterns(MLIRContext *context, | ||
GCCJITTypeConverter &typeConverter, | ||
RewritePatternSet &patterns, | ||
SymbolTable &symbolTable); | ||
} // namespace mlir::gccjit | ||
|
||
#endif |
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
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
Oops, something went wrong.