diff options
Diffstat (limited to 'runtime/utils.h')
| -rw-r--r-- | runtime/utils.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/runtime/utils.h b/runtime/utils.h index f96ddd7829..94738d29ce 100644 --- a/runtime/utils.h +++ b/runtime/utils.h @@ -36,12 +36,8 @@ #include "obj_ptr.h" #include "primitive.h" -class BacktraceMap; - namespace art { -class DexFile; - template <typename T> bool ParseUint(const char *in, T* out) { char* end; @@ -274,8 +270,6 @@ static inline constexpr bool ValidPointerSize(size_t pointer_size) { return pointer_size == 4 || pointer_size == 8; } -void DumpMethodCFG(const DexFile* dex_file, uint32_t dex_method_idx, std::ostream& os); - 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 |