Re: [PATCH, Pointer Bounds Checker, Builtins instrumentation 1/5] Builtin codes and decls

2014-11-25 Thread H.J. Lu
On Thu, Nov 6, 2014 at 3:48 AM, Ilya Enkovich wrote: > Hi, > > This is the first patch in a series to enable builtin function calls > instrumentation by Poitner Bounds Checker. Previously builtins > instrumentation was disabled in checker because it allowed two function calls > with the same f

Re: [PATCH, Pointer Bounds Checker, Builtins instrumentation 1/5] Builtin codes and decls

2014-11-17 Thread Ilya Enkovich
On 15 Nov 00:03, Jeff Law wrote: > On 11/14/14 01:22, Ilya Enkovich wrote: > > > >I don't think I'm hiding some problem here. Builtin function calls > >may be removed during various optimizations. Therefore we may remove > >all calls to some instrumented builtins and corresponding cgraph_node > >

Re: [PATCH, Pointer Bounds Checker, Builtins instrumentation 1/5] Builtin codes and decls

2014-11-14 Thread Jeff Law
On 11/14/14 01:22, Ilya Enkovich wrote: 2014-11-14 9:43 GMT+03:00 Jeff Law : On 11/06/14 04:48, Ilya Enkovich wrote: -- 2014-11-06 Ilya Enkovich * tree-core.h (built_in_class): Add builtin codes to be used by Pointer Bounds Checker for instrumented builtin functions.

Re: [PATCH, Pointer Bounds Checker, Builtins instrumentation 1/5] Builtin codes and decls

2014-11-14 Thread Ilya Enkovich
2014-11-14 9:43 GMT+03:00 Jeff Law : > On 11/06/14 04:48, Ilya Enkovich wrote: >> >> -- >> 2014-11-06 Ilya Enkovich >> >> * tree-core.h (built_in_class): Add builtin codes to be used >> by Pointer Bounds Checker for instrumented builtin functions. >> * tree-streamer-in.c:

Re: [PATCH, Pointer Bounds Checker, Builtins instrumentation 1/5] Builtin codes and decls

2014-11-13 Thread Jeff Law
On 11/06/14 04:48, Ilya Enkovich wrote: -- 2014-11-06 Ilya Enkovich * tree-core.h (built_in_class): Add builtin codes to be used by Pointer Bounds Checker for instrumented builtin functions. * tree-streamer-in.c: Include ipa-chkp.h. (streamer_get_builtin_tree):

[PATCH, Pointer Bounds Checker, Builtins instrumentation 1/5] Builtin codes and decls

2014-11-06 Thread Ilya Enkovich
Hi, This is the first patch in a series to enable builtin function calls instrumentation by Poitner Bounds Checker. Previously builtins instrumentation was disabled in checker because it allowed two function calls with the same function code have different set of arguments. Here I try another