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

Unified Diff: runtime/vm/object.h

Issue 2238363002: Fix unsimulated ARM/ARM64/MIPS builds. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index e7fea7361703e3f4d90e712d112d5059244f59b3..d66c7646deee2eab9e55e53ee5afc6cbff84d183 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -3980,14 +3980,14 @@ class Instructions : public Object {
static const intptr_t kCheckedEntryOffset = 23;
static const intptr_t kUncheckedEntryOffset = 44;
#elif defined(TARGET_ARCH_ARM)
- static const intptr_t kCheckedEntryOffset = 3 * Instr::kInstrSize;
- static const intptr_t kUncheckedEntryOffset = 9 * Instr::kInstrSize;
+ static const intptr_t kCheckedEntryOffset = 12;
+ static const intptr_t kUncheckedEntryOffset = 36;
#elif defined(TARGET_ARCH_ARM64)
- static const intptr_t kCheckedEntryOffset = 6 * Instr::kInstrSize;
- static const intptr_t kUncheckedEntryOffset = 12 * Instr::kInstrSize;
+ static const intptr_t kCheckedEntryOffset = 24;
+ static const intptr_t kUncheckedEntryOffset = 48;
#elif defined(TARGET_ARCH_MIPS)
- static const intptr_t kCheckedEntryOffset = 4 * Instr::kInstrSize;
- static const intptr_t kUncheckedEntryOffset = 14 * Instr::kInstrSize;
+ static const intptr_t kCheckedEntryOffset = 16;
+ static const intptr_t kUncheckedEntryOffset = 56;
#elif defined(TARGET_ARCH_DBC)
static const intptr_t kCheckedEntryOffset = 0;
static const intptr_t kUncheckedEntryOffset = 0;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698