Displaying 1 result from an estimated 1 matches for "inferaddressspac".
Did you mean:
inferaddressspace
2020 Jul 10
2
RFC: Removing ptrtoint from asan instrumentation
...nd for such use cases we plan to introduce runtime calls that can return the required shadow address.
The ptrtoint introduced by the instrumentation hinder optimizations that are important for OpenCL and other heterogeneous languages which directly or indirectly use address spaces. For example, InferAddressSpace which statically determines the address space of generic addresses, it does not work after seeing ptrtoint as one of the uses. The same applies to any optimization that deals with alias analysis or pointers in general.
The hurdle in getting rid of the introduced ptrtoint in instrumentation is t...