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

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

Issue 2709773002: [builtins] (Re-)implement Array.prototype.every/some with the CSA (Closed)
Patch Set: Rebase 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/builtins/builtins-array.cc ('k') | no next file » | 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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 // Object builtins. 407 // Object builtins.
408 case Builtins::kObjectPrototypeValueOf: 408 case Builtins::kObjectPrototypeValueOf:
409 // Array builtins. 409 // Array builtins.
410 case Builtins::kArrayCode: 410 case Builtins::kArrayCode:
411 case Builtins::kArrayIndexOf: 411 case Builtins::kArrayIndexOf:
412 case Builtins::kArrayPrototypeValues: 412 case Builtins::kArrayPrototypeValues:
413 case Builtins::kArrayIncludes: 413 case Builtins::kArrayIncludes:
414 case Builtins::kArrayPrototypeEntries: 414 case Builtins::kArrayPrototypeEntries:
415 case Builtins::kArrayPrototypeKeys: 415 case Builtins::kArrayPrototypeKeys:
416 case Builtins::kArrayForEach: 416 case Builtins::kArrayForEach:
417 case Builtins::kArrayEvery:
418 case Builtins::kArraySome:
417 // Math builtins. 419 // Math builtins.
418 case Builtins::kMathAbs: 420 case Builtins::kMathAbs:
419 case Builtins::kMathAcos: 421 case Builtins::kMathAcos:
420 case Builtins::kMathAcosh: 422 case Builtins::kMathAcosh:
421 case Builtins::kMathAsin: 423 case Builtins::kMathAsin:
422 case Builtins::kMathAsinh: 424 case Builtins::kMathAsinh:
423 case Builtins::kMathAtan: 425 case Builtins::kMathAtan:
424 case Builtins::kMathAtanh: 426 case Builtins::kMathAtanh:
425 case Builtins::kMathAtan2: 427 case Builtins::kMathAtan2:
426 case Builtins::kMathCeil: 428 case Builtins::kMathCeil:
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 568
567 if (FLAG_trace_side_effect_free_debug_evaluate) { 569 if (FLAG_trace_side_effect_free_debug_evaluate) {
568 PrintF("[debug-evaluate] API Callback at %p may cause side effect.\n", 570 PrintF("[debug-evaluate] API Callback at %p may cause side effect.\n",
569 reinterpret_cast<void*>(function_addr)); 571 reinterpret_cast<void*>(function_addr));
570 } 572 }
571 return false; 573 return false;
572 } 574 }
573 575
574 } // namespace internal 576 } // namespace internal
575 } // namespace v8 577 } // namespace v8
OLDNEW
« no previous file with comments | « src/builtins/builtins-array.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698