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

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

Issue 2870013004: [builtins] String.prototype.slice as a CSA builtin. (Closed)
Patch Set: REBASE. Created 3 years, 7 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-stub-assembler.cc ('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 566 matching lines...) Expand 10 before | Expand all | Expand 10 after
577 case Builtins::kStringFromCharCode: 577 case Builtins::kStringFromCharCode:
578 case Builtins::kStringFromCodePoint: 578 case Builtins::kStringFromCodePoint:
579 case Builtins::kStringConstructor: 579 case Builtins::kStringConstructor:
580 case Builtins::kStringPrototypeCharAt: 580 case Builtins::kStringPrototypeCharAt:
581 case Builtins::kStringPrototypeCharCodeAt: 581 case Builtins::kStringPrototypeCharCodeAt:
582 case Builtins::kStringPrototypeConcat: 582 case Builtins::kStringPrototypeConcat:
583 case Builtins::kStringPrototypeEndsWith: 583 case Builtins::kStringPrototypeEndsWith:
584 case Builtins::kStringPrototypeIncludes: 584 case Builtins::kStringPrototypeIncludes:
585 case Builtins::kStringPrototypeIndexOf: 585 case Builtins::kStringPrototypeIndexOf:
586 case Builtins::kStringPrototypeLastIndexOf: 586 case Builtins::kStringPrototypeLastIndexOf:
587 case Builtins::kStringPrototypeSlice:
587 case Builtins::kStringPrototypeStartsWith: 588 case Builtins::kStringPrototypeStartsWith:
588 case Builtins::kStringPrototypeSubstr: 589 case Builtins::kStringPrototypeSubstr:
589 case Builtins::kStringPrototypeSubstring: 590 case Builtins::kStringPrototypeSubstring:
590 case Builtins::kStringPrototypeToString: 591 case Builtins::kStringPrototypeToString:
591 case Builtins::kStringPrototypeToLowerCase: 592 case Builtins::kStringPrototypeToLowerCase:
592 case Builtins::kStringPrototypeToUpperCase: 593 case Builtins::kStringPrototypeToUpperCase:
593 case Builtins::kStringPrototypeTrim: 594 case Builtins::kStringPrototypeTrim:
594 case Builtins::kStringPrototypeTrimLeft: 595 case Builtins::kStringPrototypeTrimLeft:
595 case Builtins::kStringPrototypeTrimRight: 596 case Builtins::kStringPrototypeTrimRight:
596 case Builtins::kStringPrototypeValueOf: 597 case Builtins::kStringPrototypeValueOf:
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
708 709
709 if (FLAG_trace_side_effect_free_debug_evaluate) { 710 if (FLAG_trace_side_effect_free_debug_evaluate) {
710 PrintF("[debug-evaluate] API Callback at %p may cause side effect.\n", 711 PrintF("[debug-evaluate] API Callback at %p may cause side effect.\n",
711 reinterpret_cast<void*>(function_addr)); 712 reinterpret_cast<void*>(function_addr));
712 } 713 }
713 return false; 714 return false;
714 } 715 }
715 716
716 } // namespace internal 717 } // namespace internal
717 } // namespace v8 718 } // namespace v8
OLDNEW
« no previous file with comments | « src/code-stub-assembler.cc ('k') | src/js/string.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698