Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: src/runtime/runtime-internal.cc

Issue 1706823003: Use displayName in Error.stack rendering if present. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/runtime/runtime.h ('k') | test/mjsunit/stack-traces-display-name.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/runtime/runtime-utils.h" 5 #include "src/runtime/runtime-utils.h"
6 6
7 #include "src/arguments.h" 7 #include "src/arguments.h"
8 #include "src/ast/prettyprinter.h" 8 #include "src/ast/prettyprinter.h"
9 #include "src/bootstrapper.h" 9 #include "src/bootstrapper.h"
10 #include "src/conversions.h" 10 #include "src/conversions.h"
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 } 341 }
342 342
343 343
344 static inline Object* ReturnBoolean(bool value, Isolate* isolate) { 344 static inline Object* ReturnBoolean(bool value, Isolate* isolate) {
345 return isolate->heap()->ToBoolean(value); 345 return isolate->heap()->ToBoolean(value);
346 } 346 }
347 347
348 348
349 CALLSITE_GET(GetFileName, ReturnDereferencedHandle) 349 CALLSITE_GET(GetFileName, ReturnDereferencedHandle)
350 CALLSITE_GET(GetFunctionName, ReturnDereferencedHandle) 350 CALLSITE_GET(GetFunctionName, ReturnDereferencedHandle)
351 CALLSITE_GET(GetDebugName, ReturnDereferencedHandle)
351 CALLSITE_GET(GetScriptNameOrSourceUrl, ReturnDereferencedHandle) 352 CALLSITE_GET(GetScriptNameOrSourceUrl, ReturnDereferencedHandle)
352 CALLSITE_GET(GetMethodName, ReturnDereferencedHandle) 353 CALLSITE_GET(GetMethodName, ReturnDereferencedHandle)
353 CALLSITE_GET(GetLineNumber, ReturnPositiveNumberOrNull) 354 CALLSITE_GET(GetLineNumber, ReturnPositiveNumberOrNull)
354 CALLSITE_GET(GetColumnNumber, ReturnPositiveNumberOrNull) 355 CALLSITE_GET(GetColumnNumber, ReturnPositiveNumberOrNull)
355 CALLSITE_GET(IsNative, ReturnBoolean) 356 CALLSITE_GET(IsNative, ReturnBoolean)
356 CALLSITE_GET(IsToplevel, ReturnBoolean) 357 CALLSITE_GET(IsToplevel, ReturnBoolean)
357 CALLSITE_GET(IsEval, ReturnBoolean) 358 CALLSITE_GET(IsEval, ReturnBoolean)
358 CALLSITE_GET(IsConstructor, ReturnBoolean) 359 CALLSITE_GET(IsConstructor, ReturnBoolean)
359 360
360 #undef CALLSITE_GET 361 #undef CALLSITE_GET
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 std::stringstream stats_stream; 485 std::stringstream stats_stream;
485 isolate->counters()->runtime_call_stats()->Print(stats_stream); 486 isolate->counters()->runtime_call_stats()->Print(stats_stream);
486 Handle<String> result = 487 Handle<String> result =
487 isolate->factory()->NewStringFromAsciiChecked(stats_stream.str().c_str()); 488 isolate->factory()->NewStringFromAsciiChecked(stats_stream.str().c_str());
488 isolate->counters()->runtime_call_stats()->Reset(); 489 isolate->counters()->runtime_call_stats()->Reset();
489 return *result; 490 return *result;
490 } 491 }
491 492
492 } // namespace internal 493 } // namespace internal
493 } // namespace v8 494 } // namespace v8
OLDNEW
« no previous file with comments | « src/runtime/runtime.h ('k') | test/mjsunit/stack-traces-display-name.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698