| # |
| # Copyright (C) 2011 The Android Open Source Project |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| # |
| |
| # Use llvm as the backend |
| ifneq ($(wildcard art/USE_LLVM_COMPILER),) |
| ART_USE_LLVM_COMPILER := true |
| else |
| ART_USE_LLVM_COMPILER := false |
| endif |
| |
| ifeq ($(ART_USE_LLVM_COMPILER),true) |
| LLVM_ROOT_PATH := external/llvm |
| include $(LLVM_ROOT_PATH)/llvm.mk |
| endif |
| |
| # art-cache |
| ART_CACHE_DIR := /data/art-cache |
| ART_CACHE_OUT := $(TARGET_OUT_DATA)/art-cache |
| |
| # $(1): pathname |
| define art-cache-dir |
| $(ART_CACHE_DIR)/$(subst /,@,$(1)) |
| endef |
| |
| # $(1): pathname |
| define art-cache-out |
| $(ART_CACHE_OUT)/$(subst /,@,$(1)) |
| endef |
| |
| # directory used for gtests on device |
| ART_NATIVETEST_DIR := /data/nativetest/art |
| ART_NATIVETEST_OUT := $(TARGET_OUT_DATA_NATIVE_TESTS)/art |
| |
| # directory used for tests on device |
| ART_TEST_DIR := /data/art-test |
| ART_TEST_OUT := $(TARGET_OUT_DATA)/art-test |
| |
| ART_CPP_EXTENSION := .cc |
| |
| ART_C_INCLUDES := \ |
| external/gtest/include \ |
| external/icu4c/common \ |
| external/icu4c/i18n \ |
| external/valgrind/dynamic_annotations \ |
| external/zlib \ |
| art/src \ |
| dalvik/libdex |
| |
| art_cflags := \ |
| -O2 \ |
| -ggdb3 \ |
| -Wall \ |
| -Werror \ |
| -Wextra \ |
| -Wno-unused-parameter \ |
| -Wstrict-aliasing=3 \ |
| -fno-align-jumps \ |
| -fstrict-aliasing |
| |
| ifeq ($(ART_USE_LLVM_COMPILER),true) |
| art_cflags := \ |
| -DART_USE_LLVM_COMPILER=1 |
| endif |
| |
| ifeq ($(HOST_OS),linux) |
| art_non_debug_cflags := \ |
| -Wframe-larger-than=1728 |
| endif |
| |
| art_debug_cflags := \ |
| -DDYNAMIC_ANNOTATIONS_ENABLED=1 \ |
| -UNDEBUG |
| |
| ART_HOST_CFLAGS := $(art_cflags) -DANDROID_SMP=1 |
| |
| ART_TARGET_CFLAGS := $(art_cflags) |
| ifeq ($(TARGET_CPU_SMP),true) |
| ART_TARGET_CFLAGS += -DANDROID_SMP=1 |
| else |
| ART_TARGET_CFLAGS += -DANDROID_SMP=0 |
| endif |
| |
| # To use oprofile_android --callgraph, uncomment this and recompile with "mmm art -B -j16" |
| # ART_TARGET_CFLAGS += -fno-omit-frame-pointer -marm -mapcs |
| |
| ART_HOST_NON_DEBUG_CFLAGS := $(art_non_debug_cflags) |
| ART_TARGET_NON_DEBUG_CFLAGS := $(art_non_debug_cflags) |
| |
| # TODO: move -fkeep-inline-functions to art_debug_cflags when target gcc > 4.4 |
| ART_HOST_DEBUG_CFLAGS := $(art_debug_cflags) -fkeep-inline-functions |
| |
| ifneq ($(HOST_OS),linux) |
| # Some Mac OS pthread header files are broken with -fkeep-inline-functions. |
| ART_HOST_DEBUG_CFLAGS := $(filter-out -fkeep-inline-functions,$(ART_HOST_DEBUG_CFLAGS)) |
| endif |
| |
| ART_TARGET_DEBUG_CFLAGS := $(art_debug_cflags) |
| |
| DEX2OAT_SRC_FILES := \ |
| src/dex2oat.cc |
| |
| OATDUMP_SRC_FILES := \ |
| src/oatdump.cc |
| |
| OATEXEC_SRC_FILES := \ |
| src/oatexec.cc |
| |
| LIBART_COMMON_SRC_FILES := \ |
| src/assembler.cc \ |
| src/assembler_arm.cc \ |
| src/assembler_x86.cc \ |
| src/atomic.cc.arm \ |
| src/calling_convention.cc \ |
| src/calling_convention_arm.cc \ |
| src/calling_convention_x86.cc \ |
| src/card_table.cc \ |
| src/constants.cc \ |
| src/context.cc \ |
| src/context_arm.cc.arm \ |
| src/context_x86.cc \ |
| src/check_jni.cc \ |
| src/class_linker.cc \ |
| src/class_loader.cc \ |
| src/compiled_method.cc \ |
| src/compiler.cc \ |
| src/dalvik_system_DexFile.cc \ |
| src/dalvik_system_VMDebug.cc \ |
| src/dalvik_system_VMRuntime.cc \ |
| src/dalvik_system_VMStack.cc \ |
| src/dalvik_system_Zygote.cc \ |
| src/debugger.cc \ |
| src/dex_cache.cc \ |
| src/dex_file.cc \ |
| src/dex_file_verifier.cc \ |
| src/dex_instruction.cc \ |
| src/dex_verifier.cc \ |
| src/dlmalloc.c \ |
| src/file.cc \ |
| src/file_linux.cc \ |
| src/heap.cc \ |
| src/heap_bitmap.cc \ |
| src/hprof/hprof.cc \ |
| src/hprof/hprof_record.cc \ |
| src/image.cc \ |
| src/image_writer.cc \ |
| src/indirect_reference_table.cc \ |
| src/intern_table.cc \ |
| src/java_lang_Class.cc \ |
| src/java_lang_Object.cc \ |
| src/java_lang_Runtime.cc \ |
| src/java_lang_String.cc \ |
| src/java_lang_System.cc \ |
| src/java_lang_Thread.cc \ |
| src/java_lang_Throwable.cc \ |
| src/java_lang_VMClassLoader.cc \ |
| src/java_lang_reflect_Array.cc \ |
| src/java_lang_reflect_Constructor.cc \ |
| src/java_lang_reflect_Field.cc \ |
| src/java_lang_reflect_Method.cc \ |
| src/java_lang_reflect_Proxy.cc \ |
| src/java_util_concurrent_atomic_AtomicLong.cc \ |
| src/jdwp/jdwp_constants.cc \ |
| src/jdwp/jdwp_event.cc \ |
| src/jdwp/jdwp_expand_buf.cc \ |
| src/jdwp/jdwp_handler.cc \ |
| src/jdwp/jdwp_main.cc \ |
| src/jdwp/jdwp_socket.cc \ |
| src/jni_compiler.cc \ |
| src/jni_internal.cc \ |
| src/jni_internal_arm.cc \ |
| src/jni_internal_x86.cc \ |
| src/logging.cc \ |
| src/mark_stack.cc \ |
| src/mark_sweep.cc \ |
| src/managed_register_arm.cc \ |
| src/managed_register_x86.cc \ |
| src/mem_map.cc \ |
| src/memory_region.cc \ |
| src/monitor.cc \ |
| src/mutex.cc \ |
| src/oat.cc \ |
| src/oat_file.cc \ |
| src/oat_writer.cc \ |
| src/object.cc \ |
| src/offsets.cc \ |
| src/org_apache_harmony_dalvik_ddmc_DdmServer.cc \ |
| src/org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc \ |
| src/os_linux.cc \ |
| src/primitive.cc \ |
| src/reference_table.cc \ |
| src/reflection.cc \ |
| src/runtime.cc \ |
| src/signal_catcher.cc \ |
| src/space.cc \ |
| src/stack.cc \ |
| src/stringpiece.cc \ |
| src/stringprintf.cc \ |
| src/stub_arm.cc \ |
| src/stub_x86.cc \ |
| src/sun_misc_Unsafe.cc \ |
| src/thread.cc \ |
| src/thread_list.cc \ |
| src/trace.cc \ |
| src/runtime_support.cc \ |
| src/utf.cc \ |
| src/utils.cc \ |
| src/zip_archive.cc |
| |
| ifeq ($(ART_USE_LLVM_COMPILER),true) |
| LIBART_COMMON_SRC_FILES += \ |
| src/compiler_llvm/compiler_llvm.cc \ |
| src/compiler_llvm/dalvik_reg.cc \ |
| src/compiler_llvm/frontend.cc \ |
| src/compiler_llvm/ir_builder.cc \ |
| src/compiler_llvm/inferred_reg_category_map.cc \ |
| src/compiler_llvm/method_compiler.cc \ |
| src/compiler_llvm/utils_llvm.cc |
| else |
| LIBART_COMMON_SRC_FILES += \ |
| src/compiler/Dataflow.cc \ |
| src/compiler/Frontend.cc \ |
| src/compiler/IntermediateRep.cc \ |
| src/compiler/Ralloc.cc \ |
| src/compiler/SSATransformation.cc \ |
| src/compiler/Utility.cc \ |
| src/compiler/codegen/RallocUtil.cc \ |
| src/compiler/codegen/arm/ArchUtility.cc \ |
| src/compiler/codegen/arm/ArmRallocUtil.cc \ |
| src/compiler/codegen/arm/Assemble.cc \ |
| src/compiler/codegen/arm/LocalOptimizations.cc \ |
| src/compiler/codegen/arm/armv7-a/Codegen.cc |
| endif |
| |
| LIBART_TARGET_SRC_FILES := \ |
| $(LIBART_COMMON_SRC_FILES) \ |
| src/jdwp/jdwp_adb.cc \ |
| src/logging_android.cc \ |
| src/monitor_android.cc \ |
| src/runtime_android.cc \ |
| src/thread_android.cc \ |
| src/thread_arm.cc \ |
| src/runtime_support_arm.S |
| |
| LIBART_HOST_SRC_FILES := \ |
| $(LIBART_COMMON_SRC_FILES) \ |
| src/logging_linux.cc \ |
| src/monitor_linux.cc \ |
| src/runtime_linux.cc \ |
| src/thread_linux.cc \ |
| src/thread_x86.cc \ |
| src/runtime_support_x86.S |
| |
| LIBARTTEST_COMMON_SRC_FILES := \ |
| test/StackWalk/stack_walk_jni.cc \ |
| test/ReferenceMap/stack_walk_refmap_jni.cc |
| |
| TEST_COMMON_SRC_FILES := \ |
| src/class_linker_test.cc \ |
| src/compiler_test.cc \ |
| src/dex_cache_test.cc \ |
| src/dex_file_test.cc \ |
| src/dex_instruction_visitor_test.cc \ |
| src/dex_verifier_test.cc \ |
| src/exception_test.cc \ |
| src/file_test.cc \ |
| src/heap_test.cc \ |
| src/image_test.cc \ |
| src/indirect_reference_table_test.cc \ |
| src/intern_table_test.cc \ |
| src/jni_internal_test.cc \ |
| src/jni_compiler_test.cc \ |
| src/managed_register_arm_test.cc \ |
| src/managed_register_x86_test.cc \ |
| src/mutex_test.cc \ |
| src/oat_test.cc \ |
| src/object_test.cc \ |
| src/reference_table_test.cc \ |
| src/runtime_test.cc \ |
| src/space_test.cc \ |
| src/utils_test.cc \ |
| src/zip_archive_test.cc |
| |
| ifeq ($(ART_USE_LLVM_COMPILER),true) |
| TEST_COMMON_SRC_FILES += \ |
| src/compiler_llvm/utils_llvm_test.cc |
| endif |
| |
| TEST_TARGET_SRC_FILES := \ |
| $(TEST_COMMON_SRC_FILES) |
| |
| TEST_HOST_SRC_FILES := \ |
| $(TEST_COMMON_SRC_FILES) \ |
| src/assembler_x86_test.cc |
| |
| # subdirectories of test/ which are used as inputs for gtests |
| TEST_DEX_DIRECTORIES := \ |
| AbstractMethod \ |
| AllFields \ |
| CreateMethodSignature \ |
| ExceptionHandle \ |
| IntMath \ |
| Interfaces \ |
| Main \ |
| MyClass \ |
| MyClassNatives \ |
| Nested \ |
| ProtoCompare \ |
| ProtoCompare2 \ |
| StaticLeafMethods \ |
| Statics \ |
| StaticsFromCode \ |
| XandY |
| |
| # subdirectories of test/ which are used with test-art-target-oat |
| # Declare the simplest tests (Main, HelloWorld, and Fibonacci) first, the rest are alphabetical |
| TEST_OAT_DIRECTORIES := \ |
| Main \ |
| HelloWorld \ |
| Fibonacci \ |
| \ |
| ExceptionTest \ |
| GrowthLimit \ |
| IntMath \ |
| Invoke \ |
| MemUsage \ |
| ParallelGC \ |
| ReferenceMap \ |
| ReflectionTest \ |
| StackWalk \ |
| ThreadStress |
| |
| # TODO: Enable when the StackWalk2 tests are passing |
| # StackWalk2 \ |
| |
| ART_BUILD_TARGET := false |
| ART_BUILD_HOST := false |
| ifeq ($(ART_BUILD_TARGET_NDEBUG),true) |
| ART_BUILD_TARGET := true |
| endif |
| ifeq ($(ART_BUILD_TARGET_DEBUG),true) |
| ART_BUILD_TARGET := true |
| endif |
| ifeq ($(ART_BUILD_HOST_NDEBUG),true) |
| ART_BUILD_HOST := true |
| endif |
| ifeq ($(ART_BUILD_HOST_DEBUG),true) |
| ART_BUILD_HOST := true |
| endif |