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

Unified Diff: runtime/vm/dart.cc

Issue 2858623002: Remove MIPS support (Closed)
Patch Set: Merge and cleanup Created 3 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
« no previous file with comments | « runtime/vm/cpuinfo_linux.cc ('k') | runtime/vm/debugger_mips.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/dart.cc
diff --git a/runtime/vm/dart.cc b/runtime/vm/dart.cc
index b9d15660859546fc3308eb5eacaba06cb2fb4ddb..33ca87bf6baab486d5b9ce714e7088bc5030b332 100644
--- a/runtime/vm/dart.cc
+++ b/runtime/vm/dart.cc
@@ -97,16 +97,6 @@ static void CheckOffsets() {
CHECK_OFFSET(Isolate::object_store_offset(), 28);
NOT_IN_PRODUCT(CHECK_OFFSET(sizeof(ClassHeapStats), 120));
#endif
-#if defined(TARGET_ARCH_MIPS)
- // These offsets are embedded in precompiled instructions. We need simmips
- // (compiler) and mips (runtime) to agree.
- CHECK_OFFSET(Heap::TopOffset(Heap::kNew), 8);
- CHECK_OFFSET(Thread::stack_limit_offset(), 4);
- CHECK_OFFSET(Thread::object_null_offset(), 40);
- CHECK_OFFSET(SingleTargetCache::upper_limit_offset(), 14);
- CHECK_OFFSET(Isolate::object_store_offset(), 28);
- NOT_IN_PRODUCT(CHECK_OFFSET(sizeof(ClassHeapStats), 120));
-#endif
#if defined(TARGET_ARCH_ARM64)
// These offsets are embedded in precompiled instructions. We need simarm64
// (compiler) and arm64 (runtime) to agree.
@@ -701,8 +691,6 @@ const char* Dart::FeaturesString(Isolate* isolate, Snapshot::Kind kind) {
: " softfp");
#elif defined(TARGET_ARCH_ARM64)
buffer.AddString(" arm64");
-#elif defined(TARGET_ARCH_MIPS)
- buffer.AddString(" mips");
#elif defined(TARGET_ARCH_IA32)
buffer.AddString(" ia32");
#elif defined(TARGET_ARCH_X64)
« no previous file with comments | « runtime/vm/cpuinfo_linux.cc ('k') | runtime/vm/debugger_mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698