Chromium Code Reviews| Index: src/arm/code-stubs-arm.cc |
| diff --git a/src/arm/code-stubs-arm.cc b/src/arm/code-stubs-arm.cc |
| index eaad9f293b330eb0936a5dceeb45ae51bb5f840b..1b6796fe8c06ad3ea8be27ebb0b7d0e4b805009e 100644 |
| --- a/src/arm/code-stubs-arm.cc |
| +++ b/src/arm/code-stubs-arm.cc |
| @@ -4339,6 +4339,8 @@ void RegExpExecStub::Generate(MacroAssembler* masm) { |
| __ cmp(r2, Operand(r0, ASR, kSmiTagSize)); |
| __ b(gt, &runtime); |
| + // Reset offset for possibly sliced string. |
| + __ mov(r9, Operand(0)); |
|
antonm
2011/08/25 12:04:36
does it belong here? maybe move it int
Yang
2011/08/25 13:40:03
This is right before branching off depending on st
|
| // subject: Subject string |
| // regexp_data: RegExp data (FixedArray) |
| // Check the representation and encoding of the subject string. |
| @@ -4346,33 +4348,45 @@ void RegExpExecStub::Generate(MacroAssembler* masm) { |
| __ ldr(r0, FieldMemOperand(subject, HeapObject::kMapOffset)); |
| __ ldrb(r0, FieldMemOperand(r0, Map::kInstanceTypeOffset)); |
| // First check for flat string. |
| - __ tst(r0, Operand(kIsNotStringMask | kStringRepresentationMask)); |
| + __ and_(r1, r0, Operand(kIsNotStringMask | kStringRepresentationMask), SetCC); |
| STATIC_ASSERT((kStringTag | kSeqStringTag) == 0); |
| __ b(eq, &seq_string); |
| // subject: Subject string |
| // regexp_data: RegExp data (FixedArray) |
| - // Check for flat cons string. |
| + // Check for flat cons string or sliced string. |
| // A flat cons string is a cons string where the second part is the empty |
| // string. In that case the subject string is just the first part of the cons |
| // string. Also in this case the first part of the cons string is known to be |
| // a sequential string or an external string. |
| - STATIC_ASSERT(kExternalStringTag !=0); |
| - STATIC_ASSERT((kConsStringTag & kExternalStringTag) == 0); |
| - __ tst(r0, Operand(kIsNotStringMask | kExternalStringTag)); |
| + // In the case of a sliced string its offset has to be taken into account. |
| + Label cons_string, check_encoding; |
| + __ cmp(r1, Operand(kConsStringTag)); |
| + __ b(eq, &cons_string); |
| + __ cmp(r1, Operand(kSlicedStringTag)); |
| + // If subject is not a sliced string, it can only be a non-string or an |
| + // external string. |
| __ b(ne, &runtime); |
| + // String is sliced. |
| + __ ldr(r9, FieldMemOperand(subject, SlicedString::kOffsetOffset)); |
| + __ mov(r9, Operand(r9, ASR, kSmiTagSize)); |
| + __ ldr(subject, FieldMemOperand(subject, SlicedString::kParentOffset)); |
| + // r9: offset of sliced string, smi-tagged. |
| + __ jmp(&check_encoding); |
| + // String is a cons string, check whether it is flat. |
| + __ bind(&cons_string); |
| __ ldr(r0, FieldMemOperand(subject, ConsString::kSecondOffset)); |
| __ LoadRoot(r1, Heap::kEmptyStringRootIndex); |
| __ cmp(r0, r1); |
| __ b(ne, &runtime); |
| __ ldr(subject, FieldMemOperand(subject, ConsString::kFirstOffset)); |
| + // Is first part of cons or parent of slice a flat string? |
| + __ bind(&check_encoding); |
| __ ldr(r0, FieldMemOperand(subject, HeapObject::kMapOffset)); |
| __ ldrb(r0, FieldMemOperand(r0, Map::kInstanceTypeOffset)); |
| - // Is first part a flat string? |
| STATIC_ASSERT(kSeqStringTag == 0); |
| __ tst(r0, Operand(kStringRepresentationMask)); |
| __ b(ne, &runtime); |
| - |
| __ bind(&seq_string); |
| // subject: Subject string |
| // regexp_data: RegExp data (FixedArray) |
| @@ -4438,21 +4452,31 @@ void RegExpExecStub::Generate(MacroAssembler* masm) { |
| // For arguments 4 and 3 get string length, calculate start of string data and |
| // calculate the shift of the index (0 for ASCII and 1 for two byte). |
| - __ ldr(r0, FieldMemOperand(subject, String::kLengthOffset)); |
| - __ mov(r0, Operand(r0, ASR, kSmiTagSize)); |
| STATIC_ASSERT(SeqAsciiString::kHeaderSize == SeqTwoByteString::kHeaderSize); |
| - __ add(r9, subject, Operand(SeqAsciiString::kHeaderSize - kHeapObjectTag)); |
| + __ add(r8, subject, Operand(SeqAsciiString::kHeaderSize - kHeapObjectTag)); |
|
antonm
2011/08/25 12:04:36
Apparently if you do:
__ add(r8, subject, Operand
|
| __ eor(r3, r3, Operand(1)); |
| - // Argument 4 (r3): End of string data |
| - // Argument 3 (r2): Start of string data |
| - __ add(r2, r9, Operand(r1, LSL, r3)); |
| - __ add(r3, r9, Operand(r0, LSL, r3)); |
| + // Load the length from the original subject string from the previous stack |
| + // frame. Therefore we have to use fp, which points exactly to two pointer |
| + // sizes below the previous sp. (Because creating a new stack frame pushes |
| + // the previous fp onto the stack and thereby moves up sp by 2*kPointerSize.) |
| + __ ldr(r0, MemOperand(fp, kSubjectOffset + 2*kPointerSize)); |
|
antonm
2011/08/25 12:04:36
nit: spaces around * (and in comment)
antonm
2011/08/25 12:04:36
this looks complicated to me. Cannot you thread o
Yang
2011/08/25 13:40:03
I tried, but r0 - r7 are used to pass arguments an
|
| + // If slice offset is not 0, load the length from the original sliced string. |
|
antonm
2011/08/25 12:04:36
I don't see any conditional logic below.
Yang
2011/08/25 13:40:03
The condition is saved into r3. r3==1 if twobyte a
|
| + // Argument 4, r3: End of string data |
| + // Argument 3, r2: Start of string data |
| + // Prepare start and end index of the input. |
| + __ add(r2, r8, Operand(r9, LSL, r3)); |
| + __ add(r2, r2, Operand(r1, LSL, r3)); |
| + |
| + __ add(r8, r8, Operand(r9, LSL, r3)); |
| + __ ldr(r9, FieldMemOperand(r0, String::kLengthOffset)); |
| + __ mov(r9, Operand(r9, ASR, kSmiTagSize)); |
| + __ add(r3, r8, Operand(r9, LSL, r3)); |
| // Argument 2 (r1): Previous index. |
| // Already there |
| // Argument 1 (r0): Subject string. |
| - __ mov(r0, subject); |
| + // Already there |
| // Locate the code entry and call it. |
| __ add(r7, r7, Operand(Code::kHeaderSize - kHeapObjectTag)); |
| @@ -4469,12 +4493,12 @@ void RegExpExecStub::Generate(MacroAssembler* masm) { |
| // Check the result. |
| Label success; |
| - __ cmp(r0, Operand(NativeRegExpMacroAssembler::SUCCESS)); |
| + __ cmp(subject, Operand(NativeRegExpMacroAssembler::SUCCESS)); |
| __ b(eq, &success); |
| Label failure; |
| - __ cmp(r0, Operand(NativeRegExpMacroAssembler::FAILURE)); |
| + __ cmp(subject, Operand(NativeRegExpMacroAssembler::FAILURE)); |
| __ b(eq, &failure); |
| - __ cmp(r0, Operand(NativeRegExpMacroAssembler::EXCEPTION)); |
| + __ cmp(subject, Operand(NativeRegExpMacroAssembler::EXCEPTION)); |
| // If not exception it can only be retry. Handle that in the runtime system. |
| __ b(ne, &runtime); |
| // Result must now be exception. If there is no pending exception already a |
| @@ -4486,18 +4510,18 @@ void RegExpExecStub::Generate(MacroAssembler* masm) { |
| __ mov(r2, Operand(ExternalReference(Isolate::k_pending_exception_address, |
| isolate))); |
| __ ldr(r0, MemOperand(r2, 0)); |
| - __ cmp(r0, r1); |
| + __ cmp(subject, r1); |
| __ b(eq, &runtime); |
| __ str(r1, MemOperand(r2, 0)); // Clear pending exception. |
| // Check if the exception is a termination. If so, throw as uncatchable. |
| __ LoadRoot(ip, Heap::kTerminationExceptionRootIndex); |
| - __ cmp(r0, ip); |
| + __ cmp(subject, ip); |
| Label termination_exception; |
| __ b(eq, &termination_exception); |
| - __ Throw(r0); // Expects thrown value in r0. |
| + __ Throw(subject); // Expects thrown value in r0. |
| __ bind(&termination_exception); |
| __ ThrowUncatchable(TERMINATION, r0); // Expects thrown value in r0. |
| @@ -4775,6 +4799,7 @@ void StringCharCodeAtGenerator::GenerateFast(MacroAssembler* masm) { |
| Label flat_string; |
| Label ascii_string; |
| Label got_char_code; |
| + Label sliced_string; |
| // If the receiver is a smi trigger the non-string case. |
| __ JumpIfSmi(object_, receiver_not_string_); |
| @@ -4804,7 +4829,10 @@ void StringCharCodeAtGenerator::GenerateFast(MacroAssembler* masm) { |
| __ b(eq, &flat_string); |
| // Handle non-flat strings. |
| - __ tst(result_, Operand(kIsConsStringMask)); |
| + __ and_(result_, result_, Operand(kStringRepresentationMask)); |
| + __ cmp(result_, Operand(kSlicedStringTag)); |
| + __ b(eq, &sliced_string); |
| + __ cmp(result_, Operand(kExternalStringTag)); |
| __ b(eq, &call_runtime_); |
| // ConsString. |
| @@ -4824,6 +4852,15 @@ void StringCharCodeAtGenerator::GenerateFast(MacroAssembler* masm) { |
| STATIC_ASSERT(kSeqStringTag == 0); |
| __ tst(result_, Operand(kStringRepresentationMask)); |
| __ b(ne, &call_runtime_); |
| + __ jmp(&flat_string); |
| + |
| + // SlicedString, unpack and add offset. |
| + __ bind(&sliced_string); |
| + __ ldr(result_, FieldMemOperand(object_, SlicedString::kOffsetOffset)); |
| + __ add(scratch_, scratch_, result_); |
| + __ ldr(object_, FieldMemOperand(object_, SlicedString::kParentOffset)); |
| + __ ldr(result_, FieldMemOperand(object_, HeapObject::kMapOffset)); |
| + __ ldrb(result_, FieldMemOperand(result_, Map::kInstanceTypeOffset)); |
|
antonm
2011/08/25 12:04:36
might be worth asserting that result_ is a flat st
|
| // Check for 1-byte or 2-byte string. |
| __ bind(&flat_string); |
| @@ -5400,10 +5437,17 @@ void SubStringStub::Generate(MacroAssembler* masm) { |
| // Check bounds and smi-ness. |
| Register to = r6; |
| Register from = r7; |
| + |
| + if (FLAG_string_slices) { |
| + __ nop(0); // Jumping as first instruction would crash the code generation. |
| + __ jmp(&runtime); |
| + } |
| + |
| __ Ldrd(to, from, MemOperand(sp, kToOffset)); |
| STATIC_ASSERT(kFromOffset == kToOffset + 4); |
| STATIC_ASSERT(kSmiTag == 0); |
| STATIC_ASSERT(kSmiTagSize + kSmiShiftSize == 1); |
| + |
| // I.e., arithmetic shift right by one un-smi-tags. |
| __ mov(r2, Operand(to, ASR, 1), SetCC); |
| __ mov(r3, Operand(from, ASR, 1), SetCC, cc); |
| @@ -5412,7 +5456,6 @@ void SubStringStub::Generate(MacroAssembler* masm) { |
| __ b(mi, &runtime); // From is negative. |
| // Both to and from are smis. |
| - |
| __ sub(r2, r2, Operand(r3), SetCC); |
| __ b(mi, &runtime); // Fail if from > to. |
| // Special handling of sub-strings of length 1 and 2. One character strings |
| @@ -5918,6 +5961,8 @@ void StringAddStub::Generate(MacroAssembler* masm) { |
| __ tst(r4, Operand(kStringRepresentationMask)); |
| __ tst(r5, Operand(kStringRepresentationMask), eq); |
| __ b(ne, &string_add_runtime); |
| + // We cannot encounter sliced strings here since: |
| + STATIC_ASSERT(SlicedString::kMinLength >= String::kMinNonFlatLength); |
|
antonm
2011/08/25 12:04:36
again, might be worth asserting.
Yang
2011/08/25 13:40:03
Removing this because the previous three lines alr
|
| // Now check if both strings have the same encoding (ASCII/Two-byte). |
| // r0: first string. |
| // r1: second string. |