summaryrefslogtreecommitdiff
path: root/src/native/java_lang_String.cc
diff options
context:
space:
mode:
author Ian Rogers <irogers@google.com> 2012-04-14 13:55:11 -0700
committer Ian Rogers <irogers@google.com> 2012-04-14 13:55:11 -0700
commit0dae08ead9112adb81ad507b81187f00f77bc168 (patch)
tree5c09e5ab16fa544360e6354796f999cfeaf991e7 /src/native/java_lang_String.cc
parent776ac1fa61237db645adb4370a4aab888530caf4 (diff)
Move JNI methods out of top-level.
Change-Id: Ia9c883ba9a13b205cda7b72024e2939f02583acb
Diffstat (limited to 'src/native/java_lang_String.cc')
-rw-r--r--src/native/java_lang_String.cc114
1 files changed, 114 insertions, 0 deletions
diff --git a/src/native/java_lang_String.cc b/src/native/java_lang_String.cc
new file mode 100644
index 0000000000..49bf234e00
--- /dev/null
+++ b/src/native/java_lang_String.cc
@@ -0,0 +1,114 @@
+/*
+ * Copyright (C) 2008 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.
+ */
+
+#include "jni_internal.h"
+#include "object.h"
+
+#include "JniConstants.h" // Last to avoid problems with LOG redefinition.
+
+#ifdef HAVE__MEMCMP16
+// "count" is in 16-bit units.
+extern "C" uint32_t __memcmp16(const uint16_t* s0, const uint16_t* s1, size_t count);
+#define MemCmp16 __memcmp16
+#else
+uint32_t MemCmp16(const uint16_t* s0, const uint16_t* s1, size_t count) {
+ for (size_t i = 0; i < count; i++) {
+ if (s0[i] != s1[i]) {
+ return static_cast<int32_t>(s0[i]) - static_cast<int32_t>(s1[i]);
+ }
+ }
+ return 0;
+}
+#endif
+
+namespace art {
+
+static jint String_compareTo(JNIEnv* env, jobject javaThis, jobject javaRhs) {
+ ScopedThreadStateChange tsc(Thread::Current(), kRunnable);
+ String* lhs = Decode<String*>(env, javaThis);
+ String* rhs = Decode<String*>(env, javaRhs);
+
+ if (rhs == NULL) {
+ Thread::Current()->ThrowNewException("Ljava/lang/NullPointerException;", "rhs == null");
+ return -1;
+ }
+
+ // Quick test for comparison of a string with itself.
+ if (lhs == rhs) {
+ return 0;
+ }
+
+ // TODO: is this still true?
+ // The annoying part here is that 0x00e9 - 0xffff != 0x00ea,
+ // because the interpreter converts the characters to 32-bit integers
+ // *without* sign extension before it subtracts them (which makes some
+ // sense since "char" is unsigned). So what we get is the result of
+ // 0x000000e9 - 0x0000ffff, which is 0xffff00ea.
+ int lhsCount = lhs->GetLength();
+ int rhsCount = rhs->GetLength();
+ int countDiff = lhsCount - rhsCount;
+ int minCount = (countDiff < 0) ? lhsCount : rhsCount;
+ const uint16_t* lhsChars = lhs->GetCharArray()->GetData() + lhs->GetOffset();
+ const uint16_t* rhsChars = rhs->GetCharArray()->GetData() + rhs->GetOffset();
+ int otherRes = MemCmp16(lhsChars, rhsChars, minCount);
+ if (otherRes != 0) {
+ return otherRes;
+ }
+ return countDiff;
+}
+
+static jint String_fastIndexOf(JNIEnv* env, jobject java_this, jint ch, jint start) {
+ // This method does not handle supplementary characters. They're dealt with in managed code.
+ DCHECK_LE(ch, 0xffff);
+
+ String* s = Decode<String*>(env, java_this);
+
+ jint count = s->GetLength();
+ if (start < 0) {
+ start = 0;
+ } else if (start > count) {
+ start = count;
+ }
+
+ const uint16_t* chars = s->GetCharArray()->GetData() + s->GetOffset();
+ const uint16_t* p = chars + start;
+ const uint16_t* end = chars + count;
+ while (p < end) {
+ if (*p++ == ch) {
+ return (p - 1) - chars;
+ }
+ }
+
+ return -1;
+}
+
+static jstring String_intern(JNIEnv* env, jobject javaThis) {
+ String* s = Decode<String*>(env, javaThis);
+ String* result = s->Intern();
+ return AddLocalReference<jstring>(env, result);
+}
+
+static JNINativeMethod gMethods[] = {
+ NATIVE_METHOD(String, compareTo, "(Ljava/lang/String;)I"),
+ NATIVE_METHOD(String, fastIndexOf, "(II)I"),
+ NATIVE_METHOD(String, intern, "()Ljava/lang/String;"),
+};
+
+void register_java_lang_String(JNIEnv* env) {
+ jniRegisterNativeMethods(env, "java/lang/String", gMethods, NELEM(gMethods));
+}
+
+} // namespace art