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> |
Hiroshi Yamauchi | 800ac2d | 2014-04-02 17:32:54 -0700 | [diff] [blame] | 22 | #include "read_barrier_c.h" |
Hiroshi Yamauchi | 6e83c17 | 2014-05-01 21:25:41 -0700 | [diff] [blame] | 23 | #include "read_barrier_option.h" |
Carl Shapiro | a5d5cfd | 2011-06-21 12:46:59 -0700 | [diff] [blame] | 24 | |
Carl Shapiro | 6b6b5f0 | 2011-06-21 15:05:09 -0700 | [diff] [blame] | 25 | namespace art { |
Carl Shapiro | a5d5cfd | 2011-06-21 12:46:59 -0700 | [diff] [blame] | 26 | |
Mathieu Chartier | 5048223 | 2013-11-21 11:48:14 -0800 | [diff] [blame] | 27 | static constexpr size_t KB = 1024; |
| 28 | static constexpr size_t MB = KB * KB; |
| 29 | static constexpr size_t GB = KB * KB * KB; |
Carl Shapiro | a5d5cfd | 2011-06-21 12:46:59 -0700 | [diff] [blame] | 30 | |
Andreas Gampe | 242947d | 2014-04-03 13:31:32 -0700 | [diff] [blame] | 31 | // Runtime sizes. |
Mathieu Chartier | 5048223 | 2013-11-21 11:48:14 -0800 | [diff] [blame] | 32 | static constexpr size_t kBitsPerByte = 8; |
| 33 | static constexpr size_t kBitsPerByteLog2 = 3; |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 34 | static constexpr int kBitsPerIntPtrT = sizeof(intptr_t) * kBitsPerByte; |
Carl Shapiro | a5d5cfd | 2011-06-21 12:46:59 -0700 | [diff] [blame] | 35 | |
Ian Rogers | 0d666d8 | 2011-08-14 16:03:46 -0700 | [diff] [blame] | 36 | // Required stack alignment |
Mathieu Chartier | 5048223 | 2013-11-21 11:48:14 -0800 | [diff] [blame] | 37 | static constexpr size_t kStackAlignment = 16; |
Brian Carlstrom | 0024d6c | 2011-08-09 08:26:12 -0700 | [diff] [blame] | 38 | |
Elliott Hughes | 942df41 | 2012-03-26 09:46:56 -0700 | [diff] [blame] | 39 | // System page size. We check this against sysconf(_SC_PAGE_SIZE) at runtime, but use a simple |
| 40 | // compile-time constant so the compiler can generate better code. |
Mathieu Chartier | 5048223 | 2013-11-21 11:48:14 -0800 | [diff] [blame] | 41 | static constexpr int kPageSize = 4096; |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 42 | |
Mathieu Chartier | a8e8f9c | 2014-04-09 14:51:05 -0700 | [diff] [blame] | 43 | // Required object alignment |
| 44 | static constexpr size_t kObjectAlignment = 8; |
| 45 | static constexpr size_t kLargeObjectAlignment = kPageSize; |
| 46 | |
Elliott Hughes | 67d9200 | 2012-03-26 15:08:51 -0700 | [diff] [blame] | 47 | // Whether or not this is a debug build. Useful in conditionals where NDEBUG isn't. |
| 48 | #if defined(NDEBUG) |
Mathieu Chartier | 5048223 | 2013-11-21 11:48:14 -0800 | [diff] [blame] | 49 | static constexpr bool kIsDebugBuild = false; |
Elliott Hughes | 67d9200 | 2012-03-26 15:08:51 -0700 | [diff] [blame] | 50 | #else |
Mathieu Chartier | 5048223 | 2013-11-21 11:48:14 -0800 | [diff] [blame] | 51 | static constexpr bool kIsDebugBuild = true; |
Elliott Hughes | 67d9200 | 2012-03-26 15:08:51 -0700 | [diff] [blame] | 52 | #endif |
| 53 | |
Bilyan Borisov | 3071f80 | 2016-03-31 17:15:53 +0100 | [diff] [blame] | 54 | // ART_TARGET - Defined for target builds of ART. |
| 55 | // ART_TARGET_LINUX - Defined for target Linux builds of ART. |
| 56 | // ART_TARGET_ANDROID - Defined for target Android builds of ART. |
| 57 | // Note: Either ART_TARGET_LINUX or ART_TARGET_ANDROID need to be set when ART_TARGET is set. |
| 58 | // Note: When ART_TARGET_LINUX is defined mem_map.h will not be using Ashmem for memory mappings |
| 59 | // (usually only available on Android kernels). |
Brian Carlstrom | bcc2926 | 2012-11-02 11:36:03 -0700 | [diff] [blame] | 60 | #if defined(ART_TARGET) |
Bilyan Borisov | 3071f80 | 2016-03-31 17:15:53 +0100 | [diff] [blame] | 61 | // Useful in conditionals where ART_TARGET isn't. |
Mathieu Chartier | 5048223 | 2013-11-21 11:48:14 -0800 | [diff] [blame] | 62 | static constexpr bool kIsTargetBuild = true; |
Bilyan Borisov | 3071f80 | 2016-03-31 17:15:53 +0100 | [diff] [blame] | 63 | #if defined(ART_TARGET_LINUX) |
| 64 | static constexpr bool kIsTargetLinux = true; |
| 65 | #elif defined(ART_TARGET_ANDROID) |
| 66 | static constexpr bool kIsTargetLinux = false; |
| 67 | #else |
| 68 | #error "Either ART_TARGET_LINUX or ART_TARGET_ANDROID needs to be defined for target builds." |
| 69 | #endif |
Brian Carlstrom | bcc2926 | 2012-11-02 11:36:03 -0700 | [diff] [blame] | 70 | #else |
Mathieu Chartier | 5048223 | 2013-11-21 11:48:14 -0800 | [diff] [blame] | 71 | static constexpr bool kIsTargetBuild = false; |
Bilyan Borisov | 3071f80 | 2016-03-31 17:15:53 +0100 | [diff] [blame] | 72 | #if defined(ART_TARGET_LINUX) |
| 73 | #error "ART_TARGET_LINUX defined for host build." |
| 74 | #elif defined(ART_TARGET_ANDROID) |
| 75 | #error "ART_TARGET_ANDROID defined for host build." |
| 76 | #else |
| 77 | static constexpr bool kIsTargetLinux = false; |
| 78 | #endif |
Brian Carlstrom | bcc2926 | 2012-11-02 11:36:03 -0700 | [diff] [blame] | 79 | #endif |
| 80 | |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 81 | // Garbage collector constants. |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 82 | static constexpr bool kMovingCollector = true; |
Mathieu Chartier | 52e4b43 | 2014-06-10 11:22:31 -0700 | [diff] [blame] | 83 | static constexpr bool kMarkCompactSupport = false && kMovingCollector; |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 84 | // True if we allow moving classes. |
Mathieu Chartier | 52e4b43 | 2014-06-10 11:22:31 -0700 | [diff] [blame] | 85 | static constexpr bool kMovingClasses = !kMarkCompactSupport; |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 86 | |
Hiroshi Yamauchi | be1ca55 | 2014-01-15 11:46:48 -0800 | [diff] [blame] | 87 | // If true, the quick compiler embeds class pointers in the compiled |
| 88 | // code, if possible. |
| 89 | static constexpr bool kEmbedClassInCode = true; |
| 90 | |
Hiroshi Yamauchi | 624468c | 2014-03-31 15:14:47 -0700 | [diff] [blame] | 91 | #ifdef USE_BAKER_READ_BARRIER |
| 92 | static constexpr bool kUseBakerReadBarrier = true; |
Hiroshi Yamauchi | 9d04a20 | 2014-01-31 13:35:49 -0800 | [diff] [blame] | 93 | #else |
Hiroshi Yamauchi | 624468c | 2014-03-31 15:14:47 -0700 | [diff] [blame] | 94 | static constexpr bool kUseBakerReadBarrier = false; |
Hiroshi Yamauchi | 9d04a20 | 2014-01-31 13:35:49 -0800 | [diff] [blame] | 95 | #endif |
| 96 | |
Hiroshi Yamauchi | 624468c | 2014-03-31 15:14:47 -0700 | [diff] [blame] | 97 | #ifdef USE_BROOKS_READ_BARRIER |
| 98 | static constexpr bool kUseBrooksReadBarrier = true; |
| 99 | #else |
| 100 | static constexpr bool kUseBrooksReadBarrier = false; |
| 101 | #endif |
| 102 | |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 103 | #ifdef USE_TABLE_LOOKUP_READ_BARRIER |
| 104 | static constexpr bool kUseTableLookupReadBarrier = true; |
| 105 | #else |
| 106 | static constexpr bool kUseTableLookupReadBarrier = false; |
| 107 | #endif |
| 108 | |
Hiroshi Yamauchi | 624468c | 2014-03-31 15:14:47 -0700 | [diff] [blame] | 109 | static constexpr bool kUseBakerOrBrooksReadBarrier = kUseBakerReadBarrier || kUseBrooksReadBarrier; |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 110 | static constexpr bool kUseReadBarrier = |
| 111 | kUseBakerReadBarrier || kUseBrooksReadBarrier || kUseTableLookupReadBarrier; |
| 112 | |
| 113 | // Debugging flag that forces the generation of read barriers, but |
| 114 | // does not trigger the use of the concurrent copying GC. |
| 115 | // |
| 116 | // TODO: Remove this flag when the read barriers compiler |
| 117 | // instrumentation is completed. |
| 118 | static constexpr bool kForceReadBarrier = false; |
| 119 | // TODO: Likewise, remove this flag when kForceReadBarrier is removed |
| 120 | // and replace it with kUseReadBarrier. |
| 121 | static constexpr bool kEmitCompilerReadBarrier = kForceReadBarrier || kUseReadBarrier; |
Hiroshi Yamauchi | 624468c | 2014-03-31 15:14:47 -0700 | [diff] [blame] | 122 | |
Hiroshi Yamauchi | e63a745 | 2014-02-27 14:44:36 -0800 | [diff] [blame] | 123 | // If true, references within the heap are poisoned (negated). |
Hiroshi Yamauchi | bfa5eb6 | 2015-05-29 15:04:41 -0700 | [diff] [blame] | 124 | #ifdef USE_HEAP_POISONING |
Hiroshi Yamauchi | b0d22f1 | 2014-12-08 12:08:46 -0800 | [diff] [blame] | 125 | static constexpr bool kPoisonHeapReferences = true; |
| 126 | #else |
Hiroshi Yamauchi | e63a745 | 2014-02-27 14:44:36 -0800 | [diff] [blame] | 127 | static constexpr bool kPoisonHeapReferences = false; |
Hiroshi Yamauchi | b0d22f1 | 2014-12-08 12:08:46 -0800 | [diff] [blame] | 128 | #endif |
Hiroshi Yamauchi | e63a745 | 2014-02-27 14:44:36 -0800 | [diff] [blame] | 129 | |
Hiroshi Yamauchi | 79bd2bf | 2015-03-20 10:28:34 -0700 | [diff] [blame] | 130 | // If true, enable the tlab allocator by default. |
| 131 | #ifdef ART_USE_TLAB |
| 132 | static constexpr bool kUseTlab = true; |
| 133 | #else |
| 134 | static constexpr bool kUseTlab = false; |
| 135 | #endif |
| 136 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 137 | // Kinds of tracing clocks. |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 138 | enum class TraceClockSource { |
| 139 | kThreadCpu, |
| 140 | kWall, |
| 141 | kDual, // Both wall and thread CPU clocks. |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 142 | }; |
| 143 | |
Elliott Hughes | 0a18df8 | 2015-01-09 15:16:16 -0800 | [diff] [blame] | 144 | #if defined(__linux__) |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 145 | static constexpr TraceClockSource kDefaultTraceClockSource = TraceClockSource::kDual; |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 146 | #else |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 147 | static constexpr TraceClockSource kDefaultTraceClockSource = TraceClockSource::kWall; |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 148 | #endif |
| 149 | |
Alex Light | 6e183f2 | 2014-07-18 14:57:04 -0700 | [diff] [blame] | 150 | static constexpr bool kDefaultMustRelocate = true; |
| 151 | |
Zheng Xu | 5667fdb | 2014-10-23 18:29:55 +0800 | [diff] [blame] | 152 | static constexpr bool kArm32QuickCodeUseSoftFloat = false; |
| 153 | |
Carl Shapiro | 6b6b5f0 | 2011-06-21 15:05:09 -0700 | [diff] [blame] | 154 | } // namespace art |
Carl Shapiro | a5d5cfd | 2011-06-21 12:46:59 -0700 | [diff] [blame] | 155 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 156 | #endif // ART_RUNTIME_GLOBALS_H_ |