OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 2645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2656 | 2656 |
2657 // Check for flat cons string or sliced string. | 2657 // Check for flat cons string or sliced string. |
2658 // A flat cons string is a cons string where the second part is the empty | 2658 // A flat cons string is a cons string where the second part is the empty |
2659 // string. In that case the subject string is just the first part of the cons | 2659 // string. In that case the subject string is just the first part of the cons |
2660 // string. Also in this case the first part of the cons string is known to be | 2660 // string. Also in this case the first part of the cons string is known to be |
2661 // a sequential string or an external string. | 2661 // a sequential string or an external string. |
2662 // In the case of a sliced string its offset has to be taken into account. | 2662 // In the case of a sliced string its offset has to be taken into account. |
2663 Label cons_string, check_encoding; | 2663 Label cons_string, check_encoding; |
2664 STATIC_ASSERT(kConsStringTag < kExternalStringTag); | 2664 STATIC_ASSERT(kConsStringTag < kExternalStringTag); |
2665 STATIC_ASSERT(kSlicedStringTag > kExternalStringTag); | 2665 STATIC_ASSERT(kSlicedStringTag > kExternalStringTag); |
| 2666 STATIC_ASSERT(kIsNotStringMask > kExternalStringTag); |
2666 __ cmpq(rbx, Immediate(kExternalStringTag)); | 2667 __ cmpq(rbx, Immediate(kExternalStringTag)); |
2667 __ j(less, &cons_string, Label::kNear); | 2668 __ j(less, &cons_string, Label::kNear); |
2668 __ j(equal, &runtime); | 2669 __ j(equal, &runtime); |
2669 | 2670 |
| 2671 // Catch non-string subject (should already have been guarded against). |
| 2672 __ testb(ebx, Immediate(kIsNotStringMask)); |
| 2673 __ j(zero, &runtime); |
| 2674 |
2670 // String is sliced. | 2675 // String is sliced. |
2671 __ SmiToInteger32(r14, FieldOperand(rdi, SlicedString::kOffsetOffset)); | 2676 __ SmiToInteger32(r14, FieldOperand(rdi, SlicedString::kOffsetOffset)); |
2672 __ movq(rdi, FieldOperand(rdi, SlicedString::kParentOffset)); | 2677 __ movq(rdi, FieldOperand(rdi, SlicedString::kParentOffset)); |
2673 // r14: slice offset | 2678 // r14: slice offset |
2674 // r15: original subject string | 2679 // r15: original subject string |
2675 // rdi: parent string | 2680 // rdi: parent string |
2676 __ jmp(&check_encoding, Label::kNear); | 2681 __ jmp(&check_encoding, Label::kNear); |
2677 // String is a cons string, check whether it is flat. | 2682 // String is a cons string, check whether it is flat. |
2678 __ bind(&cons_string); | 2683 __ bind(&cons_string); |
2679 __ CompareRoot(FieldOperand(rdi, ConsString::kSecondOffset), | 2684 __ CompareRoot(FieldOperand(rdi, ConsString::kSecondOffset), |
(...skipping 3424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6104 xmm0, | 6109 xmm0, |
6105 &slow_elements); | 6110 &slow_elements); |
6106 __ ret(0); | 6111 __ ret(0); |
6107 } | 6112 } |
6108 | 6113 |
6109 #undef __ | 6114 #undef __ |
6110 | 6115 |
6111 } } // namespace v8::internal | 6116 } } // namespace v8::internal |
6112 | 6117 |
6113 #endif // V8_TARGET_ARCH_X64 | 6118 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |