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

Unified Diff: runtime/vm/class_table.h

Issue 1235843003: Make subtype test cache stub shared between isolates. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: added back comment Created 5 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
« no previous file with comments | « runtime/vm/assembler_x64.cc ('k') | runtime/vm/stub_code.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/class_table.h
diff --git a/runtime/vm/class_table.h b/runtime/vm/class_table.h
index 384b3d11ae9759922bda686be1f26878b7a6998a..9a23630083d8b04565ade17175316fd9c1a1d914 100644
--- a/runtime/vm/class_table.h
+++ b/runtime/vm/class_table.h
@@ -178,6 +178,7 @@ class ClassTable {
void PrintToJSONObject(JSONObject* object);
+ // Used by the generated code.
static intptr_t table_offset() {
return OFFSET_OF(ClassTable, table_);
}
@@ -194,11 +195,6 @@ class ClassTable {
void UpdatePromoted();
// Used by the generated code.
- uword TableAddress() {
- return reinterpret_cast<uword>(&table_);
- }
-
- // Used by the generated code.
uword PredefinedClassHeapStatsTableAddress() {
return reinterpret_cast<uword>(predefined_class_heap_stats_table_);
}
« no previous file with comments | « runtime/vm/assembler_x64.cc ('k') | runtime/vm/stub_code.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698