blob: b48357b3cbe714eaf7fea451b12f39d3f693857f [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
Christopher Ferris0d38e852019-12-11 09:37:19 -080026// These are defaults for native shared libaries that are expected to be
27// in stack traces often.
28libart_cc_defaults {
29 name: "libart_nativeunwind_defaults",
30 arch: {
31 arm: {
32 // Arm 32 bit does not produce complete exidx unwind information
33 // so keep the .debug_frame which is relatively small and does
34 // include needed unwind information.
35 // See b/132992102 and b/145790995 for details.
36 strip: {
37 keep_symbols_and_debug_frame: true,
38 },
39 },
40 // For all other architectures, leave the symbols in the shared library
41 // so that stack unwinders can produce meaningful name resolution.
42 arm64: {
43 strip: {
44 keep_symbols: true,
45 },
46 },
47 x86: {
48 strip: {
49 keep_symbols: true,
50 },
51 },
52 x86_64: {
53 strip: {
54 keep_symbols: true,
55 },
56 },
57 },
58}
59
Nicolas Geoffray8a229072018-05-10 16:34:14 +010060libart_cc_defaults {
Colin Cross1f7f3bd2016-07-27 10:12:38 -070061 name: "libart_defaults",
62 defaults: ["art_defaults"],
63 host_supported: true,
64 srcs: [
Chang Xing605fe242017-07-20 15:57:21 -070065 "aot_class_linker.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070066 "art_field.cc",
67 "art_method.cc",
Alex Light543d8452018-07-13 16:25:58 +000068 "backtrace_helper.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070069 "barrier.cc",
Andreas Gampe7cc45fd2018-11-21 16:03:08 -080070 "base/locks.cc",
David Sehr3215fff2018-04-03 17:10:12 -070071 "base/mem_map_arena_pool.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070072 "base/mutex.cc",
David Sehrc431b9d2018-03-02 12:01:51 -080073 "base/quasi_atomic.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070074 "base/timing_logger.cc",
Mingyao Yang063fc772016-08-02 11:02:54 -070075 "cha.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070076 "class_linker.cc",
Calin Juravle87e2cb62017-06-13 21:48:45 -070077 "class_loader_context.cc",
Vladimir Markob4eb1b12018-05-24 11:09:38 +010078 "class_root.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070079 "class_table.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070080 "common_throws.cc",
81 "compiler_filter.cc",
Vladimir Marko606adb32018-04-05 14:49:24 +010082 "debug_print.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070083 "debugger.cc",
David Sehr9e734c72018-01-04 17:56:19 -080084 "dex/dex_file_annotations.cc",
David Srbeckye1402122018-06-13 18:20:45 +010085 "dex_register_location.cc",
Nicolas Geoffray4e868fa2017-04-21 17:16:44 +010086 "dex_to_dex_decompiler.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070087 "elf_file.cc",
David Sehr97c381e2017-02-01 15:09:58 -080088 "exec_utils.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070089 "fault_handler.cc",
90 "gc/allocation_record.cc",
91 "gc/allocator/dlmalloc.cc",
92 "gc/allocator/rosalloc.cc",
93 "gc/accounting/bitmap.cc",
94 "gc/accounting/card_table.cc",
95 "gc/accounting/heap_bitmap.cc",
96 "gc/accounting/mod_union_table.cc",
97 "gc/accounting/remembered_set.cc",
98 "gc/accounting/space_bitmap.cc",
99 "gc/collector/concurrent_copying.cc",
100 "gc/collector/garbage_collector.cc",
101 "gc/collector/immune_region.cc",
102 "gc/collector/immune_spaces.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700103 "gc/collector/mark_sweep.cc",
104 "gc/collector/partial_mark_sweep.cc",
105 "gc/collector/semi_space.cc",
106 "gc/collector/sticky_mark_sweep.cc",
107 "gc/gc_cause.cc",
108 "gc/heap.cc",
109 "gc/reference_processor.cc",
110 "gc/reference_queue.cc",
111 "gc/scoped_gc_critical_section.cc",
112 "gc/space/bump_pointer_space.cc",
113 "gc/space/dlmalloc_space.cc",
114 "gc/space/image_space.cc",
115 "gc/space/large_object_space.cc",
116 "gc/space/malloc_space.cc",
117 "gc/space/region_space.cc",
118 "gc/space/rosalloc_space.cc",
119 "gc/space/space.cc",
120 "gc/space/zygote_space.cc",
121 "gc/task_processor.cc",
Mathieu Chartier1ca68902017-04-18 11:26:22 -0700122 "gc/verification.cc",
Andreas Gampeaa120012018-03-28 16:23:24 -0700123 "hidden_api.cc",
Orion Hodson01ecfa12019-07-18 12:57:47 +0100124 "hidden_api_jni.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700125 "hprof/hprof.cc",
126 "image.cc",
Vladimir Markof3c52b42017-11-17 17:32:12 +0000127 "index_bss_mapping.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700128 "indirect_reference_table.cc",
129 "instrumentation.cc",
130 "intern_table.cc",
131 "interpreter/interpreter.cc",
David Srbecky912f36c2018-09-08 12:22:58 +0100132 "interpreter/interpreter_cache.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700133 "interpreter/interpreter_common.cc",
buzbee78f1bdc2017-03-01 10:55:57 -0800134 "interpreter/interpreter_intrinsics.cc",
David Srbecky2ee09ff2018-10-24 13:24:22 +0100135 "interpreter/interpreter_switch_impl0.cc",
136 "interpreter/interpreter_switch_impl1.cc",
137 "interpreter/interpreter_switch_impl2.cc",
138 "interpreter/interpreter_switch_impl3.cc",
Andreas Gampe36a296f2017-06-13 14:11:11 -0700139 "interpreter/lock_count_data.cc",
140 "interpreter/shadow_frame.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700141 "interpreter/unstarted_runtime.cc",
Andreas Gampe36a296f2017-06-13 14:11:11 -0700142 "java_frame_root_info.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700143 "jdwp/jdwp_event.cc",
144 "jdwp/jdwp_expand_buf.cc",
145 "jdwp/jdwp_handler.cc",
146 "jdwp/jdwp_main.cc",
147 "jdwp/jdwp_request.cc",
148 "jdwp/jdwp_socket.cc",
149 "jdwp/object_registry.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700150 "jit/debugger_interface.cc",
151 "jit/jit.cc",
152 "jit/jit_code_cache.cc",
Nicolas Geoffray2a905b22019-06-06 09:04:07 +0100153 "jit/jit_memory_region.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700154 "jit/profiling_info.cc",
155 "jit/profile_saver.cc",
Andreas Gampec0ed43e2018-06-18 10:47:15 -0700156 "jni/check_jni.cc",
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +0100157 "jni/java_vm_ext.cc",
158 "jni/jni_env_ext.cc",
Alex Light79d6c802019-06-27 15:50:11 +0000159 "jni/jni_id_manager.cc",
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +0100160 "jni/jni_internal.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700161 "linear_alloc.cc",
Andreas Gampe513061a2017-06-01 09:17:34 -0700162 "managed_stack.cc",
Orion Hodsonba28f9f2016-10-26 10:56:25 +0100163 "method_handles.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700164 "mirror/array.cc",
165 "mirror/class.cc",
Alex Lightd6251582016-10-31 11:12:30 -0700166 "mirror/class_ext.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700167 "mirror/dex_cache.cc",
Narayan Kamath000e1882016-10-24 17:14:25 +0100168 "mirror/emulated_stack_frame.cc",
Neil Fuller0e844392016-09-08 13:43:31 +0100169 "mirror/executable.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700170 "mirror/field.cc",
171 "mirror/method.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100172 "mirror/method_handle_impl.cc",
Orion Hodsonc069a302017-01-18 09:23:12 +0000173 "mirror/method_handles_lookup.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100174 "mirror/method_type.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700175 "mirror/object.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700176 "mirror/stack_trace_element.cc",
177 "mirror/string.cc",
178 "mirror/throwable.cc",
Orion Hodson005ac512017-10-24 15:43:43 +0100179 "mirror/var_handle.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700180 "monitor.cc",
Vladimir Markof52d92f2019-03-29 12:33:02 +0000181 "monitor_objects_stack_visitor.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700182 "native_bridge_art_interface.cc",
183 "native_stack_dump.cc",
184 "native/dalvik_system_DexFile.cc",
185 "native/dalvik_system_VMDebug.cc",
186 "native/dalvik_system_VMRuntime.cc",
187 "native/dalvik_system_VMStack.cc",
188 "native/dalvik_system_ZygoteHooks.cc",
189 "native/java_lang_Class.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700190 "native/java_lang_Object.cc",
191 "native/java_lang_String.cc",
192 "native/java_lang_StringFactory.cc",
193 "native/java_lang_System.cc",
194 "native/java_lang_Thread.cc",
195 "native/java_lang_Throwable.cc",
196 "native/java_lang_VMClassLoader.cc",
Narayan Kamathbd2fed52017-01-25 10:46:54 +0000197 "native/java_lang_invoke_MethodHandleImpl.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700198 "native/java_lang_ref_FinalizerReference.cc",
199 "native/java_lang_ref_Reference.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700200 "native/java_lang_reflect_Array.cc",
201 "native/java_lang_reflect_Constructor.cc",
Neil Fuller0e844392016-09-08 13:43:31 +0100202 "native/java_lang_reflect_Executable.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700203 "native/java_lang_reflect_Field.cc",
204 "native/java_lang_reflect_Method.cc",
Neil Fuller60458a02016-09-01 15:32:44 +0100205 "native/java_lang_reflect_Parameter.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700206 "native/java_lang_reflect_Proxy.cc",
207 "native/java_util_concurrent_atomic_AtomicLong.cc",
208 "native/libcore_util_CharsetUtils.cc",
209 "native/org_apache_harmony_dalvik_ddmc_DdmServer.cc",
210 "native/org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc",
211 "native/sun_misc_Unsafe.cc",
Alex Lighte77b48b2017-02-22 11:08:06 -0800212 "non_debuggable_classes.cc",
Nicolas Geoffray013d1ee2019-12-04 16:18:15 +0000213 "nterp_helpers.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700214 "oat.cc",
215 "oat_file.cc",
216 "oat_file_assistant.cc",
217 "oat_file_manager.cc",
218 "oat_quick_method_header.cc",
219 "object_lock.cc",
220 "offsets.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700221 "parsed_options.cc",
222 "plugin.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700223 "quick_exception_handler.cc",
Andreas Gampeaea05c12017-05-19 08:45:02 -0700224 "read_barrier.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700225 "reference_table.cc",
226 "reflection.cc",
Alex Light55eccdf2019-10-07 13:51:13 +0000227 "reflective_handle_scope.cc",
Alex Lightc18eba32019-09-24 14:36:27 -0700228 "reflective_value_visitor.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700229 "runtime.cc",
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000230 "runtime_callbacks.cc",
Roland Levillain21482ad2017-01-19 20:04:27 +0000231 "runtime_common.cc",
Orion Hodson26ef34c2017-11-01 13:32:41 +0000232 "runtime_intrinsics.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700233 "runtime_options.cc",
Andreas Gampec15a2f42017-04-21 12:09:39 -0700234 "scoped_thread_state_change.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700235 "signal_catcher.cc",
236 "stack.cc",
237 "stack_map.cc",
Vladimir Marko552a1342017-10-31 10:56:47 +0000238 "string_builder_append.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700239 "thread.cc",
240 "thread_list.cc",
241 "thread_pool.cc",
242 "ti/agent.cc",
243 "trace.cc",
244 "transaction.cc",
Orion Hodson537a4fe2018-05-15 13:57:58 +0100245 "var_handles.cc",
David Brazdil7b49e6c2016-09-01 11:06:18 +0100246 "vdex_file.cc",
Andreas Gampea43ba3d2019-03-13 15:49:20 -0700247 "verifier/class_verifier.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700248 "verifier/instruction_flags.cc",
249 "verifier/method_verifier.cc",
250 "verifier/reg_type.cc",
251 "verifier/reg_type_cache.cc",
252 "verifier/register_line.cc",
David Brazdilca3c8c32016-09-06 14:04:48 +0100253 "verifier/verifier_deps.cc",
Andreas Gampe90b936d2017-01-31 08:58:55 -0800254 "verify_object.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700255 "well_known_classes.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700256
257 "arch/context.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700258 "arch/instruction_set_features.cc",
259 "arch/memcmp16.cc",
260 "arch/arm/instruction_set_features_arm.cc",
261 "arch/arm/registers_arm.cc",
262 "arch/arm64/instruction_set_features_arm64.cc",
263 "arch/arm64/registers_arm64.cc",
264 "arch/mips/instruction_set_features_mips.cc",
265 "arch/mips/registers_mips.cc",
266 "arch/mips64/instruction_set_features_mips64.cc",
267 "arch/mips64/registers_mips64.cc",
268 "arch/x86/instruction_set_features_x86.cc",
269 "arch/x86/registers_x86.cc",
270 "arch/x86_64/registers_x86_64.cc",
271 "entrypoints/entrypoint_utils.cc",
272 "entrypoints/jni/jni_entrypoints.cc",
273 "entrypoints/math_entrypoints.cc",
274 "entrypoints/quick/quick_alloc_entrypoints.cc",
275 "entrypoints/quick/quick_cast_entrypoints.cc",
276 "entrypoints/quick/quick_deoptimization_entrypoints.cc",
277 "entrypoints/quick/quick_dexcache_entrypoints.cc",
Serban Constantinescuda8ffec2016-03-09 12:02:11 +0000278 "entrypoints/quick/quick_entrypoints_enum.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700279 "entrypoints/quick/quick_field_entrypoints.cc",
280 "entrypoints/quick/quick_fillarray_entrypoints.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700281 "entrypoints/quick/quick_jni_entrypoints.cc",
282 "entrypoints/quick/quick_lock_entrypoints.cc",
283 "entrypoints/quick/quick_math_entrypoints.cc",
Vladimir Marko552a1342017-10-31 10:56:47 +0000284 "entrypoints/quick/quick_string_builder_append_entrypoints.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700285 "entrypoints/quick/quick_thread_entrypoints.cc",
286 "entrypoints/quick/quick_throw_entrypoints.cc",
287 "entrypoints/quick/quick_trampoline_entrypoints.cc",
288 ],
289
290 arch: {
291 arm: {
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700292 srcs: [
293 "interpreter/mterp/mterp.cc",
Nicolas Geoffray013d1ee2019-12-04 16:18:15 +0000294 "interpreter/mterp/nterp_stub.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100295 ":libart_mterp.arm",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700296 "arch/arm/context_arm.cc",
297 "arch/arm/entrypoints_init_arm.cc",
298 "arch/arm/instruction_set_features_assembly_tests.S",
299 "arch/arm/jni_entrypoints_arm.S",
300 "arch/arm/memcmp16_arm.S",
301 "arch/arm/quick_entrypoints_arm.S",
302 "arch/arm/quick_entrypoints_cc_arm.cc",
303 "arch/arm/thread_arm.cc",
304 "arch/arm/fault_handler_arm.cc",
305 ],
306 },
307 arm64: {
308 srcs: [
309 "interpreter/mterp/mterp.cc",
Nicolas Geoffray013d1ee2019-12-04 16:18:15 +0000310 "interpreter/mterp/nterp_stub.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100311 ":libart_mterp.arm64",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700312 "arch/arm64/context_arm64.cc",
313 "arch/arm64/entrypoints_init_arm64.cc",
314 "arch/arm64/jni_entrypoints_arm64.S",
315 "arch/arm64/memcmp16_arm64.S",
316 "arch/arm64/quick_entrypoints_arm64.S",
317 "arch/arm64/thread_arm64.cc",
318 "monitor_pool.cc",
319 "arch/arm64/fault_handler_arm64.cc",
320 ],
321 },
322 x86: {
323 srcs: [
324 "interpreter/mterp/mterp.cc",
Nicolas Geoffray013d1ee2019-12-04 16:18:15 +0000325 "interpreter/mterp/nterp_stub.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100326 ":libart_mterp.x86",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700327 "arch/x86/context_x86.cc",
328 "arch/x86/entrypoints_init_x86.cc",
329 "arch/x86/jni_entrypoints_x86.S",
330 "arch/x86/memcmp16_x86.S",
331 "arch/x86/quick_entrypoints_x86.S",
332 "arch/x86/thread_x86.cc",
333 "arch/x86/fault_handler_x86.cc",
334 ],
jaishankbae88c02019-06-11 16:47:45 +0530335 avx: {
336 asflags: ["-DMTERP_USE_AVX"],
337 },
338 avx2: {
339 asflags: ["-DMTERP_USE_AVX"],
340 },
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700341 },
342 x86_64: {
343 srcs: [
344 // Note that the fault_handler_x86.cc is not a mistake. This file is
345 // shared between the x86 and x86_64 architectures.
346 "interpreter/mterp/mterp.cc",
Nicolas Geoffray00391822019-12-10 10:17:23 +0000347 "interpreter/mterp/nterp.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100348 ":libart_mterp.x86_64",
Nicolas Geoffray00391822019-12-10 10:17:23 +0000349 ":libart_mterp.x86_64ng",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700350 "arch/x86_64/context_x86_64.cc",
351 "arch/x86_64/entrypoints_init_x86_64.cc",
352 "arch/x86_64/jni_entrypoints_x86_64.S",
353 "arch/x86_64/memcmp16_x86_64.S",
354 "arch/x86_64/quick_entrypoints_x86_64.S",
355 "arch/x86_64/thread_x86_64.cc",
356 "monitor_pool.cc",
357 "arch/x86/fault_handler_x86.cc",
358 ],
jaishankbae88c02019-06-11 16:47:45 +0530359 avx: {
360 asflags: ["-DMTERP_USE_AVX"],
361 },
362 avx2: {
363 asflags: ["-DMTERP_USE_AVX"],
364 },
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700365 },
366 mips: {
367 srcs: [
368 "interpreter/mterp/mterp.cc",
Nicolas Geoffray013d1ee2019-12-04 16:18:15 +0000369 "interpreter/mterp/nterp_stub.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100370 ":libart_mterp.mips",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700371 "arch/mips/context_mips.cc",
372 "arch/mips/entrypoints_init_mips.cc",
373 "arch/mips/jni_entrypoints_mips.S",
374 "arch/mips/memcmp16_mips.S",
375 "arch/mips/quick_entrypoints_mips.S",
376 "arch/mips/thread_mips.cc",
377 "arch/mips/fault_handler_mips.cc",
378 ],
379 },
380 mips64: {
381 srcs: [
382 "interpreter/mterp/mterp.cc",
Nicolas Geoffray013d1ee2019-12-04 16:18:15 +0000383 "interpreter/mterp/nterp_stub.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100384 ":libart_mterp.mips64",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700385 "arch/mips64/context_mips64.cc",
386 "arch/mips64/entrypoints_init_mips64.cc",
387 "arch/mips64/jni_entrypoints_mips64.S",
388 "arch/mips64/memcmp16_mips64.S",
389 "arch/mips64/quick_entrypoints_mips64.S",
390 "arch/mips64/thread_mips64.cc",
391 "monitor_pool.cc",
392 "arch/mips64/fault_handler_mips64.cc",
393 ],
394 },
395 },
396 target: {
397 android: {
398 srcs: [
399 "jdwp/jdwp_adb.cc",
400 "monitor_android.cc",
401 "runtime_android.cc",
402 "thread_android.cc",
403 ],
404 shared_libs: [
dimitry268aa302019-03-19 12:25:03 +0100405 "libdl_android",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700406 ],
Nicolas Geoffray65ed42a2018-10-30 12:33:04 +0000407 static_libs: [
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700408 "libz", // For adler32.
Nicolas Geoffray65ed42a2018-10-30 12:33:04 +0000409 ],
Victor Chang0a2cdf32018-11-26 18:06:01 +0000410 cflags: [
411 // ART is allowed to link to libicuuc directly
412 // since they are in the same module
413 "-DANDROID_LINK_SHARED_ICU4C",
414 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700415 },
416 android_arm: {
417 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
418 },
419 android_arm64: {
420 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
421 },
422 android_x86: {
423 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
424 },
425 android_x86_64: {
426 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
427 },
428 host: {
429 srcs: [
430 "monitor_linux.cc",
431 "runtime_linux.cc",
432 "thread_linux.cc",
433 ],
Nicolas Geoffray65ed42a2018-10-30 12:33:04 +0000434 shared_libs: [
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700435 "libz", // For adler32.
Nicolas Geoffray65ed42a2018-10-30 12:33:04 +0000436 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700437 },
438 },
439 cflags: ["-DBUILDING_LIBART=1"],
440 generated_sources: ["art_operator_srcs"],
Igor Murashkin2bb70d32017-02-06 10:34:14 -0800441 // asm_support_gen.h (used by asm_support.h) is generated with cpp-define-generator
442 generated_headers: ["cpp-define-generator-asm-support"],
443 // export our headers so the libart-gtest targets can use it as well.
444 export_generated_headers: ["cpp-define-generator-asm-support"],
Andreas Gampe3157fc22017-08-23 09:43:46 -0700445 header_libs: [
446 "art_cmdlineparser_headers",
David Srbecky50b47432018-10-18 12:26:34 +0100447 "cpp-define-generator-definitions",
Victor Chang0a2cdf32018-11-26 18:06:01 +0000448 "libicuuc_headers",
Andreas Gampe373a9b52017-10-18 09:01:57 -0700449 "libnativehelper_header_only",
Andreas Gamped863be72017-09-12 12:02:28 -0700450 "jni_platform_headers",
Andreas Gampe3157fc22017-08-23 09:43:46 -0700451 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700452 shared_libs: [
Orion Hodson119733d2019-01-30 15:14:41 +0000453 "libartpalette",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700454 "libnativebridge",
455 "libnativeloader",
456 "libbacktrace",
Dimitry Ivanov1d3038f2016-09-23 16:52:05 -0700457 "liblog",
Andreas Gampeaaadff82016-08-29 09:53:48 -0700458 // For common macros.
459 "libbase",
David Srbeckyf1603942019-04-05 12:06:36 +0100460 "libunwindstack",
Colin Cross616f4002019-05-29 21:39:14 -0700461 "libsigchain",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700462 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700463 export_include_dirs: ["."],
Andreas Gampeaaadff82016-08-29 09:53:48 -0700464 // ART's macros.h depends on libbase's macros.h.
Andreas Gampe3157fc22017-08-23 09:43:46 -0700465 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
466 // generically. dex2oat takes care of it itself.
David Sehrfcbe15c2018-02-15 09:41:13 -0800467 export_shared_lib_headers: ["libbase"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700468}
469
Andreas Gampeec5ed062018-01-26 16:20:02 -0800470libart_static_cc_defaults {
471 name: "libart_static_base_defaults",
Andreas Gampeec5ed062018-01-26 16:20:02 -0800472 static_libs: [
Orion Hodson119733d2019-01-30 15:14:41 +0000473 "libartpalette",
Andreas Gampeec5ed062018-01-26 16:20:02 -0800474 "libbacktrace",
475 "libbase",
Andreas Gampeec5ed062018-01-26 16:20:02 -0800476 "liblog",
Andreas Gampeec5ed062018-01-26 16:20:02 -0800477 "libnativebridge",
478 "libnativeloader",
David Brazdil35a3f6a2019-03-04 15:59:06 +0000479 "libsigchain_dummy",
Andreas Gampeec5ed062018-01-26 16:20:02 -0800480 "libunwindstack",
Nicolas Geoffray65ed42a2018-10-30 12:33:04 +0000481 "libz",
Andreas Gampeec5ed062018-01-26 16:20:02 -0800482 ],
483}
484
485cc_defaults {
486 name: "libart_static_defaults",
487 defaults: [
488 "libart_static_base_defaults",
489 "libartbase_static_defaults",
490 "libdexfile_static_defaults",
491 "libprofile_static_defaults",
492 ],
David Srbecky50928112019-03-22 17:06:28 +0000493 static_libs: [
494 "libart",
Martin Stjernholm621afb42019-09-23 22:01:36 +0100495 "libdexfile_support_static",
David Srbecky50928112019-03-22 17:06:28 +0000496 "libelffile",
497 ],
Andreas Gampeec5ed062018-01-26 16:20:02 -0800498}
499
500cc_defaults {
501 name: "libartd_static_defaults",
502 defaults: [
503 "libart_static_base_defaults",
504 "libartbased_static_defaults",
505 "libdexfiled_static_defaults",
506 "libprofiled_static_defaults",
507 ],
David Srbecky50928112019-03-22 17:06:28 +0000508 static_libs: [
509 "libartd",
Martin Stjernholm621afb42019-09-23 22:01:36 +0100510 "libdexfiled_support_static",
David Srbecky50928112019-03-22 17:06:28 +0000511 "libelffiled",
512 ],
Andreas Gampeec5ed062018-01-26 16:20:02 -0800513}
514
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700515gensrcs {
516 name: "art_operator_srcs",
Alex Lightb69d2d32018-02-21 13:37:17 -0800517 cmd: "$(location generate_operator_out) art/runtime $(in) > $(out)",
518 tools: ["generate_operator_out"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700519 srcs: [
Andreas Gampe8764dc32019-01-07 15:20:12 -0800520 "base/callee_save_type.h",
Andreas Gampe7cc45fd2018-11-21 16:03:08 -0800521 "base/locks.h",
Mathieu Chartieradc90862018-05-11 13:03:06 -0700522 "class_loader_context.h",
Andreas Gampeee5303f2017-08-31 15:34:42 -0700523 "class_status.h",
David Sehr334b9d72018-02-12 18:27:56 -0800524 "debugger.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700525 "gc_root.h",
526 "gc/allocator_type.h",
527 "gc/allocator/rosalloc.h",
528 "gc/collector_type.h",
529 "gc/collector/gc_type.h",
530 "gc/heap.h",
531 "gc/space/region_space.h",
532 "gc/space/space.h",
533 "gc/weak_root_state.h",
534 "image.h",
535 "instrumentation.h",
536 "indirect_reference_table.h",
Alex Light40320712017-12-14 11:52:04 -0800537 "jdwp_provider.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700538 "jdwp/jdwp.h",
539 "jdwp/jdwp_constants.h",
Alex Light79d6c802019-06-27 15:50:11 +0000540 "jni_id_type.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700541 "lock_word.h",
Vladimir Markod3d00c02019-11-07 15:09:07 +0000542 "oat_file.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700543 "object_callbacks.h",
544 "process_state.h",
Alex Lightc18eba32019-09-24 14:36:27 -0700545 "reflective_value_visitor.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700546 "stack.h",
Alex Light46f93402017-06-29 11:59:50 -0700547 "suspend_reason.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700548 "thread.h",
549 "thread_state.h",
550 "ti/agent.h",
Orion Hodson283ad2d2018-03-26 13:37:41 +0100551 "trace.h",
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700552 "verifier/verifier_enums.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700553 ],
554 output_extension: "operator_out.cc",
555}
556
557// We always build dex2oat and dependencies, even if the host build is otherwise disabled, since
558// they are used to cross compile for the target.
559
560art_cc_library {
561 name: "libart",
Christopher Ferris0d38e852019-12-11 09:37:19 -0800562 defaults: [
563 "libart_defaults",
564 "libart_nativeunwind_defaults",
565 ],
David Sehrc431b9d2018-03-02 12:01:51 -0800566 whole_static_libs: [
David Sehrc431b9d2018-03-02 12:01:51 -0800567 ],
David Srbecky50928112019-03-22 17:06:28 +0000568 static_libs: [
569 "libelffile",
570 ],
David Sehrc431b9d2018-03-02 12:01:51 -0800571 shared_libs: [
David Sehr1f010162018-05-15 08:59:32 -0700572 "libartbase",
David Sehrc431b9d2018-03-02 12:01:51 -0800573 "libdexfile",
David Srbecky7711c352019-04-10 17:50:12 +0100574 // We need to eagerly load it so libdexfile_support used from libunwindstack can find it.
575 "libdexfile_external",
David Sehr82d046e2018-04-23 08:14:19 -0700576 "libprofile",
David Sehrc431b9d2018-03-02 12:01:51 -0800577 ],
578 export_shared_lib_headers: [
579 "libdexfile",
580 ],
Yi Kongfd8bb932018-03-12 16:52:57 -0700581 target: {
582 android: {
583 lto: {
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700584 thin: true,
Yi Kongfd8bb932018-03-12 16:52:57 -0700585 },
586 },
587 },
Jiyong Park066dd9022019-12-19 02:11:59 +0000588 apex_available: [
589 "com.android.art.release",
590 "com.android.art.debug",
591 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700592}
593
594art_cc_library {
595 name: "libartd",
596 defaults: [
Dan Willemsen2ca27802017-09-27 14:57:43 -0700597 "art_debug_defaults",
598 "libart_defaults",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700599 ],
David Sehrc431b9d2018-03-02 12:01:51 -0800600 whole_static_libs: [
David Sehrc431b9d2018-03-02 12:01:51 -0800601 ],
David Srbecky50928112019-03-22 17:06:28 +0000602 static_libs: [
603 "libelffiled",
604 ],
David Sehrc431b9d2018-03-02 12:01:51 -0800605 shared_libs: [
David Sehr1f010162018-05-15 08:59:32 -0700606 "libartbased",
David Sehrc431b9d2018-03-02 12:01:51 -0800607 "libdexfiled",
David Srbecky7711c352019-04-10 17:50:12 +0100608 // We need to eagerly preload it, so that libunwindstack can find it.
609 // Otherwise, it would try to load the non-debug version with dlopen.
610 "libdexfiled_external",
David Sehr82d046e2018-04-23 08:14:19 -0700611 "libprofiled",
David Sehrc431b9d2018-03-02 12:01:51 -0800612 ],
613 export_shared_lib_headers: [
614 "libdexfiled",
615 ],
Jiyong Park066dd9022019-12-19 02:11:59 +0000616 apex_available: [
617 "com.android.art.debug",
618 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700619}
620
Colin Cross6b22aa52016-09-12 14:35:39 -0700621art_cc_library {
622 name: "libart-runtime-gtest",
623 defaults: ["libart-gtest-defaults"],
Calin Juravle36eb3132017-01-13 16:32:38 -0800624 srcs: [
625 "common_runtime_test.cc",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700626 "dexopt_test.cc",
Calin Juravle36eb3132017-01-13 16:32:38 -0800627 ],
Colin Cross6b22aa52016-09-12 14:35:39 -0700628 shared_libs: [
629 "libartd",
David Srbecky2faab002019-02-12 16:35:48 +0000630 "libartbase-art-gtest",
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700631 "libbase",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700632 "libbacktrace",
Andreas Gampe373a9b52017-10-18 09:01:57 -0700633 ],
634 header_libs: [
635 "libnativehelper_header_only",
Colin Cross6b22aa52016-09-12 14:35:39 -0700636 ],
637}
638
Colin Cross6e95dd52016-09-12 15:37:10 -0700639art_cc_test {
640 name: "art_runtime_tests",
641 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700642 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -0700643 ],
644 srcs: [
645 "arch/arch_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700646 "arch/instruction_set_features_test.cc",
647 "arch/memcmp16_test.cc",
648 "arch/stub_test.cc",
649 "arch/arm/instruction_set_features_arm_test.cc",
650 "arch/arm64/instruction_set_features_arm64_test.cc",
651 "arch/mips/instruction_set_features_mips_test.cc",
652 "arch/mips64/instruction_set_features_mips64_test.cc",
653 "arch/x86/instruction_set_features_x86_test.cc",
654 "arch/x86_64/instruction_set_features_x86_64_test.cc",
655 "barrier_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700656 "base/mutex_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700657 "base/timing_logger_test.cc",
Mingyao Yang063fc772016-08-02 11:02:54 -0700658 "cha_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700659 "class_linker_test.cc",
Calin Juravle87e2cb62017-06-13 21:48:45 -0700660 "class_loader_context_test.cc",
Mathieu Chartierdb70ce52016-12-12 11:06:59 -0800661 "class_table_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700662 "compiler_filter_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700663 "entrypoints/math_entrypoints_test.cc",
664 "entrypoints/quick/quick_trampoline_entrypoints_test.cc",
665 "entrypoints_order_test.cc",
David Sehrb2ec9f52018-02-21 13:20:31 -0800666 "exec_utils_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700667 "gc/accounting/card_table_test.cc",
668 "gc/accounting/mod_union_table_test.cc",
669 "gc/accounting/space_bitmap_test.cc",
670 "gc/collector/immune_spaces_test.cc",
671 "gc/heap_test.cc",
Mathieu Chartier1ca68902017-04-18 11:26:22 -0700672 "gc/heap_verification_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700673 "gc/reference_queue_test.cc",
674 "gc/space/dlmalloc_space_static_test.cc",
675 "gc/space/dlmalloc_space_random_test.cc",
Richard Uhler84f50ae2017-02-06 15:12:45 +0000676 "gc/space/image_space_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700677 "gc/space/large_object_space_test.cc",
678 "gc/space/rosalloc_space_static_test.cc",
679 "gc/space/rosalloc_space_random_test.cc",
680 "gc/space/space_create_test.cc",
681 "gc/system_weak_test.cc",
682 "gc/task_processor_test.cc",
683 "gtest_test.cc",
684 "handle_scope_test.cc",
Mathew Inwood7d74ef52018-03-16 14:18:33 +0000685 "hidden_api_test.cc",
Andreas Gampea1ff30f2016-09-27 12:19:45 -0700686 "imtable_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700687 "indirect_reference_table_test.cc",
688 "instrumentation_test.cc",
689 "intern_table_test.cc",
690 "interpreter/safe_math_test.cc",
691 "interpreter/unstarted_runtime_test.cc",
Alex Light40320712017-12-14 11:52:04 -0800692 "jdwp/jdwp_options_test.cc",
Nicolas Geoffray2411f492019-06-14 08:54:46 +0100693 "jit/jit_memory_region_test.cc",
Calin Juravlef70dfec2019-10-02 18:58:19 -0700694 "jit/profile_saver_test.cc",
David Sehr1fed3432018-05-29 13:19:47 -0700695 "jit/profiling_info_test.cc",
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +0100696 "jni/java_vm_ext_test.cc",
Vladimir Marko2b076df2019-02-20 11:27:52 +0000697 "jni/jni_internal_test.cc",
Orion Hodsonc1d3bac2018-01-26 14:38:55 +0000698 "method_handles_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700699 "mirror/dex_cache_test.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100700 "mirror/method_type_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700701 "mirror/object_test.cc",
Orion Hodson005ac512017-10-24 15:43:43 +0100702 "mirror/var_handle_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700703 "monitor_pool_test.cc",
704 "monitor_test.cc",
705 "oat_file_test.cc",
706 "oat_file_assistant_test.cc",
707 "parsed_options_test.cc",
708 "prebuilt_tools_test.cc",
Vladimir Marko2b076df2019-02-20 11:27:52 +0000709 "proxy_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700710 "reference_table_test.cc",
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000711 "runtime_callbacks_test.cc",
Andreas Gampeba26b512019-05-31 13:07:26 -0700712 "runtime_test.cc",
Igor Murashkinf31a00c2017-10-27 10:52:07 -0700713 "subtype_check_info_test.cc",
Igor Murashkin495e7832017-10-27 10:56:20 -0700714 "subtype_check_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700715 "thread_pool_test.cc",
716 "transaction_test.cc",
Nicolas Geoffray21b65682019-03-12 00:49:45 +0000717 "two_runtimes_test.cc",
Richard Uhlerb8ab63a2017-01-31 11:27:37 +0000718 "vdex_file_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700719 "verifier/method_verifier_test.cc",
720 "verifier/reg_type_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700721 ],
722 shared_libs: [
723 "libbacktrace",
724 ],
Andreas Gampe3157fc22017-08-23 09:43:46 -0700725 header_libs: [
Dan Willemsen2ca27802017-09-27 14:57:43 -0700726 "art_cmdlineparser_headers", // For parsed_options_test.
Andreas Gampe3157fc22017-08-23 09:43:46 -0700727 ],
Colin Cross6e95dd52016-09-12 15:37:10 -0700728}
729
730art_cc_test {
731 name: "art_runtime_compiler_tests",
732 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700733 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -0700734 ],
735 srcs: [
Colin Cross6e95dd52016-09-12 15:37:10 -0700736 "reflection_test.cc",
Vladimir Markob9c29f62019-03-20 14:22:51 +0000737 "module_exclusion_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700738 ],
739 shared_libs: [
740 "libartd-compiler",
Roland Levillain12dd9ae2018-11-06 13:32:06 +0000741 "libvixld",
Colin Cross6e95dd52016-09-12 15:37:10 -0700742 ],
743}
Igor Murashkin0ae15322017-09-14 13:55:06 -0700744
745cc_library_headers {
Paul Duffin4345aac2019-07-17 15:51:54 +0100746 name: "libart_runtime_headers_ndk",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700747 host_supported: true,
748 export_include_dirs: ["."],
Paul Duffin4345aac2019-07-17 15:51:54 +0100749 sdk_version: "current",
Igor Murashkin0ae15322017-09-14 13:55:06 -0700750}
David Srbeckybfbc6542018-09-11 13:34:57 +0100751
752genrule {
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700753 name: "libart_mterp.arm",
754 out: ["mterp_arm.S"],
755 srcs: ["interpreter/mterp/arm/*.S"],
756 tool_files: [
757 "interpreter/mterp/gen_mterp.py",
758 "interpreter/mterp/common/gen_setup.py",
759 ],
760 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
David Srbeckybfbc6542018-09-11 13:34:57 +0100761}
762
763genrule {
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700764 name: "libart_mterp.arm64",
765 out: ["mterp_arm64.S"],
766 srcs: ["interpreter/mterp/arm64/*.S"],
767 tool_files: [
768 "interpreter/mterp/gen_mterp.py",
769 "interpreter/mterp/common/gen_setup.py",
770 ],
771 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
David Srbeckybfbc6542018-09-11 13:34:57 +0100772}
773
774genrule {
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700775 name: "libart_mterp.mips",
776 out: ["mterp_mips.S"],
777 srcs: ["interpreter/mterp/mips/*.S"],
778 tool_files: [
779 "interpreter/mterp/gen_mterp.py",
780 "interpreter/mterp/common/gen_setup.py",
781 ],
782 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
David Srbeckybfbc6542018-09-11 13:34:57 +0100783}
784
785genrule {
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700786 name: "libart_mterp.mips64",
787 out: ["mterp_mips64.S"],
788 srcs: ["interpreter/mterp/mips64/*.S"],
789 tool_files: [
790 "interpreter/mterp/gen_mterp.py",
791 "interpreter/mterp/common/gen_setup.py",
792 ],
793 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
David Srbeckybfbc6542018-09-11 13:34:57 +0100794}
795
796genrule {
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700797 name: "libart_mterp.x86",
798 out: ["mterp_x86.S"],
799 srcs: ["interpreter/mterp/x86/*.S"],
800 tool_files: [
801 "interpreter/mterp/gen_mterp.py",
802 "interpreter/mterp/common/gen_setup.py",
803 ],
804 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
David Srbeckybfbc6542018-09-11 13:34:57 +0100805}
806
807genrule {
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700808 name: "libart_mterp.x86_64",
809 out: ["mterp_x86_64.S"],
810 srcs: ["interpreter/mterp/x86_64/*.S"],
811 tool_files: [
812 "interpreter/mterp/gen_mterp.py",
813 "interpreter/mterp/common/gen_setup.py",
814 ],
815 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
David Srbeckybfbc6542018-09-11 13:34:57 +0100816}
Nicolas Geoffray00391822019-12-10 10:17:23 +0000817
818genrule {
819 name: "libart_mterp.x86_64ng",
820 out: ["mterp_x86_64ng.S"],
Dan Zimmerman467defb2019-12-26 12:39:23 -0800821 srcs: [
822 "interpreter/mterp/x86_64ng/*.S",
823 "interpreter/mterp/x86_64/arithmetic.S",
824 "interpreter/mterp/x86_64/floating_point.S",
825 ],
Nicolas Geoffray00391822019-12-10 10:17:23 +0000826 tool_files: [
827 "interpreter/mterp/gen_mterp.py",
828 "interpreter/mterp/common/gen_setup.py",
829 ],
830 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
831}