blob: b34abe4282a3d8ac84727973a526d2402c456171 [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001#
2# Copyright (C) 2011 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17LOCAL_PATH := $(call my-dir)
18
19include art/build/Android.common.mk
20
21LIBART_COMMON_SRC_FILES := \
22 atomic.cc.arm \
23 barrier.cc \
24 base/logging.cc \
25 base/mutex.cc \
26 base/stringpiece.cc \
27 base/stringprintf.cc \
28 base/timing_logger.cc \
29 base/unix_file/fd_file.cc \
30 base/unix_file/mapped_file.cc \
31 base/unix_file/null_file.cc \
32 base/unix_file/random_access_file_utils.cc \
33 base/unix_file/string_file.cc \
34 check_jni.cc \
35 class_linker.cc \
36 common_throws.cc \
37 compiled_method.cc \
38 debugger.cc \
39 dex_file.cc \
40 dex_file_verifier.cc \
41 dex_instruction.cc \
42 disassembler.cc \
43 disassembler_arm.cc \
44 disassembler_mips.cc \
45 disassembler_x86.cc \
46 elf_file.cc \
47 file_output_stream.cc \
48 gc/allocator/dlmalloc.cc \
49 gc/accounting/card_table.cc \
Mathieu Chartier0a9dc052013-07-25 11:01:28 -070050 gc/accounting/gc_allocator.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -070051 gc/accounting/heap_bitmap.cc \
52 gc/accounting/mod_union_table.cc \
53 gc/accounting/space_bitmap.cc \
54 gc/collector/garbage_collector.cc \
55 gc/collector/mark_sweep.cc \
56 gc/collector/partial_mark_sweep.cc \
57 gc/collector/sticky_mark_sweep.cc \
58 gc/heap.cc \
59 gc/space/dlmalloc_space.cc \
60 gc/space/image_space.cc \
61 gc/space/large_object_space.cc \
62 gc/space/space.cc \
63 hprof/hprof.cc \
64 image.cc \
65 indirect_reference_table.cc \
66 instrumentation.cc \
67 intern_table.cc \
68 interpreter/interpreter.cc \
69 jdwp/jdwp_event.cc \
70 jdwp/jdwp_expand_buf.cc \
71 jdwp/jdwp_handler.cc \
72 jdwp/jdwp_main.cc \
73 jdwp/jdwp_request.cc \
74 jdwp/jdwp_socket.cc \
75 jdwp/object_registry.cc \
76 jni_internal.cc \
77 jobject_comparator.cc \
78 locks.cc \
79 mem_map.cc \
80 memory_region.cc \
Brian Carlstromea46f952013-07-30 01:26:50 -070081 mirror/art_field.cc \
82 mirror/art_method.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -070083 mirror/array.cc \
84 mirror/class.cc \
85 mirror/dex_cache.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -070086 mirror/object.cc \
87 mirror/stack_trace_element.cc \
88 mirror/string.cc \
89 mirror/throwable.cc \
90 monitor.cc \
91 native/dalvik_system_DexFile.cc \
92 native/dalvik_system_VMDebug.cc \
93 native/dalvik_system_VMRuntime.cc \
94 native/dalvik_system_VMStack.cc \
95 native/dalvik_system_Zygote.cc \
96 native/java_lang_Class.cc \
97 native/java_lang_Object.cc \
98 native/java_lang_Runtime.cc \
99 native/java_lang_String.cc \
100 native/java_lang_System.cc \
101 native/java_lang_Thread.cc \
102 native/java_lang_Throwable.cc \
103 native/java_lang_VMClassLoader.cc \
104 native/java_lang_reflect_Array.cc \
105 native/java_lang_reflect_Constructor.cc \
106 native/java_lang_reflect_Field.cc \
107 native/java_lang_reflect_Method.cc \
108 native/java_lang_reflect_Proxy.cc \
109 native/java_util_concurrent_atomic_AtomicLong.cc \
110 native/org_apache_harmony_dalvik_ddmc_DdmServer.cc \
111 native/org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc \
112 native/sun_misc_Unsafe.cc \
113 oat.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -0700114 oat_file.cc \
115 offsets.cc \
116 os_linux.cc \
117 primitive.cc \
118 reference_table.cc \
119 reflection.cc \
120 runtime.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -0700121 signal_catcher.cc \
122 stack.cc \
123 thread.cc \
124 thread_list.cc \
125 thread_pool.cc \
126 throw_location.cc \
127 trace.cc \
128 utf.cc \
129 utils.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -0700130 verifier/dex_gc_map.cc \
131 verifier/instruction_flags.cc \
132 verifier/method_verifier.cc \
133 verifier/reg_type.cc \
134 verifier/reg_type_cache.cc \
135 verifier/register_line.cc \
136 well_known_classes.cc \
137 zip_archive.cc
138
139LIBART_COMMON_SRC_FILES += \
Ian Rogers166db042013-07-26 12:05:57 -0700140 arch/context.cc \
141 arch/arm/registers_arm.cc \
142 arch/x86/registers_x86.cc \
143 arch/mips/registers_mips.cc \
Ian Rogers7655f292013-07-29 11:07:13 -0700144 entrypoints/entrypoint_utils.cc \
Ian Rogers848871b2013-08-05 10:56:33 -0700145 entrypoints/interpreter/interpreter_entrypoints.cc \
Ian Rogers7655f292013-07-29 11:07:13 -0700146 entrypoints/jni/jni_entrypoints.cc \
147 entrypoints/math_entrypoints.cc \
148 entrypoints/portable/portable_alloc_entrypoints.cc \
149 entrypoints/portable/portable_cast_entrypoints.cc \
150 entrypoints/portable/portable_dexcache_entrypoints.cc \
151 entrypoints/portable/portable_field_entrypoints.cc \
152 entrypoints/portable/portable_fillarray_entrypoints.cc \
153 entrypoints/portable/portable_invoke_entrypoints.cc \
154 entrypoints/portable/portable_jni_entrypoints.cc \
155 entrypoints/portable/portable_lock_entrypoints.cc \
Ian Rogers7655f292013-07-29 11:07:13 -0700156 entrypoints/portable/portable_thread_entrypoints.cc \
157 entrypoints/portable/portable_throw_entrypoints.cc \
Dragos Sbirlea08bf1962013-08-12 08:53:04 -0700158 entrypoints/portable/portable_trampoline_entrypoints.cc \
Ian Rogers166db042013-07-26 12:05:57 -0700159 entrypoints/quick/quick_alloc_entrypoints.cc \
160 entrypoints/quick/quick_cast_entrypoints.cc \
161 entrypoints/quick/quick_deoptimization_entrypoints.cc \
162 entrypoints/quick/quick_dexcache_entrypoints.cc \
163 entrypoints/quick/quick_field_entrypoints.cc \
164 entrypoints/quick/quick_fillarray_entrypoints.cc \
165 entrypoints/quick/quick_instrumentation_entrypoints.cc \
Ian Rogers166db042013-07-26 12:05:57 -0700166 entrypoints/quick/quick_invoke_entrypoints.cc \
167 entrypoints/quick/quick_jni_entrypoints.cc \
168 entrypoints/quick/quick_lock_entrypoints.cc \
169 entrypoints/quick/quick_math_entrypoints.cc \
Ian Rogers166db042013-07-26 12:05:57 -0700170 entrypoints/quick/quick_thread_entrypoints.cc \
Ian Rogers848871b2013-08-05 10:56:33 -0700171 entrypoints/quick/quick_throw_entrypoints.cc \
172 entrypoints/quick/quick_trampoline_entrypoints.cc
Brian Carlstrom7940e442013-07-12 13:46:57 -0700173
Brian Carlstrom7940e442013-07-12 13:46:57 -0700174LIBART_TARGET_SRC_FILES := \
175 $(LIBART_COMMON_SRC_FILES) \
176 base/logging_android.cc \
177 jdwp/jdwp_adb.cc \
178 monitor_android.cc \
179 runtime_android.cc \
180 thread_android.cc
181
182ifeq ($(TARGET_ARCH),arm)
183LIBART_TARGET_SRC_FILES += \
Ian Rogers166db042013-07-26 12:05:57 -0700184 arch/arm/context_arm.cc.arm \
Ian Rogers7655f292013-07-29 11:07:13 -0700185 arch/arm/entrypoints_init_arm.cc \
186 arch/arm/jni_entrypoints_arm.S \
187 arch/arm/portable_entrypoints_arm.S \
Ian Rogers166db042013-07-26 12:05:57 -0700188 arch/arm/quick_entrypoints_arm.S \
Ian Rogers7655f292013-07-29 11:07:13 -0700189 arch/arm/thread_arm.cc
Brian Carlstrom7940e442013-07-12 13:46:57 -0700190else # TARGET_ARCH != arm
191ifeq ($(TARGET_ARCH),x86)
192LIBART_TARGET_SRC_FILES += \
Ian Rogers166db042013-07-26 12:05:57 -0700193 arch/x86/context_x86.cc \
Ian Rogers7655f292013-07-29 11:07:13 -0700194 arch/x86/entrypoints_init_x86.cc \
195 arch/x86/jni_entrypoints_x86.S \
196 arch/x86/portable_entrypoints_x86.S \
197 arch/x86/quick_entrypoints_x86.S \
198 arch/x86/thread_x86.cc
Brian Carlstrom7940e442013-07-12 13:46:57 -0700199else # TARGET_ARCH != x86
200ifeq ($(TARGET_ARCH),mips)
201LIBART_TARGET_SRC_FILES += \
Ian Rogers166db042013-07-26 12:05:57 -0700202 arch/mips/context_mips.cc \
Ian Rogers7655f292013-07-29 11:07:13 -0700203 arch/mips/entrypoints_init_mips.cc \
204 arch/mips/jni_entrypoints_mips.S \
205 arch/mips/portable_entrypoints_mips.S \
206 arch/mips/quick_entrypoints_mips.S \
207 arch/mips/thread_mips.cc
Brian Carlstrom7940e442013-07-12 13:46:57 -0700208else # TARGET_ARCH != mips
209$(error unsupported TARGET_ARCH=$(TARGET_ARCH))
210endif # TARGET_ARCH != mips
211endif # TARGET_ARCH != x86
212endif # TARGET_ARCH != arm
213
Brian Carlstrom7940e442013-07-12 13:46:57 -0700214
215LIBART_HOST_SRC_FILES := \
216 $(LIBART_COMMON_SRC_FILES) \
217 base/logging_linux.cc \
218 monitor_linux.cc \
219 runtime_linux.cc \
220 thread_linux.cc
221
222ifeq ($(HOST_ARCH),x86)
223LIBART_HOST_SRC_FILES += \
Ian Rogers166db042013-07-26 12:05:57 -0700224 arch/x86/context_x86.cc \
Ian Rogers7655f292013-07-29 11:07:13 -0700225 arch/x86/entrypoints_init_x86.cc \
226 arch/x86/jni_entrypoints_x86.S \
227 arch/x86/portable_entrypoints_x86.S \
228 arch/x86/quick_entrypoints_x86.S \
229 arch/x86/thread_x86.cc
Brian Carlstrom7940e442013-07-12 13:46:57 -0700230else # HOST_ARCH != x86
231$(error unsupported HOST_ARCH=$(HOST_ARCH))
232endif # HOST_ARCH != x86
233
234
235LIBART_ENUM_OPERATOR_OUT_HEADER_FILES := \
236 base/mutex.h \
237 dex_file.h \
238 dex_instruction.h \
239 gc/collector/gc_type.h \
240 gc/space/space.h \
241 gc/heap.h \
242 indirect_reference_table.h \
243 instruction_set.h \
244 invoke_type.h \
245 jdwp/jdwp.h \
246 jdwp/jdwp_constants.h \
247 locks.h \
248 mirror/class.h \
249 thread.h \
250 thread_state.h \
251 verifier/method_verifier.h
252
253LIBART_CFLAGS :=
254ifeq ($(ART_USE_PORTABLE_COMPILER),true)
255 LIBART_CFLAGS += -DART_USE_PORTABLE_COMPILER=1
256endif
257
258# $(1): target or host
259# $(2): ndebug or debug
260define build-libart
261 ifneq ($(1),target)
262 ifneq ($(1),host)
263 $$(error expected target or host for argument 1, received $(1))
264 endif
265 endif
266 ifneq ($(2),ndebug)
267 ifneq ($(2),debug)
268 $$(error expected ndebug or debug for argument 2, received $(2))
269 endif
270 endif
271
272 art_target_or_host := $(1)
273 art_ndebug_or_debug := $(2)
274
275 include $(CLEAR_VARS)
276 ifeq ($$(art_target_or_host),target)
277 include external/stlport/libstlport.mk
278 endif
279 LOCAL_CPP_EXTENSION := $(ART_CPP_EXTENSION)
280 ifeq ($$(art_ndebug_or_debug),ndebug)
281 LOCAL_MODULE := libart
282 else # debug
283 LOCAL_MODULE := libartd
284 endif
285
286 LOCAL_MODULE_TAGS := optional
287 LOCAL_MODULE_CLASS := SHARED_LIBRARIES
288
289 ifeq ($$(art_target_or_host),target)
290 LOCAL_SRC_FILES := $(LIBART_TARGET_SRC_FILES)
291 else # host
292 LOCAL_SRC_FILES := $(LIBART_HOST_SRC_FILES)
293 LOCAL_IS_HOST_MODULE := true
294 endif
295
296 GENERATED_SRC_DIR := $$(call intermediates-dir-for,$$(LOCAL_MODULE_CLASS),$$(LOCAL_MODULE),$$(LOCAL_IS_HOST_MODULE),)
297 ENUM_OPERATOR_OUT_CC_FILES := $$(patsubst %.h,%_operator_out.cc,$$(LIBART_ENUM_OPERATOR_OUT_HEADER_FILES))
298 ENUM_OPERATOR_OUT_GEN := $$(addprefix $$(GENERATED_SRC_DIR)/,$$(ENUM_OPERATOR_OUT_CC_FILES))
299
300$$(ENUM_OPERATOR_OUT_GEN): art/tools/generate-operator-out.py
301$$(ENUM_OPERATOR_OUT_GEN): PRIVATE_CUSTOM_TOOL = art/tools/generate-operator-out.py $(LOCAL_PATH) $$< > $$@
302$$(ENUM_OPERATOR_OUT_GEN): $$(GENERATED_SRC_DIR)/%_operator_out.cc : $(LOCAL_PATH)/%.h
303 $$(transform-generated-source)
304
305 LOCAL_GENERATED_SOURCES += $$(ENUM_OPERATOR_OUT_GEN)
306
307 LOCAL_CFLAGS := $(LIBART_CFLAGS)
308 ifeq ($$(art_target_or_host),target)
309 LOCAL_CLANG := $(ART_TARGET_CLANG)
310 LOCAL_CFLAGS += $(ART_TARGET_CFLAGS)
311 else # host
312 LOCAL_CLANG := $(ART_HOST_CLANG)
313 LOCAL_CFLAGS += $(ART_HOST_CFLAGS)
314 endif
315 ifeq ($$(art_ndebug_or_debug),debug)
316 ifeq ($$(art_target_or_host),target)
317 LOCAL_CFLAGS += $(ART_TARGET_DEBUG_CFLAGS)
318 else # host
319 LOCAL_CFLAGS += $(ART_HOST_DEBUG_CFLAGS)
320 LOCAL_LDLIBS += $(ART_HOST_DEBUG_LDLIBS)
321 LOCAL_STATIC_LIBRARIES := libgtest_host
322 endif
323 else
324 ifeq ($$(art_target_or_host),target)
325 LOCAL_CFLAGS += $(ART_TARGET_NON_DEBUG_CFLAGS)
326 else # host
327 LOCAL_CFLAGS += $(ART_HOST_NON_DEBUG_CFLAGS)
328 endif
329 endif
330 LOCAL_C_INCLUDES += $(ART_C_INCLUDES)
Elliott Hughes025218c2013-07-30 17:13:06 -0700331 LOCAL_SHARED_LIBRARIES += liblog libnativehelper
Brian Carlstrom7940e442013-07-12 13:46:57 -0700332 LOCAL_SHARED_LIBRARIES += libcorkscrew # native stack trace support
333 ifeq ($$(art_target_or_host),target)
Elliott Hughes025218c2013-07-30 17:13:06 -0700334 LOCAL_SHARED_LIBRARIES += libcutils libz libdl libselinux
Brian Carlstrom7940e442013-07-12 13:46:57 -0700335 else # host
336 LOCAL_STATIC_LIBRARIES += libcutils
337 LOCAL_SHARED_LIBRARIES += libz-host
338 LOCAL_LDLIBS += -ldl -lpthread
339 ifeq ($(HOST_OS),linux)
340 LOCAL_LDLIBS += -lrt
341 endif
342 endif
343 include $(LLVM_GEN_INTRINSICS_MK)
344 LOCAL_ADDITIONAL_DEPENDENCIES := art/build/Android.common.mk
345 LOCAL_ADDITIONAL_DEPENDENCIES += $(LOCAL_PATH)/Android.mk
346 ifeq ($$(art_target_or_host),target)
347 include $(LLVM_DEVICE_BUILD_MK)
348 include $(BUILD_SHARED_LIBRARY)
349 else # host
350 include $(LLVM_HOST_BUILD_MK)
351 include $(BUILD_HOST_SHARED_LIBRARY)
352 endif
353endef
354
355ifeq ($(ART_BUILD_TARGET_NDEBUG),true)
356 $(eval $(call build-libart,target,ndebug))
357endif
358ifeq ($(ART_BUILD_TARGET_DEBUG),true)
359 $(eval $(call build-libart,target,debug))
360endif
361
362# We always build dex2oat and dependencies, even if the host build is otherwise disabled, since they are used to cross compile for the target.
Brian Carlstrom19e776c2013-07-23 12:16:44 -0700363ifeq ($(WITH_HOST_DALVIK),true)
364 ifeq ($(ART_BUILD_NDEBUG),true)
365 $(eval $(call build-libart,host,ndebug))
366 endif
367 ifeq ($(ART_BUILD_DEBUG),true)
368 $(eval $(call build-libart,host,debug))
369 endif
Brian Carlstrom7940e442013-07-12 13:46:57 -0700370endif