Closed
Bug 967544
Opened 12 years ago
Closed 10 years ago
TSan: data race js/src/../../js/src/shell/js.cpp:2990 CancelExecution
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
mozilla43
Tracking | Status | |
---|---|---|
firefox43 | --- | fixed |
People
(Reporter: decoder, Assigned: froydnj)
References
(Blocks 1 open bug)
Details
(Whiteboard: [tsan])
Attachments
(2 files)
5.33 KB,
text/plain
|
Details | |
1.36 KB,
patch
|
Waldo
:
review+
|
Details | Diff | Splinter Review |
The attached logfile shows a thread/data race (mozilla-central revision 44ba69cacd7e) detected by TSan (ThreadSanitizer).
Typically, races reported by TSan are not false positives, but it is possible that the race is benign. Even in this case though, we should try to come up with a fix unless this would cause inacceptable performance issues. Also note that seemingly benign races can possibly be harmful (also depending on the compiler and the architecture) [1].
If the bug cannot be fixed, then this bug should be used to either make a compile-time annotation for blacklisting or add an entry to the runtime blacklist.
[1] http://software.intel.com/en-us/blogs/2013/01/06/benign-data-races-what-could-possibly-go-wrong
Comment 1•12 years ago
|
||
This one is for the shell's gTimedOut global. We can just make that a mozilla::Atomic I think, just like JSRuntime::interrupt.
Comment 2•12 years ago
|
||
(In reply to Christian Holler (:decoder) from comment #1)
> I think this is the same problem as in bug 967544, but racing for
> gTimeoutFunc instead of gTimedOut. gTimeoutFunc is a JS::Value, how would we
> solve that issue here?
gTimeoutFunc Value is either a NullValue() or ObjectValue(), so I think you could make it a JSObject* instead (and use nullptr instead of NullValue()). Does that help?
Updated•11 years ago
|
Assignee: general → nobody
![]() |
Assignee | |
Comment 3•10 years ago
|
||
Still happening; I'm going to fix this, as it makes TSan testing with the shell unpleasant. Also, less use of |volatile| in the codebase can't be a bad thing.
Assignee: nobody → nfroyd
![]() |
Assignee | |
Comment 4•10 years ago
|
||
|volatile| doesn't guarantee inter-thread safety. Atomic<> does.
Atomic<> also makes TSan much happier.
Attachment #8644675 -
Flags: review?(jwalden+bmo)
Updated•10 years ago
|
Attachment #8644675 -
Flags: review?(jwalden+bmo) → review+
Comment 6•10 years ago
|
||
Status: NEW → RESOLVED
Closed: 10 years ago
status-firefox43:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla43
You need to log in
before you can comment on or make changes to this bug.
Description
•