-
Notifications
You must be signed in to change notification settings - Fork 15.5k
[AST][RISCV] Preserve RISC-V intrinsic pragma in AST #171981
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
959b7f7
[AST][RISCV] Preserve RISC-V intrinsic pragma in AST
4vtomat c448a53
fixup! check empty
4vtomat b975f02
fixup! update Craig's comments, support multi-module
4vtomat 7c7d5d6
fixup! clang-format
4vtomat 2cd5d6f
Merge remote-tracking branch 'origin/main' into rvv_intrinsic_pch
4vtomat 392cc7a
fixup! dont use clang driver
4vtomat 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| // RUN: rm -rf %t | ||
| // RUN: split-file %s %t | ||
|
|
||
|
|
||
| // Test precompiled header | ||
| // RUN: %clang_cc1 -triple riscv64-linux-gnu -target-feature +v -emit-pch -o %t/test_pch.pch %t/test_pch.h | ||
| // RUN: %clang_cc1 -triple riscv64-linux-gnu -target-feature +v -include-pch %t/test_pch.pch \ | ||
| // RUN: -fsyntax-only -verify %t/test_pch_src.c | ||
| // | ||
| // Test precompiled module(only available after C++20) | ||
| // RUN: %clang_cc1 -triple riscv64-linux-gnu -target-feature +v -std=c++20 -xc++-user-header -emit-header-unit -o %t/test_module1.pcm %t/test_module1.h | ||
| // RUN: %clang_cc1 -triple riscv64-linux-gnu -target-feature +v -std=c++20 -xc++-user-header -emit-header-unit -o %t/test_module2.pcm %t/test_module2.h | ||
| // RUN: %clang_cc1 -triple riscv64-linux-gnu -target-feature +v -std=c++20 -fmodule-file=%t/test_module1.pcm -fmodule-file=%t/test_module2.pcm \ | ||
| // RUN: -fsyntax-only %t/test_module_src.cpp | ||
|
|
||
| //--- test_pch.h | ||
| // expected-no-diagnostics | ||
| #include <riscv_vector.h> | ||
|
|
||
| //--- test_pch_src.c | ||
| // expected-no-diagnostics | ||
| vuint64m4_t v_add(vuint64m4_t a, vuint64m4_t b, size_t vl) { | ||
| return __riscv_vadd_vv_u64m4(a, b, vl); | ||
| } | ||
|
|
||
| //--- test_module1.h | ||
| // expected-no-diagnostics | ||
| #include <riscv_vector.h> | ||
|
|
||
| //--- test_module2.h | ||
| // expected-no-diagnostics | ||
| // empty header | ||
|
|
||
| //--- test_module_src.cpp | ||
| // expected-no-diagnostics | ||
| import "test_module1.h"; | ||
| import "test_module2.h"; | ||
| vuint64m4_t v_add(vuint64m4_t a, vuint64m4_t b, size_t vl) { | ||
| return __riscv_vadd_vv_u64m4(a, b, vl); | ||
| } |
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.