blob: 88b280af1d21ff9c63e01b402fbd5e6e418ca6f3 [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 \
28 src/oat/jni/x86/calling_convention_x86.cc
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080029
30LIBART_COMPILER_ARM_SRC_FILES += \
31 $(LIBART_COMPILER_COMMON_SRC_FILES) \
32 src/compiler/codegen/arm/ArchUtility.cc \
33 src/compiler/codegen/arm/ArmRallocUtil.cc \
34 src/compiler/codegen/arm/Assemble.cc \
Ian Rogers57b86d42012-03-27 16:05:41 -070035 src/compiler/codegen/arm/armv7-a/Codegen.cc \
36 src/oat/jni/arm/jni_internal_arm.cc
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080037
38LIBART_COMPILER_MIPS_SRC_FILES += \
39 $(LIBART_COMPILER_COMMON_SRC_FILES) \
40 src/compiler/codegen/mips/ArchUtility.cc \
41 src/compiler/codegen/mips/MipsRallocUtil.cc \
42 src/compiler/codegen/mips/Assemble.cc \
43 src/compiler/codegen/mips/mips/Codegen.cc
44
45LIBART_COMPILER_X86_SRC_FILES += \
46 $(LIBART_COMPILER_COMMON_SRC_FILES) \
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080047 src/compiler/codegen/x86/ArchUtility.cc \
48 src/compiler/codegen/x86/X86RallocUtil.cc \
49 src/compiler/codegen/x86/Assemble.cc \
Ian Rogers57b86d42012-03-27 16:05:41 -070050 src/compiler/codegen/x86/x86/Codegen.cc \
51 src/oat/jni/x86/jni_internal_x86.cc
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080052
53# $(1): target or host
54# $(2): ndebug or debug
55# $(3): architecture name
56# $(4): list of source files
57define build-libart-compiler
58 ifneq ($(1),target)
59 ifneq ($(1),host)
60 $$(error expected target or host for argument 1, received $(1))
61 endif
62 endif
63 ifneq ($(2),ndebug)
64 ifneq ($(2),debug)
65 $$(error expected ndebug or debug for argument 2, received $(2))
66 endif
67 endif
68
69 art_target_or_host := $(1)
70 art_ndebug_or_debug := $(2)
71 libart_compiler_arch := $(3)
72 libart_compiler_src_files := $(4)
73
74 include $(CLEAR_VARS)
75 ifeq ($$(art_target_or_host),target)
76 include external/stlport/libstlport.mk
77 endif
78 LOCAL_CPP_EXTENSION := $(ART_CPP_EXTENSION)
79 ifeq ($$(art_ndebug_or_debug),ndebug)
80 LOCAL_MODULE := libart-compiler-$(libart_compiler_arch)
81 else # debug
82 LOCAL_MODULE := libartd-compiler-$(libart_compiler_arch)
83 endif
84
85 LOCAL_MODULE_TAGS := optional
86 LOCAL_MODULE_CLASS := SHARED_LIBRARIES
87
88 LOCAL_SRC_FILES := $(libart_compiler_src_files)
89 ifeq ($$(art_target_or_host),target)
90 LOCAL_CFLAGS := $(ART_TARGET_CFLAGS)
91 else # host
92 LOCAL_CFLAGS := $(ART_HOST_CFLAGS)
93 endif
Elliott Hughes1bac54f2012-03-16 12:48:31 -070094
95 # TODO: clean up the compilers and remove this.
96 LOCAL_CFLAGS += -Wno-unused-parameter
97
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080098 LOCAL_SHARED_LIBRARIES := liblog
99 ifeq ($$(art_ndebug_or_debug),debug)
100 ifeq ($$(art_target_or_host),target)
101 LOCAL_CFLAGS += $(ART_TARGET_DEBUG_CFLAGS)
102 else # host
103 LOCAL_CFLAGS += $(ART_HOST_DEBUG_CFLAGS)
104 endif
105 LOCAL_SHARED_LIBRARIES += libartd
106 else
107 ifeq ($$(art_target_or_host),target)
108 LOCAL_CFLAGS += $(ART_TARGET_NON_DEBUG_CFLAGS)
109 else # host
110 LOCAL_CFLAGS += $(ART_HOST_NON_DEBUG_CFLAGS)
111 endif
112 LOCAL_SHARED_LIBRARIES += libart
113 endif
114
115 # TODO: temporary hack for testing.
116 ifeq ($(libart_compiler_arch),MIPS)
117 LOCAL_CFLAGS += -D__mips_hard_float
118 endif
119
120 LOCAL_C_INCLUDES += $(ART_C_INCLUDES)
121 ifeq ($$(art_target_or_host),target)
122 LOCAL_SHARED_LIBRARIES += libstlport
123 else # host
124 LOCAL_LDLIBS := -ldl -lpthread
125 endif
126 ifeq ($$(art_target_or_host),target)
127 include $(BUILD_SHARED_LIBRARY)
128 else # host
129 LOCAL_IS_HOST_MODULE := true
130 include $(BUILD_HOST_SHARED_LIBRARY)
131 endif
Brian Carlstrom73666be2012-03-10 20:25:10 -0800132
133 ifeq ($$(art_target_or_host),target)
134 ifeq ($$(art_ndebug_or_debug),debug)
135 $(TARGET_OUT_EXECUTABLES)/dex2oatd: $$(LOCAL_INSTALLED_MODULE)
136 else
137 $(TARGET_OUT_EXECUTABLES)/dex2oat: $$(LOCAL_INSTALLED_MODULE)
138 endif
139 else # host
140 ifeq ($$(art_ndebug_or_debug),debug)
141 $(HOST_OUT_EXECUTABLES)/dex2oatd: $$(LOCAL_INSTALLED_MODULE)
142 else
143 $(HOST_OUT_EXECUTABLES)/dex2oat: $$(LOCAL_INSTALLED_MODULE)
144 endif
145 endif
146
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800147endef
148
149# $(1): target or host
150# $(2): ndebug or debug
151define build-libart-compilers
152 $(foreach arch,ARM MIPS X86,$(eval $(call build-libart-compiler,$(1),$(2),$(arch),$(LIBART_COMPILER_$(arch)_SRC_FILES))))
153endef
154
155ifeq ($(ART_BUILD_TARGET_NDEBUG),true)
156 $(eval $(call build-libart-compilers,target,ndebug))
157endif
158ifeq ($(ART_BUILD_TARGET_DEBUG),true)
159 $(eval $(call build-libart-compilers,target,debug))
160endif
161ifeq ($(ART_BUILD_HOST_NDEBUG),true)
162 $(eval $(call build-libart-compilers,host,ndebug))
163endif
164ifeq ($(ART_BUILD_HOST_DEBUG),true)
165 $(eval $(call build-libart-compilers,host,debug))
166endif