blob: e6a6b1dfadabce8233ae7481d4847d593fdc81be [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
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 Shapiroa5d5cfd2011-06-21 12:46:59 -070016
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_UTILS_H_
18#define ART_RUNTIME_UTILS_H_
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -070019
Elliott Hughes92b3b562011-09-08 16:32:26 -070020#include <pthread.h>
Elliott Hughese222ee02012-12-13 14:41:43 -080021
Alex Light53cb16b2014-06-12 11:26:29 -070022#include <limits>
Vladimir Markoaa4497d2014-09-05 14:01:17 +010023#include <memory>
Elliott Hughes34023802011-08-30 12:06:17 -070024#include <string>
Andreas Gampeab1eb0d2015-02-13 19:23:55 -080025#include <type_traits>
Elliott Hughes34023802011-08-30 12:06:17 -070026#include <vector>
27
Ian Rogersd582fa42014-11-05 23:46:43 -080028#include "arch/instruction_set.h"
Elliott Hughese222ee02012-12-13 14:41:43 -080029#include "base/logging.h"
Ian Rogers68d8b422014-07-17 11:09:10 -070030#include "base/mutex.h"
Elliott Hughese222ee02012-12-13 14:41:43 -080031#include "globals.h"
Ian Rogers68d8b422014-07-17 11:09:10 -070032#include "primitive.h"
Calin Juravlebb0b53f2014-05-23 17:33:29 +010033
Carl Shapiro6b6b5f02011-06-21 15:05:09 -070034namespace art {
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -070035
Ian Rogers0571d352011-11-03 19:51:38 -070036class DexFile;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037
38namespace mirror {
Brian Carlstromea46f952013-07-30 01:26:50 -070039class ArtField;
40class ArtMethod;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080041class Class;
Elliott Hughes11e45072011-08-16 17:40:46 -070042class Object;
Elliott Hughes5174fe62011-08-23 15:12:35 -070043class String;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080044} // namespace mirror
Elliott Hughes11e45072011-08-16 17:40:46 -070045
Mathieu Chartier0325e622012-09-05 14:22:51 -070046enum TimeUnit {
47 kTimeUnitNanosecond,
48 kTimeUnitMicrosecond,
49 kTimeUnitMillisecond,
50 kTimeUnitSecond,
51};
52
Alex Light53cb16b2014-06-12 11:26:29 -070053template <typename T>
54bool ParseUint(const char *in, T* out) {
55 char* end;
56 unsigned long long int result = strtoull(in, &end, 0); // NOLINT(runtime/int)
57 if (in == end || *end != '\0') {
58 return false;
59 }
60 if (std::numeric_limits<T>::max() < result) {
61 return false;
62 }
63 *out = static_cast<T>(result);
64 return true;
65}
66
67template <typename T>
68bool ParseInt(const char* in, T* out) {
69 char* end;
70 long long int result = strtoll(in, &end, 0); // NOLINT(runtime/int)
71 if (in == end || *end != '\0') {
72 return false;
73 }
74 if (result < std::numeric_limits<T>::min() || std::numeric_limits<T>::max() < result) {
75 return false;
76 }
77 *out = static_cast<T>(result);
78 return true;
79}
80
Carl Shapiroa2e18e12011-06-21 18:57:55 -070081template<typename T>
Vladimir Marko81949632014-05-02 11:53:22 +010082static constexpr bool IsPowerOfTwo(T x) {
Carl Shapiroa2e18e12011-06-21 18:57:55 -070083 return (x & (x - 1)) == 0;
84}
85
Elliott Hughes06b37d92011-10-16 11:51:29 -070086template<int n, typename T>
87static inline bool IsAligned(T x) {
Andreas Gampe575e78c2014-11-03 23:41:03 -080088 static_assert((n & (n - 1)) == 0, "n is not a power of two");
Carl Shapiroa2e18e12011-06-21 18:57:55 -070089 return (x & (n - 1)) == 0;
90}
91
Elliott Hughes06b37d92011-10-16 11:51:29 -070092template<int n, typename T>
93static inline bool IsAligned(T* x) {
Brian Carlstrom89521892011-12-07 22:05:07 -080094 return IsAligned<n>(reinterpret_cast<const uintptr_t>(x));
Carl Shapiroa2e18e12011-06-21 18:57:55 -070095}
96
Andreas Gampeaf13ad92014-04-11 12:07:48 -070097template<typename T>
98static inline bool IsAlignedParam(T x, int n) {
99 return (x & (n - 1)) == 0;
100}
101
Elliott Hughes06b37d92011-10-16 11:51:29 -0700102#define CHECK_ALIGNED(value, alignment) \
Brian Carlstrom89521892011-12-07 22:05:07 -0800103 CHECK(::art::IsAligned<alignment>(value)) << reinterpret_cast<const void*>(value)
Elliott Hughes06b37d92011-10-16 11:51:29 -0700104
105#define DCHECK_ALIGNED(value, alignment) \
Brian Carlstrom89521892011-12-07 22:05:07 -0800106 DCHECK(::art::IsAligned<alignment>(value)) << reinterpret_cast<const void*>(value)
Elliott Hughes06b37d92011-10-16 11:51:29 -0700107
Andreas Gampeaf13ad92014-04-11 12:07:48 -0700108#define DCHECK_ALIGNED_PARAM(value, alignment) \
109 DCHECK(::art::IsAlignedParam(value, alignment)) << reinterpret_cast<const void*>(value)
110
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700111// Check whether an N-bit two's-complement representation can hold value.
David Brazdilf6468102015-03-27 10:31:38 +0000112template <typename T>
113static inline bool IsInt(int N, T value) {
114 int bitsPerT = sizeof(T) * kBitsPerByte;
115 if (N == bitsPerT) {
116 return true;
117 } else {
118 CHECK_LT(0, N);
119 CHECK_LT(N, bitsPerT);
120 T limit = static_cast<T>(1) << (N - 1);
121 return (-limit <= value) && (value < limit);
122 }
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700123}
124
Andreas Gampeab1eb0d2015-02-13 19:23:55 -0800125template <typename T>
126static constexpr T GetIntLimit(size_t bits) {
127 return
128 DCHECK_CONSTEXPR(bits > 0, "bits cannot be zero", 0)
129 DCHECK_CONSTEXPR(bits < kBitsPerByte * sizeof(T), "kBits must be < max.", 0)
130 static_cast<T>(1) << (bits - 1);
Andreas Gampe851df202014-11-12 14:05:46 -0800131}
132
Andreas Gampeab1eb0d2015-02-13 19:23:55 -0800133template <size_t kBits, typename T>
134static constexpr bool IsInt(T value) {
135 static_assert(kBits > 0, "kBits cannot be zero.");
136 static_assert(kBits <= kBitsPerByte * sizeof(T), "kBits must be <= max.");
137 static_assert(std::is_signed<T>::value, "Needs a signed type.");
138 // Corner case for "use all bits." Can't use the limits, as they would overflow, but it is
139 // trivially true.
140 return (kBits == kBitsPerByte * sizeof(T)) ?
141 true :
142 (-GetIntLimit<T>(kBits) <= value) && (value < GetIntLimit<T>(kBits));
Andreas Gampe851df202014-11-12 14:05:46 -0800143}
144
Andreas Gampeab1eb0d2015-02-13 19:23:55 -0800145template <size_t kBits, typename T>
146static constexpr bool IsUint(T value) {
147 static_assert(kBits > 0, "kBits cannot be zero.");
148 static_assert(kBits <= kBitsPerByte * sizeof(T), "kBits must be <= max.");
149 static_assert(std::is_integral<T>::value, "Needs an integral type.");
150 // Corner case for "use all bits." Can't use the limits, as they would overflow, but it is
151 // trivially true.
152 return (0 <= value) &&
153 (kBits == kBitsPerByte * sizeof(T) ||
154 (static_cast<typename std::make_unsigned<T>::type>(value) <=
155 GetIntLimit<typename std::make_unsigned<T>::type>(kBits + 1) - 1));
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700156}
157
Andreas Gampeab1eb0d2015-02-13 19:23:55 -0800158template <size_t kBits, typename T>
159static constexpr bool IsAbsoluteUint(T value) {
160 static_assert(kBits <= kBitsPerByte * sizeof(T), "kBits must be < max.");
161 return (kBits == kBitsPerByte * sizeof(T)) ?
162 true :
163 IsUint<kBits, T>(value < 0 ? -value : value);
Carl Shapiroa2e18e12011-06-21 18:57:55 -0700164}
165
buzbee4ef3e452012-12-14 13:35:28 -0800166static inline uint16_t Low16Bits(uint32_t value) {
167 return static_cast<uint16_t>(value);
Ian Rogersb033c752011-07-20 12:22:35 -0700168}
169
buzbee4ef3e452012-12-14 13:35:28 -0800170static inline uint16_t High16Bits(uint32_t value) {
171 return static_cast<uint16_t>(value >> 16);
Ian Rogersb033c752011-07-20 12:22:35 -0700172}
Carl Shapiroa2e18e12011-06-21 18:57:55 -0700173
buzbee4ef3e452012-12-14 13:35:28 -0800174static inline uint32_t Low32Bits(uint64_t value) {
175 return static_cast<uint32_t>(value);
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700176}
177
buzbee4ef3e452012-12-14 13:35:28 -0800178static inline uint32_t High32Bits(uint64_t value) {
179 return static_cast<uint32_t>(value >> 32);
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700180}
181
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000182// Traits class providing an unsigned integer type of (byte) size `n`.
183template <size_t n>
184struct UnsignedIntegerType {
185 // No defined `type`.
186};
187
188template <>
189struct UnsignedIntegerType<1> { typedef uint8_t type; };
190
191template <>
192struct UnsignedIntegerType<2> { typedef uint16_t type; };
193
194template <>
195struct UnsignedIntegerType<4> { typedef uint32_t type; };
196
197template <>
198struct UnsignedIntegerType<8> { typedef uint64_t type; };
199
Vladimir Marko81949632014-05-02 11:53:22 +0100200// Type identity.
201template <typename T>
202struct TypeIdentity {
203 typedef T type;
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700204};
205
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800206// Like sizeof, but count how many bits a type takes. Pass type explicitly.
207template <typename T>
208static constexpr size_t BitSizeOf() {
209 return sizeof(T) * CHAR_BIT;
210}
211
212// Like sizeof, but count how many bits a type takes. Infers type from parameter.
213template <typename T>
214static constexpr size_t BitSizeOf(T /*x*/) {
215 return sizeof(T) * CHAR_BIT;
216}
217
Hiroshi Yamauchi0941b042013-11-05 11:34:03 -0800218// For rounding integers.
Carl Shapiro61e019d2011-07-14 16:53:09 -0700219template<typename T>
Mathieu Chartier4c13a3f2014-07-14 14:57:16 -0700220static constexpr T RoundDown(T x, typename TypeIdentity<T>::type n) WARN_UNUSED;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700221
222template<typename T>
Vladimir Marko81949632014-05-02 11:53:22 +0100223static constexpr T RoundDown(T x, typename TypeIdentity<T>::type n) {
224 return
Vladimir Marko83642482014-06-11 12:12:07 +0100225 DCHECK_CONSTEXPR(IsPowerOfTwo(n), , T(0))
226 (x & -n);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700227}
228
229template<typename T>
Mathieu Chartier4c13a3f2014-07-14 14:57:16 -0700230static constexpr T RoundUp(T x, typename TypeIdentity<T>::type n) WARN_UNUSED;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700231
232template<typename T>
Vladimir Marko81949632014-05-02 11:53:22 +0100233static constexpr T RoundUp(T x, typename TypeIdentity<T>::type n) {
Carl Shapiro61e019d2011-07-14 16:53:09 -0700234 return RoundDown(x + n - 1, n);
235}
236
Hiroshi Yamauchi0941b042013-11-05 11:34:03 -0800237// For aligning pointers.
238template<typename T>
Mathieu Chartier4c13a3f2014-07-14 14:57:16 -0700239static inline T* AlignDown(T* x, uintptr_t n) WARN_UNUSED;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700240
241template<typename T>
Vladimir Marko81949632014-05-02 11:53:22 +0100242static inline T* AlignDown(T* x, uintptr_t n) {
243 return reinterpret_cast<T*>(RoundDown(reinterpret_cast<uintptr_t>(x), n));
Hiroshi Yamauchi0941b042013-11-05 11:34:03 -0800244}
245
246template<typename T>
Mathieu Chartier4c13a3f2014-07-14 14:57:16 -0700247static inline T* AlignUp(T* x, uintptr_t n) WARN_UNUSED;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700248
249template<typename T>
Vladimir Marko81949632014-05-02 11:53:22 +0100250static inline T* AlignUp(T* x, uintptr_t n) {
251 return reinterpret_cast<T*>(RoundUp(reinterpret_cast<uintptr_t>(x), n));
Hiroshi Yamauchi0941b042013-11-05 11:34:03 -0800252}
253
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800254namespace utils {
255namespace detail { // Private, implementation-specific namespace. Do not poke outside of this file.
256template <typename T>
257static constexpr inline T RoundUpToPowerOfTwoRecursive(T x, size_t bit) {
258 return bit == (BitSizeOf<T>()) ? x: RoundUpToPowerOfTwoRecursive(x | x >> bit, bit << 1);
259}
260} // namespace detail
261} // namespace utils
262
263// Recursive implementation is from "Hacker's Delight" by Henry S. Warren, Jr.,
264// figure 3-3, page 48, where the function is called clp2.
265template <typename T>
266static constexpr inline T RoundUpToPowerOfTwo(T x) {
267 return art::utils::detail::RoundUpToPowerOfTwoRecursive(x - 1, 1) + 1;
268}
269
270// Find the bit position of the most significant bit (0-based), or -1 if there were no bits set.
271template <typename T>
272static constexpr ssize_t MostSignificantBit(T value) {
273 return (value == 0) ? -1 : (MostSignificantBit(value >> 1) + 1);
274}
275
276// How many bits (minimally) does it take to store the constant 'value'? i.e. 1 for 1, 3 for 5, etc.
277template <typename T>
278static constexpr size_t MinimumBitsToStore(T value) {
279 return static_cast<size_t>(MostSignificantBit(value) + 1);
280}
281
Vladimir Marko81949632014-05-02 11:53:22 +0100282template<typename T>
283static constexpr int CLZ(T x) {
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800284 static_assert(sizeof(T) <= sizeof(long long), "T too large, must be smaller than long long"); // NOLINT [runtime/int] [4]
Vladimir Marko81949632014-05-02 11:53:22 +0100285 return (sizeof(T) == sizeof(uint32_t))
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800286 ? __builtin_clz(x) // TODO: __builtin_clz[ll] has undefined behavior for x=0
Vladimir Marko81949632014-05-02 11:53:22 +0100287 : __builtin_clzll(x);
Carl Shapiroa2e18e12011-06-21 18:57:55 -0700288}
289
Ian Rogersef7d42f2014-01-06 12:55:46 -0800290template<typename T>
Vladimir Marko81949632014-05-02 11:53:22 +0100291static constexpr int CTZ(T x) {
292 return (sizeof(T) == sizeof(uint32_t))
293 ? __builtin_ctz(x)
294 : __builtin_ctzll(x);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800295}
296
297template<typename T>
Alexandre Ramesb2fd7bc2015-03-11 16:48:16 +0000298static inline int WhichPowerOf2(T x) {
299 DCHECK((x != 0) && IsPowerOfTwo(x));
300 return CTZ(x);
301}
302
303template<typename T>
Vladimir Marko81949632014-05-02 11:53:22 +0100304static constexpr int POPCOUNT(T x) {
305 return (sizeof(T) == sizeof(uint32_t))
306 ? __builtin_popcount(x)
307 : __builtin_popcountll(x);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800308}
309
310static inline uint32_t PointerToLowMemUInt32(const void* p) {
311 uintptr_t intp = reinterpret_cast<uintptr_t>(p);
312 DCHECK_LE(intp, 0xFFFFFFFFU);
313 return intp & 0xFFFFFFFFU;
314}
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700315
Elliott Hughes46b92ba2011-08-12 17:57:34 -0700316static inline bool NeedsEscaping(uint16_t ch) {
317 return (ch < ' ' || ch > '~');
318}
319
Ian Rogers576ca0c2014-06-06 15:58:22 -0700320std::string PrintableChar(uint16_t ch);
Elliott Hughesc7ac37f2011-08-12 12:21:58 -0700321
Elliott Hughes82914b62012-04-09 15:56:29 -0700322// Returns an ASCII string corresponding to the given UTF-8 string.
323// Java escapes are used for non-ASCII characters.
Ian Rogers68b56852014-08-29 20:19:11 -0700324std::string PrintableString(const char* utf8);
Elliott Hughesc7ac37f2011-08-12 12:21:58 -0700325
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800326// Tests whether 's' starts with 'prefix'.
327bool StartsWith(const std::string& s, const char* prefix);
328
Dan Albert6eb987d2015-03-12 17:26:05 -0700329// Tests whether 's' ends with 'suffix'.
Brian Carlstrom7a967b32012-03-28 15:23:10 -0700330bool EndsWith(const std::string& s, const char* suffix);
331
Elliott Hughes54e7df12011-09-16 11:47:04 -0700332// Used to implement PrettyClass, PrettyField, PrettyMethod, and PrettyTypeOf,
333// one of which is probably more useful to you.
Elliott Hughesa0b8feb2011-08-20 09:50:55 -0700334// Returns a human-readable equivalent of 'descriptor'. So "I" would be "int",
335// "[[I" would be "int[][]", "[Ljava/lang/String;" would be
336// "java.lang.String[]", and so forth.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800337std::string PrettyDescriptor(mirror::String* descriptor)
338 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers1ff3c982014-08-12 02:30:58 -0700339std::string PrettyDescriptor(const char* descriptor);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800340std::string PrettyDescriptor(mirror::Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700341 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers68d8b422014-07-17 11:09:10 -0700342std::string PrettyDescriptor(Primitive::Type type);
Elliott Hughes11e45072011-08-16 17:40:46 -0700343
Elliott Hughes54e7df12011-09-16 11:47:04 -0700344// Returns a human-readable signature for 'f'. Something like "a.b.C.f" or
345// "int a.b.C.f" (depending on the value of 'with_type').
Ian Rogersef7d42f2014-01-06 12:55:46 -0800346std::string PrettyField(mirror::ArtField* f, bool with_type = true)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700347 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom6f29d0e2012-05-11 15:50:29 -0700348std::string PrettyField(uint32_t field_idx, const DexFile& dex_file, bool with_type = true);
Elliott Hughesa2501992011-08-26 19:39:54 -0700349
Elliott Hughesa0b8feb2011-08-20 09:50:55 -0700350// Returns a human-readable signature for 'm'. Something like "a.b.C.m" or
351// "a.b.C.m(II)V" (depending on the value of 'with_signature').
Ian Rogersef7d42f2014-01-06 12:55:46 -0800352std::string PrettyMethod(mirror::ArtMethod* m, bool with_signature = true)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700353 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0571d352011-11-03 19:51:38 -0700354std::string PrettyMethod(uint32_t method_idx, const DexFile& dex_file, bool with_signature = true);
Elliott Hughesa0b8feb2011-08-20 09:50:55 -0700355
356// Returns a human-readable form of the name of the *class* of the given object.
357// So given an instance of java.lang.String, the output would
Elliott Hughes11e45072011-08-16 17:40:46 -0700358// be "java.lang.String". Given an array of int, the output would be "int[]".
359// Given String.class, the output would be "java.lang.Class<java.lang.String>".
Ian Rogersef7d42f2014-01-06 12:55:46 -0800360std::string PrettyTypeOf(mirror::Object* obj)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700361 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartier4c70d772012-09-10 14:08:32 -0700362
363// Returns a human-readable form of the type at an index in the specified dex file.
364// Example outputs: char[], java.lang.String.
Mathieu Chartier18c24b62012-09-10 08:54:25 -0700365std::string PrettyType(uint32_t type_idx, const DexFile& dex_file);
Elliott Hughes54e7df12011-09-16 11:47:04 -0700366
367// Returns a human-readable form of the name of the given class.
368// Given String.class, the output would be "java.lang.Class<java.lang.String>".
Ian Rogersef7d42f2014-01-06 12:55:46 -0800369std::string PrettyClass(mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700370 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes11e45072011-08-16 17:40:46 -0700371
Ian Rogersd81871c2011-10-03 13:57:23 -0700372// Returns a human-readable form of the name of the given class with its class loader.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800373std::string PrettyClassAndClassLoader(mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700374 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersd81871c2011-10-03 13:57:23 -0700375
Andreas Gampec0d82292014-09-23 10:38:30 -0700376// Returns a human-readable version of the Java part of the access flags, e.g., "private static "
377// (note the trailing whitespace).
378std::string PrettyJavaAccessFlags(uint32_t access_flags);
379
Elliott Hughesc967f782012-04-16 10:23:15 -0700380// Returns a human-readable size string such as "1MB".
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800381std::string PrettySize(int64_t size_in_bytes);
Ian Rogers3bb17a62012-01-27 23:56:44 -0800382
383// Returns a human-readable time string which prints every nanosecond while trying to limit the
384// number of trailing zeros. Prints using the largest human readable unit up to a second.
385// e.g. "1ms", "1.000000001s", "1.001us"
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700386std::string PrettyDuration(uint64_t nano_duration, size_t max_fraction_digits = 3);
Ian Rogers3bb17a62012-01-27 23:56:44 -0800387
Mathieu Chartier0325e622012-09-05 14:22:51 -0700388// Format a nanosecond time to specified units.
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700389std::string FormatDuration(uint64_t nano_duration, TimeUnit time_unit,
390 size_t max_fraction_digits);
Mathieu Chartier0325e622012-09-05 14:22:51 -0700391
392// Get the appropriate unit for a nanosecond duration.
393TimeUnit GetAppropriateTimeUnit(uint64_t nano_duration);
394
Dave Allison70202782013-10-22 17:52:19 -0700395// Get the divisor to convert from a nanoseconds to a time unit.
Mathieu Chartier0325e622012-09-05 14:22:51 -0700396uint64_t GetNsToTimeUnitDivisor(TimeUnit time_unit);
397
Elliott Hughes79082e32011-08-25 12:07:32 -0700398// Performs JNI name mangling as described in section 11.3 "Linking Native Methods"
399// of the JNI spec.
400std::string MangleForJni(const std::string& s);
401
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700402// Turn "java.lang.String" into "Ljava/lang/String;".
403std::string DotToDescriptor(const char* class_name);
404
Ian Rogers1ff3c982014-08-12 02:30:58 -0700405// Turn "Ljava/lang/String;" into "java.lang.String" using the conventions of
406// java.lang.Class.getName().
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800407std::string DescriptorToDot(const char* descriptor);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700408
Ian Rogers1ff3c982014-08-12 02:30:58 -0700409// Turn "Ljava/lang/String;" into "java/lang/String" using the opposite conventions of
410// java.lang.Class.getName().
Elliott Hughes91bf6cd2012-02-14 17:27:48 -0800411std::string DescriptorToName(const char* descriptor);
412
Elliott Hughes906e6852011-10-28 14:52:10 -0700413// Tests for whether 's' is a valid class name in the three common forms:
414bool IsValidBinaryClassName(const char* s); // "java.lang.String"
415bool IsValidJniClassName(const char* s); // "java/lang/String"
416bool IsValidDescriptor(const char* s); // "Ljava/lang/String;"
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700417
jeffhao10037c82012-01-23 15:06:23 -0800418// Returns whether the given string is a valid field or method name,
419// additionally allowing names that begin with '<' and end with '>'.
420bool IsValidMemberName(const char* s);
421
Elliott Hughes79082e32011-08-25 12:07:32 -0700422// Returns the JNI native function name for the non-overloaded method 'm'.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800423std::string JniShortName(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700424 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700425// Returns the JNI native function name for the overloaded method 'm'.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800426std::string JniLongName(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700427 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700428
Elliott Hughesd92bec42011-09-02 17:04:36 -0700429bool ReadFileToString(const std::string& file_name, std::string* result);
Andreas Gampea6dfdae2015-02-24 15:50:19 -0800430bool PrintFileToLog(const std::string& file_name, LogSeverity level);
buzbeec143c552011-08-20 17:38:58 -0700431
Elliott Hughese27955c2011-08-26 15:21:24 -0700432// Returns the current date in ISO yyyy-mm-dd hh:mm:ss format.
433std::string GetIsoDate();
434
Elliott Hughes0512f022012-03-15 22:10:52 -0700435// Returns the monotonic time since some unspecified starting point in milliseconds.
Elliott Hughes7162ad92011-10-27 14:08:42 -0700436uint64_t MilliTime();
437
Elliott Hughes0512f022012-03-15 22:10:52 -0700438// Returns the monotonic time since some unspecified starting point in microseconds.
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800439uint64_t MicroTime();
440
Elliott Hughes0512f022012-03-15 22:10:52 -0700441// Returns the monotonic time since some unspecified starting point in nanoseconds.
Elliott Hughes83df2ac2011-10-11 16:37:54 -0700442uint64_t NanoTime();
443
Elliott Hughes0512f022012-03-15 22:10:52 -0700444// Returns the thread-specific CPU-time clock in nanoseconds or -1 if unavailable.
445uint64_t ThreadCpuNanoTime();
446
Elliott Hughesbb551fa2012-01-25 16:35:29 -0800447// Converts the given number of nanoseconds to milliseconds.
Mathieu Chartier720ef762013-08-17 14:46:54 -0700448static constexpr inline uint64_t NsToMs(uint64_t ns) {
Ian Rogers3bb17a62012-01-27 23:56:44 -0800449 return ns / 1000 / 1000;
450}
451
452// Converts the given number of milliseconds to nanoseconds
Mathieu Chartier720ef762013-08-17 14:46:54 -0700453static constexpr inline uint64_t MsToNs(uint64_t ns) {
Ian Rogers3bb17a62012-01-27 23:56:44 -0800454 return ns * 1000 * 1000;
455}
456
Brian Carlstrombcc29262012-11-02 11:36:03 -0700457#if defined(__APPLE__)
458// No clocks to specify on OS/X, fake value to pass to routines that require a clock.
459#define CLOCK_REALTIME 0xebadf00d
460#endif
461
Ian Rogers56edc432013-01-18 16:51:51 -0800462// Sleep for the given number of nanoseconds, a bad way to handle contention.
463void NanoSleep(uint64_t ns);
464
Hans Boehm5567c112014-12-02 18:31:31 -0800465// Initialize a timespec to either a relative time (ms,ns), or to the absolute
466// time corresponding to the indicated clock value plus the supplied offset.
Brian Carlstrombcc29262012-11-02 11:36:03 -0700467void InitTimeSpec(bool absolute, int clock, int64_t ms, int32_t ns, timespec* ts);
468
Elliott Hughes48436bb2012-02-07 15:23:28 -0800469// Splits a string using the given separator character into a vector of
Elliott Hughes34023802011-08-30 12:06:17 -0700470// strings. Empty strings will be omitted.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700471void Split(const std::string& s, char separator, std::vector<std::string>* result);
Elliott Hughes48436bb2012-02-07 15:23:28 -0800472
Dave Allison70202782013-10-22 17:52:19 -0700473// Trims whitespace off both ends of the given string.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700474std::string Trim(const std::string& s);
Dave Allison70202782013-10-22 17:52:19 -0700475
Elliott Hughes48436bb2012-02-07 15:23:28 -0800476// Joins a vector of strings into a single string, using the given separator.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700477template <typename StringT> std::string Join(const std::vector<StringT>& strings, char separator);
Elliott Hughes34023802011-08-30 12:06:17 -0700478
Elliott Hughes42ee1422011-09-06 12:33:32 -0700479// Returns the calling thread's tid. (The C libraries don't expose this.)
480pid_t GetTid();
481
Elliott Hughes289be852012-06-12 13:57:20 -0700482// Returns the given thread's name.
483std::string GetThreadName(pid_t tid);
484
Ian Rogers120f1c72012-09-28 17:17:10 -0700485// Returns details of the given thread's stack.
Elliott Hughes6d3fc562014-08-27 11:47:01 -0700486void GetThreadStack(pthread_t thread, void** stack_base, size_t* stack_size, size_t* guard_size);
Elliott Hughese1884192012-04-23 12:38:15 -0700487
Elliott Hughesbfe487b2011-10-26 15:48:55 -0700488// Reads data from "/proc/self/task/${tid}/stat".
Brian Carlstrom29212012013-09-12 22:18:30 -0700489void GetTaskStats(pid_t tid, char* state, int* utime, int* stime, int* task_cpu);
Elliott Hughesbfe487b2011-10-26 15:48:55 -0700490
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700491// Returns the name of the scheduler group for the given thread the current process, or the empty string.
492std::string GetSchedulerGroupName(pid_t tid);
493
Elliott Hughesdcc24742011-09-07 14:02:44 -0700494// Sets the name of the current thread. The name may be truncated to an
495// implementation-defined limit.
Elliott Hughes22869a92012-03-27 14:08:24 -0700496void SetThreadName(const char* thread_name);
Elliott Hughesdcc24742011-09-07 14:02:44 -0700497
Elliott Hughes46e251b2012-05-22 15:10:45 -0700498// Dumps the native stack for thread 'tid' to 'os'.
Kenny Root067d20f2014-03-05 14:57:21 -0800499void DumpNativeStack(std::ostream& os, pid_t tid, const char* prefix = "",
Andreas Gampe628a61a2015-01-07 22:08:35 -0800500 mirror::ArtMethod* current_method = nullptr, void* ucontext = nullptr)
Kenny Root067d20f2014-03-05 14:57:21 -0800501 NO_THREAD_SAFETY_ANALYSIS;
Elliott Hughes46e251b2012-05-22 15:10:45 -0700502
503// Dumps the kernel stack for thread 'tid' to 'os'. Note that this is only available on linux-x86.
504void DumpKernelStack(std::ostream& os, pid_t tid, const char* prefix = "", bool include_count = true);
505
Dave Allison70202782013-10-22 17:52:19 -0700506// Find $ANDROID_ROOT, /system, or abort.
Brian Carlstroma56fcd62012-02-04 21:23:01 -0800507const char* GetAndroidRoot();
508
Dave Allison70202782013-10-22 17:52:19 -0700509// Find $ANDROID_DATA, /data, or abort.
Brian Carlstroma56fcd62012-02-04 21:23:01 -0800510const char* GetAndroidData();
Alex Lighta59dd802014-07-02 16:28:08 -0700511// Find $ANDROID_DATA, /data, or return nullptr.
512const char* GetAndroidDataSafe(std::string* error_msg);
Brian Carlstroma56fcd62012-02-04 21:23:01 -0800513
Narayan Kamath11d9f062014-04-23 20:24:57 +0100514// Returns the dalvik-cache location, or dies trying. subdir will be
515// appended to the cache location.
516std::string GetDalvikCacheOrDie(const char* subdir, bool create_if_absent = true);
Alex Lighta59dd802014-07-02 16:28:08 -0700517// Return true if we found the dalvik cache and stored it in the dalvik_cache argument.
518// have_android_data will be set to true if we have an ANDROID_DATA that exists,
519// dalvik_cache_exists will be true if there is a dalvik-cache directory that is present.
Andreas Gampe3c13a792014-09-18 20:56:04 -0700520// The flag is_global_cache tells whether this cache is /data/dalvik-cache.
Alex Lighta59dd802014-07-02 16:28:08 -0700521void GetDalvikCache(const char* subdir, bool create_if_absent, std::string* dalvik_cache,
Andreas Gampe3c13a792014-09-18 20:56:04 -0700522 bool* have_android_data, bool* dalvik_cache_exists, bool* is_global_cache);
Brian Carlstroma9f19782011-10-13 00:14:47 -0700523
Alex Lighta59dd802014-07-02 16:28:08 -0700524// Returns the absolute dalvik-cache path for a DexFile or OatFile. The path returned will be
525// rooted at cache_location.
526bool GetDalvikCacheFilename(const char* file_location, const char* cache_location,
527 std::string* filename, std::string* error_msg);
Narayan Kamath11d9f062014-04-23 20:24:57 +0100528// Returns the absolute dalvik-cache path for a DexFile or OatFile, or
529// dies trying. The path returned will be rooted at cache_location.
530std::string GetDalvikCacheFilenameOrDie(const char* file_location,
531 const char* cache_location);
jeffhao262bf462011-10-20 18:36:32 -0700532
Brian Carlstrom0e12bdc2014-05-14 17:44:28 -0700533// Returns the system location for an image
Brian Carlstrom2afe4942014-05-19 10:25:33 -0700534std::string GetSystemImageFilename(const char* location, InstructionSet isa);
Brian Carlstrom0e12bdc2014-05-14 17:44:28 -0700535
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -0700536// Check whether the given magic matches a known file type.
537bool IsZipMagic(uint32_t magic);
538bool IsDexMagic(uint32_t magic);
539bool IsOatMagic(uint32_t magic);
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700540
Brian Carlstrom6449c622014-02-10 23:48:36 -0800541// Wrapper on fork/execv to run a command in a subprocess.
542bool Exec(std::vector<std::string>& arg_vector, std::string* error_msg);
543
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800544class VoidFunctor {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700545 public:
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800546 template <typename A>
Brian Carlstromdf629502013-07-17 22:39:56 -0700547 inline void operator() (A a) const {
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800548 UNUSED(a);
549 }
550
551 template <typename A, typename B>
Brian Carlstromdf629502013-07-17 22:39:56 -0700552 inline void operator() (A a, B b) const {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700553 UNUSED(a, b);
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800554 }
555
556 template <typename A, typename B, typename C>
Brian Carlstromdf629502013-07-17 22:39:56 -0700557 inline void operator() (A a, B b, C c) const {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700558 UNUSED(a, b, c);
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800559 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700560};
561
Vladimir Marko80b96d12015-02-19 15:50:28 +0000562template <typename Alloc>
563void Push32(std::vector<uint8_t, Alloc>* buf, int32_t data) {
564 buf->push_back(data & 0xff);
565 buf->push_back((data >> 8) & 0xff);
566 buf->push_back((data >> 16) & 0xff);
567 buf->push_back((data >> 24) & 0xff);
568}
Tong Shen547cdfd2014-08-05 01:54:19 -0700569
570void EncodeUnsignedLeb128(uint32_t data, std::vector<uint8_t>* buf);
571void EncodeSignedLeb128(int32_t data, std::vector<uint8_t>* buf);
572
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100573// Deleter using free() for use with std::unique_ptr<>. See also UniqueCPtr<> below.
574struct FreeDelete {
575 // NOTE: Deleting a const object is valid but free() takes a non-const pointer.
576 void operator()(const void* ptr) const {
577 free(const_cast<void*>(ptr));
578 }
579};
580
581// Alias for std::unique_ptr<> that uses the C function free() to delete objects.
582template <typename T>
583using UniqueCPtr = std::unique_ptr<T, FreeDelete>;
584
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800585// C++14 from-the-future import (std::make_unique)
586// Invoke the constructor of 'T' with the provided args, and wrap the result in a unique ptr.
587template <typename T, typename ... Args>
588std::unique_ptr<T> MakeUnique(Args&& ... args) {
589 return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
590}
591
Carl Shapiro6b6b5f02011-06-21 15:05:09 -0700592} // namespace art
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700593
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700594#endif // ART_RUNTIME_UTILS_H_