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

Side by Side Diff: src/debug/debug-interface.h

Issue 2493773003: [inspector] Introduce translation of wasm frames (Closed)
Patch Set: Very last-minute changes Created 4 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/api.cc ('k') | src/inspector/BUILD.gn » ('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 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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 #ifndef V8_DEBUG_DEBUG_INTERFACE_H_ 5 #ifndef V8_DEBUG_DEBUG_INTERFACE_H_
6 #define V8_DEBUG_DEBUG_INTERFACE_H_ 6 #define V8_DEBUG_DEBUG_INTERFACE_H_
7 7
8 #include "include/v8-debug.h" 8 #include "include/v8-debug.h"
9 #include "include/v8-util.h" 9 #include "include/v8-util.h"
10 #include "include/v8.h" 10 #include "include/v8.h"
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 bool WasCompiled() const; 172 bool WasCompiled() const;
173 int Id() const; 173 int Id() const;
174 int LineOffset() const; 174 int LineOffset() const;
175 int ColumnOffset() const; 175 int ColumnOffset() const;
176 std::vector<int> LineEnds() const; 176 std::vector<int> LineEnds() const;
177 MaybeLocal<String> Name() const; 177 MaybeLocal<String> Name() const;
178 MaybeLocal<String> SourceURL() const; 178 MaybeLocal<String> SourceURL() const;
179 MaybeLocal<String> SourceMappingURL() const; 179 MaybeLocal<String> SourceMappingURL() const;
180 MaybeLocal<String> ContextData() const; 180 MaybeLocal<String> ContextData() const;
181 MaybeLocal<String> Source() const; 181 MaybeLocal<String> Source() const;
182 bool IsWasm() const;
182 bool GetPossibleBreakpoints(const Location& start, const Location& end, 183 bool GetPossibleBreakpoints(const Location& start, const Location& end,
183 std::vector<Location>* locations) const; 184 std::vector<Location>* locations) const;
184 185
185 /** 186 /**
186 * script parameter is a wrapper v8::internal::JSObject for 187 * script parameter is a wrapper v8::internal::JSObject for
187 * v8::internal::Script. 188 * v8::internal::Script.
188 * This function gets v8::internal::Script from v8::internal::JSObject and 189 * This function gets v8::internal::Script from v8::internal::JSObject and
189 * wraps it with DebugInterface::Script. 190 * wraps it with DebugInterface::Script.
190 * Returns empty local if not called with a valid wrapper of 191 * Returns empty local if not called with a valid wrapper of
191 * v8::internal::Script. 192 * v8::internal::Script.
192 */ 193 */
193 static MaybeLocal<Script> Wrap(Isolate* isolate, 194 static MaybeLocal<Script> Wrap(Isolate* isolate,
194 v8::Local<v8::Object> script); 195 v8::Local<v8::Object> script);
195 196
196 private: 197 private:
197 int GetSourcePosition(const Location& location) const; 198 int GetSourcePosition(const Location& location) const;
198 }; 199 };
199 200
200 /** 201 /**
201 * Return array of compiled scripts. 202 * Return array of compiled scripts.
202 */ 203 */
203 static void GetLoadedScripts(Isolate* isolate, 204 static void GetLoadedScripts(Isolate* isolate,
204 PersistentValueVector<Script>& scripts); 205 PersistentValueVector<Script>& scripts);
206
207 /**
208 * Compute the disassembly of a wasm function.
209 * Returns the disassembly string and a list of <byte_offset, line, column>
210 * entries, mapping wasm byte offsets to line and column in the disassembly.
211 * The list is guaranteed to be ordered by the byte_offset.
212 */
213 static std::pair<std::string, std::vector<std::tuple<uint32_t, int, int>>>
214 DisassembleWasmFunction(Isolate* isolate, v8::Local<v8::Object> script,
215 int function_index);
205 }; 216 };
206 217
207 } // namespace v8 218 } // namespace v8
208 219
209 #endif // V8_DEBUG_DEBUG_INTERFACE_H_ 220 #endif // V8_DEBUG_DEBUG_INTERFACE_H_
OLDNEW
« no previous file with comments | « src/api.cc ('k') | src/inspector/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698