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 5497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5508 Register scratch2, | 5508 Register scratch2, |
5509 Register scratch3, | 5509 Register scratch3, |
5510 Label* slow) { | 5510 Label* slow) { |
5511 // First check if the argument is already a string. | 5511 // First check if the argument is already a string. |
5512 Label not_string, done; | 5512 Label not_string, done; |
5513 __ JumpIfSmi(arg, ¬_string); | 5513 __ JumpIfSmi(arg, ¬_string); |
5514 __ CmpObjectType(arg, FIRST_NONSTRING_TYPE, scratch1); | 5514 __ CmpObjectType(arg, FIRST_NONSTRING_TYPE, scratch1); |
5515 __ j(below, &done); | 5515 __ j(below, &done); |
5516 | 5516 |
5517 // Check the number to string cache. | 5517 // Check the number to string cache. |
| 5518 Label not_cached; |
5518 __ bind(¬_string); | 5519 __ bind(¬_string); |
5519 // Puts the cached result into scratch1. | 5520 // Puts the cached result into scratch1. |
5520 NumberToStringStub::GenerateLookupNumberStringCache(masm, | 5521 NumberToStringStub::GenerateLookupNumberStringCache(masm, |
5521 arg, | 5522 arg, |
5522 scratch1, | 5523 scratch1, |
5523 scratch2, | 5524 scratch2, |
5524 scratch3, | 5525 scratch3, |
5525 slow); | 5526 ¬_cached); |
5526 __ mov(arg, scratch1); | 5527 __ mov(arg, scratch1); |
5527 __ mov(Operand(esp, stack_offset), arg); | 5528 __ mov(Operand(esp, stack_offset), arg); |
| 5529 __ jmp(&done); |
| 5530 |
| 5531 // Check if the argument is a safe string wrapper. |
| 5532 __ bind(¬_cached); |
| 5533 __ JumpIfSmi(arg, slow); |
| 5534 __ CmpObjectType(arg, JS_VALUE_TYPE, scratch1); // map -> scratch1. |
| 5535 __ j(not_equal, slow); |
| 5536 __ test_b(FieldOperand(scratch1, Map::kBitField2Offset), |
| 5537 1 << Map::kStringWrapperSafeForDefaultValueOf); |
| 5538 __ j(zero, slow); |
| 5539 __ mov(arg, FieldOperand(arg, JSValue::kValueOffset)); |
| 5540 __ mov(Operand(esp, stack_offset), arg); |
| 5541 |
5528 __ bind(&done); | 5542 __ bind(&done); |
5529 } | 5543 } |
5530 | 5544 |
5531 | 5545 |
5532 void StringHelper::GenerateCopyCharacters(MacroAssembler* masm, | 5546 void StringHelper::GenerateCopyCharacters(MacroAssembler* masm, |
5533 Register dest, | 5547 Register dest, |
5534 Register src, | 5548 Register src, |
5535 Register count, | 5549 Register count, |
5536 Register scratch, | 5550 Register scratch, |
5537 bool ascii) { | 5551 bool ascii) { |
(...skipping 1976 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7514 __ bind(&fast_elements_case); | 7528 __ bind(&fast_elements_case); |
7515 GenerateCase(masm, FAST_ELEMENTS); | 7529 GenerateCase(masm, FAST_ELEMENTS); |
7516 } | 7530 } |
7517 | 7531 |
7518 | 7532 |
7519 #undef __ | 7533 #undef __ |
7520 | 7534 |
7521 } } // namespace v8::internal | 7535 } } // namespace v8::internal |
7522 | 7536 |
7523 #endif // V8_TARGET_ARCH_IA32 | 7537 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |