blob: 6a0c2250223cf3e41d22e2d1118b62a3d7076d25 [file] [log] [blame]
Ian Rogers2dd0e2c2013-01-24 12:42:14 -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 */
16
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070017#include "string-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080018
19#include "array.h"
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -070020#include "class-inl.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070021#include "gc/accounting/card_table-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080022#include "intern_table.h"
23#include "object-inl.h"
24#include "runtime.h"
25#include "sirt_ref.h"
26#include "thread.h"
Ian Rogersa6724902013-09-23 09:23:37 -070027#include "utf-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080028
29namespace art {
30namespace mirror {
31
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070032// TODO: get global references for these
33Class* String::java_lang_String_ = NULL;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080034
Ian Rogersef7d42f2014-01-06 12:55:46 -080035int32_t String::FastIndexOf(int32_t ch, int32_t start) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080036 int32_t count = GetLength();
37 if (start < 0) {
38 start = 0;
39 } else if (start > count) {
40 start = count;
41 }
42 const uint16_t* chars = GetCharArray()->GetData() + GetOffset();
43 const uint16_t* p = chars + start;
44 const uint16_t* end = chars + count;
45 while (p < end) {
46 if (*p++ == ch) {
47 return (p - 1) - chars;
48 }
49 }
50 return -1;
51}
52
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080053void String::SetClass(Class* java_lang_String) {
54 CHECK(java_lang_String_ == NULL);
55 CHECK(java_lang_String != NULL);
56 java_lang_String_ = java_lang_String;
57}
58
59void String::ResetClass() {
60 CHECK(java_lang_String_ != NULL);
61 java_lang_String_ = NULL;
62}
63
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080064int32_t String::GetHashCode() {
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070065 int32_t result = GetField32(OFFSET_OF_OBJECT_MEMBER(String, hash_code_));
66 if (UNLIKELY(result == 0)) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080067 ComputeHashCode();
68 }
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070069 result = GetField32(OFFSET_OF_OBJECT_MEMBER(String, hash_code_));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080070 DCHECK(result != 0 || ComputeUtf16Hash(GetCharArray(), GetOffset(), GetLength()) == 0)
71 << ToModifiedUtf8() << " " << result;
72 return result;
73}
74
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070075void String::ComputeHashCode() {
76 SetHashCode(ComputeUtf16Hash(GetCharArray(), GetOffset(), GetLength()));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080077}
78
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070079int32_t String::GetUtfLength() {
80 return CountUtf8Bytes(GetCharArray()->GetData() + GetOffset(), GetLength());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080081}
82
83String* String::AllocFromUtf16(Thread* self,
84 int32_t utf16_length,
85 const uint16_t* utf16_data_in,
86 int32_t hash_code) {
Ian Rogers4069d332014-01-03 10:28:27 -080087 CHECK(utf16_data_in != nullptr || utf16_length == 0);
Mathieu Chartierc528dba2013-11-26 12:00:11 -080088 String* string = Alloc(self, utf16_length);
Mathieu Chartier590fee92013-09-13 13:46:47 -070089 if (UNLIKELY(string == nullptr)) {
90 return nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080091 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080092 CharArray* array = const_cast<CharArray*>(string->GetCharArray());
Ian Rogers4069d332014-01-03 10:28:27 -080093 if (UNLIKELY(array == nullptr)) {
94 return nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080095 }
Ian Rogers4069d332014-01-03 10:28:27 -080096 memcpy(array->GetData(), utf16_data_in, utf16_length * sizeof(uint16_t));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080097 if (hash_code != 0) {
Ian Rogers4069d332014-01-03 10:28:27 -080098 DCHECK_EQ(hash_code, ComputeUtf16Hash(utf16_data_in, utf16_length));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080099 string->SetHashCode(hash_code);
100 } else {
101 string->ComputeHashCode();
102 }
103 return string;
104}
105
Ian Rogersa436fde2013-08-27 23:34:06 -0700106String* String::AllocFromModifiedUtf8(Thread* self, const char* utf) {
Mathieu Chartiered0fc1d2014-03-21 14:09:35 -0700107 DCHECK(utf != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800108 size_t char_count = CountModifiedUtf8Chars(utf);
109 return AllocFromModifiedUtf8(self, char_count, utf);
110}
111
112String* String::AllocFromModifiedUtf8(Thread* self, int32_t utf16_length,
113 const char* utf8_data_in) {
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800114 String* string = Alloc(self, utf16_length);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700115 if (UNLIKELY(string == nullptr)) {
116 return nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800117 }
118 uint16_t* utf16_data_out =
119 const_cast<uint16_t*>(string->GetCharArray()->GetData());
120 ConvertModifiedUtf8ToUtf16(utf16_data_out, utf8_data_in);
121 string->ComputeHashCode();
122 return string;
123}
124
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800125String* String::Alloc(Thread* self, int32_t utf16_length) {
126 SirtRef<CharArray> array(self, CharArray::Alloc(self, utf16_length));
127 if (UNLIKELY(array.get() == nullptr)) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700128 return nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800129 }
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800130 return Alloc(self, array);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800131}
132
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800133String* String::Alloc(Thread* self, const SirtRef<CharArray>& array) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800134 // Hold reference in case AllocObject causes GC.
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800135 String* string = down_cast<String*>(GetJavaLangString()->AllocObject(self));
Mathieu Chartier590fee92013-09-13 13:46:47 -0700136 if (LIKELY(string != nullptr)) {
Sebastien Hertzee1d79a2014-02-21 15:46:30 +0100137 string->SetArray(array.get());
138 string->SetCount(array->GetLength());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800139 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800140 return string;
141}
142
Ian Rogersef7d42f2014-01-06 12:55:46 -0800143bool String::Equals(String* that) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800144 if (this == that) {
145 // Quick reference equality test
146 return true;
147 } else if (that == NULL) {
148 // Null isn't an instanceof anything
149 return false;
150 } else if (this->GetLength() != that->GetLength()) {
151 // Quick length inequality test
152 return false;
153 } else {
154 // Note: don't short circuit on hash code as we're presumably here as the
155 // hash code was already equal
156 for (int32_t i = 0; i < that->GetLength(); ++i) {
157 if (this->CharAt(i) != that->CharAt(i)) {
158 return false;
159 }
160 }
161 return true;
162 }
163}
164
Ian Rogersef7d42f2014-01-06 12:55:46 -0800165bool String::Equals(const uint16_t* that_chars, int32_t that_offset, int32_t that_length) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800166 if (this->GetLength() != that_length) {
167 return false;
168 } else {
169 for (int32_t i = 0; i < that_length; ++i) {
170 if (this->CharAt(i) != that_chars[that_offset + i]) {
171 return false;
172 }
173 }
174 return true;
175 }
176}
177
Ian Rogersef7d42f2014-01-06 12:55:46 -0800178bool String::Equals(const char* modified_utf8) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800179 for (int32_t i = 0; i < GetLength(); ++i) {
180 uint16_t ch = GetUtf16FromUtf8(&modified_utf8);
181 if (ch == '\0' || ch != CharAt(i)) {
182 return false;
183 }
184 }
185 return *modified_utf8 == '\0';
186}
187
Ian Rogersef7d42f2014-01-06 12:55:46 -0800188bool String::Equals(const StringPiece& modified_utf8) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800189 const char* p = modified_utf8.data();
190 for (int32_t i = 0; i < GetLength(); ++i) {
191 uint16_t ch = GetUtf16FromUtf8(&p);
192 if (ch != CharAt(i)) {
193 return false;
194 }
195 }
196 return true;
197}
198
199// Create a modified UTF-8 encoded std::string from a java/lang/String object.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800200std::string String::ToModifiedUtf8() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800201 const uint16_t* chars = GetCharArray()->GetData() + GetOffset();
202 size_t byte_count = GetUtfLength();
203 std::string result(byte_count, static_cast<char>(0));
204 ConvertUtf16ToModifiedUtf8(&result[0], chars, GetLength());
205 return result;
206}
207
208#ifdef HAVE__MEMCMP16
209// "count" is in 16-bit units.
210extern "C" uint32_t __memcmp16(const uint16_t* s0, const uint16_t* s1, size_t count);
211#define MemCmp16 __memcmp16
212#else
213static uint32_t MemCmp16(const uint16_t* s0, const uint16_t* s1, size_t count) {
214 for (size_t i = 0; i < count; i++) {
215 if (s0[i] != s1[i]) {
216 return static_cast<int32_t>(s0[i]) - static_cast<int32_t>(s1[i]);
217 }
218 }
219 return 0;
220}
221#endif
222
Ian Rogersef7d42f2014-01-06 12:55:46 -0800223int32_t String::CompareTo(String* rhs) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800224 // Quick test for comparison of a string with itself.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800225 String* lhs = this;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800226 if (lhs == rhs) {
227 return 0;
228 }
229 // TODO: is this still true?
230 // The annoying part here is that 0x00e9 - 0xffff != 0x00ea,
231 // because the interpreter converts the characters to 32-bit integers
232 // *without* sign extension before it subtracts them (which makes some
233 // sense since "char" is unsigned). So what we get is the result of
234 // 0x000000e9 - 0x0000ffff, which is 0xffff00ea.
235 int lhsCount = lhs->GetLength();
236 int rhsCount = rhs->GetLength();
237 int countDiff = lhsCount - rhsCount;
238 int minCount = (countDiff < 0) ? lhsCount : rhsCount;
239 const uint16_t* lhsChars = lhs->GetCharArray()->GetData() + lhs->GetOffset();
240 const uint16_t* rhsChars = rhs->GetCharArray()->GetData() + rhs->GetOffset();
241 int otherRes = MemCmp16(lhsChars, rhsChars, minCount);
242 if (otherRes != 0) {
243 return otherRes;
244 }
245 return countDiff;
246}
247
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800248void String::VisitRoots(RootCallback* callback, void* arg) {
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800249 if (java_lang_String_ != nullptr) {
Mathieu Chartier815873e2014-02-13 18:02:13 -0800250 callback(reinterpret_cast<mirror::Object**>(&java_lang_String_), arg, 0, kRootStickyClass);
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800251 }
252}
253
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800254} // namespace mirror
255} // namespace art