Carl Shapiro | a5d5cfd | 2011-06-21 12:46:59 -0700 | [diff] [blame] | 1 | // Copyright 2011 Google Inc. All Rights Reserved. |
| 2 | |
| 3 | #ifndef ART_SRC_UTILS_H_ |
| 4 | #define ART_SRC_UTILS_H_ |
| 5 | |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 6 | #include "globals.h" |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 7 | #include "logging.h" |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 8 | #include "stringpiece.h" |
Elliott Hughes | c7ac37f | 2011-08-12 12:21:58 -0700 | [diff] [blame] | 9 | #include "stringprintf.h" |
Carl Shapiro | a5d5cfd | 2011-06-21 12:46:59 -0700 | [diff] [blame] | 10 | |
Carl Shapiro | 6b6b5f0 | 2011-06-21 15:05:09 -0700 | [diff] [blame] | 11 | namespace art { |
Carl Shapiro | a5d5cfd | 2011-06-21 12:46:59 -0700 | [diff] [blame] | 12 | |
Elliott Hughes | a0b8feb | 2011-08-20 09:50:55 -0700 | [diff] [blame] | 13 | class Method; |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 14 | class Object; |
Elliott Hughes | 5174fe6 | 2011-08-23 15:12:35 -0700 | [diff] [blame] | 15 | class String; |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 16 | |
Carl Shapiro | a2e18e1 | 2011-06-21 18:57:55 -0700 | [diff] [blame] | 17 | template<typename T> |
| 18 | static inline bool IsPowerOfTwo(T x) { |
| 19 | return (x & (x - 1)) == 0; |
| 20 | } |
| 21 | |
Carl Shapiro | a2e18e1 | 2011-06-21 18:57:55 -0700 | [diff] [blame] | 22 | template<typename T> |
| 23 | static inline bool IsAligned(T x, int n) { |
| 24 | CHECK(IsPowerOfTwo(n)); |
| 25 | return (x & (n - 1)) == 0; |
| 26 | } |
| 27 | |
Carl Shapiro | a2e18e1 | 2011-06-21 18:57:55 -0700 | [diff] [blame] | 28 | template<typename T> |
| 29 | static inline bool IsAligned(T* x, int n) { |
| 30 | return IsAligned(reinterpret_cast<uintptr_t>(x), n); |
| 31 | } |
| 32 | |
Carl Shapiro | a5d5cfd | 2011-06-21 12:46:59 -0700 | [diff] [blame] | 33 | // Check whether an N-bit two's-complement representation can hold value. |
| 34 | static inline bool IsInt(int N, word value) { |
| 35 | CHECK_LT(0, N); |
| 36 | CHECK_LT(N, kBitsPerWord); |
| 37 | word limit = static_cast<word>(1) << (N - 1); |
| 38 | return (-limit <= value) && (value < limit); |
| 39 | } |
| 40 | |
Carl Shapiro | a5d5cfd | 2011-06-21 12:46:59 -0700 | [diff] [blame] | 41 | static inline bool IsUint(int N, word value) { |
| 42 | CHECK_LT(0, N); |
| 43 | CHECK_LT(N, kBitsPerWord); |
| 44 | word limit = static_cast<word>(1) << N; |
| 45 | return (0 <= value) && (value < limit); |
| 46 | } |
| 47 | |
Carl Shapiro | a2e18e1 | 2011-06-21 18:57:55 -0700 | [diff] [blame] | 48 | static inline bool IsAbsoluteUint(int N, word value) { |
| 49 | CHECK_LT(0, N); |
| 50 | CHECK_LT(N, kBitsPerWord); |
| 51 | if (value < 0) value = -value; |
| 52 | return IsUint(N, value); |
| 53 | } |
| 54 | |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 55 | static inline int32_t Low16Bits(int32_t value) { |
| 56 | return static_cast<int32_t>(value & 0xffff); |
| 57 | } |
| 58 | |
| 59 | static inline int32_t High16Bits(int32_t value) { |
| 60 | return static_cast<int32_t>(value >> 16); |
| 61 | } |
Carl Shapiro | a2e18e1 | 2011-06-21 18:57:55 -0700 | [diff] [blame] | 62 | |
Carl Shapiro | a5d5cfd | 2011-06-21 12:46:59 -0700 | [diff] [blame] | 63 | static inline int32_t Low32Bits(int64_t value) { |
| 64 | return static_cast<int32_t>(value); |
| 65 | } |
| 66 | |
Carl Shapiro | a5d5cfd | 2011-06-21 12:46:59 -0700 | [diff] [blame] | 67 | static inline int32_t High32Bits(int64_t value) { |
| 68 | return static_cast<int32_t>(value >> 32); |
| 69 | } |
| 70 | |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 71 | template<typename T> |
| 72 | static inline T RoundDown(T x, int n) { |
| 73 | CHECK(IsPowerOfTwo(n)); |
| 74 | return (x & -n); |
| 75 | } |
| 76 | |
| 77 | template<typename T> |
| 78 | static inline T RoundUp(T x, int n) { |
| 79 | return RoundDown(x + n - 1, n); |
| 80 | } |
| 81 | |
Carl Shapiro | a2e18e1 | 2011-06-21 18:57:55 -0700 | [diff] [blame] | 82 | // Implementation is from "Hacker's Delight" by Henry S. Warren, Jr., |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 83 | // figure 3-3, page 48, where the function is called clp2. |
| 84 | static inline uint32_t RoundUpToPowerOfTwo(uint32_t x) { |
| 85 | x = x - 1; |
| 86 | x = x | (x >> 1); |
| 87 | x = x | (x >> 2); |
| 88 | x = x | (x >> 4); |
| 89 | x = x | (x >> 8); |
| 90 | x = x | (x >> 16); |
| 91 | return x + 1; |
| 92 | } |
| 93 | |
| 94 | // Implementation is from "Hacker's Delight" by Henry S. Warren, Jr., |
Carl Shapiro | a2e18e1 | 2011-06-21 18:57:55 -0700 | [diff] [blame] | 95 | // figure 5-2, page 66, where the function is called pop. |
| 96 | static inline int CountOneBits(uint32_t x) { |
| 97 | x = x - ((x >> 1) & 0x55555555); |
| 98 | x = (x & 0x33333333) + ((x >> 2) & 0x33333333); |
| 99 | x = (x + (x >> 4)) & 0x0F0F0F0F; |
| 100 | x = x + (x >> 8); |
| 101 | x = x + (x >> 16); |
| 102 | return static_cast<int>(x & 0x0000003F); |
| 103 | } |
| 104 | |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 105 | #define CLZ(x) __builtin_clz(x) |
| 106 | |
Elliott Hughes | 46b92ba | 2011-08-12 17:57:34 -0700 | [diff] [blame] | 107 | static inline bool NeedsEscaping(uint16_t ch) { |
| 108 | return (ch < ' ' || ch > '~'); |
| 109 | } |
| 110 | |
Elliott Hughes | c7ac37f | 2011-08-12 12:21:58 -0700 | [diff] [blame] | 111 | static inline std::string PrintableChar(uint16_t ch) { |
| 112 | std::string result; |
Elliott Hughes | 46b92ba | 2011-08-12 17:57:34 -0700 | [diff] [blame] | 113 | result += '\''; |
| 114 | if (NeedsEscaping(ch)) { |
| 115 | StringAppendF(&result, "\\u%04x", ch); |
| 116 | } else { |
Elliott Hughes | c7ac37f | 2011-08-12 12:21:58 -0700 | [diff] [blame] | 117 | result += ch; |
Elliott Hughes | c7ac37f | 2011-08-12 12:21:58 -0700 | [diff] [blame] | 118 | } |
Elliott Hughes | 46b92ba | 2011-08-12 17:57:34 -0700 | [diff] [blame] | 119 | result += '\''; |
Elliott Hughes | c7ac37f | 2011-08-12 12:21:58 -0700 | [diff] [blame] | 120 | return result; |
| 121 | } |
| 122 | |
Elliott Hughes | 46b92ba | 2011-08-12 17:57:34 -0700 | [diff] [blame] | 123 | // TODO: assume the content is UTF-8, and show code point escapes? |
Elliott Hughes | c7ac37f | 2011-08-12 12:21:58 -0700 | [diff] [blame] | 124 | template<typename StringT> |
| 125 | static inline std::string PrintableString(const StringT& s) { |
| 126 | std::string result; |
| 127 | result += '"'; |
Elliott Hughes | b465ab0 | 2011-08-24 11:21:21 -0700 | [diff] [blame] | 128 | for (typename StringT::const_iterator it = s.begin(); it != s.end(); ++it) { |
Elliott Hughes | c7ac37f | 2011-08-12 12:21:58 -0700 | [diff] [blame] | 129 | char ch = *it; |
Elliott Hughes | 46b92ba | 2011-08-12 17:57:34 -0700 | [diff] [blame] | 130 | if (NeedsEscaping(ch)) { |
Elliott Hughes | c7ac37f | 2011-08-12 12:21:58 -0700 | [diff] [blame] | 131 | StringAppendF(&result, "\\x%02x", ch & 0xff); |
Elliott Hughes | 46b92ba | 2011-08-12 17:57:34 -0700 | [diff] [blame] | 132 | } else { |
| 133 | result += ch; |
Elliott Hughes | c7ac37f | 2011-08-12 12:21:58 -0700 | [diff] [blame] | 134 | } |
| 135 | } |
| 136 | result += '"'; |
| 137 | return result; |
| 138 | } |
| 139 | |
Elliott Hughes | a0b8feb | 2011-08-20 09:50:55 -0700 | [diff] [blame] | 140 | // Returns a human-readable equivalent of 'descriptor'. So "I" would be "int", |
| 141 | // "[[I" would be "int[][]", "[Ljava/lang/String;" would be |
| 142 | // "java.lang.String[]", and so forth. |
Elliott Hughes | 5174fe6 | 2011-08-23 15:12:35 -0700 | [diff] [blame] | 143 | std::string PrettyDescriptor(const String* descriptor); |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 144 | |
Elliott Hughes | a0b8feb | 2011-08-20 09:50:55 -0700 | [diff] [blame] | 145 | // Returns a human-readable signature for 'm'. Something like "a.b.C.m" or |
| 146 | // "a.b.C.m(II)V" (depending on the value of 'with_signature'). |
| 147 | std::string PrettyMethod(const Method* m, bool with_signature); |
| 148 | |
| 149 | // Returns a human-readable form of the name of the *class* of the given object. |
| 150 | // So given an instance of java.lang.String, the output would |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 151 | // be "java.lang.String". Given an array of int, the output would be "int[]". |
| 152 | // Given String.class, the output would be "java.lang.Class<java.lang.String>". |
| 153 | std::string PrettyType(const Object* obj); |
| 154 | |
Elliott Hughes | 79082e3 | 2011-08-25 12:07:32 -0700 | [diff] [blame] | 155 | // Performs JNI name mangling as described in section 11.3 "Linking Native Methods" |
| 156 | // of the JNI spec. |
| 157 | std::string MangleForJni(const std::string& s); |
| 158 | |
| 159 | // Returns the JNI native function name for the non-overloaded method 'm'. |
| 160 | std::string JniShortName(const Method* m); |
| 161 | // Returns the JNI native function name for the overloaded method 'm'. |
| 162 | std::string JniLongName(const Method* m); |
| 163 | |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 164 | std::string ReadFileToString(const char* file_name); |
| 165 | |
Carl Shapiro | 6b6b5f0 | 2011-06-21 15:05:09 -0700 | [diff] [blame] | 166 | } // namespace art |
Carl Shapiro | a5d5cfd | 2011-06-21 12:46:59 -0700 | [diff] [blame] | 167 | |
| 168 | #endif // ART_SRC_UTILS_H_ |