OSDN Git Service

Tidy up some includes.
[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 += -Wall -Wextra -Wno-unused-parameter
29 LOCAL_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.
37 dvm_make_debug_vm := false
38 ifeq ($(strip $(DEBUG_DALVIK_VM)),)
39   ifeq ($(dvm_simulator),true)
40     dvm_make_debug_vm := true
41   endif
42 else
43   dvm_make_debug_vm := $(DEBUG_DALVIK_VM)
44 endif
45
46 ifeq ($(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
67 else  # !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
81 endif  # !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
86 LOCAL_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
191 WITH_COPYING_GC := $(strip $(WITH_COPYING_GC))
192
193 ifeq ($(WITH_COPYING_GC),true)
194   LOCAL_CFLAGS += -DWITH_COPYING_GC
195   LOCAL_SRC_FILES += \
196         alloc/Copying.cpp.arm
197 else
198   LOCAL_SRC_FILES += \
199         alloc/HeapSource.cpp \
200         alloc/MarkSweep.cpp.arm
201 endif
202
203 WITH_JIT := $(strip $(WITH_JIT))
204
205 ifeq ($(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
218 endif
219
220 LOCAL_C_INCLUDES += \
221         $(JNI_H_INCLUDE) \
222         dalvik \
223         dalvik/vm \
224         external/zlib \
225         libcore/include \
226
227 ifeq ($(dvm_simulator),true)
228   LOCAL_LDLIBS += -lpthread -ldl
229   ifeq ($(HOST_OS),linux)
230     # need this for clock_gettime() in profiling
231     LOCAL_LDLIBS += -lrt
232   endif
233 endif
234
235 MTERP_ARCH_KNOWN := false
236
237 ifeq ($(dvm_arch),arm)
238   #dvm_arch_variant := armv7-a
239   #LOCAL_CFLAGS += -march=armv7-a -mfloat-abi=softfp -mfpu=vfp
240   LOCAL_CFLAGS += -Werror
241   MTERP_ARCH_KNOWN := true
242   # Select architecture-specific sources (armv5te, armv7-a, etc.)
243   LOCAL_SRC_FILES += \
244                 arch/arm/CallOldABI.S \
245                 arch/arm/CallEABI.S \
246                 arch/arm/HintsEABI.cpp \
247                 mterp/out/InterpC-$(dvm_arch_variant).cpp.arm \
248                 mterp/out/InterpAsm-$(dvm_arch_variant).S
249
250   ifeq ($(WITH_JIT),true)
251     LOCAL_SRC_FILES += \
252                 compiler/codegen/RallocUtil.cpp \
253                 compiler/codegen/arm/$(dvm_arch_variant)/Codegen.cpp \
254                 compiler/codegen/arm/$(dvm_arch_variant)/CallingConvention.S \
255                 compiler/codegen/arm/Assemble.cpp \
256                 compiler/codegen/arm/ArchUtility.cpp \
257                 compiler/codegen/arm/LocalOptimizations.cpp \
258                 compiler/codegen/arm/GlobalOptimizations.cpp \
259                 compiler/codegen/arm/ArmRallocUtil.cpp \
260                 compiler/template/out/CompilerTemplateAsm-$(dvm_arch_variant).S
261   endif
262 endif
263
264 ifeq ($(dvm_arch),x86)
265   ifeq ($(dvm_os),linux)
266     MTERP_ARCH_KNOWN := true
267     LOCAL_CFLAGS += -DDVM_JMP_TABLE_MTERP=1
268     LOCAL_SRC_FILES += \
269                 arch/$(dvm_arch_variant)/Call386ABI.S \
270                 arch/$(dvm_arch_variant)/Hints386ABI.cpp \
271                 mterp/out/InterpC-$(dvm_arch_variant).cpp \
272                 mterp/out/InterpAsm-$(dvm_arch_variant).S
273     ifeq ($(WITH_JIT),true)
274       LOCAL_SRC_FILES += \
275                 compiler/codegen/x86/Assemble.cpp \
276                 compiler/codegen/x86/ArchUtility.cpp \
277                 compiler/codegen/x86/ia32/Codegen.cpp \
278                 compiler/codegen/x86/ia32/CallingConvention.S \
279                 compiler/template/out/CompilerTemplateAsm-ia32.S
280     endif
281   endif
282 endif
283
284 ifeq ($(dvm_arch),sh)
285   MTERP_ARCH_KNOWN := true
286   LOCAL_SRC_FILES += \
287                 arch/sh/CallSH4ABI.S \
288                 arch/generic/Hints.cpp \
289                 mterp/out/InterpC-allstubs.cpp \
290                 mterp/out/InterpAsm-allstubs.S
291 endif
292
293 ifeq ($(MTERP_ARCH_KNOWN),false)
294   # unknown architecture, try to use FFI
295   LOCAL_C_INCLUDES += external/libffi/$(dvm_os)-$(dvm_arch)
296
297   ifeq ($(dvm_os)-$(dvm_arch),darwin-x86)
298       # OSX includes libffi, so just make the linker aware of it directly.
299       LOCAL_LDLIBS += -lffi
300   else
301       LOCAL_SHARED_LIBRARIES += libffi
302   endif
303
304   LOCAL_SRC_FILES += \
305                 arch/generic/Call.cpp \
306                 arch/generic/Hints.cpp \
307                 mterp/out/InterpC-allstubs.cpp
308
309   # The following symbols are usually defined in the asm file, but
310   # since we don't have an asm file in this case, we instead just
311   # peg them at 0 here, and we add an #ifdef'able define for good
312   # measure, too.
313   LOCAL_CFLAGS += -DdvmAsmInstructionStart=0 -DdvmAsmInstructionEnd=0 \
314         -DdvmAsmSisterStart=0 -DdvmAsmSisterEnd=0 -DDVM_NO_ASM_INTERP=1
315 endif