blob: 323017a428875a59dc8f1546efe3b86d3e2e0306 [file] [log] [blame]
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001#
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
17LIBART_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 Hughes46f060a2012-03-09 17:36:50 -080024 src/compiler/codegen/RallocUtil.cc \
Ian Rogers57b86d42012-03-27 16:05:41 -070025 src/oat/jni/calling_convention.cc \
26 src/oat/jni/jni_compiler.cc \
27 src/oat/jni/arm/calling_convention_arm.cc \
jeffhao7fbee072012-08-24 17:56:54 -070028 src/oat/jni/mips/calling_convention_mips.cc \
buzbeec531cef2012-10-18 07:09:20 -070029 src/oat/jni/x86/calling_convention_x86.cc \
buzbee2cfc6392012-05-07 14:51:40 -070030 src/greenland/ir_builder.cc \
31 src/greenland/intrinsic_helper.cc
buzbee2cfc6392012-05-07 14:51:40 -070032
Brian Carlstrom5644f002012-06-27 23:05:17 -070033LIBART_COMPILER_arm_SRC_FILES += \
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080034 $(LIBART_COMPILER_COMMON_SRC_FILES) \
35 src/compiler/codegen/arm/ArchUtility.cc \
36 src/compiler/codegen/arm/ArmRallocUtil.cc \
37 src/compiler/codegen/arm/Assemble.cc \
Ian Rogers57b86d42012-03-27 16:05:41 -070038 src/compiler/codegen/arm/armv7-a/Codegen.cc \
39 src/oat/jni/arm/jni_internal_arm.cc
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080040
Brian Carlstrom5644f002012-06-27 23:05:17 -070041LIBART_COMPILER_mips_SRC_FILES += \
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080042 $(LIBART_COMPILER_COMMON_SRC_FILES) \
43 src/compiler/codegen/mips/ArchUtility.cc \
44 src/compiler/codegen/mips/MipsRallocUtil.cc \
45 src/compiler/codegen/mips/Assemble.cc \
jeffhao7fbee072012-08-24 17:56:54 -070046 src/compiler/codegen/mips/mips/Codegen.cc \
47 src/oat/jni/mips/jni_internal_mips.cc
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080048
Brian Carlstrom5644f002012-06-27 23:05:17 -070049LIBART_COMPILER_x86_SRC_FILES += \
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080050 $(LIBART_COMPILER_COMMON_SRC_FILES) \
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080051 src/compiler/codegen/x86/ArchUtility.cc \
52 src/compiler/codegen/x86/X86RallocUtil.cc \
53 src/compiler/codegen/x86/Assemble.cc \
Ian Rogers57b86d42012-03-27 16:05:41 -070054 src/compiler/codegen/x86/x86/Codegen.cc \
55 src/oat/jni/x86/jni_internal_x86.cc
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080056
57# $(1): target or host
58# $(2): ndebug or debug
59# $(3): architecture name
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080060define build-libart-compiler
61 ifneq ($(1),target)
62 ifneq ($(1),host)
63 $$(error expected target or host for argument 1, received $(1))
64 endif
65 endif
66 ifneq ($(2),ndebug)
67 ifneq ($(2),debug)
68 $$(error expected ndebug or debug for argument 2, received $(2))
69 endif
70 endif
71
72 art_target_or_host := $(1)
73 art_ndebug_or_debug := $(2)
74 libart_compiler_arch := $(3)
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080075
76 include $(CLEAR_VARS)
77 ifeq ($$(art_target_or_host),target)
78 include external/stlport/libstlport.mk
79 endif
80 LOCAL_CPP_EXTENSION := $(ART_CPP_EXTENSION)
81 ifeq ($$(art_ndebug_or_debug),ndebug)
Elliott Hughesceeea7d2012-04-10 11:35:08 -070082 LOCAL_MODULE := libart-compiler-$$(libart_compiler_arch)
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080083 else # debug
Elliott Hughesceeea7d2012-04-10 11:35:08 -070084 LOCAL_MODULE := libartd-compiler-$$(libart_compiler_arch)
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080085 endif
86
87 LOCAL_MODULE_TAGS := optional
88 LOCAL_MODULE_CLASS := SHARED_LIBRARIES
89
Brian Carlstrom5644f002012-06-27 23:05:17 -070090 LOCAL_SRC_FILES := $$(LIBART_COMPILER_$$(libart_compiler_arch)_SRC_FILES)
91
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080092 ifeq ($$(art_target_or_host),target)
93 LOCAL_CFLAGS := $(ART_TARGET_CFLAGS)
94 else # host
95 LOCAL_CFLAGS := $(ART_HOST_CFLAGS)
96 endif
Elliott Hughes1bac54f2012-03-16 12:48:31 -070097
98 # TODO: clean up the compilers and remove this.
99 LOCAL_CFLAGS += -Wno-unused-parameter
100
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800101 LOCAL_SHARED_LIBRARIES := liblog
102 ifeq ($$(art_ndebug_or_debug),debug)
103 ifeq ($$(art_target_or_host),target)
104 LOCAL_CFLAGS += $(ART_TARGET_DEBUG_CFLAGS)
105 else # host
106 LOCAL_CFLAGS += $(ART_HOST_DEBUG_CFLAGS)
107 endif
108 LOCAL_SHARED_LIBRARIES += libartd
109 else
110 ifeq ($$(art_target_or_host),target)
111 LOCAL_CFLAGS += $(ART_TARGET_NON_DEBUG_CFLAGS)
112 else # host
113 LOCAL_CFLAGS += $(ART_HOST_NON_DEBUG_CFLAGS)
114 endif
115 LOCAL_SHARED_LIBRARIES += libart
116 endif
buzbeec531cef2012-10-18 07:09:20 -0700117 LOCAL_SHARED_LIBRARIES += libbcc
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800118
119 # TODO: temporary hack for testing.
Brian Carlstrom5644f002012-06-27 23:05:17 -0700120 ifeq ($$(libart_compiler_arch),mips)
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800121 LOCAL_CFLAGS += -D__mips_hard_float
122 endif
123
buzbeec531cef2012-10-18 07:09:20 -0700124 ifeq ($(ART_USE_PORTABLE_COMPILER),true)
125 ART_TEST_CFLAGS += -DART_USE_PORTABLE_COMPILER=1
buzbee2cfc6392012-05-07 14:51:40 -0700126 endif
127
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800128 LOCAL_C_INCLUDES += $(ART_C_INCLUDES)
buzbee2cfc6392012-05-07 14:51:40 -0700129
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800130 ifeq ($$(art_target_or_host),target)
131 LOCAL_SHARED_LIBRARIES += libstlport
132 else # host
133 LOCAL_LDLIBS := -ldl -lpthread
134 endif
135 ifeq ($$(art_target_or_host),target)
buzbeec531cef2012-10-18 07:09:20 -0700136 LOCAL_SHARED_LIBRARIES += libcutils
137 include $(LLVM_GEN_INTRINSICS_MK)
138 include $(LLVM_DEVICE_BUILD_MK)
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800139 include $(BUILD_SHARED_LIBRARY)
140 else # host
141 LOCAL_IS_HOST_MODULE := true
buzbeec531cef2012-10-18 07:09:20 -0700142 LOCAL_STATIC_LIBRARIES += libcutils
143 include $(LLVM_GEN_INTRINSICS_MK)
144 include $(LLVM_HOST_BUILD_MK)
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800145 include $(BUILD_HOST_SHARED_LIBRARY)
146 endif
Brian Carlstrom73666be2012-03-10 20:25:10 -0800147
148 ifeq ($$(art_target_or_host),target)
149 ifeq ($$(art_ndebug_or_debug),debug)
150 $(TARGET_OUT_EXECUTABLES)/dex2oatd: $$(LOCAL_INSTALLED_MODULE)
151 else
152 $(TARGET_OUT_EXECUTABLES)/dex2oat: $$(LOCAL_INSTALLED_MODULE)
153 endif
154 else # host
155 ifeq ($$(art_ndebug_or_debug),debug)
156 $(HOST_OUT_EXECUTABLES)/dex2oatd: $$(LOCAL_INSTALLED_MODULE)
157 else
158 $(HOST_OUT_EXECUTABLES)/dex2oat: $$(LOCAL_INSTALLED_MODULE)
159 endif
160 endif
161
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800162endef
163
164# $(1): target or host
165# $(2): ndebug or debug
166define build-libart-compilers
Brian Carlstrom5644f002012-06-27 23:05:17 -0700167 $(foreach arch,arm mips x86,$(eval $(call build-libart-compiler,$(1),$(2),$(arch))))
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800168endef
169
170ifeq ($(ART_BUILD_TARGET_NDEBUG),true)
Brian Carlstrom5644f002012-06-27 23:05:17 -0700171 $(eval $(call build-libart-compiler,target,ndebug,$(TARGET_ARCH)))
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800172endif
173ifeq ($(ART_BUILD_TARGET_DEBUG),true)
Brian Carlstrom5644f002012-06-27 23:05:17 -0700174 $(eval $(call build-libart-compiler,target,debug,$(TARGET_ARCH)))
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800175endif
176ifeq ($(ART_BUILD_HOST_NDEBUG),true)
177 $(eval $(call build-libart-compilers,host,ndebug))
178endif
179ifeq ($(ART_BUILD_HOST_DEBUG),true)
180 $(eval $(call build-libart-compilers,host,debug))
181endif