Closed
Bug 942205
Opened 12 years ago
Closed 12 years ago
Initialize ParallelArray class in GlobalObject::initStandardClasses.
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
mozilla28
People
(Reporter: till, Assigned: till)
Details
(Whiteboard: [qa-])
Attachments
(3 files)
|
1.09 KB,
patch
|
nmatsakis
:
review+
|
Details | Diff | Splinter Review |
|
3.64 KB,
patch
|
nmatsakis
:
review+
|
Details | Diff | Splinter Review |
|
3.00 KB,
patch
|
nmatsakis
:
review+
|
Details | Diff | Splinter Review |
Enable eager initialization of ParallelArray
| Assignee | ||
Comment 1•12 years ago
|
||
Attachment #8336858 -
Flags: review?(nmatsakis)
| Assignee | ||
Comment 2•12 years ago
|
||
Comment on attachment 8336858 [details] [diff] [review]
Part 3: Initialize ParallelArray class in GlobalObject::initStandardClasses
Clearly, I don't know how to use bzexport. This depends on two other patches, coming right up.
Attachment #8336858 -
Attachment description: Initialize ParallelArray class in GlobalObject::initStandardClasses. → Initialize ParallelArray class in GlobalObject::initStandardClasses. (3/3)
| Assignee | ||
Comment 3•12 years ago
|
||
Attachment #8336860 -
Flags: review?(nmatsakis)
| Assignee | ||
Comment 4•12 years ago
|
||
Attachment #8336861 -
Flags: review?(nmatsakis)
| Assignee | ||
Comment 5•12 years ago
|
||
Comment on attachment 8336858 [details] [diff] [review]
Part 3: Initialize ParallelArray class in GlobalObject::initStandardClasses
Sorry for the noise :(
Attachment #8336858 -
Attachment description: Initialize ParallelArray class in GlobalObject::initStandardClasses. (3/3) → Part 3: Initialize ParallelArray class in GlobalObject::initStandardClasses
Comment 6•12 years ago
|
||
What is the motivation for this change?
Comment 7•12 years ago
|
||
(In particular, ParallelArray is basically deprecated)
Updated•12 years ago
|
Attachment #8336861 -
Flags: review?(nmatsakis) → review+
Updated•12 years ago
|
Attachment #8336860 -
Flags: review?(nmatsakis) → review+
Comment 8•12 years ago
|
||
Comment on attachment 8336858 [details] [diff] [review]
Part 3: Initialize ParallelArray class in GlobalObject::initStandardClasses
Review of attachment 8336858 [details] [diff] [review]:
-----------------------------------------------------------------
r+ if the code is made conditional
::: js/src/vm/GlobalObject.cpp
@@ +483,5 @@
> GlobalObject::initSetIteratorProto(cx, global) &&
> #if EXPOSE_INTL_API
> js_InitIntlClass(cx, global) &&
> #endif
> + js_InitParallelArrayClass(cx, global) &&
We want this to be #if ENABLE_PARALLEL_ARRAY or whatever that is called.
Attachment #8336858 -
Flags: review?(nmatsakis) → review+
| Assignee | ||
Comment 9•12 years ago
|
||
Comment 10•12 years ago
|
||
https://hg.mozilla.org/mozilla-central/rev/b4b90d586dfc
https://hg.mozilla.org/mozilla-central/rev/630a4c1f91b6
https://hg.mozilla.org/mozilla-central/rev/324d93c55cc5
Status: ASSIGNED → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla28
Updated•12 years ago
|
Whiteboard: [qa-]
You need to log in
before you can comment on or make changes to this bug.
Description
•