Closed
Bug 764223
Opened 12 years ago
Closed 7 years ago
More detailed bucketing for JIT crashes
Categories
(Socorro :: Backend, task)
Socorro
Backend
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 1268029
People
(Reporter: kairo, Unassigned)
Details
Crashes with EnterMethodJIT or JaegerShot signatures (maybe others) are really crashes in JITed code, we should do another bucketing / signature generation pass to get something more reasonable.
Comment 1•12 years ago
|
||
dvander and I collaborated on jit-crash-categorize, which takes a minidump and spits out a bucket:
http://hg.mozilla.org/users/tmielczarek_mozilla.com/jit-crash-categorize/
Updated•12 years ago
|
Assignee: nobody → lars
Comment 2•12 years ago
|
||
I must have an algorithm before I can act on this. Passing the buck to Ted to tell me exactly what to do.
Assignee: lars → ted.mielczarek
Comment 3•12 years ago
|
||
I *think* what I'd want is to be able to configure certain signatures to trigger an extra step that could modify the signature. So something like:
1) Run the existing signature algorithm, produce a signature
2) Consult a list from the config for an entry that matches that signature
3) If a match is found, it provides a path to an additional binary to run on the minidump, which can output a string
4) Prepend/append(?) that string to the signature.
For a concrete example, we might have:
1) Signature is "js::mjit::EnterMethodJIT(JSContext*, js::StackFrame*, void*, JS::Value*, bool)"
2) Entry in config is "js::mjit::EnterMethodJIT(JSContext*, js::StackFrame*, void*, JS::Value*, bool)" -> "/path/to/jit-crash-categorize"
3) jit-crash-categorize outputs "BAD_EIP_INSTRUCTION"
4) New signature is "BAD_EIP_INSTRUCTION | js::mjit::EnterMethodJIT(JSContext*, js::StackFrame*, void*, JS::Value*, bool)"
dvander: does that sound useful?
lars: does that sound sane?
Updated•12 years ago
|
Assignee: ted → nobody
Reporter | ||
Comment 4•11 years ago
|
||
Turns out we should even be able to stalk JIT frames nowadays that TraceMonkey and JaegerMonkey (which had EnterMethodJIT) are no more and we use IonMonkey and Baseline JIT.
See bug 951176.
Does the approach there replace the plans of this bug here?
Comment 5•11 years ago
|
||
I don't think so, this was never about getting better stack traces, but about differentiating types of crashes in JIT code by looking at the specifics of the crash, the code that was generated, etc.
I'm not sure if the existing jit-crash-categorize is useful with IonMonkey, or if we'd need to do something different.
Comment 6•7 years ago
|
||
Signature experimentation can now be done on a.t.m.o
please file a new bug or reopen when there is a specific technique to integrate into socorro
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → WONTFIX
Comment 7•7 years ago
|
||
Turns out we totally fixed this, we just used a different bug!
Resolution: WONTFIX → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•