yaxunl added a comment.

I am a little bit concerned that user may have such code:

  struct A { int *p; }
  __global__ kernel(A a) {
    int x;
    a.p = &x;
    f(a);
  }

@arsenm what happens if a private pointer is mis-used as a global pointer?

I am wondering if we should coerce byval struct kernel arg to global only if 
they are const, e.g.

  __global__ kernel(const A a);

I understand this may lose performance. Or should we introduce an option to let 
user disable coerce of non-const struct kernel arg to global.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D69826/new/

https://reviews.llvm.org/D69826



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to