Skip to content
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

Add error propagation to interpreter creation logic #553

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

anutosh491
Copy link
Collaborator

Description

@Vipul-Cariappa and I were discussing a use case yesterday (especially while building with repl) and this is what we realized

  1. The function responsible for creating clang::Interpreter is createClangInterpreter which can return a nullptr, for eg

  2. This is assigned to inner while the constructor for compat::Interpreter is called

    inner = compat::createClangInterpreter(vargs);

which means inner can be nullptr

  1. And then if we look at CreateInterpreter from the top, we're creating the compat::Interpreter here

auto I = new compat::Interpreter(ClingArgv.size(), &ClingArgv[0]);

Which means compat::Interpreter can exist even when the underlying clang::Interpreter is not existing. So we can say that the Interpreter from the top is half broken

  1. So if we try something like
Cpp::CreateInterpreter(...)
Cpp::Parse(..)

We would hit the following finally

llvm::Expected<clang::PartialTranslationUnit&> Parse(llvm::StringRef Code) {
return inner->Parse(Code);
}

And although the call is made to compat::Interpreter, we end up using the underlying clang::Interpreter without checking if it is valid.

Type of change

Please tick all options which are relevant.

  • Bug fix
  • New feature
  • Requires documentation updates

Testing

Please describe the test(s) that you added and ran to verify your changes.

Checklist

  • I have read the contribution guide recently

@anutosh491 anutosh491 changed the title Fixing creation of Interpreter Add error propagation to interpreter creation logic Apr 4, 2025
@mcbarton mcbarton requested a review from vgvassilev April 4, 2025 07:37
@anutosh491
Copy link
Collaborator Author

anutosh491 commented Apr 4, 2025

Hence, we had a couple approaches to go ahead here

i) Introduce a isValid for clang::Interpreter and anytime we have a inner->func_call we use that (sounds a bit cumbersome checking for validity everytime)

ii) What Vipul and I liked was propagating the error all the way to that top, so that a half broken interpreter can't be put to use and a utility function like parse/declare would only work if CreateInterpreter doesn't return null along with an error message saying Interpreter creation failed.

@mcbarton mcbarton requested a review from aaronj0 April 4, 2025 07:40
Copy link

codecov bot commented Apr 4, 2025

Codecov Report

Attention: Patch coverage is 73.68421% with 5 lines in your changes missing coverage. Please review.

Project coverage is 75.93%. Comparing base (c3384fb) to head (c98a734).

Files with missing lines Patch % Lines
lib/Interpreter/CXCppInterOp.cpp 0.00% 5 Missing ⚠️
Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main     #553      +/-   ##
==========================================
- Coverage   75.94%   75.93%   -0.01%     
==========================================
  Files           9        9              
  Lines        3646     3657      +11     
==========================================
+ Hits         2769     2777       +8     
- Misses        877      880       +3     
Files with missing lines Coverage Δ
lib/Interpreter/Compatibility.h 90.17% <100.00%> (+0.08%) ⬆️
lib/Interpreter/CppInterOp.cpp 83.91% <100.00%> (+0.02%) ⬆️
lib/Interpreter/CppInterOpInterpreter.h 80.74% <100.00%> (+0.42%) ⬆️
lib/Interpreter/CXCppInterOp.cpp 46.87% <0.00%> (-0.41%) ⬇️
Files with missing lines Coverage Δ
lib/Interpreter/Compatibility.h 90.17% <100.00%> (+0.08%) ⬆️
lib/Interpreter/CppInterOp.cpp 83.91% <100.00%> (+0.02%) ⬆️
lib/Interpreter/CppInterOpInterpreter.h 80.74% <100.00%> (+0.42%) ⬆️
lib/Interpreter/CXCppInterOp.cpp 46.87% <0.00%> (-0.41%) ⬇️
🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

clang-tidy made some suggestions

There were too many comments to post at once. Showing the first 10 out of 11. Check the log or trigger a new build to see more.

@@ -136,11 +136,14 @@ class Interpreter {
private:
std::unique_ptr<clang::Interpreter> inner;

Interpreter(std::unique_ptr<clang::Interpreter> CI) : inner(std::move(CI)) {}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

warning: no header providing "std::move" is directly included [misc-include-cleaner]

lib/Interpreter/CppInterOpInterpreter.h:24:

- #if CLANG_VERSION_MAJOR >= 19
+ #include <utility>
+ #if CLANG_VERSION_MAJOR >= 19

void* extraLibHandle = 0, bool noRuntime = true) {
static std::unique_ptr<Interpreter>
create(int argc, const char* const* argv, const char* llvmdir = 0,
const std::vector<std::shared_ptr<clang::ModuleFileExtension>>&
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

warning: no header providing "clang::ModuleFileExtension" is directly included [misc-include-cleaner]

lib/Interpreter/CppInterOpInterpreter.h:24:

- #if CLANG_VERSION_MAJOR >= 19
+ #include <clang/Serialization/ModuleFileExtension.h>
+ #if CLANG_VERSION_MAJOR >= 19

void* extraLibHandle = 0, bool noRuntime = true) {
static std::unique_ptr<Interpreter>
create(int argc, const char* const* argv, const char* llvmdir = 0,
const std::vector<std::shared_ptr<clang::ModuleFileExtension>>&
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

warning: no header providing "std::shared_ptr" is directly included [misc-include-cleaner]

         const std::vector<std::shared_ptr<clang::ModuleFileExtension>>&
                                ^

void* extraLibHandle = 0, bool noRuntime = true) {
static std::unique_ptr<Interpreter>
create(int argc, const char* const* argv, const char* llvmdir = 0,
const std::vector<std::shared_ptr<clang::ModuleFileExtension>>&
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

warning: no header providing "std::vector" is directly included [misc-include-cleaner]

lib/Interpreter/CppInterOpInterpreter.h:24:

- #if CLANG_VERSION_MAJOR >= 19
+ #include <vector>
+ #if CLANG_VERSION_MAJOR >= 19

llvm::logAllUnhandledErrors(std::move(Err), llvm::errs(),
"Failed load libcudart.so runtime:");
return nullptr;
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was some inconsistency that I saw along the way. We return a nullptr whenever clang-repl uses ExitOnErr except this case (https://github.com/llvm/llvm-project/blob/main/clang/tools/clang-repl/ClangRepl.cpp#L212)

So clang-repl would just exit out ... through something like

(clang-repl-env-19) anutosh491@Anutoshs-MacBook-Air bin % ./clang-repl --cuda
clang-repl: dlopen(libcudart.so, 0x0009): tried: 'libcudart.so' (no such file), '/System/Volumes/Preboot/Cryptexes/OSlibcudart.so' (no such file), '/Users/anutosh491/micromamba/envs/clang-repl-env-19/lib/../lib/libcudart.so' (no such file), '/Users/anutosh491/micromamba/envs/clang-repl-env-19/lib/libcudart.so' (no such file), '/Users/anutosh491/micromamba/envs/clang-repl-env-19/bin/../lib/libcudart.so' (no such file), '/Users/anutosh491/micromamba/envs/clang-repl-env-19/bin/../lib/libcudart.so' (no such file), '/usr/lib/libcudart.so' (no such file, not in dyld cache), 'libcudart.so' (no such file), '/usr/local/lib/libcudart.so' (no such file), '/usr/lib/libcudart.so' (no such file, not in dyld cache)

But in our case we are continuing to use a half broken interpreter without the above working and we run declare on top of this

return Cpp::Declare("__global__ void test_func() {}"
"test_func<<<1,1>>>();") == 0;

which is bound to not work as can be seen here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant