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

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

Issue 2629823003: [wasm] Implement frame inspection for interpreted frames (Closed)
Patch Set: Document that the forward declaration is only needed for VS Created 3 years, 11 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
« src/wasm/wasm-interpreter.cc ('K') | « src/wasm/wasm-objects.h ('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/wasm/wasm-objects.h" 5 #include "src/wasm/wasm-objects.h"
6 #include "src/utils.h" 6 #include "src/utils.h"
7 7
8 #include "src/base/iterator.h" 8 #include "src/base/iterator.h"
9 #include "src/debug/debug-interface.h" 9 #include "src/debug/debug-interface.h"
10 #include "src/wasm/module-decoder.h" 10 #include "src/wasm/module-decoder.h"
(...skipping 1101 matching lines...) Expand 10 before | Expand all | Expand 10 after
1112 for (Handle<WasmInstanceObject> instance : 1112 for (Handle<WasmInstanceObject> instance :
1113 iterate_compiled_module_instance_chain(isolate, compiled_module)) { 1113 iterate_compiled_module_instance_chain(isolate, compiled_module)) {
1114 Handle<WasmDebugInfo> debug_info = 1114 Handle<WasmDebugInfo> debug_info =
1115 WasmInstanceObject::GetOrCreateDebugInfo(instance); 1115 WasmInstanceObject::GetOrCreateDebugInfo(instance);
1116 WasmDebugInfo::SetBreakpoint(debug_info, func_index, offset_in_func); 1116 WasmDebugInfo::SetBreakpoint(debug_info, func_index, offset_in_func);
1117 } 1117 }
1118 1118
1119 return true; 1119 return true;
1120 } 1120 }
1121 1121
1122 BreakLocation WasmCompiledModule::GetBreakLocation(int position) {
1123 DCHECK_LE(0, position);
1124 DCHECK_GT(module_bytes()->length(), position);
1125 uint8_t opcode = module_bytes()->GetChars()[position];
1126 DebugBreakType type;
1127 switch (opcode) {
1128 case kExprReturn:
1129 type = DEBUG_BREAK_SLOT_AT_RETURN;
1130 break;
1131 case kExprCallFunction:
1132 case kExprCallIndirect:
1133 type = DEBUG_BREAK_SLOT_AT_CALL;
1134 break;
1135 default:
1136 type = DEBUG_BREAK_SLOT;
1137 break;
1138 }
1139 return BreakLocation(Handle<AbstractCode>::null(), type, position, position);
1140 }
1141
1122 MaybeHandle<FixedArray> WasmCompiledModule::CheckBreakPoints( 1142 MaybeHandle<FixedArray> WasmCompiledModule::CheckBreakPoints(
1123 const BreakLocation& location) { 1143 const BreakLocation& location) {
1124 Isolate* isolate = GetIsolate(); 1144 Isolate* isolate = GetIsolate();
1125 if (!shared()->has_breakpoint_infos()) return {}; 1145 if (!shared()->has_breakpoint_infos()) return {};
1126 1146
1127 Handle<FixedArray> breakpoint_infos(shared()->breakpoint_infos(), isolate); 1147 Handle<FixedArray> breakpoint_infos(shared()->breakpoint_infos(), isolate);
1128 int insert_pos = FindBreakpointInfoInsertPos(isolate, breakpoint_infos, 1148 int insert_pos = FindBreakpointInfoInsertPos(isolate, breakpoint_infos,
1129 location.position()); 1149 location.position());
1130 if (insert_pos >= breakpoint_infos->length()) return {}; 1150 if (insert_pos >= breakpoint_infos->length()) return {};
1131 1151
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
1164 !array->get(kPreviousInstanceWrapper)->IsFixedArray()) 1184 !array->get(kPreviousInstanceWrapper)->IsFixedArray())
1165 return false; 1185 return false;
1166 return true; 1186 return true;
1167 } 1187 }
1168 1188
1169 void WasmInstanceWrapper::set_instance_object(Handle<JSObject> instance, 1189 void WasmInstanceWrapper::set_instance_object(Handle<JSObject> instance,
1170 Isolate* isolate) { 1190 Isolate* isolate) {
1171 Handle<WeakCell> cell = isolate->factory()->NewWeakCell(instance); 1191 Handle<WeakCell> cell = isolate->factory()->NewWeakCell(instance);
1172 set(kWrapperInstanceObject, *cell); 1192 set(kWrapperInstanceObject, *cell);
1173 } 1193 }
OLDNEW
« src/wasm/wasm-interpreter.cc ('K') | « src/wasm/wasm-objects.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698