You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
177 lines
5.3 KiB
177 lines
5.3 KiB
/*
|
|
* Copyright (C) 2011 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef ART_LIBARTBASE_BASE_UTILS_H_
|
|
#define ART_LIBARTBASE_BASE_UTILS_H_
|
|
|
|
#include <pthread.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <random>
|
|
#include <string>
|
|
|
|
#include <android-base/logging.h>
|
|
#include <android-base/parseint.h>
|
|
|
|
#include "casts.h"
|
|
#include "enums.h"
|
|
#include "globals.h"
|
|
#include "macros.h"
|
|
|
|
namespace art {
|
|
|
|
static inline uint32_t PointerToLowMemUInt32(const void* p) {
|
|
uintptr_t intp = reinterpret_cast<uintptr_t>(p);
|
|
DCHECK_LE(intp, 0xFFFFFFFFU);
|
|
return intp & 0xFFFFFFFFU;
|
|
}
|
|
|
|
// Returns a human-readable size string such as "1MB".
|
|
std::string PrettySize(uint64_t size_in_bytes);
|
|
|
|
// Splits a string using the given separator character into a vector of
|
|
// strings. Empty strings will be omitted.
|
|
template<typename StrIn, typename Str>
|
|
void Split(const StrIn& s, char separator, std::vector<Str>* out_result);
|
|
|
|
template<typename Str>
|
|
void Split(const Str& s, char separator, size_t len, Str* out_result);
|
|
|
|
template<typename StrIn, typename Str, size_t kLen>
|
|
void Split(const StrIn& s, char separator, std::array<Str, kLen>* out_result) {
|
|
Split<Str>(Str(s), separator, kLen, &((*out_result)[0]));
|
|
}
|
|
|
|
// Returns the calling thread's tid. (The C libraries don't expose this.)
|
|
uint32_t GetTid();
|
|
|
|
// Returns the given thread's name.
|
|
std::string GetThreadName(pid_t tid);
|
|
|
|
// Sets the name of the current thread. The name may be truncated to an
|
|
// implementation-defined limit.
|
|
void SetThreadName(const char* thread_name);
|
|
|
|
// Reads data from "/proc/self/task/${tid}/stat".
|
|
void GetTaskStats(pid_t tid, char* state, int* utime, int* stime, int* task_cpu);
|
|
|
|
class VoidFunctor {
|
|
public:
|
|
template <typename A>
|
|
inline void operator() (A a ATTRIBUTE_UNUSED) const {
|
|
}
|
|
|
|
template <typename A, typename B>
|
|
inline void operator() (A a ATTRIBUTE_UNUSED, B b ATTRIBUTE_UNUSED) const {
|
|
}
|
|
|
|
template <typename A, typename B, typename C>
|
|
inline void operator() (A a ATTRIBUTE_UNUSED, B b ATTRIBUTE_UNUSED, C c ATTRIBUTE_UNUSED) const {
|
|
}
|
|
};
|
|
|
|
inline bool TestBitmap(size_t idx, const uint8_t* bitmap) {
|
|
return ((bitmap[idx / kBitsPerByte] >> (idx % kBitsPerByte)) & 0x01) != 0;
|
|
}
|
|
|
|
static inline constexpr bool ValidPointerSize(size_t pointer_size) {
|
|
return pointer_size == 4 || pointer_size == 8;
|
|
}
|
|
|
|
static inline const void* EntryPointToCodePointer(const void* entry_point) {
|
|
uintptr_t code = reinterpret_cast<uintptr_t>(entry_point);
|
|
// TODO: Make this Thumb2 specific. It is benign on other architectures as code is always at
|
|
// least 2 byte aligned.
|
|
code &= ~0x1;
|
|
return reinterpret_cast<const void*>(code);
|
|
}
|
|
|
|
#if defined(__BIONIC__)
|
|
struct Arc4RandomGenerator {
|
|
typedef uint32_t result_type;
|
|
static constexpr uint32_t min() { return std::numeric_limits<uint32_t>::min(); }
|
|
static constexpr uint32_t max() { return std::numeric_limits<uint32_t>::max(); }
|
|
uint32_t operator() () { return arc4random(); }
|
|
};
|
|
using RNG = Arc4RandomGenerator;
|
|
#else
|
|
using RNG = std::random_device;
|
|
#endif
|
|
|
|
template <typename T>
|
|
static T GetRandomNumber(T min, T max) {
|
|
CHECK_LT(min, max);
|
|
std::uniform_int_distribution<T> dist(min, max);
|
|
RNG rng;
|
|
return dist(rng);
|
|
}
|
|
|
|
// Sleep forever and never come back.
|
|
NO_RETURN void SleepForever();
|
|
|
|
// Flush CPU caches. Returns true on success, false if flush failed.
|
|
WARN_UNUSED bool FlushCpuCaches(void* begin, void* end);
|
|
|
|
// On some old kernels, a cache operation may segfault.
|
|
WARN_UNUSED bool CacheOperationsMaySegFault();
|
|
|
|
template <typename T>
|
|
constexpr PointerSize ConvertToPointerSize(T any) {
|
|
if (any == 4 || any == 8) {
|
|
return static_cast<PointerSize>(any);
|
|
} else {
|
|
LOG(FATAL);
|
|
UNREACHABLE();
|
|
}
|
|
}
|
|
|
|
// Return -1 if <, 0 if ==, 1 if >.
|
|
template <typename T>
|
|
inline static int32_t Compare(T lhs, T rhs) {
|
|
return (lhs < rhs) ? -1 : ((lhs == rhs) ? 0 : 1);
|
|
}
|
|
|
|
// Return -1 if < 0, 0 if == 0, 1 if > 0.
|
|
template <typename T>
|
|
inline static int32_t Signum(T opnd) {
|
|
return (opnd < 0) ? -1 : ((opnd == 0) ? 0 : 1);
|
|
}
|
|
|
|
template <typename Func, typename... Args>
|
|
static inline void CheckedCall(const Func& function, const char* what, Args... args) {
|
|
int rc = function(args...);
|
|
if (UNLIKELY(rc != 0)) {
|
|
PLOG(FATAL) << "Checked call failed for " << what;
|
|
}
|
|
}
|
|
|
|
// Lookup value for a given key in /proc/self/status. Keys and values are separated by a ':' in
|
|
// the status file. Returns value found on success and "<unknown>" if the key is not found or
|
|
// there is an I/O error.
|
|
std::string GetProcessStatus(const char* key);
|
|
|
|
// Return whether the address is guaranteed to be backed by a file or is shared.
|
|
// This information can be used to know whether MADV_DONTNEED will make
|
|
// following accesses repopulate the memory or return zero.
|
|
bool IsAddressKnownBackedByFileOrShared(const void* addr);
|
|
|
|
// Returns the number of threads running.
|
|
int GetTaskCount();
|
|
|
|
} // namespace art
|
|
|
|
#endif // ART_LIBARTBASE_BASE_UTILS_H_
|