Closed
Bug 645464
Opened 14 years ago
Closed 14 years ago
js::ClassMethodIsNative is so wrong
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
mozilla7
People
(Reporter: Waldo, Assigned: Waldo)
References
()
Details
(Whiteboard: fixed-in-tracemonkey)
Attachments
(1 file)
17.64 KB,
patch
|
luke
:
review+
|
Details | Diff | Splinter Review |
It probes for the specified function directly in the object, and if it doesn't find the property *or* the property doesn't contain that function, it probes the prototype. It should only keep trying to optimize by probing the prototype if the property doesn't exist.
I'm aghast that I never managed to find this writing any of the stepwise tests I've written that probed for proper implementation of ToString or ToNumber. At least this test found it for us so we know to fix it:
http://hg.ecmascript.org/tests/test262/file/a7a912229e2d/test/suite/sputnik_converted/15_Native/15.5_String_Objects/15.5.5_Properties_of_String_Instances/S15.5.5.1_A5.js
Comment 1•14 years ago
|
||
yikes, good catch
Assignee | ||
Comment 2•14 years ago
|
||
Note in particular the hasDefaultGetter->hasDefaultGetterOrIsMethod change, and note that this depends on the patch for bug 640503 in order for properties on String objects to not have str_getProperty as their getter op.
Attachment #522746 -
Flags: review?(jorendorff)
Assignee | ||
Comment 3•14 years ago
|
||
Comment on attachment 522746 [details] [diff] [review]
Patch and tests
I seem to be doing a great job getting reviews in bug 660438, bug 646129, and this bug in exactly the opposite order of a dependency topsort of them. Let's get this one done so I can actually land any of them, mmkay? :-)
Attachment #522746 -
Flags: review?(jorendorff) → review?(luke)
Comment 4•14 years ago
|
||
Comment on attachment 522746 [details] [diff] [review]
Patch and tests
Review of attachment 522746 [details] [diff] [review]:
-----------------------------------------------------------------
Wow, good find!
::: js/src/jsfun.h
@@ +225,1 @@
> }
Preempted!
::: js/src/jsobj.cpp
@@ +5872,3 @@
> {
> const Shape *shape = obj->nativeLookup(methodid);
> + if (!shape || !shape->hasDefaultGetterOrIsMethod() || !obj->containsSlot(shape->slot))
I would feel better if the !hasDefaultGetterOrIsMethod() disjunct was stated in a positive form since for the reader who doesn't know the complete set of cases, its hard to take the set difference.
::: js/src/jsobj.h
@@ +1841,3 @@
> */
> +extern bool
> +HasDataProperty(JSObject *obj, jsid methodid, js::Value *vp);
Is this method equivalent to:
[[HasProperty]](methodid) and IsDataDescriptor([[GetProperty]](methodid))
? Could you comment if we are or, if not, why we aren't?
::: js/src/jsobjinlines.h
@@ +1246,5 @@
> +ValueIsNative(const js::Value &v, Native native)
> +{
> + JSObject *funobj;
> + return IsFunctionObject(v, &funobj) && funobj->getFunctionPrivate()->maybeNative() == native;
> +}
Almost preempted! Could you add this as a IsNativeFunction() overload in jsfun.h below the other two?
Attachment #522746 -
Flags: review?(luke) → review+
Assignee | ||
Comment 5•14 years ago
|
||
Whiteboard: fixed-in-tracemonkey
Target Milestone: mozilla5 → mozilla7
Comment 6•14 years ago
|
||
cdleary-bot mozilla-central merge info:
http://hg.mozilla.org/mozilla-central/rev/ccd771857394
Updated•14 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•