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

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

Issue 2314903004: [promises] Move PromiseResolveThenableJob to c++ (Closed)
Patch Set: dont create handles if not in debug Created 4 years, 3 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
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 <iomanip> 7 #include <iomanip>
8 #include <memory> 8 #include <memory>
9 9
10 #include "src/disasm.h" 10 #include "src/disasm.h"
(...skipping 1127 matching lines...) Expand 10 before | Expand all | Expand 10 after
1138 os << "\n"; 1138 os << "\n";
1139 } 1139 }
1140 1140
1141 1141
1142 void Box::BoxPrint(std::ostream& os) { // NOLINT 1142 void Box::BoxPrint(std::ostream& os) { // NOLINT
1143 HeapObject::PrintHeader(os, "Box"); 1143 HeapObject::PrintHeader(os, "Box");
1144 os << "\n - value: " << Brief(value()); 1144 os << "\n - value: " << Brief(value());
1145 os << "\n"; 1145 os << "\n";
1146 } 1146 }
1147 1147
1148 void PromiseContainer::PromiseContainerPrint(std::ostream& os) { // NOLINT
1149 HeapObject::PrintHeader(os, "PromiseContainer");
1150 os << "\n - thenable: " << Brief(thenable());
1151 os << "\n - then: " << Brief(then());
1152 os << "\n - resolve: " << Brief(resolve());
1153 os << "\n - reject: " << Brief(reject());
1154 os << "\n - before debug event: " << Brief(before_debug_event());
1155 os << "\n - after debug event: " << Brief(after_debug_event());
1156 os << "\n";
1157 }
1158
1148 void Module::ModulePrint(std::ostream& os) { // NOLINT 1159 void Module::ModulePrint(std::ostream& os) { // NOLINT
1149 HeapObject::PrintHeader(os, "Module"); 1160 HeapObject::PrintHeader(os, "Module");
1150 os << "\n - code: " << Brief(code()); 1161 os << "\n - code: " << Brief(code());
1151 os << "\n - exports: " << Brief(exports()); 1162 os << "\n - exports: " << Brief(exports());
1152 os << "\n"; 1163 os << "\n";
1153 } 1164 }
1154 1165
1155 void PrototypeInfo::PrototypeInfoPrint(std::ostream& os) { // NOLINT 1166 void PrototypeInfo::PrototypeInfoPrint(std::ostream& os) { // NOLINT
1156 HeapObject::PrintHeader(os, "PrototypeInfo"); 1167 HeapObject::PrintHeader(os, "PrototypeInfo");
1157 os << "\n - prototype users: " << Brief(prototype_users()); 1168 os << "\n - prototype users: " << Brief(prototype_users());
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
1523 printf("Not a transition array\n"); 1534 printf("Not a transition array\n");
1524 } else { 1535 } else {
1525 reinterpret_cast<i::TransitionArray*>(object)->Print(); 1536 reinterpret_cast<i::TransitionArray*>(object)->Print();
1526 } 1537 }
1527 } 1538 }
1528 1539
1529 extern void _v8_internal_Print_StackTrace() { 1540 extern void _v8_internal_Print_StackTrace() {
1530 i::Isolate* isolate = i::Isolate::Current(); 1541 i::Isolate* isolate = i::Isolate::Current();
1531 isolate->PrintStack(stdout); 1542 isolate->PrintStack(stdout);
1532 } 1543 }
OLDNEW
« src/isolate.cc ('K') | « src/objects-inl.h ('k') | src/runtime/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698