Elliott Hughes | 42ee142 | 2011-09-06 12:33:32 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
Carl Shapiro | 6c21dc1 | 2011-06-20 15:20:52 -0700 | [diff] [blame] | 16 | |
Carl Shapiro | 6b6b5f0 | 2011-06-21 15:05:09 -0700 | [diff] [blame] | 17 | #ifndef ART_SRC_LOGGING_H_ |
| 18 | #define ART_SRC_LOGGING_H_ |
Carl Shapiro | 6c21dc1 | 2011-06-20 15:20:52 -0700 | [diff] [blame] | 19 | |
Elliott Hughes | eb4f614 | 2011-07-15 17:43:51 -0700 | [diff] [blame] | 20 | #include <cerrno> |
| 21 | #include <cstring> |
Carl Shapiro | 6c21dc1 | 2011-06-20 15:20:52 -0700 | [diff] [blame] | 22 | #include <iostream> // NOLINT |
Elliott Hughes | eb4f614 | 2011-07-15 17:43:51 -0700 | [diff] [blame] | 23 | #include <sstream> |
| 24 | #include "log_severity.h" |
| 25 | #include "macros.h" |
Carl Shapiro | 6c21dc1 | 2011-06-20 15:20:52 -0700 | [diff] [blame] | 26 | |
| 27 | #define CHECK(x) \ |
Ian Rogers | caab8c4 | 2011-10-12 12:11:18 -0700 | [diff] [blame] | 28 | if (UNLIKELY(!(x))) \ |
Elliott Hughes | f5a7a47 | 2011-10-07 14:31:02 -0700 | [diff] [blame] | 29 | ::art::LogMessage(__FILE__, __LINE__, FATAL, -1).stream() \ |
Elliott Hughes | 710a0cb | 2011-08-16 14:32:37 -0700 | [diff] [blame] | 30 | << "Check failed: " #x << " " |
Elliott Hughes | eb4f614 | 2011-07-15 17:43:51 -0700 | [diff] [blame] | 31 | |
Elliott Hughes | 1f359b0 | 2011-07-17 14:27:17 -0700 | [diff] [blame] | 32 | #define CHECK_OP(LHS, RHS, OP) \ |
Ian Rogers | caab8c4 | 2011-10-12 12:11:18 -0700 | [diff] [blame] | 33 | for (::art::EagerEvaluator<typeof(LHS), typeof(RHS)> _values(LHS, RHS); \ |
Elliott Hughes | 362f9bc | 2011-10-17 18:56:41 -0700 | [diff] [blame] | 34 | UNLIKELY(!(_values.lhs OP _values.rhs)); /* empty */) \ |
Elliott Hughes | f5a7a47 | 2011-10-07 14:31:02 -0700 | [diff] [blame] | 35 | ::art::LogMessage(__FILE__, __LINE__, FATAL, -1).stream() \ |
| 36 | << "Check failed: " << #LHS << " " << #OP << " " << #RHS \ |
| 37 | << " (" #LHS "=" << _values.lhs << ", " #RHS "=" << _values.rhs << ") " |
Elliott Hughes | 1f359b0 | 2011-07-17 14:27:17 -0700 | [diff] [blame] | 38 | |
| 39 | #define CHECK_EQ(x, y) CHECK_OP(x, y, ==) |
| 40 | #define CHECK_NE(x, y) CHECK_OP(x, y, !=) |
| 41 | #define CHECK_LE(x, y) CHECK_OP(x, y, <=) |
| 42 | #define CHECK_LT(x, y) CHECK_OP(x, y, <) |
| 43 | #define CHECK_GE(x, y) CHECK_OP(x, y, >=) |
| 44 | #define CHECK_GT(x, y) CHECK_OP(x, y, >) |
Elliott Hughes | eb4f614 | 2011-07-15 17:43:51 -0700 | [diff] [blame] | 45 | |
| 46 | #define CHECK_STROP(s1, s2, sense) \ |
Ian Rogers | caab8c4 | 2011-10-12 12:11:18 -0700 | [diff] [blame] | 47 | if (UNLIKELY((strcmp(s1, s2) == 0) != sense)) \ |
Elliott Hughes | f5a7a47 | 2011-10-07 14:31:02 -0700 | [diff] [blame] | 48 | LOG(FATAL) << "Check failed: " \ |
| 49 | << "\"" << s1 << "\"" \ |
| 50 | << (sense ? " == " : " != ") \ |
| 51 | << "\"" << s2 << "\"" |
Carl Shapiro | 6c21dc1 | 2011-06-20 15:20:52 -0700 | [diff] [blame] | 52 | |
Elliott Hughes | 1f359b0 | 2011-07-17 14:27:17 -0700 | [diff] [blame] | 53 | #define CHECK_STREQ(s1, s2) CHECK_STROP(s1, s2, true) |
| 54 | #define CHECK_STRNE(s1, s2) CHECK_STROP(s1, s2, false) |
| 55 | |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 56 | #define CHECK_PTHREAD_CALL(call, args, what) \ |
| 57 | do { \ |
| 58 | int rc = call args; \ |
| 59 | if (rc != 0) { \ |
| 60 | errno = rc; \ |
| 61 | PLOG(FATAL) << # call << " failed for " << what; \ |
| 62 | } \ |
| 63 | } while (false) |
| 64 | |
Carl Shapiro | 6c21dc1 | 2011-06-20 15:20:52 -0700 | [diff] [blame] | 65 | #ifndef NDEBUG |
| 66 | |
| 67 | #define DCHECK(x) CHECK(x) |
| 68 | #define DCHECK_EQ(x, y) CHECK_EQ(x, y) |
| 69 | #define DCHECK_NE(x, y) CHECK_NE(x, y) |
| 70 | #define DCHECK_LE(x, y) CHECK_LE(x, y) |
| 71 | #define DCHECK_LT(x, y) CHECK_LT(x, y) |
| 72 | #define DCHECK_GE(x, y) CHECK_GE(x, y) |
| 73 | #define DCHECK_GT(x, y) CHECK_GT(x, y) |
Elliott Hughes | eb4f614 | 2011-07-15 17:43:51 -0700 | [diff] [blame] | 74 | #define DCHECK_STREQ(s1, s2) CHECK_STREQ(s1, s2) |
| 75 | #define DCHECK_STRNE(s1, s2) CHECK_STRNE(s1, s2) |
Carl Shapiro | 6c21dc1 | 2011-06-20 15:20:52 -0700 | [diff] [blame] | 76 | |
| 77 | #else // NDEBUG |
| 78 | |
| 79 | #define DCHECK(condition) \ |
| 80 | while (false) \ |
| 81 | CHECK(condition) |
| 82 | |
| 83 | #define DCHECK_EQ(val1, val2) \ |
| 84 | while (false) \ |
| 85 | CHECK_EQ(val1, val2) |
| 86 | |
| 87 | #define DCHECK_NE(val1, val2) \ |
| 88 | while (false) \ |
| 89 | CHECK_NE(val1, val2) |
| 90 | |
| 91 | #define DCHECK_LE(val1, val2) \ |
| 92 | while (false) \ |
| 93 | CHECK_LE(val1, val2) |
| 94 | |
| 95 | #define DCHECK_LT(val1, val2) \ |
| 96 | while (false) \ |
| 97 | CHECK_LT(val1, val2) |
| 98 | |
| 99 | #define DCHECK_GE(val1, val2) \ |
| 100 | while (false) \ |
| 101 | CHECK_GE(val1, val2) |
| 102 | |
| 103 | #define DCHECK_GT(val1, val2) \ |
| 104 | while (false) \ |
| 105 | CHECK_GT(val1, val2) |
| 106 | |
| 107 | #define DCHECK_STREQ(str1, str2) \ |
| 108 | while (false) \ |
| 109 | CHECK_STREQ(str1, str2) |
| 110 | |
Elliott Hughes | eb4f614 | 2011-07-15 17:43:51 -0700 | [diff] [blame] | 111 | #define DCHECK_STRNE(str1, str2) \ |
| 112 | while (false) \ |
| 113 | CHECK_STRNE(str1, str2) |
| 114 | |
Carl Shapiro | 6c21dc1 | 2011-06-20 15:20:52 -0700 | [diff] [blame] | 115 | #endif |
| 116 | |
Elliott Hughes | f5a7a47 | 2011-10-07 14:31:02 -0700 | [diff] [blame] | 117 | #define LOG(severity) ::art::LogMessage(__FILE__, __LINE__, severity, -1).stream() |
| 118 | #define PLOG(severity) ::art::LogMessage(__FILE__, __LINE__, severity, errno).stream() |
Elliott Hughes | eb4f614 | 2011-07-15 17:43:51 -0700 | [diff] [blame] | 119 | |
Carl Shapiro | 6c21dc1 | 2011-06-20 15:20:52 -0700 | [diff] [blame] | 120 | #define LG LOG(INFO) |
| 121 | |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 122 | #define UNIMPLEMENTED(level) LOG(level) << __PRETTY_FUNCTION__ << " unimplemented " |
Elliott Hughes | 53b6131 | 2011-08-12 18:28:20 -0700 | [diff] [blame] | 123 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 124 | #define VLOG_IS_ON(module) UNLIKELY(::art::gLogVerbosity.module) |
| 125 | #define VLOG(module) if (VLOG_IS_ON(module)) ::art::LogMessage(__FILE__, __LINE__, INFO, -1).stream() |
| 126 | |
Elliott Hughes | 3ea7e99 | 2011-10-11 18:48:16 -0700 | [diff] [blame] | 127 | // |
| 128 | // Implementation details beyond this point. |
| 129 | // |
| 130 | |
| 131 | namespace art { |
| 132 | |
| 133 | template <typename LHS, typename RHS> |
| 134 | struct EagerEvaluator { |
| 135 | EagerEvaluator(LHS lhs, RHS rhs) : lhs(lhs), rhs(rhs) { } |
| 136 | LHS lhs; |
| 137 | RHS rhs; |
| 138 | }; |
| 139 | |
Elliott Hughes | aa6a588 | 2012-01-13 19:39:16 -0800 | [diff] [blame] | 140 | // We want char*s to be treated as pointers, not strings. If you want them treated like strings, |
| 141 | // you'd need to use CHECK_STREQ and CHECK_STRNE anyway to compare the characters rather than their |
| 142 | // addresses. We could express this more succinctly with std::remove_const, but this is quick and |
| 143 | // easy to understand, and works before we have C++0x. We rely on signed/unsigned warnings to |
| 144 | // protect you against combinations not explicitly listed below. |
| 145 | #define EAGER_PTR_EVALUATOR(T1, T2) \ |
| 146 | template <> struct EagerEvaluator<T1, T2> { \ |
| 147 | EagerEvaluator(T1 lhs, T2 rhs) \ |
| 148 | : lhs(reinterpret_cast<const void*>(lhs)), \ |
| 149 | rhs(reinterpret_cast<const void*>(rhs)) { } \ |
| 150 | const void* lhs; \ |
| 151 | const void* rhs; \ |
| 152 | } |
| 153 | EAGER_PTR_EVALUATOR(const char*, const char*); |
| 154 | EAGER_PTR_EVALUATOR(const char*, char*); |
| 155 | EAGER_PTR_EVALUATOR(char*, const char*); |
| 156 | EAGER_PTR_EVALUATOR(char*, char*); |
| 157 | EAGER_PTR_EVALUATOR(const unsigned char*, const unsigned char*); |
| 158 | EAGER_PTR_EVALUATOR(const unsigned char*, unsigned char*); |
| 159 | EAGER_PTR_EVALUATOR(unsigned char*, const unsigned char*); |
| 160 | EAGER_PTR_EVALUATOR(unsigned char*, unsigned char*); |
| 161 | EAGER_PTR_EVALUATOR(const signed char*, const signed char*); |
| 162 | EAGER_PTR_EVALUATOR(const signed char*, signed char*); |
| 163 | EAGER_PTR_EVALUATOR(signed char*, const signed char*); |
| 164 | EAGER_PTR_EVALUATOR(signed char*, signed char*); |
| 165 | |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 166 | // This indirection greatly reduces the stack impact of having |
| 167 | // lots of checks/logging in a function. |
| 168 | struct LogMessageData { |
| 169 | public: |
| 170 | LogMessageData(int line, LogSeverity severity, int error) |
| 171 | : file(NULL), |
| 172 | line_number(line), |
| 173 | severity(severity), |
| 174 | error(error) { |
| 175 | } |
| 176 | |
| 177 | std::ostringstream buffer; |
| 178 | const char* file; |
| 179 | int line_number; |
| 180 | LogSeverity severity; |
| 181 | int error; |
| 182 | |
| 183 | private: |
| 184 | DISALLOW_COPY_AND_ASSIGN(LogMessageData); |
| 185 | }; |
| 186 | |
Elliott Hughes | 3ea7e99 | 2011-10-11 18:48:16 -0700 | [diff] [blame] | 187 | class LogMessage { |
| 188 | public: |
| 189 | LogMessage(const char* file, int line, LogSeverity severity, int error); |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 190 | ~LogMessage() LOCKS_EXCLUDED(Locks::logging_lock_); |
Elliott Hughes | 3ea7e99 | 2011-10-11 18:48:16 -0700 | [diff] [blame] | 191 | std::ostream& stream(); |
| 192 | |
| 193 | private: |
| 194 | void LogLine(const char*); |
| 195 | |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 196 | LogMessageData* data_; |
Elliott Hughes | 3ea7e99 | 2011-10-11 18:48:16 -0700 | [diff] [blame] | 197 | |
| 198 | DISALLOW_COPY_AND_ASSIGN(LogMessage); |
| 199 | }; |
| 200 | |
Elliott Hughes | bfbf0e2 | 2012-03-29 18:09:19 -0700 | [diff] [blame] | 201 | // Prints a hex dump in this format: |
| 202 | // |
| 203 | // 01234560: 00 11 22 33 44 55 66 77 88 99 aa bb cc dd ee ff 0123456789abcdef |
| 204 | // 01234568: 00 11 22 33 44 55 66 77 88 99 aa bb cc dd ee ff 0123456789abcdef |
| 205 | class HexDump { |
| 206 | public: |
| 207 | HexDump(const void* address, size_t byte_count, bool show_actual_addresses = false); |
| 208 | void Dump(std::ostream& os) const; |
| 209 | |
| 210 | private: |
| 211 | const void* address_; |
| 212 | size_t byte_count_; |
| 213 | bool show_actual_addresses_; |
Elliott Hughes | 878820f | 2012-03-29 20:00:04 -0700 | [diff] [blame] | 214 | |
| 215 | // TODO: Remove the #if when Mac OS build server no longer uses GCC 4.2.*. |
| 216 | #if GCC_VERSION >= 40300 |
Elliott Hughes | bfbf0e2 | 2012-03-29 18:09:19 -0700 | [diff] [blame] | 217 | DISALLOW_COPY_AND_ASSIGN(HexDump); |
Elliott Hughes | 878820f | 2012-03-29 20:00:04 -0700 | [diff] [blame] | 218 | #endif |
Elliott Hughes | bfbf0e2 | 2012-03-29 18:09:19 -0700 | [diff] [blame] | 219 | }; |
| 220 | std::ostream& operator<<(std::ostream& os, const HexDump& rhs); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 221 | |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 222 | // A convenience to allow any class with a "Dump(std::ostream& os)" member function |
| 223 | // but without an operator<< to be used as if it had an operator<<. Use like this: |
| 224 | // |
| 225 | // os << Dumpable<MyType>(my_type_instance); |
| 226 | // |
| 227 | template<typename T> |
| 228 | class Dumpable { |
| 229 | public: |
| 230 | explicit Dumpable(T& value) : value_(value) { |
| 231 | } |
| 232 | |
| 233 | void Dump(std::ostream& os) const { |
| 234 | value_.Dump(os); |
| 235 | } |
| 236 | |
| 237 | private: |
| 238 | T& value_; |
Shih-wei Liao | 24782c6 | 2012-01-08 12:46:11 -0800 | [diff] [blame] | 239 | |
| 240 | // TODO: Remove the #if when Mac OS build server no longer uses GCC 4.2.*. |
| 241 | #if GCC_VERSION >= 40300 |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 242 | DISALLOW_COPY_AND_ASSIGN(Dumpable); |
Shih-wei Liao | 24782c6 | 2012-01-08 12:46:11 -0800 | [diff] [blame] | 243 | #endif |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 244 | }; |
| 245 | |
| 246 | template<typename T> |
| 247 | std::ostream& operator<<(std::ostream& os, const Dumpable<T>& rhs) { |
| 248 | rhs.Dump(os); |
| 249 | return os; |
| 250 | } |
| 251 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 252 | template<typename T> |
| 253 | class MutatorLockedDumpable { |
| 254 | public: |
| 255 | explicit MutatorLockedDumpable(T& value) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 256 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) : value_(value) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 257 | } |
| 258 | |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 259 | void Dump(std::ostream& os) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 260 | value_.Dump(os); |
| 261 | } |
| 262 | |
| 263 | private: |
| 264 | T& value_; |
| 265 | |
| 266 | // TODO: Remove the #if when Mac OS build server no longer uses GCC 4.2.*. |
| 267 | #if GCC_VERSION >= 40300 |
| 268 | DISALLOW_COPY_AND_ASSIGN(MutatorLockedDumpable); |
| 269 | #endif |
| 270 | }; |
| 271 | |
| 272 | template<typename T> |
| 273 | std::ostream& operator<<(std::ostream& os, const MutatorLockedDumpable<T>& rhs) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 274 | // TODO: should be SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) however annotalysis |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 275 | // currently fails for this. |
| 276 | NO_THREAD_SAFETY_ANALYSIS { |
| 277 | rhs.Dump(os); |
| 278 | return os; |
| 279 | } |
| 280 | |
Elliott Hughes | 3f6635a | 2012-06-19 13:37:49 -0700 | [diff] [blame] | 281 | // Helps you use operator<< in a const char*-like context such as our various 'F' methods with |
| 282 | // format strings. |
| 283 | template<typename T> |
| 284 | class ToStr { |
| 285 | public: |
Elliott Hughes | 7484741 | 2012-06-20 18:10:21 -0700 | [diff] [blame] | 286 | explicit ToStr(const T& value) { |
Elliott Hughes | 3f6635a | 2012-06-19 13:37:49 -0700 | [diff] [blame] | 287 | std::ostringstream os; |
| 288 | os << value; |
| 289 | s_ = os.str(); |
| 290 | } |
| 291 | |
| 292 | const char* c_str() const { |
| 293 | return s_.c_str(); |
| 294 | } |
| 295 | |
| 296 | const std::string& str() const { |
| 297 | return s_; |
| 298 | } |
| 299 | |
| 300 | private: |
| 301 | std::string s_; |
| 302 | DISALLOW_COPY_AND_ASSIGN(ToStr); |
| 303 | }; |
| 304 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 305 | // The members of this struct are the valid arguments to VLOG and VLOG_IS_ON in code, |
| 306 | // and the "-verbose:" command line argument. |
| 307 | struct LogVerbosity { |
| 308 | bool class_linker; // Enabled with "-verbose:class". |
| 309 | bool compiler; |
| 310 | bool heap; |
| 311 | bool gc; |
| 312 | bool jdwp; |
| 313 | bool jni; |
| 314 | bool monitor; |
| 315 | bool startup; |
| 316 | bool third_party_jni; // Enabled with "-verbose:third-party-jni". |
| 317 | bool threads; |
| 318 | }; |
| 319 | |
| 320 | extern LogVerbosity gLogVerbosity; |
Elliott Hughes | 0d39c12 | 2012-06-06 16:41:17 -0700 | [diff] [blame] | 321 | extern void InitLogging(char* argv[]); |
| 322 | |
| 323 | extern const char* GetCmdLine(); |
| 324 | extern const char* ProgramInvocationName(); |
| 325 | extern const char* ProgramInvocationShortName(); |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 326 | |
Elliott Hughes | 3ea7e99 | 2011-10-11 18:48:16 -0700 | [diff] [blame] | 327 | } // namespace art |
| 328 | |
Carl Shapiro | 6b6b5f0 | 2011-06-21 15:05:09 -0700 | [diff] [blame] | 329 | #endif // ART_SRC_LOGGING_H_ |