]> granicus.if.org Git - llvm/commit
[BPF] annotate DIType metadata for builtin preseve_array_access_index()
authorYonghong Song <yhs@fb.com>
Fri, 2 Aug 2019 21:28:28 +0000 (21:28 +0000)
committerYonghong Song <yhs@fb.com>
Fri, 2 Aug 2019 21:28:28 +0000 (21:28 +0000)
commitd4aabeb32069debc0d894696423b2613b3d95b88
tree3ff6984ac358bf5813c20c7186bcd2cda8c3a5c1
parentfd5b39fd11a7ad382578e03019eaadcbe6b24cf5
[BPF] annotate DIType metadata for builtin preseve_array_access_index()

Previously, debuginfo types are annotated to
IR builtin preserve_struct_access_index() and
preserve_union_access_index(), but not
preserve_array_access_index(). The debug info
is useful to identify the root type name which
later will be used for type comparison.

For user access without explicit type conversions,
the previous scheme works as we can ignore intermediate
compiler generated type conversions (e.g., from union types to
union members) and still generate correct access index string.

The issue comes with user explicit type conversions, e.g.,
converting an array to a structure like below:
  struct t { int a; char b[40]; };
  struct p { int c; int d; };
  struct t *var = ...;
  ... __builtin_preserve_access_index(&(((struct p *)&(var->b[0]))->d)) ...
Although BPF backend can derive the type of &(var->b[0]),
explicit type annotation make checking more consistent
and less error prone.

Another benefit is for multiple dimension array handling.
For example,
  struct p { int c; int d; } g[8][9][10];
  ... __builtin_preserve_access_index(&g[2][3][4].d) ...
It would be possible to calculate the number of "struct p"'s
before accessing its member "d" if array debug info is
available as it contains each dimension range.

This patch enables to annotate IR builtin preserve_array_access_index()
with proper debuginfo type. The unit test case and language reference
is updated as well.

Signed-off-by: Yonghong Song <yhs@fb.com>
Differential Revision: https://reviews.llvm.org/D65664

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@367724 91177308-0d34-0410-b5e6-96231b3b80d8
docs/LangRef.rst
include/llvm/IR/IRBuilder.h
test/CodeGen/BPF/CORE/intrinsic-array.ll