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 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 17 | #ifndef ART_RUNTIME_BASE_LOGGING_H_ |
| 18 | #define ART_RUNTIME_BASE_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 |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 23 | #include <memory> |
Elliott Hughes | eb4f614 | 2011-07-15 17:43:51 -0700 | [diff] [blame] | 24 | #include <sstream> |
Brian Carlstrom | af1b892 | 2012-11-27 15:19:57 -0800 | [diff] [blame] | 25 | #include <signal.h> |
Mingyao Yang | 42d65c5 | 2014-04-18 16:49:39 -0700 | [diff] [blame] | 26 | #include <vector> |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 27 | |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 28 | #include "base/macros.h" |
Elliott Hughes | eb4f614 | 2011-07-15 17:43:51 -0700 | [diff] [blame] | 29 | #include "log_severity.h" |
Carl Shapiro | 6c21dc1 | 2011-06-20 15:20:52 -0700 | [diff] [blame] | 30 | |
| 31 | #define CHECK(x) \ |
Ian Rogers | caab8c4 | 2011-10-12 12:11:18 -0700 | [diff] [blame] | 32 | if (UNLIKELY(!(x))) \ |
Elliott Hughes | f5a7a47 | 2011-10-07 14:31:02 -0700 | [diff] [blame] | 33 | ::art::LogMessage(__FILE__, __LINE__, FATAL, -1).stream() \ |
Elliott Hughes | 710a0cb | 2011-08-16 14:32:37 -0700 | [diff] [blame] | 34 | << "Check failed: " #x << " " |
Elliott Hughes | eb4f614 | 2011-07-15 17:43:51 -0700 | [diff] [blame] | 35 | |
Elliott Hughes | 1f359b0 | 2011-07-17 14:27:17 -0700 | [diff] [blame] | 36 | #define CHECK_OP(LHS, RHS, OP) \ |
Mathieu Chartier | 9b3c3cd | 2013-08-12 17:41:54 -0700 | [diff] [blame] | 37 | for (auto _values = ::art::MakeEagerEvaluator(LHS, RHS); \ |
Elliott Hughes | 362f9bc | 2011-10-17 18:56:41 -0700 | [diff] [blame] | 38 | UNLIKELY(!(_values.lhs OP _values.rhs)); /* empty */) \ |
Elliott Hughes | f5a7a47 | 2011-10-07 14:31:02 -0700 | [diff] [blame] | 39 | ::art::LogMessage(__FILE__, __LINE__, FATAL, -1).stream() \ |
| 40 | << "Check failed: " << #LHS << " " << #OP << " " << #RHS \ |
| 41 | << " (" #LHS "=" << _values.lhs << ", " #RHS "=" << _values.rhs << ") " |
Elliott Hughes | 1f359b0 | 2011-07-17 14:27:17 -0700 | [diff] [blame] | 42 | |
| 43 | #define CHECK_EQ(x, y) CHECK_OP(x, y, ==) |
| 44 | #define CHECK_NE(x, y) CHECK_OP(x, y, !=) |
| 45 | #define CHECK_LE(x, y) CHECK_OP(x, y, <=) |
| 46 | #define CHECK_LT(x, y) CHECK_OP(x, y, <) |
| 47 | #define CHECK_GE(x, y) CHECK_OP(x, y, >=) |
| 48 | #define CHECK_GT(x, y) CHECK_OP(x, y, >) |
Elliott Hughes | eb4f614 | 2011-07-15 17:43:51 -0700 | [diff] [blame] | 49 | |
| 50 | #define CHECK_STROP(s1, s2, sense) \ |
Ian Rogers | caab8c4 | 2011-10-12 12:11:18 -0700 | [diff] [blame] | 51 | if (UNLIKELY((strcmp(s1, s2) == 0) != sense)) \ |
Elliott Hughes | f5a7a47 | 2011-10-07 14:31:02 -0700 | [diff] [blame] | 52 | LOG(FATAL) << "Check failed: " \ |
| 53 | << "\"" << s1 << "\"" \ |
| 54 | << (sense ? " == " : " != ") \ |
| 55 | << "\"" << s2 << "\"" |
Carl Shapiro | 6c21dc1 | 2011-06-20 15:20:52 -0700 | [diff] [blame] | 56 | |
Elliott Hughes | 1f359b0 | 2011-07-17 14:27:17 -0700 | [diff] [blame] | 57 | #define CHECK_STREQ(s1, s2) CHECK_STROP(s1, s2, true) |
| 58 | #define CHECK_STRNE(s1, s2) CHECK_STROP(s1, s2, false) |
| 59 | |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 60 | #define CHECK_PTHREAD_CALL(call, args, what) \ |
| 61 | do { \ |
| 62 | int rc = call args; \ |
| 63 | if (rc != 0) { \ |
| 64 | errno = rc; \ |
| 65 | PLOG(FATAL) << # call << " failed for " << what; \ |
| 66 | } \ |
| 67 | } while (false) |
| 68 | |
Carl Shapiro | 6c21dc1 | 2011-06-20 15:20:52 -0700 | [diff] [blame] | 69 | #ifndef NDEBUG |
| 70 | |
| 71 | #define DCHECK(x) CHECK(x) |
| 72 | #define DCHECK_EQ(x, y) CHECK_EQ(x, y) |
| 73 | #define DCHECK_NE(x, y) CHECK_NE(x, y) |
| 74 | #define DCHECK_LE(x, y) CHECK_LE(x, y) |
| 75 | #define DCHECK_LT(x, y) CHECK_LT(x, y) |
| 76 | #define DCHECK_GE(x, y) CHECK_GE(x, y) |
| 77 | #define DCHECK_GT(x, y) CHECK_GT(x, y) |
Elliott Hughes | eb4f614 | 2011-07-15 17:43:51 -0700 | [diff] [blame] | 78 | #define DCHECK_STREQ(s1, s2) CHECK_STREQ(s1, s2) |
| 79 | #define DCHECK_STRNE(s1, s2) CHECK_STRNE(s1, s2) |
Carl Shapiro | 6c21dc1 | 2011-06-20 15:20:52 -0700 | [diff] [blame] | 80 | |
| 81 | #else // NDEBUG |
| 82 | |
| 83 | #define DCHECK(condition) \ |
| 84 | while (false) \ |
| 85 | CHECK(condition) |
| 86 | |
| 87 | #define DCHECK_EQ(val1, val2) \ |
| 88 | while (false) \ |
| 89 | CHECK_EQ(val1, val2) |
| 90 | |
| 91 | #define DCHECK_NE(val1, val2) \ |
| 92 | while (false) \ |
| 93 | CHECK_NE(val1, val2) |
| 94 | |
| 95 | #define DCHECK_LE(val1, val2) \ |
| 96 | while (false) \ |
| 97 | CHECK_LE(val1, val2) |
| 98 | |
| 99 | #define DCHECK_LT(val1, val2) \ |
| 100 | while (false) \ |
| 101 | CHECK_LT(val1, val2) |
| 102 | |
| 103 | #define DCHECK_GE(val1, val2) \ |
| 104 | while (false) \ |
| 105 | CHECK_GE(val1, val2) |
| 106 | |
| 107 | #define DCHECK_GT(val1, val2) \ |
| 108 | while (false) \ |
| 109 | CHECK_GT(val1, val2) |
| 110 | |
| 111 | #define DCHECK_STREQ(str1, str2) \ |
| 112 | while (false) \ |
| 113 | CHECK_STREQ(str1, str2) |
| 114 | |
Elliott Hughes | eb4f614 | 2011-07-15 17:43:51 -0700 | [diff] [blame] | 115 | #define DCHECK_STRNE(str1, str2) \ |
| 116 | while (false) \ |
| 117 | CHECK_STRNE(str1, str2) |
| 118 | |
Carl Shapiro | 6c21dc1 | 2011-06-20 15:20:52 -0700 | [diff] [blame] | 119 | #endif |
| 120 | |
Elliott Hughes | f5a7a47 | 2011-10-07 14:31:02 -0700 | [diff] [blame] | 121 | #define LOG(severity) ::art::LogMessage(__FILE__, __LINE__, severity, -1).stream() |
| 122 | #define PLOG(severity) ::art::LogMessage(__FILE__, __LINE__, severity, errno).stream() |
Elliott Hughes | eb4f614 | 2011-07-15 17:43:51 -0700 | [diff] [blame] | 123 | |
Carl Shapiro | 6c21dc1 | 2011-06-20 15:20:52 -0700 | [diff] [blame] | 124 | #define LG LOG(INFO) |
| 125 | |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 126 | #define UNIMPLEMENTED(level) LOG(level) << __PRETTY_FUNCTION__ << " unimplemented " |
Elliott Hughes | 53b6131 | 2011-08-12 18:28:20 -0700 | [diff] [blame] | 127 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 128 | #define VLOG_IS_ON(module) UNLIKELY(::art::gLogVerbosity.module) |
| 129 | #define VLOG(module) if (VLOG_IS_ON(module)) ::art::LogMessage(__FILE__, __LINE__, INFO, -1).stream() |
Anwar Ghuloum | 75a43f1 | 2013-08-13 17:22:14 -0700 | [diff] [blame] | 130 | #define VLOG_STREAM(module) ::art::LogMessage(__FILE__, __LINE__, INFO, -1).stream() |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 131 | |
Elliott Hughes | 3ea7e99 | 2011-10-11 18:48:16 -0700 | [diff] [blame] | 132 | // |
| 133 | // Implementation details beyond this point. |
| 134 | // |
| 135 | |
| 136 | namespace art { |
| 137 | |
| 138 | template <typename LHS, typename RHS> |
| 139 | struct EagerEvaluator { |
| 140 | EagerEvaluator(LHS lhs, RHS rhs) : lhs(lhs), rhs(rhs) { } |
| 141 | LHS lhs; |
| 142 | RHS rhs; |
| 143 | }; |
| 144 | |
Elliott Hughes | aa6a588 | 2012-01-13 19:39:16 -0800 | [diff] [blame] | 145 | // We want char*s to be treated as pointers, not strings. If you want them treated like strings, |
| 146 | // you'd need to use CHECK_STREQ and CHECK_STRNE anyway to compare the characters rather than their |
| 147 | // addresses. We could express this more succinctly with std::remove_const, but this is quick and |
| 148 | // easy to understand, and works before we have C++0x. We rely on signed/unsigned warnings to |
| 149 | // protect you against combinations not explicitly listed below. |
| 150 | #define EAGER_PTR_EVALUATOR(T1, T2) \ |
| 151 | template <> struct EagerEvaluator<T1, T2> { \ |
| 152 | EagerEvaluator(T1 lhs, T2 rhs) \ |
| 153 | : lhs(reinterpret_cast<const void*>(lhs)), \ |
| 154 | rhs(reinterpret_cast<const void*>(rhs)) { } \ |
| 155 | const void* lhs; \ |
| 156 | const void* rhs; \ |
| 157 | } |
| 158 | EAGER_PTR_EVALUATOR(const char*, const char*); |
| 159 | EAGER_PTR_EVALUATOR(const char*, char*); |
| 160 | EAGER_PTR_EVALUATOR(char*, const char*); |
| 161 | EAGER_PTR_EVALUATOR(char*, char*); |
| 162 | EAGER_PTR_EVALUATOR(const unsigned char*, const unsigned char*); |
| 163 | EAGER_PTR_EVALUATOR(const unsigned char*, unsigned char*); |
| 164 | EAGER_PTR_EVALUATOR(unsigned char*, const unsigned char*); |
| 165 | EAGER_PTR_EVALUATOR(unsigned char*, unsigned char*); |
| 166 | EAGER_PTR_EVALUATOR(const signed char*, const signed char*); |
| 167 | EAGER_PTR_EVALUATOR(const signed char*, signed char*); |
| 168 | EAGER_PTR_EVALUATOR(signed char*, const signed char*); |
| 169 | EAGER_PTR_EVALUATOR(signed char*, signed char*); |
| 170 | |
Mathieu Chartier | 9b3c3cd | 2013-08-12 17:41:54 -0700 | [diff] [blame] | 171 | template <typename LHS, typename RHS> |
| 172 | EagerEvaluator<LHS, RHS> MakeEagerEvaluator(LHS lhs, RHS rhs) { |
| 173 | return EagerEvaluator<LHS, RHS>(lhs, rhs); |
| 174 | } |
| 175 | |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 176 | // This indirection greatly reduces the stack impact of having |
| 177 | // lots of checks/logging in a function. |
| 178 | struct LogMessageData { |
| 179 | public: |
Brian Carlstrom | af1b892 | 2012-11-27 15:19:57 -0800 | [diff] [blame] | 180 | LogMessageData(const char* file, int line, LogSeverity severity, int error); |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 181 | std::ostringstream buffer; |
Ian Rogers | c4ee12e | 2013-05-16 11:19:53 -0700 | [diff] [blame] | 182 | const char* const file; |
| 183 | const int line_number; |
| 184 | const LogSeverity severity; |
| 185 | const int error; |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 186 | |
| 187 | private: |
| 188 | DISALLOW_COPY_AND_ASSIGN(LogMessageData); |
| 189 | }; |
| 190 | |
Elliott Hughes | 3ea7e99 | 2011-10-11 18:48:16 -0700 | [diff] [blame] | 191 | class LogMessage { |
| 192 | public: |
Brian Carlstrom | af1b892 | 2012-11-27 15:19:57 -0800 | [diff] [blame] | 193 | LogMessage(const char* file, int line, LogSeverity severity, int error) |
| 194 | : data_(new LogMessageData(file, line, severity, error)) { |
| 195 | } |
Sebastien Hertz | 74c0704 | 2013-05-17 14:04:12 +0200 | [diff] [blame] | 196 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 197 | ~LogMessage(); // TODO: enable LOCKS_EXCLUDED(Locks::logging_lock_). |
Sebastien Hertz | 74c0704 | 2013-05-17 14:04:12 +0200 | [diff] [blame] | 198 | |
| 199 | std::ostream& stream() { |
| 200 | return data_->buffer; |
| 201 | } |
Elliott Hughes | 3ea7e99 | 2011-10-11 18:48:16 -0700 | [diff] [blame] | 202 | |
| 203 | private: |
Brian Carlstrom | af1b892 | 2012-11-27 15:19:57 -0800 | [diff] [blame] | 204 | static void LogLine(const LogMessageData& data, const char*); |
Elliott Hughes | 3ea7e99 | 2011-10-11 18:48:16 -0700 | [diff] [blame] | 205 | |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 206 | const std::unique_ptr<LogMessageData> data_; |
Elliott Hughes | 3ea7e99 | 2011-10-11 18:48:16 -0700 | [diff] [blame] | 207 | |
Brian Carlstrom | af1b892 | 2012-11-27 15:19:57 -0800 | [diff] [blame] | 208 | friend void HandleUnexpectedSignal(int signal_number, siginfo_t* info, void* raw_context); |
Ian Rogers | c4ee12e | 2013-05-16 11:19:53 -0700 | [diff] [blame] | 209 | friend class Mutex; |
Elliott Hughes | 3ea7e99 | 2011-10-11 18:48:16 -0700 | [diff] [blame] | 210 | DISALLOW_COPY_AND_ASSIGN(LogMessage); |
| 211 | }; |
| 212 | |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 213 | // A convenience to allow any class with a "Dump(std::ostream& os)" member function |
| 214 | // but without an operator<< to be used as if it had an operator<<. Use like this: |
| 215 | // |
| 216 | // os << Dumpable<MyType>(my_type_instance); |
| 217 | // |
| 218 | template<typename T> |
| 219 | class Dumpable { |
| 220 | public: |
| 221 | explicit Dumpable(T& value) : value_(value) { |
| 222 | } |
| 223 | |
| 224 | void Dump(std::ostream& os) const { |
| 225 | value_.Dump(os); |
| 226 | } |
| 227 | |
| 228 | private: |
| 229 | T& value_; |
Shih-wei Liao | 24782c6 | 2012-01-08 12:46:11 -0800 | [diff] [blame] | 230 | |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 231 | DISALLOW_COPY_AND_ASSIGN(Dumpable); |
| 232 | }; |
| 233 | |
| 234 | template<typename T> |
| 235 | std::ostream& operator<<(std::ostream& os, const Dumpable<T>& rhs) { |
| 236 | rhs.Dump(os); |
| 237 | return os; |
| 238 | } |
| 239 | |
Mathieu Chartier | afe4998 | 2014-03-27 10:55:04 -0700 | [diff] [blame] | 240 | template<typename T> |
| 241 | class ConstDumpable { |
| 242 | public: |
| 243 | explicit ConstDumpable(const T& value) : value_(value) { |
| 244 | } |
| 245 | |
| 246 | void Dump(std::ostream& os) const { |
| 247 | value_.Dump(os); |
| 248 | } |
| 249 | |
| 250 | private: |
| 251 | const T& value_; |
| 252 | |
| 253 | DISALLOW_COPY_AND_ASSIGN(ConstDumpable); |
| 254 | }; |
| 255 | |
| 256 | template<typename T> |
| 257 | std::ostream& operator<<(std::ostream& os, const ConstDumpable<T>& rhs) { |
| 258 | rhs.Dump(os); |
| 259 | return os; |
| 260 | } |
| 261 | |
Elliott Hughes | 3f6635a | 2012-06-19 13:37:49 -0700 | [diff] [blame] | 262 | // Helps you use operator<< in a const char*-like context such as our various 'F' methods with |
| 263 | // format strings. |
| 264 | template<typename T> |
| 265 | class ToStr { |
| 266 | public: |
Elliott Hughes | 7484741 | 2012-06-20 18:10:21 -0700 | [diff] [blame] | 267 | explicit ToStr(const T& value) { |
Elliott Hughes | 3f6635a | 2012-06-19 13:37:49 -0700 | [diff] [blame] | 268 | std::ostringstream os; |
| 269 | os << value; |
| 270 | s_ = os.str(); |
| 271 | } |
| 272 | |
| 273 | const char* c_str() const { |
| 274 | return s_.c_str(); |
| 275 | } |
| 276 | |
| 277 | const std::string& str() const { |
| 278 | return s_; |
| 279 | } |
| 280 | |
| 281 | private: |
| 282 | std::string s_; |
| 283 | DISALLOW_COPY_AND_ASSIGN(ToStr); |
| 284 | }; |
| 285 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 286 | // The members of this struct are the valid arguments to VLOG and VLOG_IS_ON in code, |
| 287 | // and the "-verbose:" command line argument. |
| 288 | struct LogVerbosity { |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 289 | bool class_linker; // Enabled with "-verbose:class". |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 290 | bool compiler; |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 291 | bool gc; |
Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 292 | bool heap; |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 293 | bool jdwp; |
| 294 | bool jni; |
| 295 | bool monitor; |
Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 296 | bool profiler; |
| 297 | bool signals; |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 298 | bool startup; |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 299 | bool third_party_jni; // Enabled with "-verbose:third-party-jni". |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 300 | bool threads; |
Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 301 | bool verifier; |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 302 | }; |
| 303 | |
| 304 | extern LogVerbosity gLogVerbosity; |
Brian Carlstrom | 81b8871 | 2012-11-05 19:21:30 -0800 | [diff] [blame] | 305 | |
Mingyao Yang | 42d65c5 | 2014-04-18 16:49:39 -0700 | [diff] [blame] | 306 | extern std::vector<std::string> gVerboseMethods; |
| 307 | |
Brian Carlstrom | 81b8871 | 2012-11-05 19:21:30 -0800 | [diff] [blame] | 308 | // Used on fatal exit. Prevents recursive aborts. Allows us to disable |
| 309 | // some error checking to ensure fatal shutdown makes forward progress. |
Ian Rogers | f08e473 | 2013-04-09 09:45:49 -0700 | [diff] [blame] | 310 | extern unsigned int gAborting; |
Brian Carlstrom | 81b8871 | 2012-11-05 19:21:30 -0800 | [diff] [blame] | 311 | |
Elliott Hughes | 0d39c12 | 2012-06-06 16:41:17 -0700 | [diff] [blame] | 312 | extern void InitLogging(char* argv[]); |
| 313 | |
| 314 | extern const char* GetCmdLine(); |
| 315 | extern const char* ProgramInvocationName(); |
| 316 | extern const char* ProgramInvocationShortName(); |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 317 | |
Elliott Hughes | 3ea7e99 | 2011-10-11 18:48:16 -0700 | [diff] [blame] | 318 | } // namespace art |
| 319 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 320 | #endif // ART_RUNTIME_BASE_LOGGING_H_ |