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

[SYCL] Don't emit exception handling code for device #449

Merged
merged 1 commit into from
Aug 6, 2019

Conversation

ilyastepykin
Copy link
Contributor

In order to support exception handling, the compiler
generates additional code inside functions to perform
cleanup, catch unexpected exceptions. This is done
by calling a function that may throw using "invoke"
LLVM instruction with additional landing pad code
instead of simple "call".
Previously, when such code is generated, llvm-spirv
would fail to translate it as it doesn't know how to
handle "invoke" instruction.

There is no support for exceptions on device side,
so generation of such exception handling code
(including "invoke" instruction) can be simply disabled.

Signed-off-by: Ilya Stepykin ilya.stepykin@intel.com

erichkeane
erichkeane previously approved these changes Aug 2, 2019
Copy link
Contributor

@erichkeane erichkeane left a comment

Choose a reason for hiding this comment

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

Otherwise acceptable to me.

Copy link

@mibintc mibintc left a comment

Choose a reason for hiding this comment

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

We have code in SemaSYCL which creates a diagnostic on exception code when seen in sycl device right? like try, throw, etc?

premanandrao
premanandrao previously approved these changes Aug 2, 2019
Copy link
Contributor

@premanandrao premanandrao left a comment

Choose a reason for hiding this comment

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

LGTM

@agozillon
Copy link
Contributor

agozillon commented Aug 2, 2019

We have code in SemaSYCL which creates a diagnostic on exception code when seen in sycl device right? like try, throw, etc?

Yes, but I believe it's still possible to inject exception related code in certain cases through things like this I think: #77 I've not tested this in a while though, so perhaps it's fixed.

@asavonic
Copy link
Contributor

asavonic commented Aug 2, 2019

Can we just pass -fno-exceptions flag from the driver instead of making changes in Clang CodeGen?

@agozillon
Copy link
Contributor

agozillon commented Aug 2, 2019

Can we just pass -fno-exceptions flag from the driver instead of making changes in Clang CodeGen?

I tried something similar in the issue I referenced I think, but I didn't dig too deep and perhaps I misdiagnosed the problem. As I recall it breaks on try catches in host code as even if the device isn't using them, the device compiler still needs to compile it as it compiles both the host and device source. At least at the time anyway. I mention it briefly at the bottom of the issue as that was my original hopeful solution to the problem. As OpenCL does what you mention I believe but it only compiles the device code, so doesn't have the same problem.

In order to support exception handling, the compiler
generates additional code inside functions to perform
cleanup, catch unexpected exceptions. This is done
by calling a function that may throw using "invoke"
LLVM instruction with additional landing pad code
instead of simple "call".
Previously, when such code is generated, llvm-spirv
would fail to translate it as it doesn't know how to
handle "invoke" instruction.

There is no support for exceptions on device side,
so generation of such exception handling code
(including "invoke" instruction) can be simply disabled.

Signed-off-by: Ilya Stepykin <ilya.stepykin@intel.com>
@ilyastepykin
Copy link
Contributor Author

Can we just pass -fno-exceptions flag from the driver instead of making changes in Clang CodeGen?

If we pass -fno-exceptions the exception check is applied for both host and device code. So in this case we won't be able to compile code whose host part uses exceptions, but its device part doesn't use them.

We have code in SemaSYCL which creates a diagnostic on exception code when seen in sycl device right? like try, throw, etc?

Yes, but in this case we have implicitly generate code and we should not produce a diagnostic for it. Instead we simply ignore it like it's done when -fno-exception is used.

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.

7 participants