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

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

Issue 1448933002: Introduce a BuiltinsConstructStub that sets up new.target and does a [[call]] per ES6 9.3.2 (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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/objects-body-descriptors-inl.h ('k') | src/objects-printer.cc » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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/objects.h" 5 #include "src/objects.h"
6 6
7 #include "src/bootstrapper.h" 7 #include "src/bootstrapper.h"
8 #include "src/disasm.h" 8 #include "src/disasm.h"
9 #include "src/disassembler.h" 9 #include "src/disassembler.h"
10 #include "src/macro-assembler.h" 10 #include "src/macro-assembler.h"
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 #undef VERIFY_TYPED_ARRAY 89 #undef VERIFY_TYPED_ARRAY
90 90
91 case CODE_TYPE: 91 case CODE_TYPE:
92 Code::cast(this)->CodeVerify(); 92 Code::cast(this)->CodeVerify();
93 break; 93 break;
94 case ODDBALL_TYPE: 94 case ODDBALL_TYPE:
95 Oddball::cast(this)->OddballVerify(); 95 Oddball::cast(this)->OddballVerify();
96 break; 96 break;
97 case JS_OBJECT_TYPE: 97 case JS_OBJECT_TYPE:
98 case JS_CONTEXT_EXTENSION_OBJECT_TYPE: 98 case JS_CONTEXT_EXTENSION_OBJECT_TYPE:
99 case JS_PROMISE_TYPE:
99 JSObject::cast(this)->JSObjectVerify(); 100 JSObject::cast(this)->JSObjectVerify();
100 break; 101 break;
101 case JS_GENERATOR_OBJECT_TYPE: 102 case JS_GENERATOR_OBJECT_TYPE:
102 JSGeneratorObject::cast(this)->JSGeneratorObjectVerify(); 103 JSGeneratorObject::cast(this)->JSGeneratorObjectVerify();
103 break; 104 break;
104 case JS_MODULE_TYPE: 105 case JS_MODULE_TYPE:
105 JSModule::cast(this)->JSModuleVerify(); 106 JSModule::cast(this)->JSModuleVerify();
106 break; 107 break;
107 case JS_VALUE_TYPE: 108 case JS_VALUE_TYPE:
108 JSValue::cast(this)->JSValueVerify(); 109 JSValue::cast(this)->JSValueVerify();
(...skipping 1200 matching lines...) Expand 10 before | Expand all | Expand 10 after
1309 1310
1310 // Both are done at the same time. 1311 // Both are done at the same time.
1311 CHECK_EQ(new_it.done(), old_it.done()); 1312 CHECK_EQ(new_it.done(), old_it.done());
1312 } 1313 }
1313 1314
1314 1315
1315 #endif // DEBUG 1316 #endif // DEBUG
1316 1317
1317 } // namespace internal 1318 } // namespace internal
1318 } // namespace v8 1319 } // namespace v8
OLDNEW
« no previous file with comments | « src/objects-body-descriptors-inl.h ('k') | src/objects-printer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698