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; | |
5519 __ bind(¬_string); | 5518 __ bind(¬_string); |
5520 // Puts the cached result into scratch1. | 5519 // Puts the cached result into scratch1. |
5521 NumberToStringStub::GenerateLookupNumberStringCache(masm, | 5520 NumberToStringStub::GenerateLookupNumberStringCache(masm, |
5522 arg, | 5521 arg, |
5523 scratch1, | 5522 scratch1, |
5524 scratch2, | 5523 scratch2, |
5525 scratch3, | 5524 scratch3, |
5526 ¬_cached); | 5525 slow); |
5527 __ mov(arg, scratch1); | 5526 __ mov(arg, scratch1); |
5528 __ mov(Operand(esp, stack_offset), arg); | 5527 __ 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 | |
5542 __ bind(&done); | 5528 __ bind(&done); |
5543 } | 5529 } |
5544 | 5530 |
5545 | 5531 |
5546 void StringHelper::GenerateCopyCharacters(MacroAssembler* masm, | 5532 void StringHelper::GenerateCopyCharacters(MacroAssembler* masm, |
5547 Register dest, | 5533 Register dest, |
5548 Register src, | 5534 Register src, |
5549 Register count, | 5535 Register count, |
5550 Register scratch, | 5536 Register scratch, |
5551 bool ascii) { | 5537 bool ascii) { |
(...skipping 1976 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7528 __ bind(&fast_elements_case); | 7514 __ bind(&fast_elements_case); |
7529 GenerateCase(masm, FAST_ELEMENTS); | 7515 GenerateCase(masm, FAST_ELEMENTS); |
7530 } | 7516 } |
7531 | 7517 |
7532 | 7518 |
7533 #undef __ | 7519 #undef __ |
7534 | 7520 |
7535 } } // namespace v8::internal | 7521 } } // namespace v8::internal |
7536 | 7522 |
7537 #endif // V8_TARGET_ARCH_IA32 | 7523 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |