v8  3.14.5(node0.10.28)
V8 is Google's open source JavaScript engine
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
version.cc
Go to the documentation of this file.
1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are
4 // met:
5 //
6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided
11 // with the distribution.
12 // * Neither the name of Google Inc. nor the names of its
13 // contributors may be used to endorse or promote products derived
14 // from this software without specific prior written permission.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 
28 #include "v8.h"
29 
30 #include "version.h"
31 
32 // These macros define the version number for the current version.
33 // NOTE these macros are used by the SCons build script so their names
34 // cannot be changed without changing the SCons build script.
35 #define MAJOR_VERSION 3
36 #define MINOR_VERSION 14
37 #define BUILD_NUMBER 5
38 #define PATCH_LEVEL 0
39 // Use 1 for candidates and 0 otherwise.
40 // (Boolean macro values are not supported by all preprocessors.)
41 #define IS_CANDIDATE_VERSION 0
42 
43 // Define SONAME to have the SCons build the put a specific SONAME into the
44 // shared library instead the generic SONAME generated from the V8 version
45 // number. This define is mainly used by the SCons build script.
46 #define SONAME ""
47 
48 #if IS_CANDIDATE_VERSION
49 #define CANDIDATE_STRING " (candidate)"
50 #else
51 #define CANDIDATE_STRING ""
52 #endif
53 
54 #define SX(x) #x
55 #define S(x) SX(x)
56 
57 #if PATCH_LEVEL > 0
58 #define VERSION_STRING \
59  S(MAJOR_VERSION) "." S(MINOR_VERSION) "." S(BUILD_NUMBER) "." \
60  S(PATCH_LEVEL) CANDIDATE_STRING
61 #else
62 #define VERSION_STRING \
63  S(MAJOR_VERSION) "." S(MINOR_VERSION) "." S(BUILD_NUMBER) \
64  CANDIDATE_STRING
65 #endif
66 
67 namespace v8 {
68 namespace internal {
69 
70 int Version::major_ = MAJOR_VERSION;
71 int Version::minor_ = MINOR_VERSION;
72 int Version::build_ = BUILD_NUMBER;
73 int Version::patch_ = PATCH_LEVEL;
74 bool Version::candidate_ = (IS_CANDIDATE_VERSION != 0);
75 const char* Version::soname_ = SONAME;
76 const char* Version::version_string_ = VERSION_STRING;
77 
78 // Calculate the V8 version string.
80  const char* candidate = IsCandidate() ? " (candidate)" : "";
81 #ifdef USE_SIMULATOR
82  const char* is_simulator = " SIMULATOR";
83 #else
84  const char* is_simulator = "";
85 #endif // USE_SIMULATOR
86  if (GetPatch() > 0) {
87  OS::SNPrintF(str, "%d.%d.%d.%d%s%s",
88  GetMajor(), GetMinor(), GetBuild(), GetPatch(), candidate,
89  is_simulator);
90  } else {
91  OS::SNPrintF(str, "%d.%d.%d%s%s",
92  GetMajor(), GetMinor(), GetBuild(), candidate,
93  is_simulator);
94  }
95 }
96 
97 
98 // Calculate the SONAME for the V8 shared library.
100  if (soname_ == NULL || *soname_ == '\0') {
101  // Generate generic SONAME if no specific SONAME is defined.
102  const char* candidate = IsCandidate() ? "-candidate" : "";
103  if (GetPatch() > 0) {
104  OS::SNPrintF(str, "libv8-%d.%d.%d.%d%s.so",
105  GetMajor(), GetMinor(), GetBuild(), GetPatch(), candidate);
106  } else {
107  OS::SNPrintF(str, "libv8-%d.%d.%d%s.so",
108  GetMajor(), GetMinor(), GetBuild(), candidate);
109  }
110  } else {
111  // Use specific SONAME.
112  OS::SNPrintF(str, "%s", soname_);
113  }
114 }
115 
116 } } // namespace v8::internal
static void GetString(Vector< char > str)
Definition: version.cc:79
#define MAJOR_VERSION
Definition: version.cc:35
static int GetPatch()
Definition: version.h:40
#define PATCH_LEVEL
Definition: version.cc:38
#define IS_CANDIDATE_VERSION
Definition: version.cc:41
static void GetSONAME(Vector< char > str)
Definition: version.cc:99
#define SONAME
Definition: version.cc:46
static int GetMinor()
Definition: version.h:38
static bool IsCandidate()
Definition: version.h:41
static int SNPrintF(Vector< char > str, const char *format,...)
#define VERSION_STRING
Definition: version.cc:62
#define BUILD_NUMBER
Definition: version.cc:37
activate correct semantics for inheriting readonliness enable harmony semantics for typeof enable harmony enable harmony proxies enable all harmony harmony_scoping harmony_proxies harmony_scoping tracks arrays with only smi values automatically unbox arrays of doubles use crankshaft use hydrogen range analysis use hydrogen global value numbering use function inlining maximum number of AST nodes considered for a single inlining loop invariant code motion print statistics for hydrogen trace generated IR for specified phases trace register allocator trace range analysis trace representation types environment for every instruction put a break point before deoptimizing polymorphic inlining perform array bounds checks elimination use dead code elimination trace on stack replacement optimize closures cache optimized code for closures functions with arguments object loop weight for representation inference allow uint32 values on optimize frames if they are used only in safe operations track parallel recompilation enable all profiler experiments number of stack frames inspected by the profiler call recompile stub directly when self optimizing trigger profiler ticks based on counting instead of timing weight back edges by jump distance for interrupt triggering percentage of ICs that must have type info to allow optimization watch_ic_patching retry_self_opt interrupt_at_exit extra verbose compilation tracing generate extra emit comments in code disassembly enable use of SSE3 instructions if available enable use of CMOV instruction if available enable use of SAHF instruction if enable use of VFP3 instructions if available this implies enabling ARMv7 and VFP2 enable use of VFP2 instructions if available enable use of SDIV and UDIV instructions if enable loading bit constant by means of movw movt instruction enable unaligned accesses for enable use of MIPS FPU instructions if NULL
Definition: flags.cc:301
static int GetMajor()
Definition: version.h:37
static int GetBuild()
Definition: version.h:39
#define MINOR_VERSION
Definition: version.cc:36