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

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

Issue 2776433003: [builtins] Implement Array.prototype.reduceRight in the CSA (Closed)
Patch Set: Add back accidental removals 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-stub-assembler.cc ('k') | src/js/array.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 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 case Builtins::kArrayCode: 435 case Builtins::kArrayCode:
436 case Builtins::kArrayIndexOf: 436 case Builtins::kArrayIndexOf:
437 case Builtins::kArrayPrototypeValues: 437 case Builtins::kArrayPrototypeValues:
438 case Builtins::kArrayIncludes: 438 case Builtins::kArrayIncludes:
439 case Builtins::kArrayPrototypeEntries: 439 case Builtins::kArrayPrototypeEntries:
440 case Builtins::kArrayPrototypeKeys: 440 case Builtins::kArrayPrototypeKeys:
441 case Builtins::kArrayForEach: 441 case Builtins::kArrayForEach:
442 case Builtins::kArrayEvery: 442 case Builtins::kArrayEvery:
443 case Builtins::kArraySome: 443 case Builtins::kArraySome:
444 case Builtins::kArrayReduce: 444 case Builtins::kArrayReduce:
445 case Builtins::kArrayReduceRight:
445 // Boolean bulitins. 446 // Boolean bulitins.
446 case Builtins::kBooleanConstructor: 447 case Builtins::kBooleanConstructor:
447 case Builtins::kBooleanPrototypeToString: 448 case Builtins::kBooleanPrototypeToString:
448 case Builtins::kBooleanPrototypeValueOf: 449 case Builtins::kBooleanPrototypeValueOf:
449 // Date builtins. 450 // Date builtins.
450 case Builtins::kDateConstructor: 451 case Builtins::kDateConstructor:
451 case Builtins::kDateNow: 452 case Builtins::kDateNow:
452 case Builtins::kDateParse: 453 case Builtins::kDateParse:
453 case Builtins::kDatePrototypeGetDate: 454 case Builtins::kDatePrototypeGetDate:
454 case Builtins::kDatePrototypeGetDay: 455 case Builtins::kDatePrototypeGetDay:
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
645 646
646 if (FLAG_trace_side_effect_free_debug_evaluate) { 647 if (FLAG_trace_side_effect_free_debug_evaluate) {
647 PrintF("[debug-evaluate] API Callback at %p may cause side effect.\n", 648 PrintF("[debug-evaluate] API Callback at %p may cause side effect.\n",
648 reinterpret_cast<void*>(function_addr)); 649 reinterpret_cast<void*>(function_addr));
649 } 650 }
650 return false; 651 return false;
651 } 652 }
652 653
653 } // namespace internal 654 } // namespace internal
654 } // namespace v8 655 } // namespace v8
OLDNEW
« no previous file with comments | « src/code-stub-assembler.cc ('k') | src/js/array.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698