search for: b6d399c0

Displaying 2 results from an estimated 2 matches for "b6d399c0".

2012 Mar 19
0
[LLVMdev] recognizing DTORs and vptr updates in LLVM.
...you're adding even more knobs to clang and IR for special case situations. How many more special cases like this are you going to require? -Chris -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120319/b6d399c0/attachment.html>
2012 Mar 19
5
[LLVMdev] recognizing DTORs and vptr updates in LLVM.
Hello, While instrumenting LLVM IR in ThreadSanitizer (race detector), I need to distinguish between a store to vtable pointer (vptr) and any other regular store. This special treatment should be limited to class DTORs, so I should also know when a function is a DTOR. Rationale: need to distinguish benign and harmful races on vptr (