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

Unified Diff: tools/codemap.js

Issue 7310025: Remove support for logging into a memory buffer. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Don't add runtime test-only functions Created 9 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: tools/codemap.js
diff --git a/tools/codemap.js b/tools/codemap.js
index 71a99cc223bd679f8c625431a1f781125a81e5c4..dec494a3b3526258c0ebe8231a91e321adbe3961 100644
--- a/tools/codemap.js
+++ b/tools/codemap.js
@@ -211,6 +211,14 @@ CodeMap.prototype.getAllDynamicEntries = function() {
/**
+ * Returns an array of pairs of all dynamic code entries and their addresses.
+ */
+CodeMap.prototype.getAllDynamicEntriesWithAddresses = function() {
+ return this.dynamics_.exportKeysAndValues();
+};
+
+
+/**
* Returns an array of all static code entries.
*/
CodeMap.prototype.getAllStaticEntries = function() {

Powered by Google App Engine
This is Rietveld 408576698