Avi Drissman | e4622aa | 2022-09-08 20:36:06 | [diff] [blame^] | 1 | // Copyright 2012 The Chromium Authors |
[email protected] | c62dd9d | 2011-09-21 18:05:41 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef BASE_LOCATION_H_ |
| 6 | #define BASE_LOCATION_H_ |
| 7 | |
| 8 | #include <string> |
| 9 | |
| 10 | #include "base/base_export.h" |
Scott Violet | 4416579 | 2018-02-22 02:08:08 | [diff] [blame] | 11 | #include "base/debug/debugging_buildflags.h" |
Keishi Hattori | 488b760 | 2022-05-02 13:09:31 | [diff] [blame] | 12 | #include "base/memory/raw_ptr_exclusion.h" |
Alexander Timin | 26ac38f | 2021-10-05 00:50:36 | [diff] [blame] | 13 | #include "base/trace_event/base_tracing_forward.h" |
Jeremy Roman | a5999de | 2019-07-04 20:13:01 | [diff] [blame] | 14 | #include "build/build_config.h" |
[email protected] | c62dd9d | 2011-09-21 18:05:41 | [diff] [blame] | 15 | |
Brett Wilson | abbb960 | 2017-09-11 23:26:39 | [diff] [blame] | 16 | namespace base { |
[email protected] | c62dd9d | 2011-09-21 18:05:41 | [diff] [blame] | 17 | |
Wanchang Ryu | 6ca0bda5b | 2020-07-21 12:08:48 | [diff] [blame] | 18 | #if defined(__clang__) |
Jeremy Roman | a5999de | 2019-07-04 20:13:01 | [diff] [blame] | 19 | // Clang allows detection of these builtins. |
| 20 | #define SUPPORTS_LOCATION_BUILTINS \ |
| 21 | (__has_builtin(__builtin_FUNCTION) && __has_builtin(__builtin_FILE) && \ |
| 22 | __has_builtin(__builtin_LINE)) |
| 23 | #elif defined(COMPILER_GCC) && __GNUC__ >= 7 |
| 24 | // GCC has supported these for a long time, but they point at the function |
| 25 | // declaration in the case of default arguments, rather than at the call site. |
| 26 | #define SUPPORTS_LOCATION_BUILTINS 1 |
| 27 | #else |
| 28 | #define SUPPORTS_LOCATION_BUILTINS 0 |
| 29 | #endif |
| 30 | |
[email protected] | c62dd9d | 2011-09-21 18:05:41 | [diff] [blame] | 31 | // Location provides basic info where of an object was constructed, or was |
| 32 | // significantly brought to life. |
| 33 | class BASE_EXPORT Location { |
| 34 | public: |
Brett Wilson | c794cf6 | 2017-09-01 20:14:33 | [diff] [blame] | 35 | Location(); |
| 36 | Location(const Location& other); |
Stephan Hartmann | 66f224a | 2021-12-07 23:52:23 | [diff] [blame] | 37 | Location(Location&& other) noexcept; |
Peter Kasting | e08ca1334 | 2021-07-08 02:46:57 | [diff] [blame] | 38 | Location& operator=(const Location& other); |
Brett Wilson | c794cf6 | 2017-09-01 20:14:33 | [diff] [blame] | 39 | |
| 40 | // Only initializes the file name and program counter, the source information |
| 41 | // will be null for the strings, and -1 for the line number. |
| 42 | // TODO(http://crbug.com/760702) remove file name from this constructor. |
| 43 | Location(const char* file_name, const void* program_counter); |
| 44 | |
[email protected] | c62dd9d | 2011-09-21 18:05:41 | [diff] [blame] | 45 | // Constructor should be called with a long-lived char*, such as __FILE__. |
| 46 | // It assumes the provided value will persist as a global constant, and it |
| 47 | // will not make a copy of it. |
| 48 | Location(const char* function_name, |
| 49 | const char* file_name, |
| 50 | int line_number, |
| 51 | const void* program_counter); |
| 52 | |
Hans Wennborg | e66cdda | 2021-04-21 11:02:31 | [diff] [blame] | 53 | // Comparator for testing. The program counter should uniquely |
Brett Wilson | c794cf6 | 2017-09-01 20:14:33 | [diff] [blame] | 54 | // identify a location. |
sque | e3b16f1 | 2015-03-14 02:39:03 | [diff] [blame] | 55 | bool operator==(const Location& other) const { |
Brett Wilson | c794cf6 | 2017-09-01 20:14:33 | [diff] [blame] | 56 | return program_counter_ == other.program_counter_; |
[email protected] | c62dd9d | 2011-09-21 18:05:41 | [diff] [blame] | 57 | } |
| 58 | |
Aditya Kushwah | 5a286b7 | 2022-02-10 04:54:43 | [diff] [blame] | 59 | // Comparator is necessary to use location object within an ordered container |
| 60 | // type (eg. std::map). |
| 61 | bool operator<(const Location& other) const { |
| 62 | return program_counter_ < other.program_counter_; |
| 63 | } |
| 64 | |
Brett Wilson | c794cf6 | 2017-09-01 20:14:33 | [diff] [blame] | 65 | // Returns true if there is source code location info. If this is false, |
| 66 | // the Location object only contains a program counter or is |
| 67 | // default-initialized (the program counter is also null). |
| 68 | bool has_source_info() const { return function_name_ && file_name_; } |
| 69 | |
| 70 | // Will be nullptr for default initialized Location objects and when source |
| 71 | // names are disabled. |
| 72 | const char* function_name() const { return function_name_; } |
| 73 | |
| 74 | // Will be nullptr for default initialized Location objects and when source |
| 75 | // names are disabled. |
| 76 | const char* file_name() const { return file_name_; } |
| 77 | |
| 78 | // Will be -1 for default initialized Location objects and when source names |
| 79 | // are disabled. |
| 80 | int line_number() const { return line_number_; } |
| 81 | |
| 82 | // The address of the code generating this Location object. Should always be |
| 83 | // valid except for default initialized Location objects, which will be |
| 84 | // nullptr. |
[email protected] | c62dd9d | 2011-09-21 18:05:41 | [diff] [blame] | 85 | const void* program_counter() const { return program_counter_; } |
| 86 | |
Brett Wilson | 07ec3b5 | 2017-10-09 21:42:45 | [diff] [blame] | 87 | // Converts to the most user-readable form possible. If function and filename |
| 88 | // are not available, this will return "pc:<hex address>". |
[email protected] | c62dd9d | 2011-09-21 18:05:41 | [diff] [blame] | 89 | std::string ToString() const; |
| 90 | |
Alexander Timin | 26ac38f | 2021-10-05 00:50:36 | [diff] [blame] | 91 | // Write a representation of this object into a trace. |
| 92 | void WriteIntoTrace(perfetto::TracedValue context) const; |
| 93 | |
Daniel Cheng | e0f23c8e | 2020-02-25 21:03:27 | [diff] [blame] | 94 | #if !BUILDFLAG(FROM_HERE_USES_LOCATION_BUILTINS) |
| 95 | #if !BUILDFLAG(ENABLE_LOCATION_SOURCE) |
tzik | 4f05a25a | 2017-09-13 00:23:16 | [diff] [blame] | 96 | static Location CreateFromHere(const char* file_name); |
Daniel Cheng | e0f23c8e | 2020-02-25 21:03:27 | [diff] [blame] | 97 | #else |
tzik | 4f05a25a | 2017-09-13 00:23:16 | [diff] [blame] | 98 | static Location CreateFromHere(const char* function_name, |
| 99 | const char* file_name, |
| 100 | int line_number); |
Daniel Cheng | e0f23c8e | 2020-02-25 21:03:27 | [diff] [blame] | 101 | #endif |
| 102 | #endif |
tzik | 4f05a25a | 2017-09-13 00:23:16 | [diff] [blame] | 103 | |
Jeremy Roman | a5999de | 2019-07-04 20:13:01 | [diff] [blame] | 104 | #if SUPPORTS_LOCATION_BUILTINS && BUILDFLAG(ENABLE_LOCATION_SOURCE) |
| 105 | static Location Current(const char* function_name = __builtin_FUNCTION(), |
| 106 | const char* file_name = __builtin_FILE(), |
| 107 | int line_number = __builtin_LINE()); |
| 108 | #elif SUPPORTS_LOCATION_BUILTINS |
| 109 | static Location Current(const char* file_name = __builtin_FILE()); |
| 110 | #else |
| 111 | static Location Current(); |
| 112 | #endif |
| 113 | |
[email protected] | c62dd9d | 2011-09-21 18:05:41 | [diff] [blame] | 114 | private: |
Brett Wilson | c794cf6 | 2017-09-01 20:14:33 | [diff] [blame] | 115 | const char* function_name_ = nullptr; |
| 116 | const char* file_name_ = nullptr; |
| 117 | int line_number_ = -1; |
Lukasz Anforowicz | 877e622 | 2021-11-26 00:03:23 | [diff] [blame] | 118 | |
| 119 | // `program_counter_` is not a raw_ptr<...> for performance reasons (based on |
| 120 | // analysis of sampling profiler data and tab_search:top100:2020). |
Keishi Hattori | 488b760 | 2022-05-02 13:09:31 | [diff] [blame] | 121 | RAW_PTR_EXCLUSION const void* program_counter_ = nullptr; |
[email protected] | c62dd9d | 2011-09-21 18:05:41 | [diff] [blame] | 122 | }; |
| 123 | |
| 124 | BASE_EXPORT const void* GetProgramCounter(); |
| 125 | |
Daniel Cheng | e0f23c8e | 2020-02-25 21:03:27 | [diff] [blame] | 126 | #if BUILDFLAG(FROM_HERE_USES_LOCATION_BUILTINS) |
| 127 | |
| 128 | #define FROM_HERE ::base::Location::Current() |
| 129 | |
Brett Wilson | c794cf6 | 2017-09-01 20:14:33 | [diff] [blame] | 130 | // The macros defined here will expand to the current function. |
Daniel Cheng | e0f23c8e | 2020-02-25 21:03:27 | [diff] [blame] | 131 | #elif BUILDFLAG(ENABLE_LOCATION_SOURCE) |
Brett Wilson | 5b5b7cb | 2017-09-01 04:40:02 | [diff] [blame] | 132 | |
Brett Wilson | c794cf6 | 2017-09-01 20:14:33 | [diff] [blame] | 133 | // Full source information should be included. |
Daniel Cheng | e0f23c8e | 2020-02-25 21:03:27 | [diff] [blame] | 134 | #define FROM_HERE ::base::Location::CreateFromHere(__func__, __FILE__, __LINE__) |
Brett Wilson | c794cf6 | 2017-09-01 20:14:33 | [diff] [blame] | 135 | |
| 136 | #else |
| 137 | |
| 138 | // TODO(http://crbug.com/760702) remove the __FILE__ argument from these calls. |
tzik | 4f05a25a | 2017-09-13 00:23:16 | [diff] [blame] | 139 | #define FROM_HERE ::base::Location::CreateFromHere(__FILE__) |
Brett Wilson | c794cf6 | 2017-09-01 20:14:33 | [diff] [blame] | 140 | |
| 141 | #endif |
[email protected] | c62dd9d | 2011-09-21 18:05:41 | [diff] [blame] | 142 | |
Brett Wilson | abbb960 | 2017-09-11 23:26:39 | [diff] [blame] | 143 | } // namespace base |
| 144 | |
[email protected] | c62dd9d | 2011-09-21 18:05:41 | [diff] [blame] | 145 | #endif // BASE_LOCATION_H_ |