OSDN Git Service

Move VFP register save/restore routines from template to codegen.
[android-x86/dalvik.git] / vm / Dvm.mk
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 #
27 LOCAL_CFLAGS += -fstrict-aliasing -Wstrict-aliasing=2 -fno-align-jumps
28 #LOCAL_CFLAGS += -DUSE_INDIRECT_REF
29
30 #
31 # Optional features.  These may impact the size or performance of the VM.
32 #
33 LOCAL_CFLAGS += -DWITH_PROFILER -DWITH_DEBUGGER
34
35 # 0=full cache, 1/2=reduced, 3=no cache
36 LOCAL_CFLAGS += -DDVM_RESOLVER_CACHE=0
37
38 ifeq ($(WITH_DEADLOCK_PREDICTION),true)
39   LOCAL_CFLAGS += -DWITH_DEADLOCK_PREDICTION
40   WITH_MONITOR_TRACKING := true
41 endif
42 ifeq ($(WITH_MONITOR_TRACKING),true)
43   LOCAL_CFLAGS += -DWITH_MONITOR_TRACKING
44 endif
45
46 # Make a debugging version when building the simulator (if not told
47 # otherwise) and when explicitly asked.
48 dvm_make_debug_vm := false
49 ifeq ($(strip $(DEBUG_DALVIK_VM)),)
50   ifeq ($(dvm_simulator),true)
51     dvm_make_debug_vm := true
52   endif
53 else
54   dvm_make_debug_vm := $(DEBUG_DALVIK_VM)
55 endif
56
57 ifeq ($(dvm_make_debug_vm),true)
58   #
59   # "Debug" profile:
60   # - debugger enabled
61   # - profiling enabled
62   # - tracked-reference verification enabled
63   # - allocation limits enabled
64   # - GDB helpers enabled
65   # - LOGV
66   # - assert()
67   #
68   LOCAL_CFLAGS += -DWITH_INSTR_CHECKS
69   LOCAL_CFLAGS += -DWITH_EXTRA_OBJECT_VALIDATION
70   LOCAL_CFLAGS += -DWITH_TRACKREF_CHECKS
71   LOCAL_CFLAGS += -DWITH_ALLOC_LIMITS
72   LOCAL_CFLAGS += -DWITH_EXTRA_GC_CHECKS=1
73   #LOCAL_CFLAGS += -DCHECK_MUTEX
74   #LOCAL_CFLAGS += -DPROFILE_FIELD_ACCESS
75   LOCAL_CFLAGS += -DDVM_SHOW_EXCEPTION=3
76   # add some extra stuff to make it easier to examine with GDB
77   LOCAL_CFLAGS += -DEASY_GDB
78   # overall config may be for a "release" build, so reconfigure these
79   LOCAL_CFLAGS += -UNDEBUG -DDEBUG=1 -DLOG_NDEBUG=1 -DWITH_DALVIK_ASSERT
80 else  # !dvm_make_debug_vm
81   #
82   # "Performance" profile:
83   # - all development features disabled
84   # - compiler optimizations enabled (redundant for "release" builds)
85   # - (debugging and profiling still enabled)
86   #
87   #LOCAL_CFLAGS += -DNDEBUG -DLOG_NDEBUG=1
88   # "-O2" is redundant for device (release) but useful for sim (debug)
89   #LOCAL_CFLAGS += -O2 -Winline
90   #LOCAL_CFLAGS += -DWITH_EXTRA_OBJECT_VALIDATION
91   LOCAL_CFLAGS += -DDVM_SHOW_EXCEPTION=1
92   # if you want to try with assertions on the device, add:
93   #LOCAL_CFLAGS += -UNDEBUG -DDEBUG=1 -DLOG_NDEBUG=1 -DWITH_DALVIK_ASSERT
94 endif  # !dvm_make_debug_vm
95
96 # bug hunting: checksum and verify interpreted stack when making JNI calls
97 #LOCAL_CFLAGS += -DWITH_JNI_STACK_CHECK
98
99 LOCAL_SRC_FILES := \
100         AllocTracker.c \
101         AtomicCache.c \
102         CheckJni.c \
103         Ddm.c \
104         Debugger.c \
105         DvmDex.c \
106         Exception.c \
107         Hash.c \
108         IndirectRefTable.c.arm \
109         Init.c \
110         InlineNative.c.arm \
111         Inlines.c \
112         Intern.c \
113         Jni.c \
114         JarFile.c \
115         LinearAlloc.c \
116         Misc.c.arm \
117         Native.c \
118         PointerSet.c \
119         Profile.c \
120         Properties.c \
121         RawDexFile.c \
122         ReferenceTable.c \
123         SignalCatcher.c \
124         StdioConverter.c \
125         Sync.c \
126         Thread.c \
127         UtfString.c \
128         alloc/clz.c.arm \
129         alloc/Alloc.c \
130         alloc/HeapBitmap.c.arm \
131         alloc/HeapDebug.c \
132         alloc/HeapSource.c \
133         alloc/HeapTable.c \
134         alloc/HeapWorker.c \
135         alloc/Heap.c.arm \
136         alloc/MarkSweep.c.arm \
137         alloc/DdmHeap.c \
138         analysis/CodeVerify.c \
139         analysis/DexOptimize.c \
140         analysis/DexVerify.c \
141         analysis/ReduceConstants.c \
142         analysis/RegisterMap.c \
143         analysis/VerifySubs.c \
144         interp/Interp.c.arm \
145         interp/Stack.c \
146         jdwp/ExpandBuf.c \
147         jdwp/JdwpAdb.c \
148         jdwp/JdwpConstants.c \
149         jdwp/JdwpEvent.c \
150         jdwp/JdwpHandler.c \
151         jdwp/JdwpMain.c \
152         jdwp/JdwpSocket.c \
153         mterp/Mterp.c.arm \
154         mterp/out/InterpC-portstd.c.arm \
155         mterp/out/InterpC-portdbg.c.arm \
156         native/InternalNative.c \
157         native/dalvik_system_DexFile.c \
158         native/dalvik_system_SamplingProfiler.c \
159         native/dalvik_system_VMDebug.c \
160         native/dalvik_system_VMRuntime.c \
161         native/dalvik_system_VMStack.c \
162         native/dalvik_system_Zygote.c \
163         native/java_lang_Class.c \
164         native/java_lang_Object.c \
165         native/java_lang_Runtime.c \
166         native/java_lang_String.c \
167         native/java_lang_System.c \
168         native/java_lang_SystemProperties.c \
169         native/java_lang_Throwable.c \
170         native/java_lang_VMClassLoader.c \
171         native/java_lang_VMThread.c \
172         native/java_lang_reflect_AccessibleObject.c \
173         native/java_lang_reflect_Array.c \
174         native/java_lang_reflect_Constructor.c \
175         native/java_lang_reflect_Field.c \
176         native/java_lang_reflect_Method.c \
177         native/java_lang_reflect_Proxy.c \
178         native/java_security_AccessController.c \
179         native/java_util_concurrent_atomic_AtomicLong.c \
180         native/org_apache_harmony_dalvik_NativeTestTarget.c \
181         native/org_apache_harmony_dalvik_ddmc_DdmServer.c \
182         native/org_apache_harmony_dalvik_ddmc_DdmVmInternal.c \
183         native/sun_misc_Unsafe.c \
184         native/SystemThread.c \
185         oo/AccessCheck.c \
186         oo/Array.c \
187         oo/Class.c \
188         oo/Object.c \
189         oo/Resolve.c \
190         oo/TypeCheck.c \
191         reflect/Annotation.c \
192         reflect/Proxy.c \
193         reflect/Reflect.c \
194         test/AtomicSpeed.c \
195         test/TestHash.c \
196         test/TestIndirectRefTable.c
197
198 WITH_JIT := $(strip $(WITH_JIT))
199
200 ifeq ($(WITH_JIT),true)
201   LOCAL_CFLAGS += -DWITH_JIT
202   LOCAL_SRC_FILES += \
203         ../dexdump/OpCodeNames.c \
204         compiler/Compiler.c \
205         compiler/Frontend.c \
206         compiler/Utility.c \
207         compiler/IntermediateRep.c \
208         compiler/Dataflow.c \
209         compiler/Loop.c \
210         compiler/Ralloc.c \
211         interp/Jit.c
212 endif
213
214 WITH_HPROF := $(strip $(WITH_HPROF))
215 ifeq ($(WITH_HPROF),)
216   WITH_HPROF := true
217 endif
218 ifeq ($(WITH_HPROF),true)
219   LOCAL_SRC_FILES += \
220         hprof/Hprof.c \
221         hprof/HprofClass.c \
222         hprof/HprofHeap.c \
223         hprof/HprofOutput.c \
224         hprof/HprofString.c
225   LOCAL_CFLAGS += -DWITH_HPROF=1
226
227   ifeq ($(strip $(WITH_HPROF_UNREACHABLE)),true)
228     LOCAL_CFLAGS += -DWITH_HPROF_UNREACHABLE=1
229   endif
230
231   ifeq ($(strip $(WITH_HPROF_STACK)),true)
232     LOCAL_SRC_FILES += \
233         hprof/HprofStack.c \
234         hprof/HprofStackFrame.c
235     LOCAL_CFLAGS += -DWITH_HPROF_STACK=1
236   endif # WITH_HPROF_STACK
237 endif   # WITH_HPROF
238
239 ifeq ($(strip $(DVM_TRACK_HEAP_MARKING)),true)
240   LOCAL_CFLAGS += -DDVM_TRACK_HEAP_MARKING=1
241 endif
242
243 LOCAL_C_INCLUDES += \
244         $(JNI_H_INCLUDE) \
245         dalvik \
246         dalvik/vm \
247         external/zlib \
248         $(KERNEL_HEADERS)
249
250
251 ifeq ($(dvm_simulator),true)
252   LOCAL_LDLIBS += -lpthread -ldl
253   ifeq ($(HOST_OS),linux)
254     # need this for clock_gettime() in profiling
255     LOCAL_LDLIBS += -lrt
256   endif
257 else
258   ifeq ($(dvm_os),linux)
259     LOCAL_SHARED_LIBRARIES += libdl
260   endif
261 endif
262
263 MTERP_ARCH_KNOWN := false
264
265 ifeq ($(dvm_arch),arm)
266   #dvm_arch_variant := armv7-a
267   #LOCAL_CFLAGS += -march=armv7-a -mfloat-abi=softfp -mfpu=vfp
268   MTERP_ARCH_KNOWN := true
269   # Select architecture-specific sources (armv4t, armv5te etc.)
270   LOCAL_SRC_FILES += \
271                 arch/arm/CallOldABI.S \
272                 arch/arm/CallEABI.S \
273                 arch/arm/HintsEABI.c \
274                 mterp/out/InterpC-$(dvm_arch_variant).c.arm \
275                 mterp/out/InterpAsm-$(dvm_arch_variant).S
276
277   ifeq ($(WITH_JIT),true)
278     LOCAL_SRC_FILES += \
279                 compiler/codegen/arm/RallocUtil.c \
280                 compiler/codegen/arm/$(dvm_arch_variant)/Codegen.c \
281                 compiler/codegen/arm/$(dvm_arch_variant)/CallingConvention.S \
282                 compiler/codegen/arm/Assemble.c \
283                 compiler/codegen/arm/ArchUtility.c \
284                 compiler/codegen/arm/LocalOptimizations.c \
285                 compiler/codegen/arm/GlobalOptimizations.c \
286                 compiler/template/out/CompilerTemplateAsm-$(dvm_arch_variant).S
287   endif
288 endif
289
290 ifeq ($(dvm_arch),x86)
291   ifeq ($(dvm_os),linux)
292     MTERP_ARCH_KNOWN := true
293     LOCAL_SRC_FILES += \
294                 arch/x86/Call386ABI.S \
295                 arch/x86/Hints386ABI.c \
296                 mterp/out/InterpC-x86.c \
297                 mterp/out/InterpAsm-x86.S
298   endif
299 endif
300
301 ifeq ($(dvm_arch),sh)
302   MTERP_ARCH_KNOWN := true
303   LOCAL_SRC_FILES += \
304                 arch/sh/CallSH4ABI.S \
305                 arch/generic/Hints.c \
306                 mterp/out/InterpC-allstubs.c \
307                 mterp/out/InterpAsm-allstubs.S
308 endif
309
310 ifeq ($(MTERP_ARCH_KNOWN),false)
311   # unknown architecture, try to use FFI
312   LOCAL_C_INCLUDES += external/libffi/$(dvm_os)-$(dvm_arch)
313
314   ifeq ($(dvm_os)-$(dvm_arch),darwin-x86)
315       # OSX includes libffi, so just make the linker aware of it directly.
316       LOCAL_LDLIBS += -lffi
317   else
318       LOCAL_SHARED_LIBRARIES += libffi
319   endif
320
321   LOCAL_SRC_FILES += \
322                 arch/generic/Call.c \
323                 arch/generic/Hints.c \
324                 mterp/out/InterpC-allstubs.c
325
326   # The following symbols are usually defined in the asm file, but
327   # since we don't have an asm file in this case, we instead just
328   # peg them at 0 here, and we add an #ifdef'able define for good
329   # measure, too.
330   LOCAL_CFLAGS += -DdvmAsmInstructionStart=0 -DdvmAsmInstructionEnd=0 \
331         -DdvmAsmSisterStart=0 -DdvmAsmSisterEnd=0 -DDVM_NO_ASM_INTERP=1
332 endif