Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2012 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 | |
| 17 | LIBART_COMPILER_COMMON_SRC_FILES += \ |
| 18 | src/compiler/Dataflow.cc \ |
| 19 | src/compiler/Frontend.cc \ |
| 20 | src/compiler/IntermediateRep.cc \ |
| 21 | src/compiler/Ralloc.cc \ |
| 22 | src/compiler/SSATransformation.cc \ |
| 23 | src/compiler/Utility.cc \ |
Elliott Hughes | 46f060a | 2012-03-09 17:36:50 -0800 | [diff] [blame] | 24 | src/compiler/codegen/RallocUtil.cc \ |
Ian Rogers | 57b86d4 | 2012-03-27 16:05:41 -0700 | [diff] [blame] | 25 | src/oat/jni/calling_convention.cc \ |
| 26 | src/oat/jni/jni_compiler.cc \ |
| 27 | src/oat/jni/arm/calling_convention_arm.cc \ |
jeffhao | 7fbee07 | 2012-08-24 17:56:54 -0700 | [diff] [blame^] | 28 | src/oat/jni/mips/calling_convention_mips.cc \ |
Ian Rogers | 57b86d4 | 2012-03-27 16:05:41 -0700 | [diff] [blame] | 29 | src/oat/jni/x86/calling_convention_x86.cc |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 30 | |
buzbee | 2cfc639 | 2012-05-07 14:51:40 -0700 | [diff] [blame] | 31 | ifeq ($(ART_USE_QUICK_COMPILER), true) |
| 32 | LIBART_COMPILER_COMMON_SRC_FILES += \ |
| 33 | src/greenland/ir_builder.cc \ |
| 34 | src/greenland/intrinsic_helper.cc |
| 35 | endif |
| 36 | |
Brian Carlstrom | 5644f00 | 2012-06-27 23:05:17 -0700 | [diff] [blame] | 37 | LIBART_COMPILER_arm_SRC_FILES += \ |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 38 | $(LIBART_COMPILER_COMMON_SRC_FILES) \ |
| 39 | src/compiler/codegen/arm/ArchUtility.cc \ |
| 40 | src/compiler/codegen/arm/ArmRallocUtil.cc \ |
| 41 | src/compiler/codegen/arm/Assemble.cc \ |
Ian Rogers | 57b86d4 | 2012-03-27 16:05:41 -0700 | [diff] [blame] | 42 | src/compiler/codegen/arm/armv7-a/Codegen.cc \ |
| 43 | src/oat/jni/arm/jni_internal_arm.cc |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 44 | |
Brian Carlstrom | 5644f00 | 2012-06-27 23:05:17 -0700 | [diff] [blame] | 45 | LIBART_COMPILER_mips_SRC_FILES += \ |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 46 | $(LIBART_COMPILER_COMMON_SRC_FILES) \ |
| 47 | src/compiler/codegen/mips/ArchUtility.cc \ |
| 48 | src/compiler/codegen/mips/MipsRallocUtil.cc \ |
| 49 | src/compiler/codegen/mips/Assemble.cc \ |
jeffhao | 7fbee07 | 2012-08-24 17:56:54 -0700 | [diff] [blame^] | 50 | src/compiler/codegen/mips/mips/Codegen.cc \ |
| 51 | src/oat/jni/mips/jni_internal_mips.cc |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 52 | |
Brian Carlstrom | 5644f00 | 2012-06-27 23:05:17 -0700 | [diff] [blame] | 53 | LIBART_COMPILER_x86_SRC_FILES += \ |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 54 | $(LIBART_COMPILER_COMMON_SRC_FILES) \ |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 55 | src/compiler/codegen/x86/ArchUtility.cc \ |
| 56 | src/compiler/codegen/x86/X86RallocUtil.cc \ |
| 57 | src/compiler/codegen/x86/Assemble.cc \ |
Ian Rogers | 57b86d4 | 2012-03-27 16:05:41 -0700 | [diff] [blame] | 58 | src/compiler/codegen/x86/x86/Codegen.cc \ |
| 59 | src/oat/jni/x86/jni_internal_x86.cc |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 60 | |
| 61 | # $(1): target or host |
| 62 | # $(2): ndebug or debug |
| 63 | # $(3): architecture name |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 64 | define build-libart-compiler |
| 65 | ifneq ($(1),target) |
| 66 | ifneq ($(1),host) |
| 67 | $$(error expected target or host for argument 1, received $(1)) |
| 68 | endif |
| 69 | endif |
| 70 | ifneq ($(2),ndebug) |
| 71 | ifneq ($(2),debug) |
| 72 | $$(error expected ndebug or debug for argument 2, received $(2)) |
| 73 | endif |
| 74 | endif |
| 75 | |
| 76 | art_target_or_host := $(1) |
| 77 | art_ndebug_or_debug := $(2) |
| 78 | libart_compiler_arch := $(3) |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 79 | |
| 80 | include $(CLEAR_VARS) |
| 81 | ifeq ($$(art_target_or_host),target) |
| 82 | include external/stlport/libstlport.mk |
| 83 | endif |
| 84 | LOCAL_CPP_EXTENSION := $(ART_CPP_EXTENSION) |
| 85 | ifeq ($$(art_ndebug_or_debug),ndebug) |
Elliott Hughes | ceeea7d | 2012-04-10 11:35:08 -0700 | [diff] [blame] | 86 | LOCAL_MODULE := libart-compiler-$$(libart_compiler_arch) |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 87 | else # debug |
Elliott Hughes | ceeea7d | 2012-04-10 11:35:08 -0700 | [diff] [blame] | 88 | LOCAL_MODULE := libartd-compiler-$$(libart_compiler_arch) |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 89 | endif |
| 90 | |
| 91 | LOCAL_MODULE_TAGS := optional |
| 92 | LOCAL_MODULE_CLASS := SHARED_LIBRARIES |
| 93 | |
Brian Carlstrom | 5644f00 | 2012-06-27 23:05:17 -0700 | [diff] [blame] | 94 | LOCAL_SRC_FILES := $$(LIBART_COMPILER_$$(libart_compiler_arch)_SRC_FILES) |
| 95 | |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 96 | ifeq ($$(art_target_or_host),target) |
| 97 | LOCAL_CFLAGS := $(ART_TARGET_CFLAGS) |
| 98 | else # host |
| 99 | LOCAL_CFLAGS := $(ART_HOST_CFLAGS) |
| 100 | endif |
Elliott Hughes | 1bac54f | 2012-03-16 12:48:31 -0700 | [diff] [blame] | 101 | |
| 102 | # TODO: clean up the compilers and remove this. |
| 103 | LOCAL_CFLAGS += -Wno-unused-parameter |
| 104 | |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 105 | LOCAL_SHARED_LIBRARIES := liblog |
| 106 | ifeq ($$(art_ndebug_or_debug),debug) |
| 107 | ifeq ($$(art_target_or_host),target) |
| 108 | LOCAL_CFLAGS += $(ART_TARGET_DEBUG_CFLAGS) |
| 109 | else # host |
| 110 | LOCAL_CFLAGS += $(ART_HOST_DEBUG_CFLAGS) |
| 111 | endif |
| 112 | LOCAL_SHARED_LIBRARIES += libartd |
| 113 | else |
| 114 | ifeq ($$(art_target_or_host),target) |
| 115 | LOCAL_CFLAGS += $(ART_TARGET_NON_DEBUG_CFLAGS) |
| 116 | else # host |
| 117 | LOCAL_CFLAGS += $(ART_HOST_NON_DEBUG_CFLAGS) |
| 118 | endif |
| 119 | LOCAL_SHARED_LIBRARIES += libart |
| 120 | endif |
Shih-wei Liao | cdc6690 | 2012-07-22 16:45:37 -0700 | [diff] [blame] | 121 | ifeq ($(ART_USE_QUICK_COMPILER), true) |
| 122 | LOCAL_SHARED_LIBRARIES += libbcc |
| 123 | endif |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 124 | |
| 125 | # TODO: temporary hack for testing. |
Brian Carlstrom | 5644f00 | 2012-06-27 23:05:17 -0700 | [diff] [blame] | 126 | ifeq ($$(libart_compiler_arch),mips) |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 127 | LOCAL_CFLAGS += -D__mips_hard_float |
| 128 | endif |
| 129 | |
buzbee | 2cfc639 | 2012-05-07 14:51:40 -0700 | [diff] [blame] | 130 | ifeq ($(ART_USE_QUICK_COMPILER), true) |
| 131 | LOCAL_CFLAGS += -DART_USE_QUICK_COMPILER |
| 132 | endif |
| 133 | |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 134 | LOCAL_C_INCLUDES += $(ART_C_INCLUDES) |
buzbee | 2cfc639 | 2012-05-07 14:51:40 -0700 | [diff] [blame] | 135 | |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 136 | ifeq ($$(art_target_or_host),target) |
| 137 | LOCAL_SHARED_LIBRARIES += libstlport |
| 138 | else # host |
| 139 | LOCAL_LDLIBS := -ldl -lpthread |
| 140 | endif |
| 141 | ifeq ($$(art_target_or_host),target) |
buzbee | 2cfc639 | 2012-05-07 14:51:40 -0700 | [diff] [blame] | 142 | ifeq ($(ART_USE_QUICK_COMPILER), true) |
| 143 | LOCAL_SHARED_LIBRARIES += libcutils |
| 144 | include $(LLVM_GEN_INTRINSICS_MK) |
| 145 | include $(LLVM_DEVICE_BUILD_MK) |
| 146 | endif |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 147 | include $(BUILD_SHARED_LIBRARY) |
| 148 | else # host |
| 149 | LOCAL_IS_HOST_MODULE := true |
buzbee | 2cfc639 | 2012-05-07 14:51:40 -0700 | [diff] [blame] | 150 | ifeq ($(ART_USE_QUICK_COMPILER), true) |
| 151 | LOCAL_STATIC_LIBRARIES += libcutils |
| 152 | include $(LLVM_GEN_INTRINSICS_MK) |
| 153 | include $(LLVM_HOST_BUILD_MK) |
| 154 | endif |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 155 | include $(BUILD_HOST_SHARED_LIBRARY) |
| 156 | endif |
Brian Carlstrom | 73666be | 2012-03-10 20:25:10 -0800 | [diff] [blame] | 157 | |
| 158 | ifeq ($$(art_target_or_host),target) |
| 159 | ifeq ($$(art_ndebug_or_debug),debug) |
| 160 | $(TARGET_OUT_EXECUTABLES)/dex2oatd: $$(LOCAL_INSTALLED_MODULE) |
| 161 | else |
| 162 | $(TARGET_OUT_EXECUTABLES)/dex2oat: $$(LOCAL_INSTALLED_MODULE) |
| 163 | endif |
| 164 | else # host |
| 165 | ifeq ($$(art_ndebug_or_debug),debug) |
| 166 | $(HOST_OUT_EXECUTABLES)/dex2oatd: $$(LOCAL_INSTALLED_MODULE) |
| 167 | else |
| 168 | $(HOST_OUT_EXECUTABLES)/dex2oat: $$(LOCAL_INSTALLED_MODULE) |
| 169 | endif |
| 170 | endif |
| 171 | |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 172 | endef |
| 173 | |
| 174 | # $(1): target or host |
| 175 | # $(2): ndebug or debug |
| 176 | define build-libart-compilers |
Brian Carlstrom | 5644f00 | 2012-06-27 23:05:17 -0700 | [diff] [blame] | 177 | $(foreach arch,arm mips x86,$(eval $(call build-libart-compiler,$(1),$(2),$(arch)))) |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 178 | endef |
| 179 | |
| 180 | ifeq ($(ART_BUILD_TARGET_NDEBUG),true) |
Brian Carlstrom | 5644f00 | 2012-06-27 23:05:17 -0700 | [diff] [blame] | 181 | $(eval $(call build-libart-compiler,target,ndebug,$(TARGET_ARCH))) |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 182 | endif |
| 183 | ifeq ($(ART_BUILD_TARGET_DEBUG),true) |
Brian Carlstrom | 5644f00 | 2012-06-27 23:05:17 -0700 | [diff] [blame] | 184 | $(eval $(call build-libart-compiler,target,debug,$(TARGET_ARCH))) |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 185 | endif |
| 186 | ifeq ($(ART_BUILD_HOST_NDEBUG),true) |
| 187 | $(eval $(call build-libart-compilers,host,ndebug)) |
| 188 | endif |
| 189 | ifeq ($(ART_BUILD_HOST_DEBUG),true) |
| 190 | $(eval $(call build-libart-compilers,host,debug)) |
| 191 | endif |