| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 4027 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4038 // string_length: Sum of string lengths, as a smi. | 4038 // string_length: Sum of string lengths, as a smi. |
| 4039 // elements: FixedArray of strings. | 4039 // elements: FixedArray of strings. |
| 4040 | 4040 |
| 4041 // Check that the separator is a flat ASCII string. | 4041 // Check that the separator is a flat ASCII string. |
| 4042 __ mov(string, separator_operand); | 4042 __ mov(string, separator_operand); |
| 4043 __ JumpIfSmi(string, &bailout); | 4043 __ JumpIfSmi(string, &bailout); |
| 4044 __ mov(scratch, FieldOperand(string, HeapObject::kMapOffset)); | 4044 __ mov(scratch, FieldOperand(string, HeapObject::kMapOffset)); |
| 4045 __ movzx_b(scratch, FieldOperand(scratch, Map::kInstanceTypeOffset)); | 4045 __ movzx_b(scratch, FieldOperand(scratch, Map::kInstanceTypeOffset)); |
| 4046 __ and_(scratch, Immediate( | 4046 __ and_(scratch, Immediate( |
| 4047 kIsNotStringMask | kStringEncodingMask | kStringRepresentationMask)); | 4047 kIsNotStringMask | kStringEncodingMask | kStringRepresentationMask)); |
| 4048 __ cmp(scratch, ASCII_STRING_TYPE); | 4048 __ cmp(scratch, kStringTag | kOneByteStringTag | kSeqStringTag); |
| 4049 __ j(not_equal, &bailout); | 4049 __ j(not_equal, &bailout); |
| 4050 | 4050 |
| 4051 // Add (separator length times array_length) - separator length | 4051 // Add (separator length times array_length) - separator length |
| 4052 // to string_length. | 4052 // to string_length. |
| 4053 __ mov(scratch, separator_operand); | 4053 __ mov(scratch, separator_operand); |
| 4054 __ mov(scratch, FieldOperand(scratch, SeqOneByteString::kLengthOffset)); | 4054 __ mov(scratch, FieldOperand(scratch, SeqOneByteString::kLengthOffset)); |
| 4055 __ sub(string_length, scratch); // May be negative, temporarily. | 4055 __ sub(string_length, scratch); // May be negative, temporarily. |
| 4056 __ imul(scratch, array_length_operand); | 4056 __ imul(scratch, array_length_operand); |
| 4057 __ j(overflow, &bailout); | 4057 __ j(overflow, &bailout); |
| 4058 __ add(string_length, scratch); | 4058 __ add(string_length, scratch); |
| (...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4916 *stack_depth = 0; | 4916 *stack_depth = 0; |
| 4917 *context_length = 0; | 4917 *context_length = 0; |
| 4918 return previous_; | 4918 return previous_; |
| 4919 } | 4919 } |
| 4920 | 4920 |
| 4921 #undef __ | 4921 #undef __ |
| 4922 | 4922 |
| 4923 } } // namespace v8::internal | 4923 } } // namespace v8::internal |
| 4924 | 4924 |
| 4925 #endif // V8_TARGET_ARCH_IA32 | 4925 #endif // V8_TARGET_ARCH_IA32 |
| OLD | NEW |