- 论坛徽章:
- 31
|
- //android的String类
- /*
- * public int compareTo(String s)
- */
- bool javaLangString_compareTo(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
- JValue* pResult)
- {
- /*
- * Null reference check on "this". Normally this is performed during
- * the setup of the virtual method call. We need to do it before
- * anything else. While we're at it, check out the other string,
- * which must also be non-null.
- */
- if ((Object*) arg0 == NULL || (Object*) arg1 == NULL) {
- dvmThrowNullPointerException(NULL);
- return false;
- }
- /* quick test for comparison with itself */
- if (arg0 == arg1) {
- pResult->i = 0;
- return true;
- }
- /*
- * This would be simpler and faster if we promoted StringObject to
- * a full representation, lining up the C structure fields with the
- * actual object fields.
- */
- int thisCount, thisOffset, compCount, compOffset;
- ArrayObject* thisArray;
- ArrayObject* compArray;
- const u2* thisChars;
- const u2* compChars;
- int minCount, countDiff;
- thisCount = dvmGetFieldInt((Object*) arg0, STRING_FIELDOFF_COUNT);
- compCount = dvmGetFieldInt((Object*) arg1, STRING_FIELDOFF_COUNT);
- countDiff = thisCount - compCount;
- minCount = (countDiff < 0) ? thisCount : compCount;
- thisOffset = dvmGetFieldInt((Object*) arg0, STRING_FIELDOFF_OFFSET);
- compOffset = dvmGetFieldInt((Object*) arg1, STRING_FIELDOFF_OFFSET);
- thisArray = (ArrayObject*)
- dvmGetFieldObject((Object*) arg0, STRING_FIELDOFF_VALUE);
- compArray = (ArrayObject*)
- dvmGetFieldObject((Object*) arg1, STRING_FIELDOFF_VALUE);
- thisChars = ((const u2*)(void*)thisArray->contents) + thisOffset;
- compChars = ((const u2*)(void*)compArray->contents) + compOffset;
- #ifdef HAVE__MEMCMP16
- /*
- * Use assembly version, which returns the difference between the
- * characters. 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 otherRes = __memcmp16(thisChars, compChars, minCount);
- # ifdef CHECK_MEMCMP16
- int i;
- for (i = 0; i < minCount; i++) {
- if (thisChars[i] != compChars[i]) {
- pResult->i = (s4) thisChars[i] - (s4) compChars[i];
- if (pResult->i != otherRes) {
- badMatch((StringObject*) arg0, (StringObject*) arg1,
- pResult->i, otherRes, "compareTo");
- }
- return true;
- }
- }
- # endif
- if (otherRes != 0) {
- pResult->i = otherRes;
- return true;
- }
- #else
- /*
- * Straightforward implementation, examining 16 bits at a time. Compare
- * the characters that overlap, and if they're all the same then return
- * the difference in lengths.
- */
- int i;
- for (i = 0; i < minCount; i++) {
- if (thisChars[i] != compChars[i]) {
- pResult->i = (s4) thisChars[i] - (s4) compChars[i];
- return true;
- }
- }
- #endif
- pResult->i = countDiff;
- return true;
- }
复制代码 |
|