blob: 6b691fd0fd846a78be29ff93e8f5352d8fb544a0 [file] [log] [blame]
Colin Cross1f7f3bd2016-07-27 10:12:38 -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
David Sehr8c0961f2018-01-23 16:11:38 -080017// Keep the __jit_debug_register_code symbol as a unique symbol during ICF for architectures where
18// we use gold as the linker (arm, x86, x86_64). The symbol is used by the debuggers to detect when
19// new jit code is generated. We don't want it to be called when a different function with the same
20// (empty) body is called.
David Srbecky440a9b32018-02-15 17:47:29 +000021JIT_DEBUG_REGISTER_CODE_LDFLAGS = [
22 "-Wl,--keep-unique,__jit_debug_register_code",
Andreas Gampe0dc93b12019-05-15 10:30:22 -070023 "-Wl,--keep-unique,__dex_debug_register_code",
David Srbecky440a9b32018-02-15 17:47:29 +000024]
David Sehr8c0961f2018-01-23 16:11:38 -080025
Nicolas Geoffray8a229072018-05-10 16:34:14 +010026libart_cc_defaults {
Colin Cross1f7f3bd2016-07-27 10:12:38 -070027 name: "libart_defaults",
28 defaults: ["art_defaults"],
29 host_supported: true,
30 srcs: [
Chang Xing605fe242017-07-20 15:57:21 -070031 "aot_class_linker.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070032 "art_field.cc",
33 "art_method.cc",
Alex Light543d8452018-07-13 16:25:58 +000034 "backtrace_helper.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070035 "barrier.cc",
Andreas Gampe7cc45fd2018-11-21 16:03:08 -080036 "base/locks.cc",
David Sehr3215fff2018-04-03 17:10:12 -070037 "base/mem_map_arena_pool.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070038 "base/mutex.cc",
David Sehrc431b9d2018-03-02 12:01:51 -080039 "base/quasi_atomic.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070040 "base/timing_logger.cc",
Mingyao Yang063fc772016-08-02 11:02:54 -070041 "cha.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070042 "class_linker.cc",
Calin Juravle87e2cb62017-06-13 21:48:45 -070043 "class_loader_context.cc",
Vladimir Markob4eb1b12018-05-24 11:09:38 +010044 "class_root.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070045 "class_table.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070046 "common_throws.cc",
47 "compiler_filter.cc",
Vladimir Marko606adb32018-04-05 14:49:24 +010048 "debug_print.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070049 "debugger.cc",
David Sehr9e734c72018-01-04 17:56:19 -080050 "dex/dex_file_annotations.cc",
David Srbeckye1402122018-06-13 18:20:45 +010051 "dex_register_location.cc",
Nicolas Geoffray4e868fa2017-04-21 17:16:44 +010052 "dex_to_dex_decompiler.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070053 "elf_file.cc",
David Sehr97c381e2017-02-01 15:09:58 -080054 "exec_utils.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070055 "fault_handler.cc",
56 "gc/allocation_record.cc",
57 "gc/allocator/dlmalloc.cc",
58 "gc/allocator/rosalloc.cc",
59 "gc/accounting/bitmap.cc",
60 "gc/accounting/card_table.cc",
61 "gc/accounting/heap_bitmap.cc",
62 "gc/accounting/mod_union_table.cc",
63 "gc/accounting/remembered_set.cc",
64 "gc/accounting/space_bitmap.cc",
65 "gc/collector/concurrent_copying.cc",
66 "gc/collector/garbage_collector.cc",
67 "gc/collector/immune_region.cc",
68 "gc/collector/immune_spaces.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070069 "gc/collector/mark_sweep.cc",
70 "gc/collector/partial_mark_sweep.cc",
71 "gc/collector/semi_space.cc",
72 "gc/collector/sticky_mark_sweep.cc",
73 "gc/gc_cause.cc",
74 "gc/heap.cc",
75 "gc/reference_processor.cc",
76 "gc/reference_queue.cc",
77 "gc/scoped_gc_critical_section.cc",
78 "gc/space/bump_pointer_space.cc",
79 "gc/space/dlmalloc_space.cc",
80 "gc/space/image_space.cc",
81 "gc/space/large_object_space.cc",
82 "gc/space/malloc_space.cc",
83 "gc/space/region_space.cc",
84 "gc/space/rosalloc_space.cc",
85 "gc/space/space.cc",
86 "gc/space/zygote_space.cc",
87 "gc/task_processor.cc",
Mathieu Chartier1ca68902017-04-18 11:26:22 -070088 "gc/verification.cc",
Andreas Gampeaa120012018-03-28 16:23:24 -070089 "hidden_api.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070090 "hprof/hprof.cc",
91 "image.cc",
Vladimir Markof3c52b42017-11-17 17:32:12 +000092 "index_bss_mapping.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070093 "indirect_reference_table.cc",
94 "instrumentation.cc",
95 "intern_table.cc",
96 "interpreter/interpreter.cc",
David Srbecky912f36c2018-09-08 12:22:58 +010097 "interpreter/interpreter_cache.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070098 "interpreter/interpreter_common.cc",
buzbee78f1bdc2017-03-01 10:55:57 -080099 "interpreter/interpreter_intrinsics.cc",
David Srbecky2ee09ff2018-10-24 13:24:22 +0100100 "interpreter/interpreter_switch_impl0.cc",
101 "interpreter/interpreter_switch_impl1.cc",
102 "interpreter/interpreter_switch_impl2.cc",
103 "interpreter/interpreter_switch_impl3.cc",
Andreas Gampe36a296f2017-06-13 14:11:11 -0700104 "interpreter/lock_count_data.cc",
105 "interpreter/shadow_frame.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700106 "interpreter/unstarted_runtime.cc",
Andreas Gampe36a296f2017-06-13 14:11:11 -0700107 "java_frame_root_info.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700108 "jdwp/jdwp_event.cc",
109 "jdwp/jdwp_expand_buf.cc",
110 "jdwp/jdwp_handler.cc",
111 "jdwp/jdwp_main.cc",
112 "jdwp/jdwp_request.cc",
113 "jdwp/jdwp_socket.cc",
114 "jdwp/object_registry.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700115 "jit/debugger_interface.cc",
116 "jit/jit.cc",
117 "jit/jit_code_cache.cc",
Nicolas Geoffray2a905b22019-06-06 09:04:07 +0100118 "jit/jit_memory_region.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700119 "jit/profiling_info.cc",
120 "jit/profile_saver.cc",
Andreas Gampec0ed43e2018-06-18 10:47:15 -0700121 "jni/check_jni.cc",
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +0100122 "jni/java_vm_ext.cc",
123 "jni/jni_env_ext.cc",
124 "jni/jni_internal.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700125 "linear_alloc.cc",
Andreas Gampe513061a2017-06-01 09:17:34 -0700126 "managed_stack.cc",
Orion Hodsonba28f9f2016-10-26 10:56:25 +0100127 "method_handles.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700128 "mirror/array.cc",
129 "mirror/class.cc",
Alex Lightd6251582016-10-31 11:12:30 -0700130 "mirror/class_ext.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700131 "mirror/dex_cache.cc",
Narayan Kamath000e1882016-10-24 17:14:25 +0100132 "mirror/emulated_stack_frame.cc",
Neil Fuller0e844392016-09-08 13:43:31 +0100133 "mirror/executable.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700134 "mirror/field.cc",
135 "mirror/method.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100136 "mirror/method_handle_impl.cc",
Orion Hodsonc069a302017-01-18 09:23:12 +0000137 "mirror/method_handles_lookup.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100138 "mirror/method_type.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700139 "mirror/object.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700140 "mirror/stack_trace_element.cc",
141 "mirror/string.cc",
142 "mirror/throwable.cc",
Orion Hodson005ac512017-10-24 15:43:43 +0100143 "mirror/var_handle.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700144 "monitor.cc",
Vladimir Markof52d92f2019-03-29 12:33:02 +0000145 "monitor_objects_stack_visitor.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700146 "native_bridge_art_interface.cc",
147 "native_stack_dump.cc",
148 "native/dalvik_system_DexFile.cc",
149 "native/dalvik_system_VMDebug.cc",
150 "native/dalvik_system_VMRuntime.cc",
151 "native/dalvik_system_VMStack.cc",
152 "native/dalvik_system_ZygoteHooks.cc",
153 "native/java_lang_Class.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700154 "native/java_lang_Object.cc",
155 "native/java_lang_String.cc",
156 "native/java_lang_StringFactory.cc",
157 "native/java_lang_System.cc",
158 "native/java_lang_Thread.cc",
159 "native/java_lang_Throwable.cc",
160 "native/java_lang_VMClassLoader.cc",
Narayan Kamathbd2fed52017-01-25 10:46:54 +0000161 "native/java_lang_invoke_MethodHandleImpl.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700162 "native/java_lang_ref_FinalizerReference.cc",
163 "native/java_lang_ref_Reference.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700164 "native/java_lang_reflect_Array.cc",
165 "native/java_lang_reflect_Constructor.cc",
Neil Fuller0e844392016-09-08 13:43:31 +0100166 "native/java_lang_reflect_Executable.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700167 "native/java_lang_reflect_Field.cc",
168 "native/java_lang_reflect_Method.cc",
Neil Fuller60458a02016-09-01 15:32:44 +0100169 "native/java_lang_reflect_Parameter.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700170 "native/java_lang_reflect_Proxy.cc",
171 "native/java_util_concurrent_atomic_AtomicLong.cc",
172 "native/libcore_util_CharsetUtils.cc",
173 "native/org_apache_harmony_dalvik_ddmc_DdmServer.cc",
174 "native/org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc",
175 "native/sun_misc_Unsafe.cc",
Alex Lighte77b48b2017-02-22 11:08:06 -0800176 "non_debuggable_classes.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700177 "oat.cc",
178 "oat_file.cc",
179 "oat_file_assistant.cc",
180 "oat_file_manager.cc",
181 "oat_quick_method_header.cc",
182 "object_lock.cc",
183 "offsets.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700184 "parsed_options.cc",
185 "plugin.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700186 "quick_exception_handler.cc",
Andreas Gampeaea05c12017-05-19 08:45:02 -0700187 "read_barrier.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700188 "reference_table.cc",
189 "reflection.cc",
190 "runtime.cc",
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000191 "runtime_callbacks.cc",
Roland Levillain21482ad2017-01-19 20:04:27 +0000192 "runtime_common.cc",
Orion Hodson26ef34c2017-11-01 13:32:41 +0000193 "runtime_intrinsics.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700194 "runtime_options.cc",
Andreas Gampec15a2f42017-04-21 12:09:39 -0700195 "scoped_thread_state_change.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700196 "signal_catcher.cc",
197 "stack.cc",
198 "stack_map.cc",
Vladimir Marko552a1342017-10-31 10:56:47 +0000199 "string_builder_append.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700200 "thread.cc",
201 "thread_list.cc",
202 "thread_pool.cc",
203 "ti/agent.cc",
204 "trace.cc",
205 "transaction.cc",
Orion Hodson537a4fe2018-05-15 13:57:58 +0100206 "var_handles.cc",
David Brazdil7b49e6c2016-09-01 11:06:18 +0100207 "vdex_file.cc",
Andreas Gampea43ba3d2019-03-13 15:49:20 -0700208 "verifier/class_verifier.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700209 "verifier/instruction_flags.cc",
210 "verifier/method_verifier.cc",
211 "verifier/reg_type.cc",
212 "verifier/reg_type_cache.cc",
213 "verifier/register_line.cc",
David Brazdilca3c8c32016-09-06 14:04:48 +0100214 "verifier/verifier_deps.cc",
Andreas Gampe90b936d2017-01-31 08:58:55 -0800215 "verify_object.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700216 "well_known_classes.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700217
218 "arch/context.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700219 "arch/instruction_set_features.cc",
220 "arch/memcmp16.cc",
221 "arch/arm/instruction_set_features_arm.cc",
222 "arch/arm/registers_arm.cc",
223 "arch/arm64/instruction_set_features_arm64.cc",
224 "arch/arm64/registers_arm64.cc",
225 "arch/mips/instruction_set_features_mips.cc",
226 "arch/mips/registers_mips.cc",
227 "arch/mips64/instruction_set_features_mips64.cc",
228 "arch/mips64/registers_mips64.cc",
229 "arch/x86/instruction_set_features_x86.cc",
230 "arch/x86/registers_x86.cc",
231 "arch/x86_64/registers_x86_64.cc",
232 "entrypoints/entrypoint_utils.cc",
233 "entrypoints/jni/jni_entrypoints.cc",
234 "entrypoints/math_entrypoints.cc",
235 "entrypoints/quick/quick_alloc_entrypoints.cc",
236 "entrypoints/quick/quick_cast_entrypoints.cc",
237 "entrypoints/quick/quick_deoptimization_entrypoints.cc",
238 "entrypoints/quick/quick_dexcache_entrypoints.cc",
Serban Constantinescuda8ffec2016-03-09 12:02:11 +0000239 "entrypoints/quick/quick_entrypoints_enum.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700240 "entrypoints/quick/quick_field_entrypoints.cc",
241 "entrypoints/quick/quick_fillarray_entrypoints.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700242 "entrypoints/quick/quick_jni_entrypoints.cc",
243 "entrypoints/quick/quick_lock_entrypoints.cc",
244 "entrypoints/quick/quick_math_entrypoints.cc",
Vladimir Marko552a1342017-10-31 10:56:47 +0000245 "entrypoints/quick/quick_string_builder_append_entrypoints.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700246 "entrypoints/quick/quick_thread_entrypoints.cc",
247 "entrypoints/quick/quick_throw_entrypoints.cc",
248 "entrypoints/quick/quick_trampoline_entrypoints.cc",
249 ],
250
251 arch: {
252 arm: {
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700253 srcs: [
254 "interpreter/mterp/mterp.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100255 ":libart_mterp.arm",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700256 "arch/arm/context_arm.cc",
257 "arch/arm/entrypoints_init_arm.cc",
258 "arch/arm/instruction_set_features_assembly_tests.S",
259 "arch/arm/jni_entrypoints_arm.S",
260 "arch/arm/memcmp16_arm.S",
261 "arch/arm/quick_entrypoints_arm.S",
262 "arch/arm/quick_entrypoints_cc_arm.cc",
263 "arch/arm/thread_arm.cc",
264 "arch/arm/fault_handler_arm.cc",
265 ],
266 },
267 arm64: {
268 srcs: [
269 "interpreter/mterp/mterp.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100270 ":libart_mterp.arm64",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700271 "arch/arm64/context_arm64.cc",
272 "arch/arm64/entrypoints_init_arm64.cc",
273 "arch/arm64/jni_entrypoints_arm64.S",
274 "arch/arm64/memcmp16_arm64.S",
275 "arch/arm64/quick_entrypoints_arm64.S",
276 "arch/arm64/thread_arm64.cc",
277 "monitor_pool.cc",
278 "arch/arm64/fault_handler_arm64.cc",
279 ],
280 },
281 x86: {
282 srcs: [
283 "interpreter/mterp/mterp.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100284 ":libart_mterp.x86",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700285 "arch/x86/context_x86.cc",
286 "arch/x86/entrypoints_init_x86.cc",
287 "arch/x86/jni_entrypoints_x86.S",
288 "arch/x86/memcmp16_x86.S",
289 "arch/x86/quick_entrypoints_x86.S",
290 "arch/x86/thread_x86.cc",
291 "arch/x86/fault_handler_x86.cc",
292 ],
293 },
294 x86_64: {
295 srcs: [
296 // Note that the fault_handler_x86.cc is not a mistake. This file is
297 // shared between the x86 and x86_64 architectures.
298 "interpreter/mterp/mterp.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100299 ":libart_mterp.x86_64",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700300 "arch/x86_64/context_x86_64.cc",
301 "arch/x86_64/entrypoints_init_x86_64.cc",
302 "arch/x86_64/jni_entrypoints_x86_64.S",
303 "arch/x86_64/memcmp16_x86_64.S",
304 "arch/x86_64/quick_entrypoints_x86_64.S",
305 "arch/x86_64/thread_x86_64.cc",
306 "monitor_pool.cc",
307 "arch/x86/fault_handler_x86.cc",
308 ],
309 },
310 mips: {
311 srcs: [
312 "interpreter/mterp/mterp.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100313 ":libart_mterp.mips",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700314 "arch/mips/context_mips.cc",
315 "arch/mips/entrypoints_init_mips.cc",
316 "arch/mips/jni_entrypoints_mips.S",
317 "arch/mips/memcmp16_mips.S",
318 "arch/mips/quick_entrypoints_mips.S",
319 "arch/mips/thread_mips.cc",
320 "arch/mips/fault_handler_mips.cc",
321 ],
322 },
323 mips64: {
324 srcs: [
325 "interpreter/mterp/mterp.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100326 ":libart_mterp.mips64",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700327 "arch/mips64/context_mips64.cc",
328 "arch/mips64/entrypoints_init_mips64.cc",
329 "arch/mips64/jni_entrypoints_mips64.S",
330 "arch/mips64/memcmp16_mips64.S",
331 "arch/mips64/quick_entrypoints_mips64.S",
332 "arch/mips64/thread_mips64.cc",
333 "monitor_pool.cc",
334 "arch/mips64/fault_handler_mips64.cc",
335 ],
336 },
337 },
338 target: {
339 android: {
340 srcs: [
341 "jdwp/jdwp_adb.cc",
342 "monitor_android.cc",
343 "runtime_android.cc",
344 "thread_android.cc",
345 ],
346 shared_libs: [
dimitry268aa302019-03-19 12:25:03 +0100347 "libdl_android",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700348 ],
Nicolas Geoffray65ed42a2018-10-30 12:33:04 +0000349 static_libs: [
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700350 "libz", // For adler32.
Nicolas Geoffray65ed42a2018-10-30 12:33:04 +0000351 ],
Victor Chang0a2cdf32018-11-26 18:06:01 +0000352 cflags: [
353 // ART is allowed to link to libicuuc directly
354 // since they are in the same module
355 "-DANDROID_LINK_SHARED_ICU4C",
356 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700357 },
358 android_arm: {
359 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
360 },
361 android_arm64: {
362 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
363 },
364 android_x86: {
365 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
366 },
367 android_x86_64: {
368 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
369 },
370 host: {
371 srcs: [
372 "monitor_linux.cc",
373 "runtime_linux.cc",
374 "thread_linux.cc",
375 ],
Nicolas Geoffray65ed42a2018-10-30 12:33:04 +0000376 shared_libs: [
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700377 "libz", // For adler32.
Nicolas Geoffray65ed42a2018-10-30 12:33:04 +0000378 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700379 },
380 },
381 cflags: ["-DBUILDING_LIBART=1"],
382 generated_sources: ["art_operator_srcs"],
Igor Murashkin2bb70d32017-02-06 10:34:14 -0800383 // asm_support_gen.h (used by asm_support.h) is generated with cpp-define-generator
384 generated_headers: ["cpp-define-generator-asm-support"],
385 // export our headers so the libart-gtest targets can use it as well.
386 export_generated_headers: ["cpp-define-generator-asm-support"],
Andreas Gampe3157fc22017-08-23 09:43:46 -0700387 header_libs: [
388 "art_cmdlineparser_headers",
David Srbecky50b47432018-10-18 12:26:34 +0100389 "cpp-define-generator-definitions",
Victor Chang0a2cdf32018-11-26 18:06:01 +0000390 "libicuuc_headers",
Andreas Gampe373a9b52017-10-18 09:01:57 -0700391 "libnativehelper_header_only",
Andreas Gamped863be72017-09-12 12:02:28 -0700392 "jni_platform_headers",
Andreas Gampe3157fc22017-08-23 09:43:46 -0700393 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700394 shared_libs: [
Orion Hodson119733d2019-01-30 15:14:41 +0000395 "libartpalette",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700396 "libnativebridge",
397 "libnativeloader",
398 "libbacktrace",
Dimitry Ivanov1d3038f2016-09-23 16:52:05 -0700399 "liblog",
Andreas Gampeaaadff82016-08-29 09:53:48 -0700400 // For common macros.
401 "libbase",
David Srbeckyf1603942019-04-05 12:06:36 +0100402 "libunwindstack",
Colin Cross616f4002019-05-29 21:39:14 -0700403 "libsigchain",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700404 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700405 export_include_dirs: ["."],
Andreas Gampeaaadff82016-08-29 09:53:48 -0700406 // ART's macros.h depends on libbase's macros.h.
Andreas Gampe3157fc22017-08-23 09:43:46 -0700407 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
408 // generically. dex2oat takes care of it itself.
David Sehrfcbe15c2018-02-15 09:41:13 -0800409 export_shared_lib_headers: ["libbase"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700410}
411
Andreas Gampeec5ed062018-01-26 16:20:02 -0800412libart_static_cc_defaults {
413 name: "libart_static_base_defaults",
Andreas Gampeec5ed062018-01-26 16:20:02 -0800414 static_libs: [
Orion Hodson119733d2019-01-30 15:14:41 +0000415 "libartpalette",
Andreas Gampeec5ed062018-01-26 16:20:02 -0800416 "libbacktrace",
417 "libbase",
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700418 "libdexfile_external", // libunwindstack dependency
419 "libdexfile_support", // libunwindstack dependency
Andreas Gampeec5ed062018-01-26 16:20:02 -0800420 "liblog",
Andreas Gampeec5ed062018-01-26 16:20:02 -0800421 "libnativebridge",
422 "libnativeloader",
David Brazdil35a3f6a2019-03-04 15:59:06 +0000423 "libsigchain_dummy",
Andreas Gampeec5ed062018-01-26 16:20:02 -0800424 "libunwindstack",
Nicolas Geoffray65ed42a2018-10-30 12:33:04 +0000425 "libz",
Andreas Gampeec5ed062018-01-26 16:20:02 -0800426 ],
427}
428
429cc_defaults {
430 name: "libart_static_defaults",
431 defaults: [
432 "libart_static_base_defaults",
433 "libartbase_static_defaults",
434 "libdexfile_static_defaults",
435 "libprofile_static_defaults",
436 ],
David Srbecky50928112019-03-22 17:06:28 +0000437 static_libs: [
438 "libart",
439 "libelffile",
440 ],
Andreas Gampeec5ed062018-01-26 16:20:02 -0800441}
442
443cc_defaults {
444 name: "libartd_static_defaults",
445 defaults: [
446 "libart_static_base_defaults",
447 "libartbased_static_defaults",
448 "libdexfiled_static_defaults",
449 "libprofiled_static_defaults",
450 ],
David Srbecky50928112019-03-22 17:06:28 +0000451 static_libs: [
452 "libartd",
453 "libelffiled",
454 ],
Andreas Gampeec5ed062018-01-26 16:20:02 -0800455}
456
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700457gensrcs {
458 name: "art_operator_srcs",
Alex Lightb69d2d32018-02-21 13:37:17 -0800459 cmd: "$(location generate_operator_out) art/runtime $(in) > $(out)",
460 tools: ["generate_operator_out"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700461 srcs: [
Andreas Gampe8764dc32019-01-07 15:20:12 -0800462 "base/callee_save_type.h",
Andreas Gampe7cc45fd2018-11-21 16:03:08 -0800463 "base/locks.h",
Mathieu Chartieradc90862018-05-11 13:03:06 -0700464 "class_loader_context.h",
Andreas Gampeee5303f2017-08-31 15:34:42 -0700465 "class_status.h",
David Sehr334b9d72018-02-12 18:27:56 -0800466 "debugger.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700467 "gc_root.h",
468 "gc/allocator_type.h",
469 "gc/allocator/rosalloc.h",
470 "gc/collector_type.h",
471 "gc/collector/gc_type.h",
472 "gc/heap.h",
473 "gc/space/region_space.h",
474 "gc/space/space.h",
475 "gc/weak_root_state.h",
476 "image.h",
477 "instrumentation.h",
478 "indirect_reference_table.h",
Alex Light40320712017-12-14 11:52:04 -0800479 "jdwp_provider.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700480 "jdwp/jdwp.h",
481 "jdwp/jdwp_constants.h",
482 "lock_word.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700483 "oat.h",
484 "object_callbacks.h",
485 "process_state.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700486 "stack.h",
Alex Light46f93402017-06-29 11:59:50 -0700487 "suspend_reason.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700488 "thread.h",
489 "thread_state.h",
490 "ti/agent.h",
Orion Hodson283ad2d2018-03-26 13:37:41 +0100491 "trace.h",
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700492 "verifier/verifier_enums.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700493 ],
494 output_extension: "operator_out.cc",
495}
496
497// We always build dex2oat and dependencies, even if the host build is otherwise disabled, since
498// they are used to cross compile for the target.
499
500art_cc_library {
501 name: "libart",
502 defaults: ["libart_defaults"],
Andreas Gampe20ada112016-08-29 08:51:15 -0700503 // Leave the symbols in the shared library so that stack unwinders can
504 // produce meaningful name resolution.
505 strip: {
506 keep_symbols: true,
507 },
David Sehrc431b9d2018-03-02 12:01:51 -0800508 whole_static_libs: [
David Sehrc431b9d2018-03-02 12:01:51 -0800509 ],
David Srbecky50928112019-03-22 17:06:28 +0000510 static_libs: [
511 "libelffile",
512 ],
David Sehrc431b9d2018-03-02 12:01:51 -0800513 shared_libs: [
David Sehr1f010162018-05-15 08:59:32 -0700514 "libartbase",
David Sehrc431b9d2018-03-02 12:01:51 -0800515 "libdexfile",
David Srbecky7711c352019-04-10 17:50:12 +0100516 // We need to eagerly load it so libdexfile_support used from libunwindstack can find it.
517 "libdexfile_external",
David Sehr82d046e2018-04-23 08:14:19 -0700518 "libprofile",
David Sehrc431b9d2018-03-02 12:01:51 -0800519 ],
520 export_shared_lib_headers: [
521 "libdexfile",
522 ],
Yi Kongfd8bb932018-03-12 16:52:57 -0700523 target: {
524 android: {
525 lto: {
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700526 thin: true,
Yi Kongfd8bb932018-03-12 16:52:57 -0700527 },
528 },
529 },
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700530}
531
532art_cc_library {
533 name: "libartd",
534 defaults: [
Dan Willemsen2ca27802017-09-27 14:57:43 -0700535 "art_debug_defaults",
536 "libart_defaults",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700537 ],
David Sehrc431b9d2018-03-02 12:01:51 -0800538 whole_static_libs: [
David Sehrc431b9d2018-03-02 12:01:51 -0800539 ],
David Srbecky50928112019-03-22 17:06:28 +0000540 static_libs: [
541 "libelffiled",
542 ],
David Sehrc431b9d2018-03-02 12:01:51 -0800543 shared_libs: [
David Sehr1f010162018-05-15 08:59:32 -0700544 "libartbased",
David Sehrc431b9d2018-03-02 12:01:51 -0800545 "libdexfiled",
David Srbecky7711c352019-04-10 17:50:12 +0100546 // We need to eagerly preload it, so that libunwindstack can find it.
547 // Otherwise, it would try to load the non-debug version with dlopen.
548 "libdexfiled_external",
David Sehr82d046e2018-04-23 08:14:19 -0700549 "libprofiled",
David Sehrc431b9d2018-03-02 12:01:51 -0800550 ],
551 export_shared_lib_headers: [
552 "libdexfiled",
553 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700554}
555
Colin Cross6b22aa52016-09-12 14:35:39 -0700556art_cc_library {
557 name: "libart-runtime-gtest",
558 defaults: ["libart-gtest-defaults"],
Calin Juravle36eb3132017-01-13 16:32:38 -0800559 srcs: [
560 "common_runtime_test.cc",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700561 "dexopt_test.cc",
Calin Juravle36eb3132017-01-13 16:32:38 -0800562 ],
Colin Cross6b22aa52016-09-12 14:35:39 -0700563 shared_libs: [
564 "libartd",
David Srbecky2faab002019-02-12 16:35:48 +0000565 "libartbase-art-gtest",
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700566 "libbase",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700567 "libbacktrace",
Andreas Gampe373a9b52017-10-18 09:01:57 -0700568 ],
569 header_libs: [
570 "libnativehelper_header_only",
Colin Cross6b22aa52016-09-12 14:35:39 -0700571 ],
572}
573
Colin Cross6e95dd52016-09-12 15:37:10 -0700574art_cc_test {
575 name: "art_runtime_tests",
576 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700577 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -0700578 ],
579 srcs: [
580 "arch/arch_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700581 "arch/instruction_set_features_test.cc",
582 "arch/memcmp16_test.cc",
583 "arch/stub_test.cc",
584 "arch/arm/instruction_set_features_arm_test.cc",
585 "arch/arm64/instruction_set_features_arm64_test.cc",
586 "arch/mips/instruction_set_features_mips_test.cc",
587 "arch/mips64/instruction_set_features_mips64_test.cc",
588 "arch/x86/instruction_set_features_x86_test.cc",
589 "arch/x86_64/instruction_set_features_x86_64_test.cc",
590 "barrier_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700591 "base/mutex_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700592 "base/timing_logger_test.cc",
Mingyao Yang063fc772016-08-02 11:02:54 -0700593 "cha_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700594 "class_linker_test.cc",
Calin Juravle87e2cb62017-06-13 21:48:45 -0700595 "class_loader_context_test.cc",
Mathieu Chartierdb70ce52016-12-12 11:06:59 -0800596 "class_table_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700597 "compiler_filter_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700598 "entrypoints/math_entrypoints_test.cc",
599 "entrypoints/quick/quick_trampoline_entrypoints_test.cc",
600 "entrypoints_order_test.cc",
David Sehrb2ec9f52018-02-21 13:20:31 -0800601 "exec_utils_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700602 "gc/accounting/card_table_test.cc",
603 "gc/accounting/mod_union_table_test.cc",
604 "gc/accounting/space_bitmap_test.cc",
605 "gc/collector/immune_spaces_test.cc",
606 "gc/heap_test.cc",
Mathieu Chartier1ca68902017-04-18 11:26:22 -0700607 "gc/heap_verification_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700608 "gc/reference_queue_test.cc",
609 "gc/space/dlmalloc_space_static_test.cc",
610 "gc/space/dlmalloc_space_random_test.cc",
Richard Uhler84f50ae2017-02-06 15:12:45 +0000611 "gc/space/image_space_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700612 "gc/space/large_object_space_test.cc",
613 "gc/space/rosalloc_space_static_test.cc",
614 "gc/space/rosalloc_space_random_test.cc",
615 "gc/space/space_create_test.cc",
616 "gc/system_weak_test.cc",
617 "gc/task_processor_test.cc",
618 "gtest_test.cc",
619 "handle_scope_test.cc",
Mathew Inwood7d74ef52018-03-16 14:18:33 +0000620 "hidden_api_test.cc",
Andreas Gampea1ff30f2016-09-27 12:19:45 -0700621 "imtable_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700622 "indirect_reference_table_test.cc",
623 "instrumentation_test.cc",
624 "intern_table_test.cc",
625 "interpreter/safe_math_test.cc",
626 "interpreter/unstarted_runtime_test.cc",
Alex Light40320712017-12-14 11:52:04 -0800627 "jdwp/jdwp_options_test.cc",
Nicolas Geoffray2411f492019-06-14 08:54:46 +0100628 "jit/jit_memory_region_test.cc",
David Sehr1fed3432018-05-29 13:19:47 -0700629 "jit/profiling_info_test.cc",
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +0100630 "jni/java_vm_ext_test.cc",
Vladimir Marko2b076df2019-02-20 11:27:52 +0000631 "jni/jni_internal_test.cc",
Orion Hodsonc1d3bac2018-01-26 14:38:55 +0000632 "method_handles_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700633 "mirror/dex_cache_test.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100634 "mirror/method_type_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700635 "mirror/object_test.cc",
Orion Hodson005ac512017-10-24 15:43:43 +0100636 "mirror/var_handle_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700637 "monitor_pool_test.cc",
638 "monitor_test.cc",
639 "oat_file_test.cc",
640 "oat_file_assistant_test.cc",
641 "parsed_options_test.cc",
642 "prebuilt_tools_test.cc",
Vladimir Marko2b076df2019-02-20 11:27:52 +0000643 "proxy_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700644 "reference_table_test.cc",
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000645 "runtime_callbacks_test.cc",
Andreas Gampeba26b512019-05-31 13:07:26 -0700646 "runtime_test.cc",
Igor Murashkinf31a00c2017-10-27 10:52:07 -0700647 "subtype_check_info_test.cc",
Igor Murashkin495e7832017-10-27 10:56:20 -0700648 "subtype_check_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700649 "thread_pool_test.cc",
650 "transaction_test.cc",
Nicolas Geoffray21b65682019-03-12 00:49:45 +0000651 "two_runtimes_test.cc",
Richard Uhlerb8ab63a2017-01-31 11:27:37 +0000652 "vdex_file_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700653 "verifier/method_verifier_test.cc",
654 "verifier/reg_type_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700655 ],
656 shared_libs: [
657 "libbacktrace",
658 ],
Andreas Gampe3157fc22017-08-23 09:43:46 -0700659 header_libs: [
Dan Willemsen2ca27802017-09-27 14:57:43 -0700660 "art_cmdlineparser_headers", // For parsed_options_test.
Andreas Gampe3157fc22017-08-23 09:43:46 -0700661 ],
Colin Cross6e95dd52016-09-12 15:37:10 -0700662}
663
664art_cc_test {
665 name: "art_runtime_compiler_tests",
666 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700667 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -0700668 ],
669 srcs: [
Colin Cross6e95dd52016-09-12 15:37:10 -0700670 "reflection_test.cc",
Vladimir Markob9c29f62019-03-20 14:22:51 +0000671 "module_exclusion_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700672 ],
673 shared_libs: [
674 "libartd-compiler",
Roland Levillain12dd9ae2018-11-06 13:32:06 +0000675 "libvixld",
Colin Cross6e95dd52016-09-12 15:37:10 -0700676 ],
677}
Igor Murashkin0ae15322017-09-14 13:55:06 -0700678
679cc_library_headers {
Dan Willemsen2ca27802017-09-27 14:57:43 -0700680 name: "libart_runtime_headers",
681 host_supported: true,
682 export_include_dirs: ["."],
Igor Murashkin0ae15322017-09-14 13:55:06 -0700683}
David Srbeckybfbc6542018-09-11 13:34:57 +0100684
685genrule {
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700686 name: "libart_mterp.arm",
687 out: ["mterp_arm.S"],
688 srcs: ["interpreter/mterp/arm/*.S"],
689 tool_files: [
690 "interpreter/mterp/gen_mterp.py",
691 "interpreter/mterp/common/gen_setup.py",
692 ],
693 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
David Srbeckybfbc6542018-09-11 13:34:57 +0100694}
695
696genrule {
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700697 name: "libart_mterp.arm64",
698 out: ["mterp_arm64.S"],
699 srcs: ["interpreter/mterp/arm64/*.S"],
700 tool_files: [
701 "interpreter/mterp/gen_mterp.py",
702 "interpreter/mterp/common/gen_setup.py",
703 ],
704 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
David Srbeckybfbc6542018-09-11 13:34:57 +0100705}
706
707genrule {
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700708 name: "libart_mterp.mips",
709 out: ["mterp_mips.S"],
710 srcs: ["interpreter/mterp/mips/*.S"],
711 tool_files: [
712 "interpreter/mterp/gen_mterp.py",
713 "interpreter/mterp/common/gen_setup.py",
714 ],
715 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
David Srbeckybfbc6542018-09-11 13:34:57 +0100716}
717
718genrule {
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700719 name: "libart_mterp.mips64",
720 out: ["mterp_mips64.S"],
721 srcs: ["interpreter/mterp/mips64/*.S"],
722 tool_files: [
723 "interpreter/mterp/gen_mterp.py",
724 "interpreter/mterp/common/gen_setup.py",
725 ],
726 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
David Srbeckybfbc6542018-09-11 13:34:57 +0100727}
728
729genrule {
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700730 name: "libart_mterp.x86",
731 out: ["mterp_x86.S"],
732 srcs: ["interpreter/mterp/x86/*.S"],
733 tool_files: [
734 "interpreter/mterp/gen_mterp.py",
735 "interpreter/mterp/common/gen_setup.py",
736 ],
737 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
David Srbeckybfbc6542018-09-11 13:34:57 +0100738}
739
740genrule {
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700741 name: "libart_mterp.x86_64",
742 out: ["mterp_x86_64.S"],
743 srcs: ["interpreter/mterp/x86_64/*.S"],
744 tool_files: [
745 "interpreter/mterp/gen_mterp.py",
746 "interpreter/mterp/common/gen_setup.py",
747 ],
748 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
David Srbeckybfbc6542018-09-11 13:34:57 +0100749}