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

Unified Diff: runtime/vm/disassembler.h

Issue 2098573004: DBC: CheckClassInstr (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Trying to find static call deopt bug Created 4 years, 6 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: runtime/vm/disassembler.h
diff --git a/runtime/vm/disassembler.h b/runtime/vm/disassembler.h
index c7a1eec85d5dff2e40c26aef2ccdbb37be0a47da..fc3649a4406e0f07d15cc26729ccc62c29340cee 100644
--- a/runtime/vm/disassembler.h
+++ b/runtime/vm/disassembler.h
@@ -137,8 +137,13 @@ class Disassembler : public AllStatic {
static bool CanFindOldObject(uword addr);
static void DisassembleCode(const Function& function, bool optimized);
+ static void DisassembleCodeUnoptimized(
+ const Function& function, bool optimized);
private:
+ static void DisassembleCodeHelper(
+ const char* function_fullname, const Code& code, bool optimized);
+
static const int kHexadecimalBufferSize = 32;
static const int kUserReadableBufferSize = 256;
};

Powered by Google App Engine
This is Rietveld 408576698