Index: src/mips64/codegen-mips64.cc |
diff --git a/src/mips64/codegen-mips64.cc b/src/mips64/codegen-mips64.cc |
index 134fe4dd8887cb00091df087a10435b196fc4ce2..e7f6cb0a88c10d40aa06dc53f09d790f3cbd7312 100644 |
--- a/src/mips64/codegen-mips64.cc |
+++ b/src/mips64/codegen-mips64.cc |
@@ -612,6 +612,9 @@ void StringCharLoadGenerator::Generate(MacroAssembler* masm, |
Register index, |
Register result, |
Label* call_runtime) { |
+ Label indirect_string_loaded; |
+ __ bind(&indirect_string_loaded); |
+ |
// Fetch the instance type of the receiver into result register. |
__ ld(result, FieldMemOperand(string, HeapObject::kMapOffset)); |
__ lbu(result, FieldMemOperand(result, Map::kInstanceTypeOffset)); |
@@ -622,18 +625,23 @@ void StringCharLoadGenerator::Generate(MacroAssembler* masm, |
__ Branch(&check_sequential, eq, at, Operand(zero_reg)); |
// Dispatch on the indirect string shape: slice or cons. |
- Label cons_string; |
- __ And(at, result, Operand(kSlicedNotConsMask)); |
- __ Branch(&cons_string, eq, at, Operand(zero_reg)); |
+ Label cons_string, thin_string; |
+ __ And(at, result, Operand(kStringRepresentationMask)); |
+ __ Branch(&cons_string, eq, at, Operand(kConsStringTag)); |
+ __ Branch(&thin_string, eq, at, Operand(kThinStringTag)); |
// Handle slices. |
- Label indirect_string_loaded; |
__ ld(result, FieldMemOperand(string, SlicedString::kOffsetOffset)); |
__ ld(string, FieldMemOperand(string, SlicedString::kParentOffset)); |
__ dsra32(at, result, 0); |
__ Daddu(index, index, at); |
__ jmp(&indirect_string_loaded); |
+ // Handle thin strings. |
+ __ bind(&thin_string); |
+ __ ld(string, FieldMemOperand(string, ThinString::kActualOffset)); |
+ __ jmp(&indirect_string_loaded); |
+ |
// Handle cons strings. |
// Check whether the right hand side is the empty string (i.e. if |
// this is really a flat string in a cons string). If that is not |
@@ -645,10 +653,7 @@ void StringCharLoadGenerator::Generate(MacroAssembler* masm, |
__ Branch(call_runtime, ne, result, Operand(at)); |
// Get the first of the two strings and load its instance type. |
__ ld(string, FieldMemOperand(string, ConsString::kFirstOffset)); |
- |
- __ bind(&indirect_string_loaded); |
- __ ld(result, FieldMemOperand(string, HeapObject::kMapOffset)); |
- __ lbu(result, FieldMemOperand(result, Map::kInstanceTypeOffset)); |
+ __ jmp(&indirect_string_loaded); |
// Distinguish sequential and external strings. Only these two string |
// representations can reach here (slices and flat cons strings have been |