mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
feedc37548
--HG-- extra : rebase_source : b956777750a2fea7dc6f436e8540bec782ce4d2a
143 lines
3.3 KiB
C++
143 lines
3.3 KiB
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
// This file is a .cpp file meant to be included in nsBrowserApp.cpp and other
|
|
// similar bootstrap code. It converts wide-character windows wmain into UTF-8
|
|
// narrow-character strings.
|
|
|
|
#ifndef XP_WIN
|
|
#error This file only makes sense on Windows.
|
|
#endif
|
|
|
|
#include "nsUTF8Utils.h"
|
|
#include <intrin.h>
|
|
#include <math.h>
|
|
#include "mozilla/WindowsVersion.h"
|
|
|
|
#ifndef XRE_DONT_PROTECT_DLL_LOAD
|
|
#include "nsSetDllDirectory.h"
|
|
#endif
|
|
|
|
#if defined(__GNUC__)
|
|
#define XRE_DONT_SUPPORT_XPSP2
|
|
#endif
|
|
|
|
#ifndef XRE_DONT_SUPPORT_XPSP2
|
|
#include "WindowsCrtPatch.h"
|
|
#endif
|
|
|
|
#ifdef __MINGW32__
|
|
|
|
/* MingW currently does not implement a wide version of the
|
|
startup routines. Workaround is to implement something like
|
|
it ourselves. See bug 411826 */
|
|
|
|
#include <shellapi.h>
|
|
|
|
int wmain(int argc, WCHAR **argv);
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
LPWSTR commandLine = GetCommandLineW();
|
|
int argcw = 0;
|
|
LPWSTR *argvw = CommandLineToArgvW(commandLine, &argcw);
|
|
if (!argvw)
|
|
return 127;
|
|
|
|
int result = wmain(argcw, argvw);
|
|
LocalFree(argvw);
|
|
return result;
|
|
}
|
|
#endif /* __MINGW32__ */
|
|
|
|
#define main NS_internal_main
|
|
|
|
#ifndef XRE_WANT_ENVIRON
|
|
int main(int argc, char **argv);
|
|
#else
|
|
int main(int argc, char **argv, char **envp);
|
|
#endif
|
|
|
|
static char*
|
|
AllocConvertUTF16toUTF8(char16ptr_t arg)
|
|
{
|
|
// be generous... UTF16 units can expand up to 3 UTF8 units
|
|
int len = wcslen(arg);
|
|
char *s = new char[len * 3 + 1];
|
|
if (!s)
|
|
return nullptr;
|
|
|
|
ConvertUTF16toUTF8 convert(s);
|
|
convert.write(arg, len);
|
|
convert.write_terminator();
|
|
return s;
|
|
}
|
|
|
|
static void
|
|
FreeAllocStrings(int argc, char **argv)
|
|
{
|
|
while (argc) {
|
|
--argc;
|
|
delete [] argv[argc];
|
|
}
|
|
|
|
delete [] argv;
|
|
}
|
|
|
|
int wmain(int argc, WCHAR **argv)
|
|
{
|
|
#if !defined(XRE_DONT_SUPPORT_XPSP2)
|
|
WindowsCrtPatch::Init();
|
|
#endif
|
|
|
|
#if defined(_MSC_VER) && _MSC_VER < 1900 && defined(_M_X64)
|
|
// Disable CRT use of FMA3 on non-AVX2 CPUs and on Win7RTM due to bug 1160148
|
|
int cpuid0[4] = {0};
|
|
int cpuid7[4] = {0};
|
|
__cpuid(cpuid0, 0); // Get the maximum supported CPUID function
|
|
__cpuid(cpuid7, 7); // AVX2 is function 7, subfunction 0, EBX, bit 5
|
|
if (cpuid0[0] < 7 || !(cpuid7[1] & 0x20) || !mozilla::IsWin7SP1OrLater()) {
|
|
_set_FMA3_enable(0);
|
|
}
|
|
#endif
|
|
|
|
#ifndef XRE_DONT_PROTECT_DLL_LOAD
|
|
mozilla::SanitizeEnvironmentVariables();
|
|
SetDllDirectoryW(L"");
|
|
#endif
|
|
|
|
char **argvConverted = new char*[argc + 1];
|
|
if (!argvConverted)
|
|
return 127;
|
|
|
|
for (int i = 0; i < argc; ++i) {
|
|
argvConverted[i] = AllocConvertUTF16toUTF8(argv[i]);
|
|
if (!argvConverted[i]) {
|
|
return 127;
|
|
}
|
|
}
|
|
argvConverted[argc] = nullptr;
|
|
|
|
// need to save argvConverted copy for later deletion.
|
|
char **deleteUs = new char*[argc+1];
|
|
if (!deleteUs) {
|
|
FreeAllocStrings(argc, argvConverted);
|
|
return 127;
|
|
}
|
|
for (int i = 0; i < argc; i++)
|
|
deleteUs[i] = argvConverted[i];
|
|
#ifndef XRE_WANT_ENVIRON
|
|
int result = main(argc, argvConverted);
|
|
#else
|
|
// Force creation of the multibyte _environ variable.
|
|
getenv("PATH");
|
|
int result = main(argc, argvConverted, _environ);
|
|
#endif
|
|
|
|
delete[] argvConverted;
|
|
FreeAllocStrings(argc, deleteUs);
|
|
|
|
return result;
|
|
}
|