Commit 2c1d1e60 authored by mic.besace's avatar mic.besace Committed by Commit bot

[build] Introduce an embedder version string

Sometimes, the embedder might want to merge a fix to an abandoned branch
or to a supported branch but the fix is not relevant to Chromium.
This adds a new version string that the embedder can set on compile time
and that will be appended to the official V8 version.
The separator must be provided in the string. For instance, to have a
full version string like "5.5.372.37.custom.1", the embedder must set
V8_EMBEDDER_STRING to ".custom.1".

Related Node.js issue: https://github.com/nodejs/node/pull/9754

BUG=v8:5740
R=machenbach@chromium.org,hablich@chromium.com,ofrobots@google.com

CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_chromium_rel_ng

Review-Url: https://codereview.chromium.org/2619213002
Cr-Original-Commit-Position: refs/heads/master@{#42175}
Committed: https://chromium.googlesource.com/v8/v8/+/fc86d4329b253bf21c1dd85469f1ef4b6e5ba01a
Review-Url: https://codereview.chromium.org/2619213002
Cr-Commit-Position: refs/heads/master@{#42582}
parent 72e8a978
...@@ -29,6 +29,9 @@ declare_args() { ...@@ -29,6 +29,9 @@ declare_args() {
# Enable compiler warnings when using V8_DEPRECATED apis. # Enable compiler warnings when using V8_DEPRECATED apis.
v8_deprecation_warnings = false v8_deprecation_warnings = false
# Allow the embedder to add a custom suffix to the version string.
v8_embedder_string = ""
# Enable compiler warnings when using V8_DEPRECATE_SOON apis. # Enable compiler warnings when using V8_DEPRECATE_SOON apis.
v8_imminent_deprecation_warnings = "" v8_imminent_deprecation_warnings = ""
...@@ -189,6 +192,10 @@ config("features") { ...@@ -189,6 +192,10 @@ config("features") {
defines = [] defines = []
if (v8_embedder_string != "") {
defines += [ "V8_EMBEDDER_STRING=\"$v8_embedder_string\"" ]
}
if (v8_enable_disassembler) { if (v8_enable_disassembler) {
defines += [ "ENABLE_DISASSEMBLER" ] defines += [ "ENABLE_DISASSEMBLER" ]
} }
......
...@@ -64,6 +64,9 @@ ...@@ -64,6 +64,9 @@
# Enable compiler warnings when using V8_DEPRECATE_SOON apis. # Enable compiler warnings when using V8_DEPRECATE_SOON apis.
'v8_imminent_deprecation_warnings%': 0, 'v8_imminent_deprecation_warnings%': 0,
# Allow the embedder to add a custom suffix to the version string.
'v8_embedder_string%': '',
# Set to 1 to enable DCHECKs in release builds. # Set to 1 to enable DCHECKs in release builds.
'dcheck_always_on%': 0, 'dcheck_always_on%': 0,
...@@ -105,6 +108,9 @@ ...@@ -105,6 +108,9 @@
['v8_use_snapshot=="true" and v8_use_external_startup_data==1', { ['v8_use_snapshot=="true" and v8_use_external_startup_data==1', {
'defines': ['V8_USE_EXTERNAL_STARTUP_DATA',], 'defines': ['V8_USE_EXTERNAL_STARTUP_DATA',],
}], }],
['v8_embedder_string!=""', {
'defines': ['V8_EMBEDDER_STRING="<(v8_embedder_string)"',],
}],
['dcheck_always_on!=0', { ['dcheck_always_on!=0', {
'defines': ['DEBUG',], 'defines': ['DEBUG',],
}], }],
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#define V8_VERSION_STRING \ #define V8_VERSION_STRING \
V8_S(V8_MAJOR_VERSION) \ V8_S(V8_MAJOR_VERSION) \
"." V8_S(V8_MINOR_VERSION) "." V8_S(V8_BUILD_NUMBER) "." V8_S( \ "." V8_S(V8_MINOR_VERSION) "." V8_S(V8_BUILD_NUMBER) "." V8_S( \
V8_PATCH_LEVEL) V8_CANDIDATE_STRING V8_PATCH_LEVEL) V8_EMBEDDER_STRING V8_CANDIDATE_STRING
#else #else
#define V8_VERSION_STRING \ #define V8_VERSION_STRING \
V8_S(V8_MAJOR_VERSION) \ V8_S(V8_MAJOR_VERSION) \
......
...@@ -13,6 +13,10 @@ ...@@ -13,6 +13,10 @@
#define V8_BUILD_NUMBER 0 #define V8_BUILD_NUMBER 0
#define V8_PATCH_LEVEL 0 #define V8_PATCH_LEVEL 0
#ifndef V8_EMBEDDER_STRING
#define V8_EMBEDDER_STRING ""
#endif // V8_EMBEDDER_STRING
// Use 1 for candidates and 0 otherwise. // Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.) // (Boolean macro values are not supported by all preprocessors.)
#define V8_IS_CANDIDATE_VERSION 1 #define V8_IS_CANDIDATE_VERSION 1
......
...@@ -55,9 +55,16 @@ void Log::Initialize(const char* log_file_name) { ...@@ -55,9 +55,16 @@ void Log::Initialize(const char* log_file_name) {
if (output_handle_ != nullptr) { if (output_handle_ != nullptr) {
Log::MessageBuilder msg(this); Log::MessageBuilder msg(this);
msg.Append("v8-version,%d,%d,%d,%d,%d", Version::GetMajor(), if (strlen(Version::GetEmbedder()) == 0) {
Version::GetMinor(), Version::GetBuild(), Version::GetPatch(), msg.Append("v8-version,%d,%d,%d,%d,%d", Version::GetMajor(),
Version::IsCandidate()); Version::GetMinor(), Version::GetBuild(),
Version::GetPatch(), Version::IsCandidate());
} else {
msg.Append("v8-version,%d,%d,%d,%d,%s,%d", Version::GetMajor(),
Version::GetMinor(), Version::GetBuild(),
Version::GetPatch(), Version::GetEmbedder(),
Version::IsCandidate());
}
msg.WriteToLogFile(); msg.WriteToLogFile();
} }
} }
......
...@@ -20,6 +20,7 @@ int Version::major_ = V8_MAJOR_VERSION; ...@@ -20,6 +20,7 @@ int Version::major_ = V8_MAJOR_VERSION;
int Version::minor_ = V8_MINOR_VERSION; int Version::minor_ = V8_MINOR_VERSION;
int Version::build_ = V8_BUILD_NUMBER; int Version::build_ = V8_BUILD_NUMBER;
int Version::patch_ = V8_PATCH_LEVEL; int Version::patch_ = V8_PATCH_LEVEL;
const char* Version::embedder_ = V8_EMBEDDER_STRING;
bool Version::candidate_ = (V8_IS_CANDIDATE_VERSION != 0); bool Version::candidate_ = (V8_IS_CANDIDATE_VERSION != 0);
const char* Version::soname_ = SONAME; const char* Version::soname_ = SONAME;
const char* Version::version_string_ = V8_VERSION_STRING; const char* Version::version_string_ = V8_VERSION_STRING;
...@@ -33,9 +34,8 @@ void Version::GetString(Vector<char> str) { ...@@ -33,9 +34,8 @@ void Version::GetString(Vector<char> str) {
const char* is_simulator = ""; const char* is_simulator = "";
#endif // USE_SIMULATOR #endif // USE_SIMULATOR
if (GetPatch() > 0) { if (GetPatch() > 0) {
SNPrintF(str, "%d.%d.%d.%d%s%s", SNPrintF(str, "%d.%d.%d.%d%s%s%s", GetMajor(), GetMinor(), GetBuild(),
GetMajor(), GetMinor(), GetBuild(), GetPatch(), candidate, GetPatch(), GetEmbedder(), candidate, is_simulator);
is_simulator);
} else { } else {
SNPrintF(str, "%d.%d.%d%s%s", SNPrintF(str, "%d.%d.%d%s%s",
GetMajor(), GetMinor(), GetBuild(), candidate, GetMajor(), GetMinor(), GetBuild(), candidate,
...@@ -50,8 +50,8 @@ void Version::GetSONAME(Vector<char> str) { ...@@ -50,8 +50,8 @@ void Version::GetSONAME(Vector<char> str) {
// Generate generic SONAME if no specific SONAME is defined. // Generate generic SONAME if no specific SONAME is defined.
const char* candidate = IsCandidate() ? "-candidate" : ""; const char* candidate = IsCandidate() ? "-candidate" : "";
if (GetPatch() > 0) { if (GetPatch() > 0) {
SNPrintF(str, "libv8-%d.%d.%d.%d%s.so", SNPrintF(str, "libv8-%d.%d.%d.%d%s%s.so", GetMajor(), GetMinor(),
GetMajor(), GetMinor(), GetBuild(), GetPatch(), candidate); GetBuild(), GetPatch(), GetEmbedder(), candidate);
} else { } else {
SNPrintF(str, "libv8-%d.%d.%d%s.so", SNPrintF(str, "libv8-%d.%d.%d%s.so",
GetMajor(), GetMinor(), GetBuild(), candidate); GetMajor(), GetMinor(), GetBuild(), candidate);
......
...@@ -18,6 +18,7 @@ class Version { ...@@ -18,6 +18,7 @@ class Version {
static int GetMinor() { return minor_; } static int GetMinor() { return minor_; }
static int GetBuild() { return build_; } static int GetBuild() { return build_; }
static int GetPatch() { return patch_; } static int GetPatch() { return patch_; }
static const char* GetEmbedder() { return embedder_; }
static bool IsCandidate() { return candidate_; } static bool IsCandidate() { return candidate_; }
static uint32_t Hash() { static uint32_t Hash() {
return static_cast<uint32_t>( return static_cast<uint32_t>(
...@@ -38,13 +39,15 @@ class Version { ...@@ -38,13 +39,15 @@ class Version {
static int minor_; static int minor_;
static int build_; static int build_;
static int patch_; static int patch_;
static const char* embedder_;
static bool candidate_; static bool candidate_;
static const char* soname_; static const char* soname_;
static const char* version_string_; static const char* version_string_;
// In test-version.cc. // In test-version.cc.
friend void SetVersion(int major, int minor, int build, int patch, friend void SetVersion(int major, int minor, int build, int patch,
bool candidate, const char* soname); const char* embedder, bool candidate,
const char* soname);
}; };
} // namespace internal } // namespace internal
......
...@@ -37,11 +37,12 @@ namespace v8 { ...@@ -37,11 +37,12 @@ namespace v8 {
namespace internal { namespace internal {
void SetVersion(int major, int minor, int build, int patch, void SetVersion(int major, int minor, int build, int patch,
bool candidate, const char* soname) { const char* embedder, bool candidate, const char* soname) {
Version::major_ = major; Version::major_ = major;
Version::minor_ = minor; Version::minor_ = minor;
Version::build_ = build; Version::build_ = build;
Version::patch_ = patch; Version::patch_ = patch;
Version::embedder_ = embedder;
Version::candidate_ = candidate; Version::candidate_ = candidate;
Version::soname_ = soname; Version::soname_ = soname;
} }
...@@ -49,16 +50,14 @@ void SetVersion(int major, int minor, int build, int patch, ...@@ -49,16 +50,14 @@ void SetVersion(int major, int minor, int build, int patch,
} // namespace internal } // namespace internal
} // namespace v8 } // namespace v8
static void CheckVersion(int major, int minor, int build, int patch,
static void CheckVersion(int major, int minor, int build, const char* embedder, bool candidate,
int patch, bool candidate,
const char* expected_version_string, const char* expected_version_string,
const char* expected_generic_soname) { const char* expected_generic_soname) {
static v8::internal::EmbeddedVector<char, 128> version_str; static v8::internal::EmbeddedVector<char, 128> version_str;
static v8::internal::EmbeddedVector<char, 128> soname_str; static v8::internal::EmbeddedVector<char, 128> soname_str;
// Test version without specific SONAME. // Test version without specific SONAME.
SetVersion(major, minor, build, patch, candidate, ""); SetVersion(major, minor, build, patch, embedder, candidate, "");
Version::GetString(version_str); Version::GetString(version_str);
CHECK_EQ(0, strcmp(expected_version_string, version_str.start())); CHECK_EQ(0, strcmp(expected_version_string, version_str.start()));
Version::GetSONAME(soname_str); Version::GetSONAME(soname_str);
...@@ -66,7 +65,7 @@ static void CheckVersion(int major, int minor, int build, ...@@ -66,7 +65,7 @@ static void CheckVersion(int major, int minor, int build,
// Test version with specific SONAME. // Test version with specific SONAME.
const char* soname = "libv8.so.1"; const char* soname = "libv8.so.1";
SetVersion(major, minor, build, patch, candidate, soname); SetVersion(major, minor, build, patch, embedder, candidate, soname);
Version::GetString(version_str); Version::GetString(version_str);
CHECK_EQ(0, strcmp(expected_version_string, version_str.start())); CHECK_EQ(0, strcmp(expected_version_string, version_str.start()));
Version::GetSONAME(soname_str); Version::GetSONAME(soname_str);
...@@ -76,30 +75,40 @@ static void CheckVersion(int major, int minor, int build, ...@@ -76,30 +75,40 @@ static void CheckVersion(int major, int minor, int build,
TEST(VersionString) { TEST(VersionString) {
#ifdef USE_SIMULATOR #ifdef USE_SIMULATOR
CheckVersion(0, 0, 0, 0, false, "0.0.0 SIMULATOR", "libv8-0.0.0.so"); CheckVersion(0, 0, 0, 0, "", false, "0.0.0 SIMULATOR", "libv8-0.0.0.so");
CheckVersion(0, 0, 0, 0, true, CheckVersion(0, 0, 0, 0, "", true, "0.0.0 (candidate) SIMULATOR",
"0.0.0 (candidate) SIMULATOR", "libv8-0.0.0-candidate.so"); "libv8-0.0.0-candidate.so");
CheckVersion(1, 0, 0, 0, false, "1.0.0 SIMULATOR", "libv8-1.0.0.so"); CheckVersion(1, 0, 0, 0, "", false, "1.0.0 SIMULATOR", "libv8-1.0.0.so");
CheckVersion(1, 0, 0, 0, true, CheckVersion(1, 0, 0, 0, "", true, "1.0.0 (candidate) SIMULATOR",
"1.0.0 (candidate) SIMULATOR", "libv8-1.0.0-candidate.so"); "libv8-1.0.0-candidate.so");
CheckVersion(1, 0, 0, 1, false, "1.0.0.1 SIMULATOR", "libv8-1.0.0.1.so"); CheckVersion(1, 0, 0, 1, "", false, "1.0.0.1 SIMULATOR", "libv8-1.0.0.1.so");
CheckVersion(1, 0, 0, 1, true, CheckVersion(1, 0, 0, 1, "", true, "1.0.0.1 (candidate) SIMULATOR",
"1.0.0.1 (candidate) SIMULATOR", "libv8-1.0.0.1-candidate.so"); "libv8-1.0.0.1-candidate.so");
CheckVersion(2, 5, 10, 7, false, "2.5.10.7 SIMULATOR", "libv8-2.5.10.7.so"); CheckVersion(2, 5, 10, 7, "", false, "2.5.10.7 SIMULATOR",
CheckVersion(2, 5, 10, 7, true, "libv8-2.5.10.7.so");
"2.5.10.7 (candidate) SIMULATOR", "libv8-2.5.10.7-candidate.so"); CheckVersion(2, 5, 10, 7, "", true, "2.5.10.7 (candidate) SIMULATOR",
"libv8-2.5.10.7-candidate.so");
CheckVersion(2, 5, 10, 7, ".emb.1", false, "2.5.10.7.emb.1 SIMULATOR",
"libv8-2.5.10.7.emb.1.so");
CheckVersion(2, 5, 10, 7, ".emb.1", true,
"2.5.10.7.emb.1 (candidate) SIMULATOR",
"libv8-2.5.10.7.emb.1-candidate.so");
#else #else
CheckVersion(0, 0, 0, 0, false, "0.0.0", "libv8-0.0.0.so"); CheckVersion(0, 0, 0, 0, "", false, "0.0.0", "libv8-0.0.0.so");
CheckVersion(0, 0, 0, 0, true, CheckVersion(0, 0, 0, 0, "", true, "0.0.0 (candidate)",
"0.0.0 (candidate)", "libv8-0.0.0-candidate.so"); "libv8-0.0.0-candidate.so");
CheckVersion(1, 0, 0, 0, false, "1.0.0", "libv8-1.0.0.so"); CheckVersion(1, 0, 0, 0, "", false, "1.0.0", "libv8-1.0.0.so");
CheckVersion(1, 0, 0, 0, true, CheckVersion(1, 0, 0, 0, "", true, "1.0.0 (candidate)",
"1.0.0 (candidate)", "libv8-1.0.0-candidate.so"); "libv8-1.0.0-candidate.so");
CheckVersion(1, 0, 0, 1, false, "1.0.0.1", "libv8-1.0.0.1.so"); CheckVersion(1, 0, 0, 1, "", false, "1.0.0.1", "libv8-1.0.0.1.so");
CheckVersion(1, 0, 0, 1, true, CheckVersion(1, 0, 0, 1, "", true, "1.0.0.1 (candidate)",
"1.0.0.1 (candidate)", "libv8-1.0.0.1-candidate.so"); "libv8-1.0.0.1-candidate.so");
CheckVersion(2, 5, 10, 7, false, "2.5.10.7", "libv8-2.5.10.7.so"); CheckVersion(2, 5, 10, 7, "", false, "2.5.10.7", "libv8-2.5.10.7.so");
CheckVersion(2, 5, 10, 7, true, CheckVersion(2, 5, 10, 7, "", true, "2.5.10.7 (candidate)",
"2.5.10.7 (candidate)", "libv8-2.5.10.7-candidate.so"); "libv8-2.5.10.7-candidate.so");
CheckVersion(2, 5, 10, 7, ".emb.1", false, "2.5.10.7.emb.1",
"libv8-2.5.10.7.emb.1.so");
CheckVersion(2, 5, 10, 7, ".emb.1", true, "2.5.10.7.emb.1 (candidate)",
"libv8-2.5.10.7.emb.1-candidate.so");
#endif #endif
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment