Dvm.mk revision 0fbb7030fff58e25718291811394487d95d95a3e
1# Copyright (C) 2008 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#      http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15#
16# Common definitions for host or target builds of libdvm.
17#
18# If you enable or disable optional features here, make sure you do
19# a "clean" build -- not everything depends on Dalvik.h.  (See Android.mk
20# for the exact command.)
21#
22
23
24#
25# Compiler defines.
26#
27LOCAL_CFLAGS += -fstrict-aliasing -Wstrict-aliasing=2 -fno-align-jumps
28LOCAL_CFLAGS += -Wall -Wextra -Wno-unused-parameter
29LOCAL_CFLAGS += -DARCH_VARIANT=\"$(dvm_arch_variant)\"
30
31#
32# Optional features.  These may impact the size or performance of the VM.
33#
34
35# Make a debugging version when building the simulator (if not told
36# otherwise) and when explicitly asked.
37dvm_make_debug_vm := false
38ifeq ($(strip $(DEBUG_DALVIK_VM)),)
39  ifeq ($(dvm_simulator),true)
40    dvm_make_debug_vm := true
41  endif
42else
43  dvm_make_debug_vm := $(DEBUG_DALVIK_VM)
44endif
45
46ifeq ($(dvm_make_debug_vm),true)
47  #
48  # "Debug" profile:
49  # - debugger enabled
50  # - profiling enabled
51  # - tracked-reference verification enabled
52  # - allocation limits enabled
53  # - GDB helpers enabled
54  # - LOGV
55  # - assert()
56  #
57  LOCAL_CFLAGS += -DWITH_INSTR_CHECKS
58  LOCAL_CFLAGS += -DWITH_EXTRA_OBJECT_VALIDATION
59  LOCAL_CFLAGS += -DWITH_TRACKREF_CHECKS
60  LOCAL_CFLAGS += -DWITH_EXTRA_GC_CHECKS=1
61  #LOCAL_CFLAGS += -DCHECK_MUTEX
62  LOCAL_CFLAGS += -DDVM_SHOW_EXCEPTION=3
63  # add some extra stuff to make it easier to examine with GDB
64  LOCAL_CFLAGS += -DEASY_GDB
65  # overall config may be for a "release" build, so reconfigure these
66  LOCAL_CFLAGS += -UNDEBUG -DDEBUG=1 -DLOG_NDEBUG=1 -DWITH_DALVIK_ASSERT
67else  # !dvm_make_debug_vm
68  #
69  # "Performance" profile:
70  # - all development features disabled
71  # - compiler optimizations enabled (redundant for "release" builds)
72  # - (debugging and profiling still enabled)
73  #
74  #LOCAL_CFLAGS += -DNDEBUG -DLOG_NDEBUG=1
75  # "-O2" is redundant for device (release) but useful for sim (debug)
76  #LOCAL_CFLAGS += -O2 -Winline
77  #LOCAL_CFLAGS += -DWITH_EXTRA_OBJECT_VALIDATION
78  LOCAL_CFLAGS += -DDVM_SHOW_EXCEPTION=1
79  # if you want to try with assertions on the device, add:
80  #LOCAL_CFLAGS += -UNDEBUG -DDEBUG=1 -DLOG_NDEBUG=1 -DWITH_DALVIK_ASSERT
81endif  # !dvm_make_debug_vm
82
83# bug hunting: checksum and verify interpreted stack when making JNI calls
84#LOCAL_CFLAGS += -DWITH_JNI_STACK_CHECK
85
86LOCAL_SRC_FILES := \
87	AllocTracker.cpp \
88	Atomic.cpp.arm \
89	AtomicCache.cpp \
90	BitVector.cpp.arm \
91	CheckJni.cpp \
92	Ddm.cpp \
93	Debugger.cpp \
94	DvmDex.cpp \
95	Exception.cpp \
96	Hash.cpp \
97	IndirectRefTable.cpp.arm \
98	Init.cpp \
99	InitRefs.cpp \
100	InlineNative.cpp.arm \
101	Inlines.cpp \
102	Intern.cpp \
103	Jni.cpp \
104	JarFile.cpp \
105	LinearAlloc.cpp \
106	Misc.cpp \
107	Native.cpp \
108	PointerSet.cpp \
109	Profile.cpp \
110	RawDexFile.cpp \
111	ReferenceTable.cpp \
112	SignalCatcher.cpp \
113	StdioConverter.cpp \
114	Sync.cpp \
115	Thread.cpp \
116	UtfString.cpp \
117	alloc/Alloc.cpp \
118	alloc/CardTable.cpp \
119	alloc/HeapBitmap.cpp.arm \
120	alloc/HeapDebug.cpp \
121	alloc/Heap.cpp.arm \
122	alloc/DdmHeap.cpp \
123	alloc/Verify.cpp \
124	alloc/Visit.cpp \
125	analysis/CodeVerify.cpp \
126	analysis/DexPrepare.cpp \
127	analysis/DexVerify.cpp \
128	analysis/Liveness.cpp \
129	analysis/Optimize.cpp \
130	analysis/RegisterMap.cpp \
131	analysis/VerifySubs.cpp \
132	analysis/VfyBasicBlock.cpp \
133	hprof/Hprof.cpp \
134	hprof/HprofClass.cpp \
135	hprof/HprofHeap.cpp \
136	hprof/HprofOutput.cpp \
137	hprof/HprofString.cpp \
138	interp/Interp.cpp.arm \
139	interp/Stack.cpp \
140	jdwp/ExpandBuf.cpp \
141	jdwp/JdwpAdb.cpp \
142	jdwp/JdwpConstants.cpp \
143	jdwp/JdwpEvent.cpp \
144	jdwp/JdwpHandler.cpp \
145	jdwp/JdwpMain.cpp \
146	jdwp/JdwpSocket.cpp \
147	mterp/Mterp.cpp.arm \
148	mterp/out/InterpC-portable.cpp.arm \
149	native/InternalNative.cpp \
150	native/dalvik_bytecode_OpcodeInfo.cpp \
151	native/dalvik_system_DexFile.cpp \
152	native/dalvik_system_VMDebug.cpp \
153	native/dalvik_system_VMRuntime.cpp \
154	native/dalvik_system_VMStack.cpp \
155	native/dalvik_system_Zygote.cpp \
156	native/java_lang_Class.cpp \
157	native/java_lang_Double.cpp \
158	native/java_lang_Float.cpp \
159	native/java_lang_Math.cpp \
160	native/java_lang_Object.cpp \
161	native/java_lang_Runtime.cpp \
162	native/java_lang_String.cpp \
163	native/java_lang_System.cpp \
164	native/java_lang_Throwable.cpp \
165	native/java_lang_VMClassLoader.cpp \
166	native/java_lang_VMThread.cpp \
167	native/java_lang_reflect_AccessibleObject.cpp \
168	native/java_lang_reflect_Array.cpp \
169	native/java_lang_reflect_Constructor.cpp \
170	native/java_lang_reflect_Field.cpp \
171	native/java_lang_reflect_Method.cpp \
172	native/java_lang_reflect_Proxy.cpp \
173	native/java_util_concurrent_atomic_AtomicLong.cpp \
174	native/org_apache_harmony_dalvik_NativeTestTarget.cpp \
175	native/org_apache_harmony_dalvik_ddmc_DdmServer.cpp \
176	native/org_apache_harmony_dalvik_ddmc_DdmVmInternal.cpp \
177	native/sun_misc_Unsafe.cpp \
178	oo/AccessCheck.cpp \
179	oo/Array.cpp \
180	oo/Class.cpp \
181	oo/Object.cpp \
182	oo/Resolve.cpp \
183	oo/TypeCheck.cpp \
184	reflect/Annotation.cpp \
185	reflect/Proxy.cpp \
186	reflect/Reflect.cpp \
187	test/AtomicTest.cpp.arm \
188	test/TestHash.cpp \
189	test/TestIndirectRefTable.cpp
190
191WITH_COPYING_GC := $(strip $(WITH_COPYING_GC))
192
193ifeq ($(WITH_COPYING_GC),true)
194  LOCAL_CFLAGS += -DWITH_COPYING_GC
195  LOCAL_SRC_FILES += \
196	alloc/Copying.cpp.arm
197else
198  LOCAL_SRC_FILES += \
199	alloc/HeapSource.cpp \
200	alloc/MarkSweep.cpp.arm
201endif
202
203WITH_JIT := $(strip $(WITH_JIT))
204
205ifeq ($(WITH_JIT),true)
206  LOCAL_CFLAGS += -DWITH_JIT
207  LOCAL_SRC_FILES += \
208	compiler/Compiler.cpp \
209	compiler/Frontend.cpp \
210	compiler/Utility.cpp \
211	compiler/InlineTransformation.cpp \
212	compiler/IntermediateRep.cpp \
213	compiler/Dataflow.cpp \
214	compiler/SSATransformation.cpp \
215	compiler/Loop.cpp \
216	compiler/Ralloc.cpp \
217	interp/Jit.cpp
218endif
219
220LOCAL_C_INCLUDES += \
221	$(JNI_H_INCLUDE) \
222	dalvik \
223	dalvik/vm \
224	external/zlib \
225	libcore/include \
226	$(KERNEL_HEADERS)
227
228ifeq ($(dvm_simulator),true)
229  LOCAL_LDLIBS += -lpthread -ldl
230  ifeq ($(HOST_OS),linux)
231    # need this for clock_gettime() in profiling
232    LOCAL_LDLIBS += -lrt
233  endif
234endif
235
236MTERP_ARCH_KNOWN := false
237
238ifeq ($(dvm_arch),arm)
239  #dvm_arch_variant := armv7-a
240  #LOCAL_CFLAGS += -march=armv7-a -mfloat-abi=softfp -mfpu=vfp
241  LOCAL_CFLAGS += -Werror
242  MTERP_ARCH_KNOWN := true
243  # Select architecture-specific sources (armv5te, armv7-a, etc.)
244  LOCAL_SRC_FILES += \
245		arch/arm/CallOldABI.S \
246		arch/arm/CallEABI.S \
247		arch/arm/HintsEABI.cpp \
248		mterp/out/InterpC-$(dvm_arch_variant).cpp.arm \
249		mterp/out/InterpAsm-$(dvm_arch_variant).S
250
251  ifeq ($(WITH_JIT),true)
252    LOCAL_SRC_FILES += \
253		compiler/codegen/RallocUtil.cpp \
254		compiler/codegen/arm/$(dvm_arch_variant)/Codegen.cpp \
255		compiler/codegen/arm/$(dvm_arch_variant)/CallingConvention.S \
256		compiler/codegen/arm/Assemble.cpp \
257		compiler/codegen/arm/ArchUtility.cpp \
258		compiler/codegen/arm/LocalOptimizations.cpp \
259		compiler/codegen/arm/GlobalOptimizations.cpp \
260		compiler/codegen/arm/ArmRallocUtil.cpp \
261		compiler/template/out/CompilerTemplateAsm-$(dvm_arch_variant).S
262  endif
263endif
264
265ifeq ($(dvm_arch),x86)
266  ifeq ($(dvm_os),linux)
267    MTERP_ARCH_KNOWN := true
268    LOCAL_CFLAGS += -DDVM_JMP_TABLE_MTERP=1
269    LOCAL_SRC_FILES += \
270		arch/$(dvm_arch_variant)/Call386ABI.S \
271		arch/$(dvm_arch_variant)/Hints386ABI.cpp \
272		mterp/out/InterpC-$(dvm_arch_variant).cpp \
273		mterp/out/InterpAsm-$(dvm_arch_variant).S
274    ifeq ($(WITH_JIT),true)
275      LOCAL_SRC_FILES += \
276		compiler/codegen/x86/Assemble.cpp \
277		compiler/codegen/x86/ArchUtility.cpp \
278		compiler/codegen/x86/ia32/Codegen.cpp \
279		compiler/codegen/x86/ia32/CallingConvention.S \
280		compiler/template/out/CompilerTemplateAsm-ia32.S
281    endif
282  endif
283endif
284
285ifeq ($(dvm_arch),sh)
286  MTERP_ARCH_KNOWN := true
287  LOCAL_SRC_FILES += \
288		arch/sh/CallSH4ABI.S \
289		arch/generic/Hints.cpp \
290		mterp/out/InterpC-allstubs.cpp \
291		mterp/out/InterpAsm-allstubs.S
292endif
293
294ifeq ($(MTERP_ARCH_KNOWN),false)
295  # unknown architecture, try to use FFI
296  LOCAL_C_INCLUDES += external/libffi/$(dvm_os)-$(dvm_arch)
297
298  ifeq ($(dvm_os)-$(dvm_arch),darwin-x86)
299      # OSX includes libffi, so just make the linker aware of it directly.
300      LOCAL_LDLIBS += -lffi
301  else
302      LOCAL_SHARED_LIBRARIES += libffi
303  endif
304
305  LOCAL_SRC_FILES += \
306		arch/generic/Call.cpp \
307		arch/generic/Hints.cpp \
308		mterp/out/InterpC-allstubs.cpp
309
310  # The following symbols are usually defined in the asm file, but
311  # since we don't have an asm file in this case, we instead just
312  # peg them at 0 here, and we add an #ifdef'able define for good
313  # measure, too.
314  LOCAL_CFLAGS += -DdvmAsmInstructionStart=0 -DdvmAsmInstructionEnd=0 \
315	-DdvmAsmSisterStart=0 -DdvmAsmSisterEnd=0 -DDVM_NO_ASM_INTERP=1
316endif
317