blob: 1a7fdfb4dc6b2b2fb7fa9698b83d8ea982114aaf [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.
Ian Rogers13735952014-10-08 12:43:28 -0700112static inline bool IsInt(int N, intptr_t value) {
David Brazdil74fc5132015-03-26 15:11:45 +0000113 if (N == kBitsPerIntPtrT) return true;
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700114 CHECK_LT(0, N);
Ian Rogers13735952014-10-08 12:43:28 -0700115 CHECK_LT(N, kBitsPerIntPtrT);
116 intptr_t limit = static_cast<intptr_t>(1) << (N - 1);
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700117 return (-limit <= value) && (value < limit);
118}
119
Andreas Gampeab1eb0d2015-02-13 19:23:55 -0800120template <typename T>
121static constexpr T GetIntLimit(size_t bits) {
122 return
123 DCHECK_CONSTEXPR(bits > 0, "bits cannot be zero", 0)
124 DCHECK_CONSTEXPR(bits < kBitsPerByte * sizeof(T), "kBits must be < max.", 0)
125 static_cast<T>(1) << (bits - 1);
Andreas Gampe851df202014-11-12 14:05:46 -0800126}
127
Andreas Gampeab1eb0d2015-02-13 19:23:55 -0800128template <size_t kBits, typename T>
129static constexpr bool IsInt(T value) {
130 static_assert(kBits > 0, "kBits cannot be zero.");
131 static_assert(kBits <= kBitsPerByte * sizeof(T), "kBits must be <= max.");
132 static_assert(std::is_signed<T>::value, "Needs a signed type.");
133 // Corner case for "use all bits." Can't use the limits, as they would overflow, but it is
134 // trivially true.
135 return (kBits == kBitsPerByte * sizeof(T)) ?
136 true :
137 (-GetIntLimit<T>(kBits) <= value) && (value < GetIntLimit<T>(kBits));
Andreas Gampe851df202014-11-12 14:05:46 -0800138}
139
Andreas Gampeab1eb0d2015-02-13 19:23:55 -0800140template <size_t kBits, typename T>
141static constexpr bool IsUint(T value) {
142 static_assert(kBits > 0, "kBits cannot be zero.");
143 static_assert(kBits <= kBitsPerByte * sizeof(T), "kBits must be <= max.");
144 static_assert(std::is_integral<T>::value, "Needs an integral type.");
145 // Corner case for "use all bits." Can't use the limits, as they would overflow, but it is
146 // trivially true.
147 return (0 <= value) &&
148 (kBits == kBitsPerByte * sizeof(T) ||
149 (static_cast<typename std::make_unsigned<T>::type>(value) <=
150 GetIntLimit<typename std::make_unsigned<T>::type>(kBits + 1) - 1));
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700151}
152
Andreas Gampeab1eb0d2015-02-13 19:23:55 -0800153template <size_t kBits, typename T>
154static constexpr bool IsAbsoluteUint(T value) {
155 static_assert(kBits <= kBitsPerByte * sizeof(T), "kBits must be < max.");
156 return (kBits == kBitsPerByte * sizeof(T)) ?
157 true :
158 IsUint<kBits, T>(value < 0 ? -value : value);
Carl Shapiroa2e18e12011-06-21 18:57:55 -0700159}
160
buzbee4ef3e452012-12-14 13:35:28 -0800161static inline uint16_t Low16Bits(uint32_t value) {
162 return static_cast<uint16_t>(value);
Ian Rogersb033c752011-07-20 12:22:35 -0700163}
164
buzbee4ef3e452012-12-14 13:35:28 -0800165static inline uint16_t High16Bits(uint32_t value) {
166 return static_cast<uint16_t>(value >> 16);
Ian Rogersb033c752011-07-20 12:22:35 -0700167}
Carl Shapiroa2e18e12011-06-21 18:57:55 -0700168
buzbee4ef3e452012-12-14 13:35:28 -0800169static inline uint32_t Low32Bits(uint64_t value) {
170 return static_cast<uint32_t>(value);
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700171}
172
buzbee4ef3e452012-12-14 13:35:28 -0800173static inline uint32_t High32Bits(uint64_t value) {
174 return static_cast<uint32_t>(value >> 32);
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700175}
176
Roland Levillaina2d8ec62015-03-12 15:25:29 +0000177// Traits class providing an unsigned integer type of (byte) size `n`.
178template <size_t n>
179struct UnsignedIntegerType {
180 // No defined `type`.
181};
182
183template <>
184struct UnsignedIntegerType<1> { typedef uint8_t type; };
185
186template <>
187struct UnsignedIntegerType<2> { typedef uint16_t type; };
188
189template <>
190struct UnsignedIntegerType<4> { typedef uint32_t type; };
191
192template <>
193struct UnsignedIntegerType<8> { typedef uint64_t type; };
194
Vladimir Marko81949632014-05-02 11:53:22 +0100195// Type identity.
196template <typename T>
197struct TypeIdentity {
198 typedef T type;
Mathieu Chartier0a9dc052013-07-25 11:01:28 -0700199};
200
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800201// Like sizeof, but count how many bits a type takes. Pass type explicitly.
202template <typename T>
203static constexpr size_t BitSizeOf() {
204 return sizeof(T) * CHAR_BIT;
205}
206
207// Like sizeof, but count how many bits a type takes. Infers type from parameter.
208template <typename T>
209static constexpr size_t BitSizeOf(T /*x*/) {
210 return sizeof(T) * CHAR_BIT;
211}
212
Hiroshi Yamauchi0941b042013-11-05 11:34:03 -0800213// For rounding integers.
Carl Shapiro61e019d2011-07-14 16:53:09 -0700214template<typename T>
Mathieu Chartier4c13a3f2014-07-14 14:57:16 -0700215static constexpr T RoundDown(T x, typename TypeIdentity<T>::type n) WARN_UNUSED;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700216
217template<typename T>
Vladimir Marko81949632014-05-02 11:53:22 +0100218static constexpr T RoundDown(T x, typename TypeIdentity<T>::type n) {
219 return
Vladimir Marko83642482014-06-11 12:12:07 +0100220 DCHECK_CONSTEXPR(IsPowerOfTwo(n), , T(0))
221 (x & -n);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700222}
223
224template<typename T>
Mathieu Chartier4c13a3f2014-07-14 14:57:16 -0700225static constexpr T RoundUp(T x, typename TypeIdentity<T>::type n) WARN_UNUSED;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700226
227template<typename T>
Vladimir Marko81949632014-05-02 11:53:22 +0100228static constexpr T RoundUp(T x, typename TypeIdentity<T>::type n) {
Carl Shapiro61e019d2011-07-14 16:53:09 -0700229 return RoundDown(x + n - 1, n);
230}
231
Hiroshi Yamauchi0941b042013-11-05 11:34:03 -0800232// For aligning pointers.
233template<typename T>
Mathieu Chartier4c13a3f2014-07-14 14:57:16 -0700234static inline T* AlignDown(T* x, uintptr_t n) WARN_UNUSED;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700235
236template<typename T>
Vladimir Marko81949632014-05-02 11:53:22 +0100237static inline T* AlignDown(T* x, uintptr_t n) {
238 return reinterpret_cast<T*>(RoundDown(reinterpret_cast<uintptr_t>(x), n));
Hiroshi Yamauchi0941b042013-11-05 11:34:03 -0800239}
240
241template<typename T>
Mathieu Chartier4c13a3f2014-07-14 14:57:16 -0700242static inline T* AlignUp(T* x, uintptr_t n) WARN_UNUSED;
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700243
244template<typename T>
Vladimir Marko81949632014-05-02 11:53:22 +0100245static inline T* AlignUp(T* x, uintptr_t n) {
246 return reinterpret_cast<T*>(RoundUp(reinterpret_cast<uintptr_t>(x), n));
Hiroshi Yamauchi0941b042013-11-05 11:34:03 -0800247}
248
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800249namespace utils {
250namespace detail { // Private, implementation-specific namespace. Do not poke outside of this file.
251template <typename T>
252static constexpr inline T RoundUpToPowerOfTwoRecursive(T x, size_t bit) {
253 return bit == (BitSizeOf<T>()) ? x: RoundUpToPowerOfTwoRecursive(x | x >> bit, bit << 1);
254}
255} // namespace detail
256} // namespace utils
257
258// Recursive implementation is from "Hacker's Delight" by Henry S. Warren, Jr.,
259// figure 3-3, page 48, where the function is called clp2.
260template <typename T>
261static constexpr inline T RoundUpToPowerOfTwo(T x) {
262 return art::utils::detail::RoundUpToPowerOfTwoRecursive(x - 1, 1) + 1;
263}
264
265// Find the bit position of the most significant bit (0-based), or -1 if there were no bits set.
266template <typename T>
267static constexpr ssize_t MostSignificantBit(T value) {
268 return (value == 0) ? -1 : (MostSignificantBit(value >> 1) + 1);
269}
270
271// How many bits (minimally) does it take to store the constant 'value'? i.e. 1 for 1, 3 for 5, etc.
272template <typename T>
273static constexpr size_t MinimumBitsToStore(T value) {
274 return static_cast<size_t>(MostSignificantBit(value) + 1);
275}
276
Vladimir Marko81949632014-05-02 11:53:22 +0100277template<typename T>
278static constexpr int CLZ(T x) {
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800279 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 +0100280 return (sizeof(T) == sizeof(uint32_t))
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800281 ? __builtin_clz(x) // TODO: __builtin_clz[ll] has undefined behavior for x=0
Vladimir Marko81949632014-05-02 11:53:22 +0100282 : __builtin_clzll(x);
Carl Shapiroa2e18e12011-06-21 18:57:55 -0700283}
284
Ian Rogersef7d42f2014-01-06 12:55:46 -0800285template<typename T>
Vladimir Marko81949632014-05-02 11:53:22 +0100286static constexpr int CTZ(T x) {
287 return (sizeof(T) == sizeof(uint32_t))
288 ? __builtin_ctz(x)
289 : __builtin_ctzll(x);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800290}
291
292template<typename T>
Alexandre Ramesb2fd7bc2015-03-11 16:48:16 +0000293static inline int WhichPowerOf2(T x) {
294 DCHECK((x != 0) && IsPowerOfTwo(x));
295 return CTZ(x);
296}
297
298template<typename T>
Vladimir Marko81949632014-05-02 11:53:22 +0100299static constexpr int POPCOUNT(T x) {
300 return (sizeof(T) == sizeof(uint32_t))
301 ? __builtin_popcount(x)
302 : __builtin_popcountll(x);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800303}
304
305static inline uint32_t PointerToLowMemUInt32(const void* p) {
306 uintptr_t intp = reinterpret_cast<uintptr_t>(p);
307 DCHECK_LE(intp, 0xFFFFFFFFU);
308 return intp & 0xFFFFFFFFU;
309}
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700310
Elliott Hughes46b92ba2011-08-12 17:57:34 -0700311static inline bool NeedsEscaping(uint16_t ch) {
312 return (ch < ' ' || ch > '~');
313}
314
Ian Rogers576ca0c2014-06-06 15:58:22 -0700315std::string PrintableChar(uint16_t ch);
Elliott Hughesc7ac37f2011-08-12 12:21:58 -0700316
Elliott Hughes82914b62012-04-09 15:56:29 -0700317// Returns an ASCII string corresponding to the given UTF-8 string.
318// Java escapes are used for non-ASCII characters.
Ian Rogers68b56852014-08-29 20:19:11 -0700319std::string PrintableString(const char* utf8);
Elliott Hughesc7ac37f2011-08-12 12:21:58 -0700320
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800321// Tests whether 's' starts with 'prefix'.
322bool StartsWith(const std::string& s, const char* prefix);
323
Dan Albert6eb987d2015-03-12 17:26:05 -0700324// Tests whether 's' ends with 'suffix'.
Brian Carlstrom7a967b32012-03-28 15:23:10 -0700325bool EndsWith(const std::string& s, const char* suffix);
326
Elliott Hughes54e7df12011-09-16 11:47:04 -0700327// Used to implement PrettyClass, PrettyField, PrettyMethod, and PrettyTypeOf,
328// one of which is probably more useful to you.
Elliott Hughesa0b8feb2011-08-20 09:50:55 -0700329// Returns a human-readable equivalent of 'descriptor'. So "I" would be "int",
330// "[[I" would be "int[][]", "[Ljava/lang/String;" would be
331// "java.lang.String[]", and so forth.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800332std::string PrettyDescriptor(mirror::String* descriptor)
333 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers1ff3c982014-08-12 02:30:58 -0700334std::string PrettyDescriptor(const char* descriptor);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800335std::string PrettyDescriptor(mirror::Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700336 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers68d8b422014-07-17 11:09:10 -0700337std::string PrettyDescriptor(Primitive::Type type);
Elliott Hughes11e45072011-08-16 17:40:46 -0700338
Elliott Hughes54e7df12011-09-16 11:47:04 -0700339// Returns a human-readable signature for 'f'. Something like "a.b.C.f" or
340// "int a.b.C.f" (depending on the value of 'with_type').
Ian Rogersef7d42f2014-01-06 12:55:46 -0800341std::string PrettyField(mirror::ArtField* f, bool with_type = true)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700342 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom6f29d0e2012-05-11 15:50:29 -0700343std::string PrettyField(uint32_t field_idx, const DexFile& dex_file, bool with_type = true);
Elliott Hughesa2501992011-08-26 19:39:54 -0700344
Elliott Hughesa0b8feb2011-08-20 09:50:55 -0700345// Returns a human-readable signature for 'm'. Something like "a.b.C.m" or
346// "a.b.C.m(II)V" (depending on the value of 'with_signature').
Ian Rogersef7d42f2014-01-06 12:55:46 -0800347std::string PrettyMethod(mirror::ArtMethod* m, bool with_signature = true)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700348 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0571d352011-11-03 19:51:38 -0700349std::string PrettyMethod(uint32_t method_idx, const DexFile& dex_file, bool with_signature = true);
Elliott Hughesa0b8feb2011-08-20 09:50:55 -0700350
351// Returns a human-readable form of the name of the *class* of the given object.
352// So given an instance of java.lang.String, the output would
Elliott Hughes11e45072011-08-16 17:40:46 -0700353// be "java.lang.String". Given an array of int, the output would be "int[]".
354// Given String.class, the output would be "java.lang.Class<java.lang.String>".
Ian Rogersef7d42f2014-01-06 12:55:46 -0800355std::string PrettyTypeOf(mirror::Object* obj)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700356 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartier4c70d772012-09-10 14:08:32 -0700357
358// Returns a human-readable form of the type at an index in the specified dex file.
359// Example outputs: char[], java.lang.String.
Mathieu Chartier18c24b62012-09-10 08:54:25 -0700360std::string PrettyType(uint32_t type_idx, const DexFile& dex_file);
Elliott Hughes54e7df12011-09-16 11:47:04 -0700361
362// Returns a human-readable form of the name of the given class.
363// Given String.class, the output would be "java.lang.Class<java.lang.String>".
Ian Rogersef7d42f2014-01-06 12:55:46 -0800364std::string PrettyClass(mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700365 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes11e45072011-08-16 17:40:46 -0700366
Ian Rogersd81871c2011-10-03 13:57:23 -0700367// Returns a human-readable form of the name of the given class with its class loader.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800368std::string PrettyClassAndClassLoader(mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700369 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersd81871c2011-10-03 13:57:23 -0700370
Andreas Gampec0d82292014-09-23 10:38:30 -0700371// Returns a human-readable version of the Java part of the access flags, e.g., "private static "
372// (note the trailing whitespace).
373std::string PrettyJavaAccessFlags(uint32_t access_flags);
374
Elliott Hughesc967f782012-04-16 10:23:15 -0700375// Returns a human-readable size string such as "1MB".
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800376std::string PrettySize(int64_t size_in_bytes);
Ian Rogers3bb17a62012-01-27 23:56:44 -0800377
378// Returns a human-readable time string which prints every nanosecond while trying to limit the
379// number of trailing zeros. Prints using the largest human readable unit up to a second.
380// e.g. "1ms", "1.000000001s", "1.001us"
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700381std::string PrettyDuration(uint64_t nano_duration, size_t max_fraction_digits = 3);
Ian Rogers3bb17a62012-01-27 23:56:44 -0800382
Mathieu Chartier0325e622012-09-05 14:22:51 -0700383// Format a nanosecond time to specified units.
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700384std::string FormatDuration(uint64_t nano_duration, TimeUnit time_unit,
385 size_t max_fraction_digits);
Mathieu Chartier0325e622012-09-05 14:22:51 -0700386
387// Get the appropriate unit for a nanosecond duration.
388TimeUnit GetAppropriateTimeUnit(uint64_t nano_duration);
389
Dave Allison70202782013-10-22 17:52:19 -0700390// Get the divisor to convert from a nanoseconds to a time unit.
Mathieu Chartier0325e622012-09-05 14:22:51 -0700391uint64_t GetNsToTimeUnitDivisor(TimeUnit time_unit);
392
Elliott Hughes79082e32011-08-25 12:07:32 -0700393// Performs JNI name mangling as described in section 11.3 "Linking Native Methods"
394// of the JNI spec.
395std::string MangleForJni(const std::string& s);
396
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700397// Turn "java.lang.String" into "Ljava/lang/String;".
398std::string DotToDescriptor(const char* class_name);
399
Ian Rogers1ff3c982014-08-12 02:30:58 -0700400// Turn "Ljava/lang/String;" into "java.lang.String" using the conventions of
401// java.lang.Class.getName().
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800402std::string DescriptorToDot(const char* descriptor);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700403
Ian Rogers1ff3c982014-08-12 02:30:58 -0700404// Turn "Ljava/lang/String;" into "java/lang/String" using the opposite conventions of
405// java.lang.Class.getName().
Elliott Hughes91bf6cd2012-02-14 17:27:48 -0800406std::string DescriptorToName(const char* descriptor);
407
Elliott Hughes906e6852011-10-28 14:52:10 -0700408// Tests for whether 's' is a valid class name in the three common forms:
409bool IsValidBinaryClassName(const char* s); // "java.lang.String"
410bool IsValidJniClassName(const char* s); // "java/lang/String"
411bool IsValidDescriptor(const char* s); // "Ljava/lang/String;"
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700412
jeffhao10037c82012-01-23 15:06:23 -0800413// Returns whether the given string is a valid field or method name,
414// additionally allowing names that begin with '<' and end with '>'.
415bool IsValidMemberName(const char* s);
416
Elliott Hughes79082e32011-08-25 12:07:32 -0700417// Returns the JNI native function name for the non-overloaded method 'm'.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800418std::string JniShortName(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700419 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700420// Returns the JNI native function name for the overloaded method 'm'.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800421std::string JniLongName(mirror::ArtMethod* m)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700422 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes79082e32011-08-25 12:07:32 -0700423
Elliott Hughesd92bec42011-09-02 17:04:36 -0700424bool ReadFileToString(const std::string& file_name, std::string* result);
Andreas Gampea6dfdae2015-02-24 15:50:19 -0800425bool PrintFileToLog(const std::string& file_name, LogSeverity level);
buzbeec143c552011-08-20 17:38:58 -0700426
Elliott Hughese27955c2011-08-26 15:21:24 -0700427// Returns the current date in ISO yyyy-mm-dd hh:mm:ss format.
428std::string GetIsoDate();
429
Elliott Hughes0512f022012-03-15 22:10:52 -0700430// Returns the monotonic time since some unspecified starting point in milliseconds.
Elliott Hughes7162ad92011-10-27 14:08:42 -0700431uint64_t MilliTime();
432
Elliott Hughes0512f022012-03-15 22:10:52 -0700433// Returns the monotonic time since some unspecified starting point in microseconds.
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800434uint64_t MicroTime();
435
Elliott Hughes0512f022012-03-15 22:10:52 -0700436// Returns the monotonic time since some unspecified starting point in nanoseconds.
Elliott Hughes83df2ac2011-10-11 16:37:54 -0700437uint64_t NanoTime();
438
Elliott Hughes0512f022012-03-15 22:10:52 -0700439// Returns the thread-specific CPU-time clock in nanoseconds or -1 if unavailable.
440uint64_t ThreadCpuNanoTime();
441
Elliott Hughesbb551fa2012-01-25 16:35:29 -0800442// Converts the given number of nanoseconds to milliseconds.
Mathieu Chartier720ef762013-08-17 14:46:54 -0700443static constexpr inline uint64_t NsToMs(uint64_t ns) {
Ian Rogers3bb17a62012-01-27 23:56:44 -0800444 return ns / 1000 / 1000;
445}
446
447// Converts the given number of milliseconds to nanoseconds
Mathieu Chartier720ef762013-08-17 14:46:54 -0700448static constexpr inline uint64_t MsToNs(uint64_t ns) {
Ian Rogers3bb17a62012-01-27 23:56:44 -0800449 return ns * 1000 * 1000;
450}
451
Brian Carlstrombcc29262012-11-02 11:36:03 -0700452#if defined(__APPLE__)
453// No clocks to specify on OS/X, fake value to pass to routines that require a clock.
454#define CLOCK_REALTIME 0xebadf00d
455#endif
456
Ian Rogers56edc432013-01-18 16:51:51 -0800457// Sleep for the given number of nanoseconds, a bad way to handle contention.
458void NanoSleep(uint64_t ns);
459
Hans Boehm5567c112014-12-02 18:31:31 -0800460// Initialize a timespec to either a relative time (ms,ns), or to the absolute
461// time corresponding to the indicated clock value plus the supplied offset.
Brian Carlstrombcc29262012-11-02 11:36:03 -0700462void InitTimeSpec(bool absolute, int clock, int64_t ms, int32_t ns, timespec* ts);
463
Elliott Hughes48436bb2012-02-07 15:23:28 -0800464// Splits a string using the given separator character into a vector of
Elliott Hughes34023802011-08-30 12:06:17 -0700465// strings. Empty strings will be omitted.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700466void Split(const std::string& s, char separator, std::vector<std::string>* result);
Elliott Hughes48436bb2012-02-07 15:23:28 -0800467
Dave Allison70202782013-10-22 17:52:19 -0700468// Trims whitespace off both ends of the given string.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700469std::string Trim(const std::string& s);
Dave Allison70202782013-10-22 17:52:19 -0700470
Elliott Hughes48436bb2012-02-07 15:23:28 -0800471// Joins a vector of strings into a single string, using the given separator.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700472template <typename StringT> std::string Join(const std::vector<StringT>& strings, char separator);
Elliott Hughes34023802011-08-30 12:06:17 -0700473
Elliott Hughes42ee1422011-09-06 12:33:32 -0700474// Returns the calling thread's tid. (The C libraries don't expose this.)
475pid_t GetTid();
476
Elliott Hughes289be852012-06-12 13:57:20 -0700477// Returns the given thread's name.
478std::string GetThreadName(pid_t tid);
479
Ian Rogers120f1c72012-09-28 17:17:10 -0700480// Returns details of the given thread's stack.
Elliott Hughes6d3fc562014-08-27 11:47:01 -0700481void GetThreadStack(pthread_t thread, void** stack_base, size_t* stack_size, size_t* guard_size);
Elliott Hughese1884192012-04-23 12:38:15 -0700482
Elliott Hughesbfe487b2011-10-26 15:48:55 -0700483// Reads data from "/proc/self/task/${tid}/stat".
Brian Carlstrom29212012013-09-12 22:18:30 -0700484void GetTaskStats(pid_t tid, char* state, int* utime, int* stime, int* task_cpu);
Elliott Hughesbfe487b2011-10-26 15:48:55 -0700485
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700486// Returns the name of the scheduler group for the given thread the current process, or the empty string.
487std::string GetSchedulerGroupName(pid_t tid);
488
Elliott Hughesdcc24742011-09-07 14:02:44 -0700489// Sets the name of the current thread. The name may be truncated to an
490// implementation-defined limit.
Elliott Hughes22869a92012-03-27 14:08:24 -0700491void SetThreadName(const char* thread_name);
Elliott Hughesdcc24742011-09-07 14:02:44 -0700492
Elliott Hughes46e251b2012-05-22 15:10:45 -0700493// Dumps the native stack for thread 'tid' to 'os'.
Kenny Root067d20f2014-03-05 14:57:21 -0800494void DumpNativeStack(std::ostream& os, pid_t tid, const char* prefix = "",
Andreas Gampe628a61a2015-01-07 22:08:35 -0800495 mirror::ArtMethod* current_method = nullptr, void* ucontext = nullptr)
Kenny Root067d20f2014-03-05 14:57:21 -0800496 NO_THREAD_SAFETY_ANALYSIS;
Elliott Hughes46e251b2012-05-22 15:10:45 -0700497
498// Dumps the kernel stack for thread 'tid' to 'os'. Note that this is only available on linux-x86.
499void DumpKernelStack(std::ostream& os, pid_t tid, const char* prefix = "", bool include_count = true);
500
Dave Allison70202782013-10-22 17:52:19 -0700501// Find $ANDROID_ROOT, /system, or abort.
Brian Carlstroma56fcd62012-02-04 21:23:01 -0800502const char* GetAndroidRoot();
503
Dave Allison70202782013-10-22 17:52:19 -0700504// Find $ANDROID_DATA, /data, or abort.
Brian Carlstroma56fcd62012-02-04 21:23:01 -0800505const char* GetAndroidData();
Alex Lighta59dd802014-07-02 16:28:08 -0700506// Find $ANDROID_DATA, /data, or return nullptr.
507const char* GetAndroidDataSafe(std::string* error_msg);
Brian Carlstroma56fcd62012-02-04 21:23:01 -0800508
Narayan Kamath11d9f062014-04-23 20:24:57 +0100509// Returns the dalvik-cache location, or dies trying. subdir will be
510// appended to the cache location.
511std::string GetDalvikCacheOrDie(const char* subdir, bool create_if_absent = true);
Alex Lighta59dd802014-07-02 16:28:08 -0700512// Return true if we found the dalvik cache and stored it in the dalvik_cache argument.
513// have_android_data will be set to true if we have an ANDROID_DATA that exists,
514// dalvik_cache_exists will be true if there is a dalvik-cache directory that is present.
Andreas Gampe3c13a792014-09-18 20:56:04 -0700515// The flag is_global_cache tells whether this cache is /data/dalvik-cache.
Alex Lighta59dd802014-07-02 16:28:08 -0700516void GetDalvikCache(const char* subdir, bool create_if_absent, std::string* dalvik_cache,
Andreas Gampe3c13a792014-09-18 20:56:04 -0700517 bool* have_android_data, bool* dalvik_cache_exists, bool* is_global_cache);
Brian Carlstroma9f19782011-10-13 00:14:47 -0700518
Alex Lighta59dd802014-07-02 16:28:08 -0700519// Returns the absolute dalvik-cache path for a DexFile or OatFile. The path returned will be
520// rooted at cache_location.
521bool GetDalvikCacheFilename(const char* file_location, const char* cache_location,
522 std::string* filename, std::string* error_msg);
Narayan Kamath11d9f062014-04-23 20:24:57 +0100523// Returns the absolute dalvik-cache path for a DexFile or OatFile, or
524// dies trying. The path returned will be rooted at cache_location.
525std::string GetDalvikCacheFilenameOrDie(const char* file_location,
526 const char* cache_location);
jeffhao262bf462011-10-20 18:36:32 -0700527
Brian Carlstrom0e12bdc2014-05-14 17:44:28 -0700528// Returns the system location for an image
Brian Carlstrom2afe4942014-05-19 10:25:33 -0700529std::string GetSystemImageFilename(const char* location, InstructionSet isa);
Brian Carlstrom0e12bdc2014-05-14 17:44:28 -0700530
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -0700531// Check whether the given magic matches a known file type.
532bool IsZipMagic(uint32_t magic);
533bool IsDexMagic(uint32_t magic);
534bool IsOatMagic(uint32_t magic);
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700535
Brian Carlstrom6449c622014-02-10 23:48:36 -0800536// Wrapper on fork/execv to run a command in a subprocess.
537bool Exec(std::vector<std::string>& arg_vector, std::string* error_msg);
538
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800539class VoidFunctor {
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700540 public:
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800541 template <typename A>
Brian Carlstromdf629502013-07-17 22:39:56 -0700542 inline void operator() (A a) const {
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800543 UNUSED(a);
544 }
545
546 template <typename A, typename B>
Brian Carlstromdf629502013-07-17 22:39:56 -0700547 inline void operator() (A a, B b) const {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700548 UNUSED(a, b);
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800549 }
550
551 template <typename A, typename B, typename C>
Brian Carlstromdf629502013-07-17 22:39:56 -0700552 inline void operator() (A a, B b, C c) const {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700553 UNUSED(a, b, c);
Mathieu Chartierd22d5482012-11-06 17:14:12 -0800554 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700555};
556
Vladimir Marko80b96d12015-02-19 15:50:28 +0000557template <typename Alloc>
558void Push32(std::vector<uint8_t, Alloc>* buf, int32_t data) {
559 buf->push_back(data & 0xff);
560 buf->push_back((data >> 8) & 0xff);
561 buf->push_back((data >> 16) & 0xff);
562 buf->push_back((data >> 24) & 0xff);
563}
Tong Shen547cdfd2014-08-05 01:54:19 -0700564
565void EncodeUnsignedLeb128(uint32_t data, std::vector<uint8_t>* buf);
566void EncodeSignedLeb128(int32_t data, std::vector<uint8_t>* buf);
567
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100568// Deleter using free() for use with std::unique_ptr<>. See also UniqueCPtr<> below.
569struct FreeDelete {
570 // NOTE: Deleting a const object is valid but free() takes a non-const pointer.
571 void operator()(const void* ptr) const {
572 free(const_cast<void*>(ptr));
573 }
574};
575
576// Alias for std::unique_ptr<> that uses the C function free() to delete objects.
577template <typename T>
578using UniqueCPtr = std::unique_ptr<T, FreeDelete>;
579
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800580// C++14 from-the-future import (std::make_unique)
581// Invoke the constructor of 'T' with the provided args, and wrap the result in a unique ptr.
582template <typename T, typename ... Args>
583std::unique_ptr<T> MakeUnique(Args&& ... args) {
584 return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
585}
586
Carl Shapiro6b6b5f02011-06-21 15:05:09 -0700587} // namespace art
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -0700588
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700589#endif // ART_RUNTIME_UTILS_H_