From b95a5345ae4217b70ca36f0cced92f68dda7caf5 Mon Sep 17 00:00:00 2001 From: Stuart Monteith Date: Wed, 12 Mar 2014 13:32:32 +0000 Subject: AArch64: Add arm64 runtime support. Adds support for arm64 to ART. Assembler stubs are sufficient for down calls into interpreter. JNI compiler and generics are not finished. Basic Generic JNI functionality. Change-Id: I4a07c79d1e037b9f5746673480e32cf456867b82 --- compiler/common_compiler_test.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'compiler/common_compiler_test.h') diff --git a/compiler/common_compiler_test.h b/compiler/common_compiler_test.h index 49c1283809..6aa85d40de 100644 --- a/compiler/common_compiler_test.h +++ b/compiler/common_compiler_test.h @@ -300,6 +300,10 @@ class CommonCompilerTest : public CommonRuntimeTest { // for ARM, do a runtime check to make sure that the features we are passed from // the build match the features we actually determine at runtime. ASSERT_EQ(instruction_set_features, runtime_features); +#elif defined(__aarch64__) + instruction_set = kArm64; + // TODO: arm64 compilation support. + compiler_options_->SetCompilerFilter(CompilerOptions::kInterpretOnly); #elif defined(__mips__) instruction_set = kMips; #elif defined(__i386__) -- cgit v1.2.3-59-g8ed1b