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

Side by Side Diff: src/debug/debug-evaluate.cc

Issue 2766593002: [csa] Migrate String.prototype.concat to TurboFan builtin. (Closed)
Patch Set: Magical list is magic... Created 3 years, 9 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/code-factory.h ('k') | src/js/string.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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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/debug/debug-evaluate.h" 5 #include "src/debug/debug-evaluate.h"
6 6
7 #include "src/accessors.h" 7 #include "src/accessors.h"
8 #include "src/compiler.h" 8 #include "src/compiler.h"
9 #include "src/contexts.h" 9 #include "src/contexts.h"
10 #include "src/debug/debug-frames.h" 10 #include "src/debug/debug-frames.h"
(...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 case Builtins::kNumberPrototypeToFixed: 517 case Builtins::kNumberPrototypeToFixed:
518 case Builtins::kNumberPrototypeToPrecision: 518 case Builtins::kNumberPrototypeToPrecision:
519 case Builtins::kNumberPrototypeToString: 519 case Builtins::kNumberPrototypeToString:
520 case Builtins::kNumberPrototypeValueOf: 520 case Builtins::kNumberPrototypeValueOf:
521 // String builtins. Strings are immutable. 521 // String builtins. Strings are immutable.
522 case Builtins::kStringFromCharCode: 522 case Builtins::kStringFromCharCode:
523 case Builtins::kStringFromCodePoint: 523 case Builtins::kStringFromCodePoint:
524 case Builtins::kStringConstructor: 524 case Builtins::kStringConstructor:
525 case Builtins::kStringPrototypeCharAt: 525 case Builtins::kStringPrototypeCharAt:
526 case Builtins::kStringPrototypeCharCodeAt: 526 case Builtins::kStringPrototypeCharCodeAt:
527 case Builtins::kStringPrototypeConcat:
527 case Builtins::kStringPrototypeEndsWith: 528 case Builtins::kStringPrototypeEndsWith:
528 case Builtins::kStringPrototypeIncludes: 529 case Builtins::kStringPrototypeIncludes:
529 case Builtins::kStringPrototypeIndexOf: 530 case Builtins::kStringPrototypeIndexOf:
530 case Builtins::kStringPrototypeLastIndexOf: 531 case Builtins::kStringPrototypeLastIndexOf:
531 case Builtins::kStringPrototypeStartsWith: 532 case Builtins::kStringPrototypeStartsWith:
532 case Builtins::kStringPrototypeSubstr: 533 case Builtins::kStringPrototypeSubstr:
533 case Builtins::kStringPrototypeSubstring: 534 case Builtins::kStringPrototypeSubstring:
534 case Builtins::kStringPrototypeToString: 535 case Builtins::kStringPrototypeToString:
535 case Builtins::kStringPrototypeToLowerCase: 536 case Builtins::kStringPrototypeToLowerCase:
536 case Builtins::kStringPrototypeToUpperCase: 537 case Builtins::kStringPrototypeToUpperCase:
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
634 635
635 if (FLAG_trace_side_effect_free_debug_evaluate) { 636 if (FLAG_trace_side_effect_free_debug_evaluate) {
636 PrintF("[debug-evaluate] API Callback at %p may cause side effect.\n", 637 PrintF("[debug-evaluate] API Callback at %p may cause side effect.\n",
637 reinterpret_cast<void*>(function_addr)); 638 reinterpret_cast<void*>(function_addr));
638 } 639 }
639 return false; 640 return false;
640 } 641 }
641 642
642 } // namespace internal 643 } // namespace internal
643 } // namespace v8 644 } // namespace v8
OLDNEW
« no previous file with comments | « src/code-factory.h ('k') | src/js/string.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698