Bug 73355 - Allow WebCore to describe typed arrays to JSC
Summary: Allow WebCore to describe typed arrays to JSC
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: New Bugs (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Oliver Hunt
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-11-29 13:12 PST by Oliver Hunt
Modified: 2011-11-29 15:36 PST (History)
3 users (show)

See Also:


Attachments
Patch (7.38 KB, patch)
2011-11-29 13:20 PST, Oliver Hunt
no flags Details | Formatted Diff | Diff
Patch (9.97 KB, patch)
2011-11-29 14:55 PST, Oliver Hunt
barraclough: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Oliver Hunt 2011-11-29 13:12:43 PST
Allow WebCore to describe typed arrays to JSC
Comment 1 Oliver Hunt 2011-11-29 13:20:41 PST
Created attachment 117031 [details]
Patch
Comment 2 Sam Weinig 2011-11-29 13:26:55 PST
Comment on attachment 117031 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=117031&action=review

> Source/JavaScriptCore/runtime/JSGlobalData.h:374
> +        TypedArrayDescriptor int8ArrayDescriptor;
> +        TypedArrayDescriptor int16ArrayDescriptor;
> +        TypedArrayDescriptor int32ArrayDescriptor;
> +        TypedArrayDescriptor uint8ArrayDescriptor;
> +        TypedArrayDescriptor uint16ArrayDescriptor;
> +        TypedArrayDescriptor uint32ArrayDescriptor;
> +        TypedArrayDescriptor float32ArrayDescriptor;
> +        TypedArrayDescriptor float64ArrayDescriptor;

should these be m_?
Comment 3 Oliver Hunt 2011-11-29 14:55:05 PST
Created attachment 117050 [details]
Patch
Comment 4 Oliver Hunt 2011-11-29 15:36:59 PST
Committed r101426: <http://trac.webkit.org/changeset/101426>