UNCONFIRMED 88369
Add support for malloc and alloc_size attributes
https://bugs.webkit.org/show_bug.cgi?id=88369
Summary Add support for malloc and alloc_size attributes
Nuno Lopes
Reported 2012-06-05 15:38:28 PDT
Add support for malloc and alloc_size attributes
Attachments
Patch (2.38 KB, patch)
2012-06-05 15:42 PDT, Nuno Lopes
gustavo: commit-queue-
Patch #2 (2.68 KB, application/octet-stream)
2012-06-05 16:19 PDT, Nuno Lopes
no flags
Patch #3 (2.68 KB, patch)
2012-06-05 16:24 PDT, Nuno Lopes
no flags
Nuno Lopes
Comment 1 2012-06-05 15:42:42 PDT
Geoffrey Garen
Comment 2 2012-06-05 15:44:37 PDT
Why?
WebKit Review Bot
Comment 3 2012-06-05 15:45:33 PDT
Attachment 145883 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/WTF/ChangeLog', u'Source/WTF/wtf/Co..." exit_code: 1 Source/WTF/wtf/FastMalloc.h:32: Code inside a namespace should not be indented. [whitespace/indent] [4] Total errors found: 1 in 3 files If any of these errors are false positives, please file a bug against check-webkit-style.
Nuno Lopes
Comment 4 2012-06-05 15:48:06 PDT
(In reply to comment #2) > Why? The malloc attribute is used by compilers for optimizations purposes. It allows the compiler to decide that a pointer returned by such functions cannot alias anything. The alloc_size attribute allows the compilers to emit warnings and/or add run-time instrumentation to catch buffer overflows. GCC can emit warnings based on this attribute, and clang has experimental support to instrument code to detect buffer overflows.
Gustavo Noronha (kov)
Comment 5 2012-06-05 16:01:34 PDT
Build Bot
Comment 6 2012-06-05 16:16:18 PDT
Build Bot
Comment 7 2012-06-05 16:18:55 PDT
Nuno Lopes
Comment 8 2012-06-05 16:19:44 PDT
Created attachment 145891 [details] Patch #2 This new patch should fix the build for non-clang compilers.
Nuno Lopes
Comment 9 2012-06-05 16:24:11 PDT
Created attachment 145892 [details] Patch #3 sorry for the churn. I forgot the 'patch' flag on the previous attachment.
WebKit Review Bot
Comment 10 2012-06-05 16:26:27 PDT
Attachment 145892 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/WTF/ChangeLog', u'Source/WTF/wtf/Co..." exit_code: 1 Source/WTF/wtf/FastMalloc.h:32: Code inside a namespace should not be indented. [whitespace/indent] [4] Total errors found: 1 in 3 files If any of these errors are false positives, please file a bug against check-webkit-style.
Note You need to log in before you can comment on or make changes to this bug.