The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 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 | |
| 17 | /* |
| 18 | * All-inclusive internal header file. Include this to get everything useful. |
| 19 | */ |
Carl Shapiro | 375fb11 | 2011-06-14 20:31:24 -0700 | [diff] [blame^] | 20 | #ifndef DALVIK_DALVIK_H_ |
| 21 | #define DALVIK_DALVIK_H_ |
The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 22 | |
The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 23 | #include "Common.h" |
| 24 | #include "Inlines.h" |
| 25 | #include "Misc.h" |
| 26 | #include "Bits.h" |
Andy McFadden | 2867f0b | 2010-12-10 11:08:22 -0800 | [diff] [blame] | 27 | #include "BitVector.h" |
The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 28 | #include "libdex/SysUtil.h" |
Dan Bornstein | 9ea32b0 | 2011-03-09 17:40:41 -0800 | [diff] [blame] | 29 | #include "libdex/DexDebugInfo.h" |
The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 30 | #include "libdex/DexFile.h" |
| 31 | #include "libdex/DexProto.h" |
Dan Bornstein | 9ea32b0 | 2011-03-09 17:40:41 -0800 | [diff] [blame] | 32 | #include "libdex/DexUtf.h" |
The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 33 | #include "libdex/ZipArchive.h" |
The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 34 | #include "DvmDex.h" |
| 35 | #include "RawDexFile.h" |
| 36 | #include "Sync.h" |
| 37 | #include "oo/Object.h" |
| 38 | #include "Native.h" |
| 39 | #include "native/InternalNative.h" |
| 40 | |
| 41 | #include "DalvikVersion.h" |
| 42 | #include "Debugger.h" |
| 43 | #include "Profile.h" |
| 44 | #include "UtfString.h" |
| 45 | #include "Intern.h" |
| 46 | #include "ReferenceTable.h" |
Andy McFadden | 734155e | 2009-07-16 18:11:22 -0700 | [diff] [blame] | 47 | #include "IndirectRefTable.h" |
The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 48 | #include "AtomicCache.h" |
| 49 | #include "Thread.h" |
| 50 | #include "Ddm.h" |
| 51 | #include "Hash.h" |
| 52 | #include "interp/Stack.h" |
| 53 | #include "oo/Class.h" |
| 54 | #include "oo/Resolve.h" |
| 55 | #include "oo/Array.h" |
| 56 | #include "Exception.h" |
| 57 | #include "alloc/Alloc.h" |
Barry Hayes | 6e5cf60 | 2010-06-22 12:32:59 -0700 | [diff] [blame] | 58 | #include "alloc/CardTable.h" |
The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 59 | #include "alloc/HeapDebug.h" |
Barry Hayes | 7ef0755 | 2010-06-25 13:36:37 -0700 | [diff] [blame] | 60 | #include "alloc/WriteBarrier.h" |
The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 61 | #include "oo/AccessCheck.h" |
| 62 | #include "JarFile.h" |
The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 63 | #include "jdwp/Jdwp.h" |
| 64 | #include "SignalCatcher.h" |
| 65 | #include "StdioConverter.h" |
| 66 | #include "JniInternal.h" |
| 67 | #include "LinearAlloc.h" |
| 68 | #include "analysis/DexVerify.h" |
Andy McFadden | 2e1ee50 | 2010-03-24 13:25:53 -0700 | [diff] [blame] | 69 | #include "analysis/DexPrepare.h" |
The Android Open Source Project | 9940988 | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 70 | #include "analysis/RegisterMap.h" |
The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 71 | #include "Init.h" |
Dan Bornstein | df4daaf | 2010-12-01 14:23:44 -0800 | [diff] [blame] | 72 | #include "libdex/DexOpcodes.h" |
The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 73 | #include "libdex/InstrUtils.h" |
| 74 | #include "AllocTracker.h" |
| 75 | #include "PointerSet.h" |
Ben Cheng | ba4fc8b | 2009-06-01 13:00:29 -0700 | [diff] [blame] | 76 | #if defined(WITH_JIT) |
| 77 | #include "compiler/Compiler.h" |
| 78 | #endif |
The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 79 | #include "Globals.h" |
| 80 | #include "reflect/Reflect.h" |
| 81 | #include "oo/TypeCheck.h" |
| 82 | #include "Atomic.h" |
| 83 | #include "interp/Interp.h" |
| 84 | #include "InlineNative.h" |
Barry Hayes | 7ef0755 | 2010-06-25 13:36:37 -0700 | [diff] [blame] | 85 | #include "oo/ObjectInlines.h" |
The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 86 | |
Carl Shapiro | 375fb11 | 2011-06-14 20:31:24 -0700 | [diff] [blame^] | 87 | #endif // DALVIK_DALVIK_H_ |