WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
157682
Runaway malloc memory usage in this simple JSC program
https://bugs.webkit.org/show_bug.cgi?id=157682
Summary
Runaway malloc memory usage in this simple JSC program
Geoffrey Garen
Reported
2016-05-13 14:10:54 PDT
Runaway malloc memory usage in this simple JSC program
Attachments
Patch
(1.64 KB, patch)
2016-05-13 14:17 PDT
,
Geoffrey Garen
no flags
Details
Formatted Diff
Diff
Patch
(1.64 KB, patch)
2016-05-13 14:20 PDT
,
Geoffrey Garen
mark.lam
: review+
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Geoffrey Garen
Comment 1
2016-05-13 14:17:33 PDT
Created
attachment 278865
[details]
Patch
Geoffrey Garen
Comment 2
2016-05-13 14:20:43 PDT
Created
attachment 278866
[details]
Patch
Mark Lam
Comment 3
2016-05-13 14:21:38 PDT
Comment on
attachment 278866
[details]
Patch r=me
Geoffrey Garen
Comment 4
2016-05-13 14:23:42 PDT
Committed
r200884
: <
http://trac.webkit.org/changeset/200884
>
Geoffrey Garen
Comment 5
2016-05-13 15:21:25 PDT
<
rdar://problem/25942874
>
Geoffrey Garen
Comment 6
2016-05-13 15:21:50 PDT
BTW, here is the program: #include <JavaScriptCore/JavaScriptCore.h> #include <stdio.h> #include <sys/time.h> static double currentTime() { struct timeval tv; gettimeofday(&tv, NULL); return tv.tv_sec + tv.tv_usec / 1000. / 1000.; } int main(int argc, char** argv) { JSContextGroupRef group; double before, after; unsigned i; group = JSContextGroupCreate(); before = currentTime(); for (i = 0; i < 100000; ++i) JSGlobalContextRelease(JSGlobalContextCreateInGroup(group, NULL)); after = currentTime(); printf("That took %lf ms.\n", (after - before) * 1000.); return 0; }
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug