Displaying 2 results from an estimated 2 matches for "d32197".
Did you mean:
32197
2017 May 11
3
Alias analysis results
Hello,
I'm trying to get the whole picture of what we are doing in terms
of alias analysis in LLVM. Being new to this I may be missing
some well known things so my apologies if I seem to ask obvious
things.
There are lots of questions arise in my head as I read related
bug reports, sources and documentation, of which looks to be the
most simple is,
Why the current TBAA implementation
2017 Apr 04
8
[RFC] Design of a TBAA sanitizer
Hi everyone,
At EuroLLVM, Chandler and I chatted about the design for a potential
TBAA sanitizer. Here's my attempt to summarize:
C/C++ have type-based aliasing rules, and LLVM's optimizer can exploit
these given TBAA metadata added by Clang. Roughly, a pointer of given
type cannot be used to access an object of a different type (with, of
course, certain exceptions). Unfortunately,