| # |
| # 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. |
| # |
| |
| ART_SLOW_MODE := false |
| ifneq ($(wildcard art/SLOW_ART),) |
| $(info Enabling ART_SLOW_MODE because of existence of art/SLOW_ART) |
| ART_SLOW_MODE := true |
| endif |
| |
| ART_USE_PORTABLE_COMPILER := false |
| ifneq ($(wildcard art/USE_PORTABLE_COMPILER),) |
| $(info Enabling ART_USE_PORTABLE_COMPILER because of existence of art/USE_PORTABLE_COMPILER) |
| ART_USE_PORTABLE_COMPILER := true |
| endif |
| ifeq ($(WITH_ART_USE_PORTABLE_COMPILER),true) |
| $(info Enabling ART_USE_PORTABLE_COMPILER because WITH_ART_USE_PORTABLE_COMPILER=true) |
| ART_USE_PORTABLE_COMPILER := true |
| endif |
| |
| LLVM_ROOT_PATH := external/llvm |
| include $(LLVM_ROOT_PATH)/llvm.mk |
| |
| # 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/zlib \ |
| frameworks/compile/mclinker/include \ |
| art/src |
| |
| art_cflags := \ |
| -O2 \ |
| -ggdb3 \ |
| -Wall \ |
| -Werror \ |
| -Wextra \ |
| -Wstrict-aliasing=3 \ |
| -fstrict-aliasing |
| |
| ifeq ($(ART_SLOW_MODE),true) |
| art_cflags += -DART_SLOW_MODE=1 |
| endif |
| |
| # TODO: enable -std=gnu++0x for auto support when on Ubuntu 12.04 LTS (Precise Pangolin) |
| # On 10.04 LTS (Lucid Lynx), it can cause dependencies on GLIBCXX_3.4.14 version symbols. |
| |
| ifeq ($(HOST_OS),linux) |
| art_non_debug_cflags := \ |
| -Wframe-larger-than=1728 |
| endif |
| |
| art_debug_cflags := \ |
| -fno-inline \ |
| -DDYNAMIC_ANNOTATIONS_ENABLED=1 \ |
| -UNDEBUG |
| |
| # start of image reserved address space |
| IMG_HOST_BASE_ADDRESS := 0x60000000 |
| |
| ifeq ($(TARGET_ARCH),mips) |
| IMG_TARGET_BASE_ADDRESS := 0x30000000 |
| else |
| IMG_TARGET_BASE_ADDRESS := 0x60000000 |
| endif |
| |
| ART_HOST_CFLAGS := $(art_cflags) -DANDROID_SMP=1 -DART_BASE_ADDRESS=$(IMG_HOST_BASE_ADDRESS) |
| |
| ifeq ($(TARGET_ARCH),x86) |
| ART_TARGET_CFLAGS += -msse2 |
| endif |
| |
| ART_TARGET_CFLAGS := $(art_cflags) -DART_TARGET -DART_BASE_ADDRESS=$(IMG_TARGET_BASE_ADDRESS) |
| 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 (and -lsupc++) |
| ART_HOST_DEBUG_CFLAGS := $(art_debug_cflags) -fkeep-inline-functions |
| ART_HOST_DEBUG_LDLIBS := -lsupc++ |
| |
| 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)) |
| # Mac OS doesn't have libsupc++. |
| ART_HOST_DEBUG_LDLIBS := $(filter-out -lsupc++,$(ART_HOST_DEBUG_LDLIBS)) |
| endif |
| |
| ART_TARGET_DEBUG_CFLAGS := $(art_debug_cflags) |
| |
| ifeq ($(ART_USE_PORTABLE_COMPILER),true) |
| PARALLEL_ART_COMPILE_JOBS := -j8 |
| endif |
| |
| DEX2OAT_SRC_FILES := \ |
| src/dex2oat.cc |
| |
| OATDUMP_SRC_FILES := \ |
| src/oatdump.cc |
| |
| OATEXEC_SRC_FILES := \ |
| src/oatexec.cc |
| |
| LIBART_COMMON_SRC_FILES := \ |
| src/atomic.cc.arm \ |
| src/barrier.cc \ |
| src/base/logging.cc \ |
| src/base/mutex.cc \ |
| src/base/stringpiece.cc \ |
| src/base/stringprintf.cc \ |
| src/base/timing_logger.cc \ |
| src/base/unix_file/fd_file.cc \ |
| src/base/unix_file/mapped_file.cc \ |
| src/base/unix_file/null_file.cc \ |
| src/base/unix_file/random_access_file_utils.cc \ |
| src/base/unix_file/string_file.cc \ |
| src/check_jni.cc \ |
| src/class_linker.cc \ |
| src/common_throws.cc \ |
| src/compiled_method.cc \ |
| src/compiler/driver/compiler_driver.cc \ |
| src/compiler/llvm/runtime_support_llvm.cc \ |
| src/debugger.cc \ |
| src/dex_file.cc \ |
| src/dex_file_verifier.cc \ |
| src/dex_instruction.cc \ |
| src/disassembler.cc \ |
| src/disassembler_arm.cc \ |
| src/disassembler_mips.cc \ |
| src/disassembler_x86.cc \ |
| src/dlmalloc.cc \ |
| src/elf_file.cc \ |
| src/file_output_stream.cc \ |
| src/gc/card_table.cc \ |
| src/gc/garbage_collector.cc \ |
| src/gc/heap_bitmap.cc \ |
| src/gc/large_object_space.cc \ |
| src/gc/mark_sweep.cc \ |
| src/gc/mod_union_table.cc \ |
| src/gc/partial_mark_sweep.cc \ |
| src/gc/space.cc \ |
| src/gc/space_bitmap.cc \ |
| src/gc/sticky_mark_sweep.cc \ |
| src/heap.cc \ |
| src/hprof/hprof.cc \ |
| src/image.cc \ |
| src/image_writer.cc \ |
| src/indirect_reference_table.cc \ |
| src/instrumentation.cc \ |
| src/intern_table.cc \ |
| src/interpreter/interpreter.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_request.cc \ |
| src/jdwp/jdwp_socket.cc \ |
| src/jdwp/object_registry.cc \ |
| src/jni_internal.cc \ |
| src/jobject_comparator.cc \ |
| src/locks.cc \ |
| src/mem_map.cc \ |
| src/memory_region.cc \ |
| src/mirror/abstract_method.cc \ |
| src/mirror/array.cc \ |
| src/mirror/class.cc \ |
| src/mirror/dex_cache.cc \ |
| src/mirror/field.cc \ |
| src/mirror/object.cc \ |
| src/mirror/stack_trace_element.cc \ |
| src/mirror/string.cc \ |
| src/mirror/throwable.cc \ |
| src/monitor.cc \ |
| src/native/dalvik_system_DexFile.cc \ |
| src/native/dalvik_system_VMDebug.cc \ |
| src/native/dalvik_system_VMRuntime.cc \ |
| src/native/dalvik_system_VMStack.cc \ |
| src/native/dalvik_system_Zygote.cc \ |
| src/native/java_lang_Class.cc \ |
| src/native/java_lang_Object.cc \ |
| src/native/java_lang_Runtime.cc \ |
| src/native/java_lang_String.cc \ |
| src/native/java_lang_System.cc \ |
| src/native/java_lang_Thread.cc \ |
| src/native/java_lang_Throwable.cc \ |
| src/native/java_lang_VMClassLoader.cc \ |
| src/native/java_lang_reflect_Array.cc \ |
| src/native/java_lang_reflect_Constructor.cc \ |
| src/native/java_lang_reflect_Field.cc \ |
| src/native/java_lang_reflect_Method.cc \ |
| src/native/java_lang_reflect_Proxy.cc \ |
| src/native/java_util_concurrent_atomic_AtomicLong.cc \ |
| src/native/org_apache_harmony_dalvik_ddmc_DdmServer.cc \ |
| src/native/org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc \ |
| src/native/sun_misc_Unsafe.cc \ |
| src/oat.cc \ |
| src/oat/runtime/arm/stub_arm.cc \ |
| src/oat/runtime/mips/stub_mips.cc \ |
| src/oat/runtime/x86/stub_x86.cc \ |
| src/oat/utils/arm/assembler_arm.cc \ |
| src/oat/utils/arm/managed_register_arm.cc \ |
| src/oat/utils/assembler.cc \ |
| src/oat/utils/mips/assembler_mips.cc \ |
| src/oat/utils/mips/managed_register_mips.cc \ |
| src/oat/utils/x86/assembler_x86.cc \ |
| src/oat/utils/x86/managed_register_x86.cc \ |
| src/oat_file.cc \ |
| src/oat_writer.cc \ |
| src/offsets.cc \ |
| src/os_linux.cc \ |
| src/primitive.cc \ |
| src/reference_table.cc \ |
| src/reflection.cc \ |
| src/runtime.cc \ |
| src/runtime_support.cc \ |
| src/signal_catcher.cc \ |
| src/stack.cc \ |
| src/thread.cc \ |
| src/thread_list.cc \ |
| src/thread_pool.cc \ |
| src/throw_location.cc \ |
| src/trace.cc \ |
| src/utf.cc \ |
| src/utils.cc \ |
| src/vector_output_stream.cc \ |
| src/verifier/dex_gc_map.cc \ |
| src/verifier/instruction_flags.cc \ |
| src/verifier/method_verifier.cc \ |
| src/verifier/reg_type.cc \ |
| src/verifier/reg_type_cache.cc \ |
| src/verifier/register_line.cc \ |
| src/well_known_classes.cc \ |
| src/zip_archive.cc |
| |
| LIBART_COMMON_SRC_FILES += \ |
| src/oat/runtime/context.cc \ |
| src/oat/runtime/support_alloc.cc \ |
| src/oat/runtime/support_cast.cc \ |
| src/oat/runtime/support_deoptimize.cc \ |
| src/oat/runtime/support_dexcache.cc \ |
| src/oat/runtime/support_field.cc \ |
| src/oat/runtime/support_fillarray.cc \ |
| src/oat/runtime/support_instrumentation.cc \ |
| src/oat/runtime/support_invoke.cc \ |
| src/oat/runtime/support_jni.cc \ |
| src/oat/runtime/support_locks.cc \ |
| src/oat/runtime/support_math.cc \ |
| src/oat/runtime/support_proxy.cc \ |
| src/oat/runtime/support_stubs.cc \ |
| src/oat/runtime/support_thread.cc \ |
| src/oat/runtime/support_throw.cc \ |
| src/oat/runtime/support_interpreter.cc |
| |
| LIBART_TARGET_SRC_FILES := \ |
| $(LIBART_COMMON_SRC_FILES) \ |
| src/base/logging_android.cc \ |
| src/jdwp/jdwp_adb.cc \ |
| src/monitor_android.cc \ |
| src/runtime_android.cc \ |
| src/thread_android.cc |
| |
| ifeq ($(TARGET_ARCH),arm) |
| LIBART_TARGET_SRC_FILES += \ |
| src/oat/runtime/arm/context_arm.cc.arm \ |
| src/oat/runtime/arm/oat_support_entrypoints_arm.cc \ |
| src/oat/runtime/arm/runtime_support_arm.S |
| else # TARGET_ARCH != arm |
| ifeq ($(TARGET_ARCH),x86) |
| LIBART_TARGET_SRC_FILES += \ |
| src/oat/runtime/x86/context_x86.cc \ |
| src/oat/runtime/x86/oat_support_entrypoints_x86.cc \ |
| src/oat/runtime/x86/runtime_support_x86.S |
| else # TARGET_ARCH != x86 |
| ifeq ($(TARGET_ARCH),mips) |
| LIBART_TARGET_SRC_FILES += \ |
| src/oat/runtime/mips/context_mips.cc \ |
| src/oat/runtime/mips/oat_support_entrypoints_mips.cc \ |
| src/oat/runtime/mips/runtime_support_mips.S |
| else # TARGET_ARCH != mips |
| $(error unsupported TARGET_ARCH=$(TARGET_ARCH)) |
| endif # TARGET_ARCH != mips |
| endif # TARGET_ARCH != x86 |
| endif # TARGET_ARCH != arm |
| |
| ifeq ($(TARGET_ARCH),arm) |
| LIBART_TARGET_SRC_FILES += src/thread_arm.cc |
| else # TARGET_ARCH != arm |
| ifeq ($(TARGET_ARCH),x86) |
| LIBART_TARGET_SRC_FILES += src/thread_x86.cc |
| else # TARGET_ARCH != x86 |
| ifeq ($(TARGET_ARCH),mips) |
| LIBART_TARGET_SRC_FILES += src/thread_mips.cc |
| else # TARGET_ARCH != mips |
| $(error unsupported TARGET_ARCH=$(TARGET_ARCH)) |
| endif # TARGET_ARCH != mips |
| endif # TARGET_ARCH != x86 |
| endif # TARGET_ARCH != arm |
| |
| LIBART_HOST_SRC_FILES := \ |
| $(LIBART_COMMON_SRC_FILES) \ |
| src/base/logging_linux.cc \ |
| src/monitor_linux.cc \ |
| src/runtime_linux.cc \ |
| src/thread_linux.cc |
| |
| ifeq ($(HOST_ARCH),x86) |
| LIBART_HOST_SRC_FILES += \ |
| src/oat/runtime/x86/context_x86.cc \ |
| src/oat/runtime/x86/oat_support_entrypoints_x86.cc \ |
| src/oat/runtime/x86/runtime_support_x86.S |
| else # HOST_ARCH != x86 |
| $(error unsupported HOST_ARCH=$(HOST_ARCH)) |
| endif # HOST_ARCH != x86 |
| |
| ifeq ($(HOST_ARCH),x86) |
| LIBART_HOST_SRC_FILES += src/thread_x86.cc |
| else # HOST_ARCH != x86 |
| $(error unsupported HOST_ARCH=$(HOST_ARCH)) |
| endif # HOST_ARCH != x86 |
| |
| |
| LIBART_ENUM_OPERATOR_OUT_HEADER_FILES := \ |
| src/base/mutex.h \ |
| src/compiler/dex/compiler_enums.h \ |
| src/dex_file.h \ |
| src/dex_instruction.h \ |
| src/gc/gc_type.h \ |
| src/gc/space.h \ |
| src/heap.h \ |
| src/indirect_reference_table.h \ |
| src/instruction_set.h \ |
| src/invoke_type.h \ |
| src/jdwp/jdwp.h \ |
| src/jdwp/jdwp_constants.h \ |
| src/locks.h \ |
| src/mirror/class.h \ |
| src/thread.h \ |
| src/thread_state.h \ |
| src/verifier/method_verifier.h |
| |
| LIBARTTEST_COMMON_SRC_FILES := \ |
| test/ReferenceMap/stack_walk_refmap_jni.cc \ |
| test/StackWalk/stack_walk_jni.cc |
| |
| TEST_COMMON_SRC_FILES := \ |
| src/barrier_test.cc \ |
| src/base/histogram_test.cc \ |
| src/base/mutex_test.cc \ |
| src/base/unix_file/fd_file_test.cc \ |
| src/base/unix_file/mapped_file_test.cc \ |
| src/base/unix_file/null_file_test.cc \ |
| src/base/unix_file/random_access_file_utils_test.cc \ |
| src/base/unix_file/string_file_test.cc \ |
| src/class_linker_test.cc \ |
| src/compiler/driver/compiler_driver_test.cc \ |
| src/compiler/jni/jni_compiler_test.cc \ |
| src/dex_file_test.cc \ |
| src/dex_instruction_visitor_test.cc \ |
| src/dex_method_iterator_test.cc \ |
| src/elf_writer_test.cc \ |
| src/exception_test.cc \ |
| src/gc/space_bitmap_test.cc \ |
| src/gc/space_test.cc \ |
| src/gtest_test.cc \ |
| src/heap_test.cc \ |
| src/image_test.cc \ |
| src/indenter_test.cc \ |
| src/indirect_reference_table_test.cc \ |
| src/intern_table_test.cc \ |
| src/jni_internal_test.cc \ |
| src/mirror/dex_cache_test.cc \ |
| src/mirror/object_test.cc \ |
| src/oat/utils/arm/managed_register_arm_test.cc \ |
| src/oat/utils/x86/managed_register_x86_test.cc \ |
| src/oat_test.cc \ |
| src/output_stream_test.cc \ |
| src/reference_table_test.cc \ |
| src/runtime_support_test.cc \ |
| src/runtime_test.cc \ |
| src/thread_pool_test.cc \ |
| src/utils_test.cc \ |
| src/verifier/method_verifier_test.cc \ |
| src/verifier/reg_type_test.cc \ |
| src/zip_archive_test.cc |
| |
| TEST_TARGET_SRC_FILES := \ |
| $(TEST_COMMON_SRC_FILES) |
| |
| TEST_HOST_SRC_FILES := \ |
| $(TEST_COMMON_SRC_FILES) \ |
| src/oat/utils/x86/assembler_x86_test.cc |
| |
| # subdirectories of test/ which are used as inputs for gtests |
| TEST_DEX_DIRECTORIES := \ |
| AbstractMethod \ |
| AllFields \ |
| CreateMethodSignature \ |
| ExceptionHandle \ |
| Interfaces \ |
| Main \ |
| MyClass \ |
| MyClassNatives \ |
| Nested \ |
| NonStaticLeafMethods \ |
| ProtoCompare \ |
| ProtoCompare2 \ |
| StaticLeafMethods \ |
| Statics \ |
| StaticsFromCode \ |
| XandY |
| |
| # subdirectories of test/ which are used with test-art-target-oat |
| # Declare the simplest tests (Main, HelloWorld) first, the rest are alphabetical |
| TEST_OAT_DIRECTORIES := \ |
| Main \ |
| HelloWorld \ |
| \ |
| ParallelGC \ |
| ReferenceMap \ |
| StackWalk \ |
| ThreadStress |
| |
| # TODO: Enable when the StackWalk2 tests are passing |
| # StackWalk2 \ |
| |
| ART_BUILD_TARGET := false |
| ART_BUILD_HOST := false |
| ART_BUILD_NDEBUG := false |
| ART_BUILD_DEBUG := false |
| ifeq ($(ART_BUILD_TARGET_NDEBUG),true) |
| ART_BUILD_TARGET := true |
| ART_BUILD_NDEBUG := true |
| endif |
| ifeq ($(ART_BUILD_TARGET_DEBUG),true) |
| ART_BUILD_TARGET := true |
| ART_BUILD_DEBUG := true |
| endif |
| ifeq ($(ART_BUILD_HOST_NDEBUG),true) |
| ART_BUILD_HOST := true |
| ART_BUILD_NDEBUG := true |
| endif |
| ifeq ($(ART_BUILD_HOST_DEBUG),true) |
| ART_BUILD_HOST := true |
| ART_BUILD_DEBUG := true |
| endif |