Closed
Bug 601982
Opened 15 years ago
Closed 15 years ago
Crash in [@ AtSafePoint ]
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
Tracking | Status | |
---|---|---|
blocking2.0 | --- | beta8+ |
People
(Reporter: marcia, Assigned: dvander)
References
Details
(Keywords: crash, Whiteboard: fixed-in-tracemonkey)
Crash Data
Attachments
(1 file)
10.66 KB,
patch
|
dmandelin
:
review+
|
Details | Diff | Splinter Review |
Seen while reviewing crash stats.http://tinyurl.com/23yxaej links to the crash reports which are all Windows. Crashes started showing using the 2010100500 build. The lone comment references crashing on picasweb.
Frame Module Signature [Expand] Source
0 mozjs.dll AtSafePoint js/src/methodjit/InvokeHelpers.cpp:689
1 mozjs.dll FinishExcessFrames js/src/methodjit/InvokeHelpers.cpp:734
2 mozjs.dll RunTracer js/src/methodjit/InvokeHelpers.cpp:883
3 mozjs.dll js::mjit::stubs::InvokeTracer js/src/methodjit/InvokeHelpers.cpp:931
4 mozjs.dll EnterMethodJIT js/src/methodjit/MethodJIT.cpp:748
5 mozjs.dll js::mjit::JaegerShot js/src/methodjit/MethodJIT.cpp:778
6 mozjs.dll js::RunScript js/src/jsinterp.cpp:639
7 mozjs.dll js::Invoke js/src/jsinterp.cpp:751
8 mozjs.dll js_fun_call js/src/jsfun.cpp:2280
9 @0x21f31dec
10 mozjs.dll EnterMethodJIT js/src/methodjit/MethodJIT.cpp:748
11 mozjs.dll js::mjit::JaegerShot js/src/methodjit/MethodJIT.cpp:778
12 mozjs.dll js::Interpret js/src/jsinterp.cpp:4519
13 mozjs.dll js::RunScript js/src/jsinterp.cpp:642
14 mozjs.dll js::Invoke js/src/jsinterp.cpp:751
15 mozjs.dll SlowCallFromIC js/src/methodjit/MonoIC.cpp:221
16 @0x1fb137cc
17 mozjs.dll EnterMethodJIT js/src/methodjit/MethodJIT.cpp:748
18 mozjs.dll js::mjit::JaegerShot js/src/methodjit/MethodJIT.cpp:778
19 mozjs.dll js::Interpret js/src/jsinterp.cpp:4519
20 mozjs.dll js::RunScript js/src/jsinterp.cpp:642
21 mozjs.dll js::Invoke js/src/jsinterp.cpp:751
22 mozjs.dll js_fun_call js/src/jsfun.cpp:2280
23 @0x2ec1384
24 mozjs.dll EnterMethodJIT js/src/methodjit/MethodJIT.cpp:748
25 mozjs.dll js::mjit::JaegerShot js/src/methodjit/MethodJIT.cpp:778
26 mozjs.dll js::Interpret js/src/jsinterp.cpp:4519
27 mozjs.dll js::RunScript js/src/jsinterp.cpp:642
28 mozjs.dll js::Invoke js/src/jsinterp.cpp:751
29 mozjs.dll js_fun_apply js/src/jsfun.cpp:2407
30 mozjs.dll js::Interpret js/src/jsinterp.cpp:4639
31 mozjs.dll js::RunScript js/src/jsinterp.cpp:642
32 mozjs.dll js::Invoke js/src/jsinterp.cpp:751
33 mozjs.dll js_fun_call js/src/jsfun.cpp:2280
34 @0x1a703f30
35 mozjs.dll EnterMethodJIT js/src/methodjit/MethodJIT.cpp:748
36 mozjs.dll js::mjit::JaegerShot js/src/methodjit/MethodJIT.cpp:778
37 mozjs.dll js::RunScript js/src/jsinterp.cpp:639
38 mozjs.dll js::Invoke js/src/jsinterp.cpp:751
39 mozjs.dll js::ExternalInvoke js/src/jsinterp.cpp:783
40 mozjs.dll JS_CallFunctionValue js/src/jsapi.cpp:4870
41 xul.dll nsXPCWrappedJSClass::CallMethod js/src/xpconnect/src/xpcwrappedjsclass.cpp:1694
42 xul.dll nsXPCWrappedJS::CallMethod js/src/xpconnect/src/xpcwrappedjs.cpp:571
43 xul.dll PrepareAndDispatch xpcom/reflect/xptcall/src/md/win32/xptcstubs.cpp:114
44 xul.dll SharedStub xpcom/reflect/xptcall/src/md/win32/xptcstubs.cpp:141
45 xul.dll nsEventListenerManager::HandleEventSubType content/events/src/nsEventListenerManager.cpp:1112
![]() |
Assignee | |
Comment 2•15 years ago
|
||
Comment 3•15 years ago
|
||
the spike is pretty hard. this should probably block b7
Assignee: dvander → general
Status: ASSIGNED → NEW
blocking2.0: --- → ?
![]() |
||
Comment 4•15 years ago
|
||
Comment on attachment 481088 [details] [diff] [review]
fix
This probably wants to be
script->setNativeMap(isConstructing, nmap);
>+ if (isConstructing)
>+ script->nmapCtor = nmap;
>+ else
>+ script->nmapNormal = nmap;
>+
Attachment #481088 -
Flags: review?(dmandelin) → review+
![]() |
Assignee | |
Comment 5•15 years ago
|
||
(In reply to comment #3)
the regressing patch never landed on m-c yet.
Assignee: general → dvander
Status: NEW → ASSIGNED
![]() |
Assignee | |
Updated•15 years ago
|
OS: Windows 7 → All
Hardware: x86 → All
![]() |
Assignee | |
Comment 7•15 years ago
|
||
Whiteboard: fixed-in-tracemonkey
![]() |
||
Updated•15 years ago
|
blocking2.0: --- → ?
Comment 8•15 years ago
|
||
Status: ASSIGNED → RESOLVED
blocking2.0: ? → beta8+
Closed: 15 years ago
Resolution: --- → FIXED
Updated•14 years ago
|
Crash Signature: [@ AtSafePoint ]
You need to log in
before you can comment on or make changes to this bug.
Description
•