Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 1 | //===-- CommandObjectExpression.cpp -----------------------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "CommandObjectExpression.h" |
| 11 | |
| 12 | // C Includes |
| 13 | // C++ Includes |
| 14 | // Other libraries and framework includes |
| 15 | // Project includes |
Sean Callanan | 841026f | 2010-07-23 00:16:21 +0000 | [diff] [blame] | 16 | #include "lldb/Interpreter/Args.h" |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 17 | #include "lldb/Core/Value.h" |
| 18 | #include "lldb/Core/InputReader.h" |
Jim Ingham | 324067b | 2010-09-30 00:54:27 +0000 | [diff] [blame] | 19 | #include "lldb/Core/ValueObjectVariable.h" |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 20 | #include "lldb/Expression/ClangExpressionVariable.h" |
Sean Callanan | 65dafa8 | 2010-08-27 01:01:44 +0000 | [diff] [blame] | 21 | #include "lldb/Expression/ClangUserExpression.h" |
Stephen Wilson | 63c468c | 2010-07-23 21:47:22 +0000 | [diff] [blame] | 22 | #include "lldb/Expression/ClangFunction.h" |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 23 | #include "lldb/Expression/DWARFExpression.h" |
| 24 | #include "lldb/Host/Host.h" |
Sean Callanan | 841026f | 2010-07-23 00:16:21 +0000 | [diff] [blame] | 25 | #include "lldb/Core/Debugger.h" |
Greg Clayton | 63094e0 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 26 | #include "lldb/Interpreter/CommandInterpreter.h" |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 27 | #include "lldb/Interpreter/CommandReturnObject.h" |
Jim Ingham | 324067b | 2010-09-30 00:54:27 +0000 | [diff] [blame] | 28 | #include "lldb/Target/ObjCLanguageRuntime.h" |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 29 | #include "lldb/Symbol/ObjectFile.h" |
| 30 | #include "lldb/Symbol/Variable.h" |
| 31 | #include "lldb/Target/Process.h" |
| 32 | #include "lldb/Target/StackFrame.h" |
| 33 | #include "lldb/Target/Target.h" |
Sean Callanan | 841026f | 2010-07-23 00:16:21 +0000 | [diff] [blame] | 34 | #include "llvm/ADT/StringRef.h" |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 35 | |
| 36 | using namespace lldb; |
| 37 | using namespace lldb_private; |
| 38 | |
| 39 | CommandObjectExpression::CommandOptions::CommandOptions () : |
| 40 | Options() |
| 41 | { |
| 42 | // Keep only one place to reset the values to their defaults |
| 43 | ResetOptionValues(); |
| 44 | } |
| 45 | |
| 46 | |
| 47 | CommandObjectExpression::CommandOptions::~CommandOptions () |
| 48 | { |
| 49 | } |
| 50 | |
| 51 | Error |
| 52 | CommandObjectExpression::CommandOptions::SetOptionValue (int option_idx, const char *option_arg) |
| 53 | { |
| 54 | Error error; |
| 55 | |
| 56 | char short_option = (char) m_getopt_table[option_idx].val; |
| 57 | |
| 58 | switch (short_option) |
| 59 | { |
Caroline Tice | c1ad82e | 2010-09-07 22:38:08 +0000 | [diff] [blame] | 60 | //case 'l': |
| 61 | //if (language.SetLanguageFromCString (option_arg) == false) |
| 62 | //{ |
| 63 | // error.SetErrorStringWithFormat("Invalid language option argument '%s'.\n", option_arg); |
| 64 | //} |
| 65 | //break; |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 66 | |
| 67 | case 'g': |
| 68 | debug = true; |
| 69 | break; |
| 70 | |
| 71 | case 'f': |
| 72 | error = Args::StringToFormat(option_arg, format); |
| 73 | break; |
Jim Ingham | 324067b | 2010-09-30 00:54:27 +0000 | [diff] [blame] | 74 | |
| 75 | case 'o': |
| 76 | print_object = true; |
| 77 | break; |
Jim Ingham | ea9d426 | 2010-11-05 19:25:48 +0000 | [diff] [blame] | 78 | |
| 79 | case 'u': |
| 80 | bool success; |
| 81 | unwind_on_error = Args::StringToBoolean(option_arg, true, &success); |
| 82 | if (!success) |
| 83 | error.SetErrorStringWithFormat("Could not convert \"%s\" to a boolean value.", option_arg); |
| 84 | break; |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 85 | |
| 86 | default: |
| 87 | error.SetErrorStringWithFormat("Invalid short option character '%c'.\n", short_option); |
| 88 | break; |
| 89 | } |
| 90 | |
| 91 | return error; |
| 92 | } |
| 93 | |
| 94 | void |
| 95 | CommandObjectExpression::CommandOptions::ResetOptionValues () |
| 96 | { |
| 97 | Options::ResetOptionValues(); |
Caroline Tice | c1ad82e | 2010-09-07 22:38:08 +0000 | [diff] [blame] | 98 | //language.Clear(); |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 99 | debug = false; |
| 100 | format = eFormatDefault; |
Jim Ingham | 324067b | 2010-09-30 00:54:27 +0000 | [diff] [blame] | 101 | print_object = false; |
Jim Ingham | ea9d426 | 2010-11-05 19:25:48 +0000 | [diff] [blame] | 102 | unwind_on_error = true; |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 103 | show_types = true; |
| 104 | show_summary = true; |
| 105 | } |
| 106 | |
| 107 | const lldb::OptionDefinition* |
| 108 | CommandObjectExpression::CommandOptions::GetDefinitions () |
| 109 | { |
| 110 | return g_option_table; |
| 111 | } |
| 112 | |
Greg Clayton | 238c0a1 | 2010-09-18 01:14:36 +0000 | [diff] [blame] | 113 | CommandObjectExpression::CommandObjectExpression (CommandInterpreter &interpreter) : |
| 114 | CommandObject (interpreter, |
| 115 | "expression", |
Johnny Chen | 106a737 | 2010-09-30 18:16:58 +0000 | [diff] [blame] | 116 | "Evaluate a C/ObjC/C++ expression in the current program context, using variables currently in scope.", |
Caroline Tice | 43b014a | 2010-10-04 22:28:36 +0000 | [diff] [blame] | 117 | NULL), |
Johnny Chen | cc112ac | 2010-09-30 18:30:25 +0000 | [diff] [blame] | 118 | m_expr_line_count (0), |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 119 | m_expr_lines () |
| 120 | { |
| 121 | SetHelpLong( |
| 122 | "Examples: \n\ |
| 123 | \n\ |
| 124 | expr my_struct->a = my_array[3] \n\ |
| 125 | expr -f bin -- (index * 8) + 5 \n\ |
| 126 | expr char c[] = \"foo\"; c[0]\n"); |
Caroline Tice | 43b014a | 2010-10-04 22:28:36 +0000 | [diff] [blame] | 127 | |
| 128 | CommandArgumentEntry arg; |
| 129 | CommandArgumentData expression_arg; |
| 130 | |
| 131 | // Define the first (and only) variant of this arg. |
| 132 | expression_arg.arg_type = eArgTypeExpression; |
| 133 | expression_arg.arg_repetition = eArgRepeatPlain; |
| 134 | |
| 135 | // There is only one variant this argument could be; put it into the argument entry. |
| 136 | arg.push_back (expression_arg); |
| 137 | |
| 138 | // Push the data for the first argument into the m_arguments vector. |
| 139 | m_arguments.push_back (arg); |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | CommandObjectExpression::~CommandObjectExpression () |
| 143 | { |
| 144 | } |
| 145 | |
| 146 | Options * |
| 147 | CommandObjectExpression::GetOptions () |
| 148 | { |
| 149 | return &m_options; |
| 150 | } |
| 151 | |
| 152 | |
| 153 | bool |
| 154 | CommandObjectExpression::Execute |
| 155 | ( |
| 156 | Args& command, |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 157 | CommandReturnObject &result |
| 158 | ) |
| 159 | { |
| 160 | return false; |
| 161 | } |
| 162 | |
| 163 | |
| 164 | size_t |
| 165 | CommandObjectExpression::MultiLineExpressionCallback |
| 166 | ( |
| 167 | void *baton, |
Greg Clayton | 63094e0 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 168 | InputReader &reader, |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 169 | lldb::InputReaderAction notification, |
| 170 | const char *bytes, |
| 171 | size_t bytes_len |
| 172 | ) |
| 173 | { |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 174 | CommandObjectExpression *cmd_object_expr = (CommandObjectExpression *) baton; |
| 175 | |
| 176 | switch (notification) |
| 177 | { |
| 178 | case eInputReaderActivate: |
Greg Clayton | 63094e0 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 179 | reader.GetDebugger().GetOutputStream().Printf("%s\n", "Enter expressions, then terminate with an empty line to evaluate:"); |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 180 | // Fall through |
| 181 | case eInputReaderReactivate: |
| 182 | //if (out_fh) |
Greg Clayton | 63094e0 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 183 | // reader.GetDebugger().GetOutputStream().Printf ("%3u: ", cmd_object_expr->m_expr_line_count); |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 184 | break; |
| 185 | |
| 186 | case eInputReaderDeactivate: |
| 187 | break; |
| 188 | |
| 189 | case eInputReaderGotToken: |
| 190 | ++cmd_object_expr->m_expr_line_count; |
| 191 | if (bytes && bytes_len) |
| 192 | { |
| 193 | cmd_object_expr->m_expr_lines.append (bytes, bytes_len + 1); |
| 194 | } |
| 195 | |
| 196 | if (bytes_len == 0) |
Greg Clayton | 63094e0 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 197 | reader.SetIsDone(true); |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 198 | //else if (out_fh && !reader->IsDone()) |
| 199 | // ::fprintf (out_fh, "%3u: ", cmd_object_expr->m_expr_line_count); |
| 200 | break; |
| 201 | |
| 202 | case eInputReaderDone: |
| 203 | { |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 204 | cmd_object_expr->EvaluateExpression (cmd_object_expr->m_expr_lines.c_str(), |
Greg Clayton | 63094e0 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 205 | reader.GetDebugger().GetOutputStream(), |
| 206 | reader.GetDebugger().GetErrorStream()); |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 207 | } |
| 208 | break; |
| 209 | } |
| 210 | |
| 211 | return bytes_len; |
| 212 | } |
| 213 | |
| 214 | bool |
Greg Clayton | 66ed2fb | 2010-10-05 00:00:42 +0000 | [diff] [blame] | 215 | CommandObjectExpression::EvaluateExpression |
| 216 | ( |
| 217 | const char *expr, |
Greg Clayton | 66ed2fb | 2010-10-05 00:00:42 +0000 | [diff] [blame] | 218 | Stream &output_stream, |
| 219 | Stream &error_stream, |
| 220 | CommandReturnObject *result |
| 221 | ) |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 222 | { |
Sean Callanan | f18d91c | 2010-09-01 00:58:00 +0000 | [diff] [blame] | 223 | if (!m_exe_ctx.process) |
| 224 | { |
Jim Ingham | deb0fd2 | 2010-09-01 19:53:33 +0000 | [diff] [blame] | 225 | error_stream.Printf ("Execution context doesn't contain a process\n"); |
Sean Callanan | f18d91c | 2010-09-01 00:58:00 +0000 | [diff] [blame] | 226 | return false; |
| 227 | } |
| 228 | |
Sean Callanan | 77e9394 | 2010-10-29 00:29:03 +0000 | [diff] [blame] | 229 | const char *prefix = NULL; |
| 230 | |
| 231 | if (m_exe_ctx.target) |
| 232 | prefix = m_exe_ctx.target->GetExpressionPrefixContentsAsCString(); |
| 233 | |
Jim Ingham | ea9d426 | 2010-11-05 19:25:48 +0000 | [diff] [blame] | 234 | lldb::ValueObjectSP result_valobj_sp (ClangUserExpression::Evaluate (m_exe_ctx, m_options.unwind_on_error, expr, prefix)); |
Greg Clayton | d171972 | 2010-10-05 03:13:51 +0000 | [diff] [blame] | 235 | assert (result_valobj_sp.get()); |
| 236 | if (result_valobj_sp->GetError().Success()) |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 237 | { |
Greg Clayton | 11730f3 | 2010-10-06 03:09:11 +0000 | [diff] [blame] | 238 | if (m_options.format != eFormatDefault) |
| 239 | result_valobj_sp->SetFormat (m_options.format); |
| 240 | |
Greg Clayton | 377e0b4 | 2010-10-05 00:31:29 +0000 | [diff] [blame] | 241 | ValueObject::DumpValueObject (output_stream, |
| 242 | m_exe_ctx.GetBestExecutionContextScope(), |
| 243 | result_valobj_sp.get(), // Variable object to dump |
| 244 | result_valobj_sp->GetName().AsCString(),// Root object name |
| 245 | 0, // Pointer depth to traverse (zero means stop at pointers) |
| 246 | 0, // Current depth, this is the top most, so zero... |
| 247 | UINT32_MAX, // Max depth to go when dumping concrete types, dump everything... |
| 248 | m_options.show_types, // Show types when dumping? |
| 249 | false, // Show locations of variables, no since this is a host address which we don't care to see |
| 250 | m_options.print_object, // Print the objective C object? |
Greg Clayton | bf8e42b | 2010-10-14 22:52:14 +0000 | [diff] [blame] | 251 | true, // Scope is already checked. Const results are always in scope. |
| 252 | false); // Don't flatten output |
Johnny Chen | 0deefc7 | 2010-08-13 00:42:30 +0000 | [diff] [blame] | 253 | if (result) |
| 254 | result->SetStatus (eReturnStatusSuccessFinishResult); |
Sean Callanan | 841026f | 2010-07-23 00:16:21 +0000 | [diff] [blame] | 255 | } |
| 256 | else |
| 257 | { |
Greg Clayton | d171972 | 2010-10-05 03:13:51 +0000 | [diff] [blame] | 258 | error_stream.PutCString(result_valobj_sp->GetError().AsCString()); |
Johnny Chen | 0deefc7 | 2010-08-13 00:42:30 +0000 | [diff] [blame] | 259 | if (result) |
Greg Clayton | d171972 | 2010-10-05 03:13:51 +0000 | [diff] [blame] | 260 | result->SetStatus (eReturnStatusFailed); |
Sean Callanan | 841026f | 2010-07-23 00:16:21 +0000 | [diff] [blame] | 261 | } |
Sean Callanan | 82b74c8 | 2010-08-12 01:56:52 +0000 | [diff] [blame] | 262 | |
Sean Callanan | 841026f | 2010-07-23 00:16:21 +0000 | [diff] [blame] | 263 | return true; |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | bool |
| 267 | CommandObjectExpression::ExecuteRawCommandString |
| 268 | ( |
| 269 | const char *command, |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 270 | CommandReturnObject &result |
| 271 | ) |
| 272 | { |
Greg Clayton | 238c0a1 | 2010-09-18 01:14:36 +0000 | [diff] [blame] | 273 | m_exe_ctx = m_interpreter.GetDebugger().GetExecutionContext(); |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 274 | |
| 275 | m_options.ResetOptionValues(); |
| 276 | |
| 277 | const char * expr = NULL; |
| 278 | |
| 279 | if (command[0] == '\0') |
| 280 | { |
| 281 | m_expr_lines.clear(); |
| 282 | m_expr_line_count = 0; |
| 283 | |
Greg Clayton | 238c0a1 | 2010-09-18 01:14:36 +0000 | [diff] [blame] | 284 | InputReaderSP reader_sp (new InputReader(m_interpreter.GetDebugger())); |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 285 | if (reader_sp) |
| 286 | { |
| 287 | Error err (reader_sp->Initialize (CommandObjectExpression::MultiLineExpressionCallback, |
| 288 | this, // baton |
| 289 | eInputReaderGranularityLine, // token size, to pass to callback function |
Greg Clayton | 63094e0 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 290 | NULL, // end token |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 291 | NULL, // prompt |
| 292 | true)); // echo input |
| 293 | if (err.Success()) |
| 294 | { |
Greg Clayton | 238c0a1 | 2010-09-18 01:14:36 +0000 | [diff] [blame] | 295 | m_interpreter.GetDebugger().PushInputReader (reader_sp); |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 296 | result.SetStatus (eReturnStatusSuccessFinishNoResult); |
| 297 | } |
| 298 | else |
| 299 | { |
| 300 | result.AppendError (err.AsCString()); |
| 301 | result.SetStatus (eReturnStatusFailed); |
| 302 | } |
| 303 | } |
| 304 | else |
| 305 | { |
| 306 | result.AppendError("out of memory"); |
| 307 | result.SetStatus (eReturnStatusFailed); |
| 308 | } |
| 309 | return result.Succeeded(); |
| 310 | } |
| 311 | |
| 312 | if (command[0] == '-') |
| 313 | { |
| 314 | // We have some options and these options MUST end with --. |
| 315 | const char *end_options = NULL; |
| 316 | const char *s = command; |
| 317 | while (s && s[0]) |
| 318 | { |
| 319 | end_options = ::strstr (s, "--"); |
| 320 | if (end_options) |
| 321 | { |
| 322 | end_options += 2; // Get past the "--" |
| 323 | if (::isspace (end_options[0])) |
| 324 | { |
| 325 | expr = end_options; |
| 326 | while (::isspace (*expr)) |
| 327 | ++expr; |
| 328 | break; |
| 329 | } |
| 330 | } |
| 331 | s = end_options; |
| 332 | } |
| 333 | |
| 334 | if (end_options) |
| 335 | { |
Greg Clayton | 63094e0 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 336 | Args args (command, end_options - command); |
Greg Clayton | 238c0a1 | 2010-09-18 01:14:36 +0000 | [diff] [blame] | 337 | if (!ParseOptions (args, result)) |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 338 | return false; |
| 339 | } |
| 340 | } |
| 341 | |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 342 | if (expr == NULL) |
| 343 | expr = command; |
Sean Callanan | 46b6249 | 2010-06-24 00:16:27 +0000 | [diff] [blame] | 344 | |
Greg Clayton | 377e0b4 | 2010-10-05 00:31:29 +0000 | [diff] [blame] | 345 | if (EvaluateExpression (expr, result.GetOutputStream(), result.GetErrorStream(), &result)) |
Johnny Chen | 0deefc7 | 2010-08-13 00:42:30 +0000 | [diff] [blame] | 346 | return true; |
| 347 | |
| 348 | result.SetStatus (eReturnStatusFailed); |
| 349 | return false; |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 350 | } |
| 351 | |
| 352 | lldb::OptionDefinition |
| 353 | CommandObjectExpression::CommandOptions::g_option_table[] = |
| 354 | { |
Caroline Tice | c1ad82e | 2010-09-07 22:38:08 +0000 | [diff] [blame] | 355 | //{ LLDB_OPT_SET_ALL, false, "language", 'l', required_argument, NULL, 0, "[c|c++|objc|objc++]", "Sets the language to use when parsing the expression."}, |
Caroline Tice | 4d6675c | 2010-10-01 19:59:14 +0000 | [diff] [blame] | 356 | //{ LLDB_OPT_SET_1, false, "format", 'f', required_argument, NULL, 0, "[ [bool|b] | [bin] | [char|c] | [oct|o] | [dec|i|d|u] | [hex|x] | [float|f] | [cstr|s] ]", "Specify the format that the expression output should use."}, |
| 357 | { LLDB_OPT_SET_1, false, "format", 'f', required_argument, NULL, 0, eArgTypeExprFormat, "Specify the format that the expression output should use."}, |
Jim Ingham | ea9d426 | 2010-11-05 19:25:48 +0000 | [diff] [blame] | 358 | { LLDB_OPT_SET_2, false, "object-description", 'o', no_argument, NULL, 0, eArgTypeNone, "Print the object description of the value resulting from the expression."}, |
| 359 | { LLDB_OPT_SET_ALL, false, "unwind-on-error", 'u', required_argument, NULL, 0, eArgTypeBoolean, "Clean up program state if the expression causes a crash, breakpoint hit or signal."}, |
Caroline Tice | 4d6675c | 2010-10-01 19:59:14 +0000 | [diff] [blame] | 360 | { LLDB_OPT_SET_ALL, false, "debug", 'g', no_argument, NULL, 0, eArgTypeNone, "Enable verbose debug logging of the expression parsing and evaluation."}, |
| 361 | { LLDB_OPT_SET_ALL, false, "use-ir", 'i', no_argument, NULL, 0, eArgTypeNone, "[Temporary] Instructs the expression evaluator to use IR instead of ASTs."}, |
| 362 | { 0, false, NULL, 0, 0, NULL, NULL, eArgTypeNone, NULL } |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 363 | }; |
| 364 | |