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

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

Issue 2934893002: [builtins] Properly optimize Object.prototype.isPrototypeOf. (Closed)
Patch Set: Address feedback. Created 3 years, 6 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/compiler/verifier.cc ('k') | src/js/v8natives.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 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 case Builtins::kObjectGetOwnPropertyNames: 476 case Builtins::kObjectGetOwnPropertyNames:
477 case Builtins::kObjectGetOwnPropertySymbols: 477 case Builtins::kObjectGetOwnPropertySymbols:
478 case Builtins::kObjectGetPrototypeOf: 478 case Builtins::kObjectGetPrototypeOf:
479 case Builtins::kObjectIs: 479 case Builtins::kObjectIs:
480 case Builtins::kObjectIsExtensible: 480 case Builtins::kObjectIsExtensible:
481 case Builtins::kObjectIsFrozen: 481 case Builtins::kObjectIsFrozen:
482 case Builtins::kObjectIsSealed: 482 case Builtins::kObjectIsSealed:
483 case Builtins::kObjectPrototypeValueOf: 483 case Builtins::kObjectPrototypeValueOf:
484 case Builtins::kObjectValues: 484 case Builtins::kObjectValues:
485 case Builtins::kObjectHasOwnProperty: 485 case Builtins::kObjectHasOwnProperty:
486 case Builtins::kObjectPrototypeIsPrototypeOf:
486 case Builtins::kObjectPrototypePropertyIsEnumerable: 487 case Builtins::kObjectPrototypePropertyIsEnumerable:
487 case Builtins::kObjectProtoToString: 488 case Builtins::kObjectProtoToString:
488 // Array builtins. 489 // Array builtins.
489 case Builtins::kArrayCode: 490 case Builtins::kArrayCode:
490 case Builtins::kArrayIndexOf: 491 case Builtins::kArrayIndexOf:
491 case Builtins::kArrayPrototypeValues: 492 case Builtins::kArrayPrototypeValues:
492 case Builtins::kArrayIncludes: 493 case Builtins::kArrayIncludes:
493 case Builtins::kArrayPrototypeEntries: 494 case Builtins::kArrayPrototypeEntries:
494 case Builtins::kArrayPrototypeKeys: 495 case Builtins::kArrayPrototypeKeys:
495 case Builtins::kArrayForEach: 496 case Builtins::kArrayForEach:
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
725 726
726 if (FLAG_trace_side_effect_free_debug_evaluate) { 727 if (FLAG_trace_side_effect_free_debug_evaluate) {
727 PrintF("[debug-evaluate] API Callback at %p may cause side effect.\n", 728 PrintF("[debug-evaluate] API Callback at %p may cause side effect.\n",
728 reinterpret_cast<void*>(function_addr)); 729 reinterpret_cast<void*>(function_addr));
729 } 730 }
730 return false; 731 return false;
731 } 732 }
732 733
733 } // namespace internal 734 } // namespace internal
734 } // namespace v8 735 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/verifier.cc ('k') | src/js/v8natives.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698