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

Unified Diff: runtime/vm/stub_code.cc

Issue 221133002: Begins work on ARM64, first assembler test. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Fixed Rn/Rd modes for R31 Created 6 years, 9 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/stub_code.cc
===================================================================
--- runtime/vm/stub_code.cc (revision 34452)
+++ runtime/vm/stub_code.cc (working copy)
@@ -5,6 +5,7 @@
#include "vm/stub_code.h"
#include "platform/assert.h"
+#include "platform/globals.h"
#include "vm/assembler.h"
#include "vm/disassembler.h"
#include "vm/flags.h"
@@ -50,9 +51,11 @@
void StubCode::InitOnce() {
+#if !defined(TARGET_ARCH_ARM64)
regis 2014/04/01 19:52:53 Add TODO(zra)
zra 2014/04/01 20:35:08 Done.
// Generate all the stubs.
Code& code = Code::Handle();
VM_STUB_CODE_LIST(STUB_CODE_GENERATE);
+#endif
}
@@ -66,9 +69,11 @@
void StubCode::Init(Isolate* isolate) {
+#if !defined(TARGET_ARCH_ARM64)
regis 2014/04/01 19:52:53 ditto
zra 2014/04/01 20:35:08 Done.
StubCode* stubs = new StubCode();
isolate->set_stub_code(stubs);
stubs->GenerateFor(isolate);
+#endif
}

Powered by Google App Engine
This is Rietveld 408576698