8191683: Compile problem on ARM after JDK-8043070
Summary: Make nmethod::_state explicitly a signed char
Reviewed-by: thartmann
Google C++ Testing Framework============================http://code.google.com/p/googletest/Overview--------Google's framework for writing C++ tests on a variety of platforms(Linux, Mac OS X, Windows, Windows CE, Symbian, etc). Based on thexUnit architecture. Supports automatic test discovery, a rich set ofassertions, user-defined assertions, death tests, fatal and non-fatalfailures, various options for running the tests, and XML test reportgeneration.Please see the project page above for more information as well as themailing list for questions, discussions, and development. There isalso an IRC channel on OFTC (irc.oftc.net) #gtest available. Pleasejoin us!Requirements for End Users--------------------------Google Test is designed to have fairly minimal requirements to buildand use with your projects, but there are some. Currently, we supportLinux, Windows, Mac OS X, and Cygwin. We will also make our besteffort to support other platforms (e.g. Solaris, AIX, and z/OS).However, since core members of the Google Test project have no accessto these platforms, Google Test may have outstanding issues there. Ifyou notice any problems on your platform, please notifygoogletestframework@googlegroups.com. Patches for fixing them areeven more welcome!### Linux Requirements ###These are the base requirements to build and use Google Test from a sourcepackage (as described below): * GNU-compatible Make or gmake * POSIX-standard shell * POSIX(-2) Regular Expressions (regex.h) * A C++98-standard-compliant compiler### Windows Requirements ### * Microsoft Visual C++ 7.1 or newer### Cygwin Requirements ### * Cygwin 1.5.25-14 or newer### Mac OS X Requirements ### * Mac OS X 10.4 Tiger or newer * Developer Tools InstalledAlso, you'll need CMake 2.6.4 or higher if you want to build thesamples using the provided CMake script, regardless of the platform.Requirements for Contributors-----------------------------We welcome patches. If you plan to contribute a patch, you need tobuild Google Test and its own tests from an SVN checkout (describedbelow), which has further requirements: * Python version 2.3 or newer (for running some of the tests and re-generating certain source files from templates) * CMake 2.6.4 or newerGetting the Source------------------There are two primary ways of getting Google Test's source code: youcan download a stable source release in your preferred archive format,or directly check out the source from our Subversion (SVN) repositary.The SVN checkout requires a few extra steps and some extra softwarepackages on your system, but lets you track the latest development andmake patches much more easily, so we highly encourage it.### Source Package ###Google Test is released in versioned source packages which can bedownloaded from the download page [1]. Several different archiveformats are provided, but the only difference is the tools used tomanipulate them, and the size of the resulting file. Downloadwhichever you are most comfortable with. [1] http://code.google.com/p/googletest/downloads/listOnce the package is downloaded, expand it using whichever tools youprefer for that type. This will result in a new directory with thename "gtest-X.Y.Z" which contains all of the source code. Here aresome examples on Linux: tar -xvzf gtest-X.Y.Z.tar.gz tar -xvjf gtest-X.Y.Z.tar.bz2 unzip gtest-X.Y.Z.zip### SVN Checkout ###To check out the main branch (also known as the "trunk") of GoogleTest, run the following Subversion command: svn checkout http://googletest.googlecode.com/svn/trunk/ gtest-svnSetting up the Build--------------------To build Google Test and your tests that use it, you need to tell yourbuild system where to find its headers and source files. The exactway to do it depends on which build system you use, and is usuallystraightforward.### Generic Build Instructions ###Suppose you put Google Test in directory ${GTEST_DIR}. To build it,create a library build target (or a project as called by Visual Studioand Xcode) to compile ${GTEST_DIR}/src/gtest-all.ccwith ${GTEST_DIR}/include in the system header search path and ${GTEST_DIR}in the normal header search path. Assuming a Linux-like system and gcc,something like the following will do: g++ -isystem ${GTEST_DIR}/include -I${GTEST_DIR} \ -pthread -c ${GTEST_DIR}/src/gtest-all.cc ar -rv libgtest.a gtest-all.o(We need -pthread as Google Test uses threads.)Next, you should compile your test source file with${GTEST_DIR}/include in the system header search path, and link itwith gtest and any other necessary libraries: g++ -isystem ${GTEST_DIR}/include -pthread path/to/your_test.cc libgtest.a \ -o your_testAs an example, the make/ directory contains a Makefile that you canuse to build Google Test on systems where GNU make is available(e.g. Linux, Mac OS X, and Cygwin). It doesn't try to build GoogleTest's own tests. Instead, it just builds the Google Test library anda sample test. You can use it as a starting point for your own buildscript.If the default settings are correct for your environment, thefollowing commands should succeed: cd ${GTEST_DIR}/make make ./sample1_unittestIf you see errors, try to tweak the contents of make/Makefile to makethem go away. There are instructions in make/Makefile on how to doit.### Using CMake ###Google Test comes with a CMake build script (CMakeLists.txt) that canbe used on a wide range of platforms ("C" stands for cross-platofrm.).If you don't have CMake installed already, you can download it forfree from http://www.cmake.org/.CMake works by generating native makefiles or build projects that canbe used in the compiler environment of your choice. The typicalworkflow starts with: mkdir mybuild # Create a directory to hold the build output. cd mybuild cmake ${GTEST_DIR} # Generate native build scripts.If you want to build Google Test's samples, you should replace thelast command with cmake -Dgtest_build_samples=ON ${GTEST_DIR}If you are on a *nix system, you should now see a Makefile in thecurrent directory. Just type 'make' to build gtest.If you use Windows and have Vistual Studio installed, a gtest.sln fileand several .vcproj files will be created. You can then build themusing Visual Studio.On Mac OS X with Xcode installed, a .xcodeproj file will be generated.### Legacy Build Scripts ###Before settling on CMake, we have been providing hand-maintained buildprojects/scripts for Visual Studio, Xcode, and Autotools. While wecontinue to provide them for convenience, they are not activelymaintained any more. We highly recommend that you follow theinstructions in the previous two sections to integrate Google Testwith your existing build system.If you still need to use the legacy build scripts, here's how:The msvc\ folder contains two solutions with Visual C++ projects.Open the gtest.sln or gtest-md.sln file using Visual Studio, and youare ready to build Google Test the same way you build any VisualStudio project. Files that have names ending with -md use DLLversions of Microsoft runtime libraries (the /MD or the /MDd compileroption). Files without that suffix use static versions of the runtimelibraries (the /MT or the /MTd option). Please note that one must usethe same option to compile both gtest and the test code. If you useVisual Studio 2005 or above, we recommend the -md version as /MD isthe default for new projects in these versions of Visual Studio.On Mac OS X, open the gtest.xcodeproj in the xcode/ folder usingXcode. Build the "gtest" target. The universal binary framework willend up in your selected build directory (selected in the Xcode"Preferences..." -> "Building" pane and defaults to xcode/build).Alternatively, at the command line, enter: xcodebuildThis will build the "Release" configuration of gtest.framework in yourdefault build location. See the "xcodebuild" man page for moreinformation about building different configurations and building indifferent locations.If you wish to use the Google Test Xcode project with Xcode 4.x andabove, you need to either: * update the SDK configuration options in xcode/Config/General.xconfig. Comment options SDKROOT, MACOS_DEPLOYMENT_TARGET, and GCC_VERSION. If you choose this route you lose the ability to target earlier versions of MacOS X. * Install an SDK for an earlier version. This doesn't appear to be supported by Apple, but has been reported to work (http://stackoverflow.com/questions/5378518).Tweaking Google Test--------------------Google Test can be used in diverse environments. The defaultconfiguration may not work (or may not work well) out of the box insome environments. However, you can easily tweak Google Test bydefining control macros on the compiler command line. Generally,these macros are named like GTEST_XYZ and you define them to either 1or 0 to enable or disable a certain feature.We list the most frequently used macros below. For a complete list,see file include/gtest/internal/gtest-port.h.### Choosing a TR1 Tuple Library ###Some Google Test features require the C++ Technical Report 1 (TR1)tuple library, which is not yet available with all compilers. Thegood news is that Google Test implements a subset of TR1 tuple that'senough for its own need, and will automatically use this when thecompiler doesn't provide TR1 tuple.Usually you don't need to care about which tuple library Google Testuses. However, if your project already uses TR1 tuple, you need totell Google Test to use the same TR1 tuple library the rest of yourproject uses, or the two tuple implementations will clash. To dothat, add -DGTEST_USE_OWN_TR1_TUPLE=0to the compiler flags while compiling Google Test and your tests. Ifyou want to force Google Test to use its own tuple library, just add -DGTEST_USE_OWN_TR1_TUPLE=1to the compiler flags instead.If you don't want Google Test to use tuple at all, add -DGTEST_HAS_TR1_TUPLE=0and all features using tuple will be disabled.### Multi-threaded Tests ###Google Test is thread-safe where the pthread library is available.After #include "gtest/gtest.h", you can check the GTEST_IS_THREADSAFEmacro to see whether this is the case (yes if the macro is #defined to1, no if it's undefined.).If Google Test doesn't correctly detect whether pthread is availablein your environment, you can force it with -DGTEST_HAS_PTHREAD=1or -DGTEST_HAS_PTHREAD=0When Google Test uses pthread, you may need to add flags to yourcompiler and/or linker to select the pthread library, or you'll getlink errors. If you use the CMake script or the deprecated Autotoolsscript, this is taken care of for you. If you use your own buildscript, you'll need to read your compiler and linker's manual tofigure out what flags to add.### As a Shared Library (DLL) ###Google Test is compact, so most users can build and link it as astatic library for the simplicity. You can choose to use Google Testas a shared library (known as a DLL on Windows) if you prefer.To compile *gtest* as a shared library, add -DGTEST_CREATE_SHARED_LIBRARY=1to the compiler flags. You'll also need to tell the linker to producea shared library instead - consult your linker's manual for how to doit.To compile your *tests* that use the gtest shared library, add -DGTEST_LINKED_AS_SHARED_LIBRARY=1to the compiler flags.Note: while the above steps aren't technically necessary today whenusing some compilers (e.g. GCC), they may become necessary in thefuture, if we decide to improve the speed of loading the library (seehttp://gcc.gnu.org/wiki/Visibility for details). Therefore you arerecommended to always add the above flags when using Google Test as ashared library. Otherwise a future release of Google Test may breakyour build script.### Avoiding Macro Name Clashes ###In C++, macros don't obey namespaces. Therefore two libraries thatboth define a macro of the same name will clash if you #include bothdefinitions. In case a Google Test macro clashes with anotherlibrary, you can force Google Test to rename its macro to avoid theconflict.Specifically, if both Google Test and some other code define macroFOO, you can add -DGTEST_DONT_DEFINE_FOO=1to the compiler flags to tell Google Test to change the macro's namefrom FOO to GTEST_FOO. Currently FOO can be FAIL, SUCCEED, or TEST.For example, with -DGTEST_DONT_DEFINE_TEST=1, you'll need to write GTEST_TEST(SomeTest, DoesThis) { ... }instead of TEST(SomeTest, DoesThis) { ... }in order to define a test.Upgrating from an Earlier Version---------------------------------We strive to keep Google Test releases backward compatible.Sometimes, though, we have to make some breaking changes for theusers' long-term benefits. This section describes what you'll need todo if you are upgrading from an earlier version of Google Test.### Upgrading from 1.3.0 or Earlier ###You may need to explicitly enable or disable Google Test's own TR1tuple library. See the instructions in section "Choosing a TR1 TupleLibrary".### Upgrading from 1.4.0 or Earlier ###The Autotools build script (configure + make) is no longer officiallysupportted. You are encouraged to migrate to your own build system oruse CMake. If you still need to use Autotools, you can findinstructions in the README file from Google Test 1.4.0.On platforms where the pthread library is available, Google Test usesit in order to be thread-safe. See the "Multi-threaded Tests" sectionfor what this means to your build script.If you use Microsoft Visual C++ 7.1 with exceptions disabled, GoogleTest will no longer compile. This should affect very few people, as alarge portion of STL (including <string>) doesn't compile in this modeanyway. We decided to stop supporting it in order to greatly simplifyGoogle Test's implementation.Developing Google Test----------------------This section discusses how to make your own changes to Google Test.### Testing Google Test Itself ###To make sure your changes work as intended and don't break existingfunctionality, you'll want to compile and run Google Test's own tests.For that you can use CMake: mkdir mybuild cd mybuild cmake -Dgtest_build_tests=ON ${GTEST_DIR}Make sure you have Python installed, as some of Google Test's testsare written in Python. If the cmake command complains about not beingable to find Python ("Could NOT find PythonInterp (missing:PYTHON_EXECUTABLE)"), try telling it explicitly where your Pythonexecutable can be found: cmake -DPYTHON_EXECUTABLE=path/to/python -Dgtest_build_tests=ON ${GTEST_DIR}Next, you can build Google Test and all of its own tests. On *nix,this is usually done by 'make'. To run the tests, do make testAll tests should pass.### Regenerating Source Files ###Some of Google Test's source files are generated from templates (notin the C++ sense) using a script. A template file is named FOO.pump,where FOO is the name of the file it will generate. For example, thefile include/gtest/internal/gtest-type-util.h.pump is used to generategtest-type-util.h in the same directory.Normally you don't need to worry about regenerating the source files,unless you need to modify them. In that case, you should modify thecorresponding .pump files instead and run the pump.py Python script toregenerate them. You can find pump.py in the scripts/ directory.Read the Pump manual [2] for how to use it. [2] http://code.google.com/p/googletest/wiki/PumpManual### Contributing a Patch ###We welcome patches. Please read the Google Test developer's guide [3]for how you can contribute. In particular, make sure you have signedthe Contributor License Agreement, or we won't be able to accept thepatch. [3] http://code.google.com/p/googletest/wiki/GoogleTestDevGuideHappy testing!