summaryrefslogtreecommitdiffstats
path: root/xpcom
Commit message (Collapse)AuthorAgeLines
* Bug 1372829 - Part 2: mozilla::EditorBase should cache raw pointer of ↵Matt A. Tobin2020-04-17-0/+6
| | | | | | nsISelectionController and nsIDocument with nsWeakPtr Tag #1375
* Issue #1471 - Fix building on sparc64 LinuxJMadgwick2020-03-09-2/+2
| | | | | Correct various pre-processor defines for sparc64 and in mozjemalloc use the JS arm64 allocator on Linux/sparc64. This corrects build problems opn Linux sparc64 and is in line with bugzilla bug #1275204.
* Revert "Issue #190 - Part 1: Remove XP_IOS conditional code"Matt A. Tobin2020-02-28-2/+2
| | | | This reverts commit 6a3d5769d01ec1a8dd56ea79aec2df91b801ce02.
* Issue #190 - Part 1: Remove XP_IOS conditional codeMatt A. Tobin2020-02-28-2/+2
|
* Issue #1053 - Remove android support from xpcom/threads/nsThread.cppMatt A. Tobin2020-02-22-1/+1
| | | | Forgot to save..
* Issue #1053 - Remove android support from XPCOMMatt A. Tobin2020-02-22-476/+27
|
* Bug 1406922 - Make CycleCollectedJSContext to handle microtasks and make ↵Gaming4JC2020-01-26-6/+83
| | | | | | MutationObserver to use them Tag UXP Issue #1344
* Bug 1405821 - Move microtask handling to CycleCollectedJSContextGaming4JC2020-01-26-1/+63
| | | | Tag UXP Issue #1344
* Issue #1319 - Enable promise debugging only in DEBUG builds.wolfbeast2020-01-14-1/+1
|
* Issue #1319 - Disable MOZ_LOGGING in production builds.wolfbeast2020-01-14-10/+1
| | | | | This makes it only enabled in debug builds, instead, where logging would be most useful.
* Issue #1319 - Remove stderr_to_file.wolfbeast2020-01-14-51/+0
| | | | | This local-debug function is only useful for Android to work around issues with logspewing and should never be in production builds anyway.
* Issue #1322 - Part 1: Remove the DOM Promise guts.wolfbeast2019-12-19-16/+2
| | | | This removes all the parts guarded by SPIDERMONKEY_PROMISE
* Fix nits.athenian2002019-10-31-10/+20
| | | | I hope this addresses everything.
* MoonchildProductions#1251 - Part 27: Fix ifdef style.athenian2002019-10-21-1/+1
| | | | This should do it for all the commits to files I changed, but while I'm in here I could probably go ahead and turn ALL the singular if defined statements into ifdef statements by using grep/find on the tree. On the other hand, perhaps we should do that as a separate issue so that this doesn't become a case of scope creep.
* MoonchildProductions#1251 - Part 23: Allow AMD64 build to work.athenian2002019-10-21-3/+83
| | | | | | | | | | | | | | | | | | | | | | | | | | https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Build_Instructions/Compiling_32-bit_Firefox_on_a_Linux_64-bit_OS Setting this up turned out to be easier than I thought it would be. All I had to do was apply these instructions in reverse and add the following to my .mozconfig file: CC="gcc -m64" CXX="g++ -m64" AS="gas --64" ac_add_options --target=x86_64-pc-solaris2.11 export PKG_CONFIG_PATH=/usr/lib/amd64/pkgconfig ac_add_options --libdir=/usr/lib/amd64 ac_add_options --x-libraries=/usr/lib/amd64 Most of these changes were fairly trivial, just requiring me to make a few of the changes I made earlier conditional on a 32-bit build. The biggest challenge was figuring out why the JavaScript engine triggered a segfault everytime it tried to allocate memory. But this patch fixes it: https://github.com/OpenIndiana/oi-userland/blob/oi/hipster/components/web/firefox/patches/patch-js_src_gc_Memory.cpp.patch Turns out that Solaris on AMD64 handles memory management in a fairly unusual way with a segmented memory model, but it's not that different from what we see on other 64-bit processors. In fact, I saw a SPARC crash for a similar reason, and noticed that it looked just like mine except the numbers in the first segment were reversed. Having played around with hex editors before, I had a feeling I might be dealing with a little-endian version of a big-endian problem, but I didn't expect that knowledge to actually yield an easy solution. https://bugzilla.mozilla.org/show_bug.cgi?id=577056 https://www.oracle.com/technetwork/server-storage/solaris10/solaris-memory-135224.html As far as I can tell, this was the last barrier to an AMD64 Solaris build of Pale Moon.
* Fix a bunch of dumb typos and omissions.athenian2002019-10-21-3/+2
|
* MoonchildProductions#1251 - Part 4: Core build system changes, lots of ↵athenian2002019-10-21-2/+3
| | | | | | | | libevent/IPC junk. This is mostly ifdefs, but as you can see, Solaris is actually a lot like Linux. They're both more SysV than BSD at core, and most of the differences have more to do with Solaris not using glibc than anything else. I still need to audit a lot of these changes and understand why they're needed and what the alternative approaches are. After this patch, most of the core functionality needed to build Solaris is here.
* MoonchildProductions#1251 - Part 3: Finally end the long tradition of ↵athenian2002019-10-21-1/+15
| | | | | | | | | | | casting getpid() to int. https://bugzilla.mozilla.org/show_bug.cgi?id=535106 https://bugzilla.mozilla.org/show_bug.cgi?id=1359841 Like many parts of the busted Solaris support, this one has its origins in the pre-Firefox days. Bug 535106, another Mozilla suite bug. It keeps coming up because the core issue is never addressed, the fact that nsTSubstring doesn't know how to handle pid_t. I think the explicit cast to int is a band-aid they use because they know if they touch that substring header file to make it handle pid_t, they'll probably be asked to fix all the other problems with it. I honestly think it just works by accident on other platforms because it's implicitly cast to signed or unsigned int, even though the POSIX standard says pid_t can be either long or int, and work as either a signed or unsigned integer. Whatever the case may be, it's handled better on Solaris now than it was. Ironically enough, the main point of having pid_t rather than just having pids be int or something is to hide this little implementation detail so you can just use pid_t for the return type in portable code without having to worry about what it is on a specific platform. The unfortunate way Mozilla implemented string functions turns that on its head and makes the good things about pid_t into liabilities rather than assets.
* MoonchildProductions#1251 - Part 1: Restore initial Solaris support, fixed up.athenian2002019-10-21-4/+631
| | | | | | | | | | | | | | Compared with what Pale Moon had for Solaris originally, this is mostly the same zero point I started patching from, but I've made the following changes here after reviewing all this initial code I never looked at closely before. 1. In package-manifest.in for both Basilisk and Pale Moon, I've made the SPARC code for libfreebl not interefere with the x86 code, use the proper build flags, and also updated it to allow a SPARC64 build which is more likely to be used than the 32-bit SPARC code we had there. 2. See Mozilla bug #832272 and the old rules.mk patch from around Firefox 30 in oracle/solaris-userland. I believe they screwed up NSINSTALL on Solaris when they were trying to streamline the NSS buildsystem, because they started having unexplained issues with it around that time after Firefox 22 that they never properly resolved until Mozilla began building NSS with gyp files. I'm actually not even sure how relevant the thing they broke actually is to Solaris at this point, bug 665509 is so old it predates Firefox itself and goes back to the Mozilla suite days. I believe $(INSTALL) -t was wrong, and they meant $(NSINSTALL) -t because that makes more sense and is closer to what was there originally. It's what they have for WINNT, and it's possible a fix more like that could serve for Solaris as well. Alternatively, we could get rid of all these half-broken Makefiles and start building NSS with gyp files like Mozilla did. 3. I've completely cut out support for the Sun compiler and taken into account the reality that everyone builds Firefox (and therefore its forks) with GCC now on Solaris. This alone helped clean up a lot of the uglier parts of the code. 4. I've updated all remaining SOLARIS build flags to the newer XP_SOLARIS, because the SOLARIS flag is no longer set when building Solaris. 5. I've confirmed the workaround in gtxFontconfigFonts.cpp is no longer necessary. The Solaris people got impatient about implementing a half-baked patch for a fontconfig feature that wasn't ready yet back in 2009, and somehow convinced Mozilla to patch their software to work around it when really they should have just fixed or removed their broken fontconfig patch. The feature they wanted has since been implemented properly, and no version of Solaris still uses the broken patch that required this fix. If anyone had ever properly audited this code, it would have been removed a long time ago.
* Kill newly-spawned threads if we're shutting down.Nathan Froyd2019-09-04-1/+3
|
* Revert "Treat *.jnlp as an executable class file, like *.jar"wolfbeast2019-06-28-1/+0
| | | | | | | | | | | | | | | | | | | Rationale: This was a Mozilla oversight and/or error. This change has caused harm and is causing users to switch back to Chrome, Safari or Edge for their WebStart needs. JNLP is not an executable and should not be treated as such. JNLP should be treated the same as any (e.g. Word) document and allowed to be opened with the designated program. A JNLP file will not cause execution on a system unless it has a valid signature, and the user explicitly authorizes the launching based on information provided by the signature. Moreover, there will even be a check by the Java environment to see if the Java runtime (if there is one) is current, and prompt the user to update if required. This reverts commit 21495c58976e3cbbfe54d2e54d1fd67e36dff2a6 and modifies ApplicationReputation.cpp to keep the list in sync (was a discrepancy before).
* Treat *.jnlp as an executable class file, like *.jarwolfbeast2019-05-29-0/+1
|
* Merge pull request #1121 from win7-7/nsHtml5PortabilitylocalEqualsBuffer-prMoonchild2019-05-25-9/+9
|\ | | | | Use memcmp in nsHtml5Portability::localEqualsBuffer
| * use memcmp for nsIAtom Equals to improve performance xpcom/ds win7-72019-05-25-9/+9
| | | | | | issue #1113 Use memcmp and not slower string Equals in nsHtml5Portability::localEqualsBuffer
* | Avoid some useless ForgetSkippable handling while we're already dealingwolfbeast2019-05-25-0/+5
|/ | | | with snow-white objects.
* remove unnecessary spaceswin7-72019-05-24-4/+0
|
* add main thread only cache for nsIAtoms to speed up atomization xpcom/dswin7-72019-05-24-2/+57
| | | add main thread only cache for nsIAtoms to speed up atomization
* Unhook CR exception handler.wolfbeast2019-04-01-78/+0
| | | | Tag #20
* Remove AIX 1st party code OS checks, part 1wolfbeast2019-03-31-1162/+1
| | | | Issue #186
* Issue #187: Remove solaris 1st party code OS checks.wolfbeast2019-03-30-1422/+0
|
* Issue #187: Remove solaris conditional code.wolfbeast2019-03-30-111/+0
|
* Revert "Guard against re-entrancy in nsStringStream."wolfbeast2019-03-22-34/+0
| | | | This reverts commit 411919cca7a3795d08ec3cd24efa0167683a80fb.
* Guard against re-entrancy in nsStringStream.wolfbeast2019-03-22-0/+34
|
* Add a ClearElementAt API to nsTArrayJustOff2019-03-13-0/+18
|
* Remove NS_IMPL_CYCLE_COLLECTION_TRAVERSE_SCRIPT_OBJECTSwolfbeast2019-01-18-3/+0
|
* Consolidate tracing and traversing.wolfbeast2019-01-18-15/+37
|
* Telemetry: Remove stubs and related codeadeshkp2019-01-12-4/+0
|
* Add overflow checks for extending nsTArrays.wolfbeast2018-11-02-24/+50
| | | | | | Surprisingly, this was previously not done. Also, some of this code seems to be incorrect or, at the very least, wasn't clear what it was trying to do.
* Add mozilla::Spantrav902018-10-06-0/+167
|
* Remove unused telemetry functions/variables.wolfbeast2018-10-01-2/+1
| | | | Tag #21.
* Remove code that prevents binary extensionsMatt A. Tobin2018-09-23-8/+0
|
* Replace the custom logic in ObserverList with an nsTObserverArray which has ↵wolfbeast2018-09-11-7/+7
| | | | all the necessary logic for stable iteration over a potentially changing list of items.
* Remove all C++ telemetry autotimerswolfbeast2018-09-04-1/+0
|
* Remove all C++ Telemetry Accumulation calls.wolfbeast2018-09-03-22/+0
| | | | | This creates a number of stubs and leaves some surrounding code that may be irrelevant (eg. recorded time stamps, status variables). Stub resolution/removal should be a follow-up to this.
* Remove support for TLS session caches in TLSServerSocket.wolfbeast2018-09-01-0/+13
| | | | This resolves #738
* Remove the const to fix the -Wignored-qualifiers warning with GCC 8trav902018-08-10-3/+3
|
* Bug 1468217 - Add "SettingContent-ms" to the list of executable file ↵Paolo Amadini2018-06-30-0/+1
| | | | extensions. r=Gijs, a=RyanVM
* Bug 1413868.wolfbeast2018-06-30-0/+457
|
* Remove SPS profiler.wolfbeast2018-05-24-661/+3
| | | | | - Conditionals and code blocks. (MOZ_ENABLE_PROFILER_SPS) - Stub out several profiler-only functions.
* Remove the Dark Matter Detector (DMD) Memeory debugger component.wolfbeast2018-05-23-266/+3
| | | | This resolves #376.