mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-19 08:08:39 +01:00
* chore: bump electron@39.0.0 * chore: update build * chore: bump distro * chore: update debian deps * chore: exclude dlls from symbol scan * chore: test with patch v8 headers * chore: bump rpm dependencies * chore: cleanup preinstall.js * chore: bump electron@39.1.1 * chore: remove unsupported FontationsLinuxSystemFonts feature flag * chore: bump electron@39.1.2 * chore: update nodejs build * temp: update distro * ci: fix location of preinstall invocation * chore: bump distro
95 lines
3.0 KiB
Diff
95 lines
3.0 KiB
Diff
--- v8-source-location.h 2025-10-28 05:57:35
|
|
+++ v8-source-location.h 2025-11-07 03:10:02
|
|
@@ -6,12 +6,21 @@
|
|
#define INCLUDE_SOURCE_LOCATION_H_
|
|
|
|
#include <cstddef>
|
|
-#include <source_location>
|
|
#include <string>
|
|
|
|
#include "v8config.h" // NOLINT(build/include_directory)
|
|
|
|
+#if defined(__has_builtin)
|
|
+#define V8_SUPPORTS_SOURCE_LOCATION \
|
|
+ (__has_builtin(__builtin_FUNCTION) && __has_builtin(__builtin_FILE) && \
|
|
+ __has_builtin(__builtin_LINE)) // NOLINT
|
|
+#elif defined(V8_CC_GNU) && __GNUC__ >= 7
|
|
#define V8_SUPPORTS_SOURCE_LOCATION 1
|
|
+#elif defined(V8_CC_INTEL) && __ICC >= 1800
|
|
+#define V8_SUPPORTS_SOURCE_LOCATION 1
|
|
+#else
|
|
+#define V8_SUPPORTS_SOURCE_LOCATION 0
|
|
+#endif
|
|
|
|
namespace v8 {
|
|
|
|
@@ -25,10 +34,15 @@
|
|
* Construct source location information corresponding to the location of the
|
|
* call site.
|
|
*/
|
|
+#if V8_SUPPORTS_SOURCE_LOCATION
|
|
static constexpr SourceLocation Current(
|
|
- const std::source_location& loc = std::source_location::current()) {
|
|
- return SourceLocation(loc);
|
|
+ const char* function = __builtin_FUNCTION(),
|
|
+ const char* file = __builtin_FILE(), size_t line = __builtin_LINE()) {
|
|
+ return SourceLocation(function, file, line);
|
|
}
|
|
+#else
|
|
+ static constexpr SourceLocation Current() { return SourceLocation(); }
|
|
+#endif // V8_SUPPORTS_SOURCE_LOCATION
|
|
#ifdef DEBUG
|
|
static constexpr SourceLocation CurrentIfDebug(
|
|
const std::source_location& loc = std::source_location::current()) {
|
|
@@ -49,21 +63,21 @@
|
|
*
|
|
* \returns the function name as cstring.
|
|
*/
|
|
- constexpr const char* Function() const { return loc_.function_name(); }
|
|
+ constexpr const char* Function() const { return function_; }
|
|
|
|
/**
|
|
* Returns the name of the current source file represented by this object.
|
|
*
|
|
* \returns the file name as cstring.
|
|
*/
|
|
- constexpr const char* FileName() const { return loc_.file_name(); }
|
|
+ constexpr const char* FileName() const { return file_; }
|
|
|
|
/**
|
|
* Returns the line number represented by this object.
|
|
*
|
|
* \returns the line number.
|
|
*/
|
|
- constexpr size_t Line() const { return loc_.line(); }
|
|
+ constexpr size_t Line() const { return line_; }
|
|
|
|
/**
|
|
* Returns a human-readable string representing this object.
|
|
@@ -71,18 +85,19 @@
|
|
* \returns a human-readable string representing source location information.
|
|
*/
|
|
std::string ToString() const {
|
|
- if (loc_.line() == 0) {
|
|
+ if (!file_) {
|
|
return {};
|
|
}
|
|
- return std::string(loc_.function_name()) + "@" + loc_.file_name() + ":" +
|
|
- std::to_string(loc_.line());
|
|
+ return std::string(function_) + "@" + file_ + ":" + std::to_string(line_);
|
|
}
|
|
|
|
private:
|
|
- constexpr explicit SourceLocation(const std::source_location& loc)
|
|
- : loc_(loc) {}
|
|
+ constexpr SourceLocation(const char* function, const char* file, size_t line)
|
|
+ : function_(function), file_(file), line_(line) {}
|
|
|
|
- std::source_location loc_;
|
|
+ const char* function_ = nullptr;
|
|
+ const char* file_ = nullptr;
|
|
+ size_t line_ = 0u;
|
|
};
|
|
|
|
} // namespace v8
|