-
- Downloads
[CUDA] When we emit an error that might have been deferred, also print a callstack.
Summary: Previously, when you did something not allowed in a host+device function and then caused it to be codegen'ed, we would print out an error telling you that you did something bad, but we wouldn't tell you how we decided that the function needed to be codegen'ed. This change causes us to print out a callstack when emitting deferred errors. This is immensely helpful when debugging highly-templated code, where it's often unclear how a function became known-emitted. We only print the callstack once per function, after we print the all deferred errors. This patch also switches all of our hashtables to using canonical FunctionDecls instead of regular FunctionDecls. This prevents a number of bugs, some of which are caught by tests added here, in which we assume that two FDs for the same function have the same pointer value. Reviewers: rnk Subscribers: cfe-commits, tra Differential Revision: https://reviews.llvm.org/D25704 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@284647 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- include/clang/Basic/DiagnosticSemaKinds.td 1 addition, 0 deletionsinclude/clang/Basic/DiagnosticSemaKinds.td
- include/clang/Sema/Sema.h 47 additions, 34 deletionsinclude/clang/Sema/Sema.h
- lib/Sema/SemaCUDA.cpp 98 additions, 44 deletionslib/Sema/SemaCUDA.cpp
- test/SemaCUDA/bad-calls-on-same-line.cu 2 additions, 0 deletionstest/SemaCUDA/bad-calls-on-same-line.cu
- test/SemaCUDA/call-device-fn-from-host.cu 2 additions, 1 deletiontest/SemaCUDA/call-device-fn-from-host.cu
- test/SemaCUDA/call-host-fn-from-device.cu 1 addition, 1 deletiontest/SemaCUDA/call-host-fn-from-device.cu
- test/SemaCUDA/call-stack-for-deferred-err.cu 18 additions, 0 deletionstest/SemaCUDA/call-stack-for-deferred-err.cu
- test/SemaCUDA/exceptions.cu 3 additions, 0 deletionstest/SemaCUDA/exceptions.cu
- test/SemaCUDA/no-call-stack-for-immediate-errs.cu 17 additions, 0 deletionstest/SemaCUDA/no-call-stack-for-immediate-errs.cu
- test/SemaCUDA/trace-through-global.cu 8 additions, 2 deletionstest/SemaCUDA/trace-through-global.cu
Loading
Please register or sign in to comment