Elliott Hughes | 2faa5f1 | 2012-01-30 14:42:07 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 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 | */ |
Carl Shapiro | a5d5cfd | 2011-06-21 12:46:59 -0700 | [diff] [blame] | 16 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 17 | #ifndef ART_RUNTIME_GLOBALS_H_ |
| 18 | #define ART_RUNTIME_GLOBALS_H_ |
Carl Shapiro | a5d5cfd | 2011-06-21 12:46:59 -0700 | [diff] [blame] | 19 | |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 20 | #include <stddef.h> |
Carl Shapiro | a5d5cfd | 2011-06-21 12:46:59 -0700 | [diff] [blame] | 21 | #include <stdint.h> |
| 22 | |
Carl Shapiro | 6b6b5f0 | 2011-06-21 15:05:09 -0700 | [diff] [blame] | 23 | namespace art { |
Carl Shapiro | a5d5cfd | 2011-06-21 12:46:59 -0700 | [diff] [blame] | 24 | |
| 25 | typedef uint8_t byte; |
| 26 | typedef intptr_t word; |
| 27 | typedef uintptr_t uword; |
| 28 | |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 29 | const size_t KB = 1024; |
| 30 | const size_t MB = KB * KB; |
| 31 | const size_t GB = KB * KB * KB; |
Carl Shapiro | a5d5cfd | 2011-06-21 12:46:59 -0700 | [diff] [blame] | 32 | |
Carl Shapiro | a5d5cfd | 2011-06-21 12:46:59 -0700 | [diff] [blame] | 33 | const int kWordSize = sizeof(word); |
| 34 | const int kPointerSize = sizeof(void*); |
| 35 | |
| 36 | const int kBitsPerByte = 8; |
| 37 | const int kBitsPerByteLog2 = 3; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 38 | const int kBitsPerWord = kWordSize * kBitsPerByte; |
Mathieu Chartier | dcf8d72 | 2012-08-02 14:55:54 -0700 | [diff] [blame] | 39 | const int kWordHighBitMask = 1 << (kBitsPerWord - 1); |
Carl Shapiro | a5d5cfd | 2011-06-21 12:46:59 -0700 | [diff] [blame] | 40 | |
Ian Rogers | 0d666d8 | 2011-08-14 16:03:46 -0700 | [diff] [blame] | 41 | // Required stack alignment |
| 42 | const int kStackAlignment = 16; |
Brian Carlstrom | 0024d6c | 2011-08-09 08:26:12 -0700 | [diff] [blame] | 43 | |
Ian Rogers | 408f79a | 2011-08-23 18:22:33 -0700 | [diff] [blame] | 44 | // Required object alignment |
| 45 | const int kObjectAlignment = 8; |
| 46 | |
Logan Chien | 468a7b1 | 2012-05-25 20:56:35 +0800 | [diff] [blame] | 47 | // ARM instruction alignment. ARM processors require code to be 4-byte aligned, |
| 48 | // but ARM ELF requires 8.. |
| 49 | const int kArmAlignment = 8; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 50 | |
Elliott Hughes | 742e25e | 2012-04-24 18:11:08 -0700 | [diff] [blame] | 51 | // MIPS instruction alignment. MIPS processors require code to be 4-byte aligned. |
jeffhao | 7fbee07 | 2012-08-24 17:56:54 -0700 | [diff] [blame] | 52 | // TODO: Can this be 4? |
| 53 | const int kMipsAlignment = 8; |
Elliott Hughes | 742e25e | 2012-04-24 18:11:08 -0700 | [diff] [blame] | 54 | |
Elliott Hughes | 942df41 | 2012-03-26 09:46:56 -0700 | [diff] [blame] | 55 | // X86 instruction alignment. This is the recommended alignment for maximum performance. |
Ian Rogers | b41b33b | 2012-03-20 14:22:54 -0700 | [diff] [blame] | 56 | const int kX86Alignment = 16; |
| 57 | |
Elliott Hughes | 942df41 | 2012-03-26 09:46:56 -0700 | [diff] [blame] | 58 | // System page size. We check this against sysconf(_SC_PAGE_SIZE) at runtime, but use a simple |
| 59 | // compile-time constant so the compiler can generate better code. |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 60 | const int kPageSize = 4096; |
| 61 | |
Elliott Hughes | 67d9200 | 2012-03-26 15:08:51 -0700 | [diff] [blame] | 62 | // Whether or not this is a debug build. Useful in conditionals where NDEBUG isn't. |
| 63 | #if defined(NDEBUG) |
| 64 | const bool kIsDebugBuild = false; |
| 65 | #else |
| 66 | const bool kIsDebugBuild = true; |
| 67 | #endif |
| 68 | |
Brian Carlstrom | bcc2926 | 2012-11-02 11:36:03 -0700 | [diff] [blame] | 69 | // Whether or not this is a target (vs host) build. Useful in conditionals where ART_TARGET isn't. |
| 70 | #if defined(ART_TARGET) |
| 71 | const bool kIsTargetBuild = true; |
| 72 | #else |
| 73 | const bool kIsTargetBuild = false; |
| 74 | #endif |
| 75 | |
Carl Shapiro | 6b6b5f0 | 2011-06-21 15:05:09 -0700 | [diff] [blame] | 76 | } // namespace art |
Carl Shapiro | a5d5cfd | 2011-06-21 12:46:59 -0700 | [diff] [blame] | 77 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 78 | #endif // ART_RUNTIME_GLOBALS_H_ |