| 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 5695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5706 // StringCharFromCodeGenerator | 5706 // StringCharFromCodeGenerator |
| 5707 | 5707 |
| 5708 void StringCharFromCodeGenerator::GenerateFast(MacroAssembler* masm) { | 5708 void StringCharFromCodeGenerator::GenerateFast(MacroAssembler* masm) { |
| 5709 // Fast case of Heap::LookupSingleCharacterStringFromCode. | 5709 // Fast case of Heap::LookupSingleCharacterStringFromCode. |
| 5710 | 5710 |
| 5711 ASSERT(!t0.is(result_)); | 5711 ASSERT(!t0.is(result_)); |
| 5712 ASSERT(!t0.is(code_)); | 5712 ASSERT(!t0.is(code_)); |
| 5713 | 5713 |
| 5714 STATIC_ASSERT(kSmiTag == 0); | 5714 STATIC_ASSERT(kSmiTag == 0); |
| 5715 STATIC_ASSERT(kSmiShiftSize == 0); | 5715 STATIC_ASSERT(kSmiShiftSize == 0); |
| 5716 ASSERT(IsPowerOf2(String::kMaxAsciiCharCode + 1)); | 5716 ASSERT(IsPowerOf2(String::kMaxOneByteCharCode + 1)); |
| 5717 __ And(t0, | 5717 __ And(t0, |
| 5718 code_, | 5718 code_, |
| 5719 Operand(kSmiTagMask | | 5719 Operand(kSmiTagMask | |
| 5720 ((~String::kMaxAsciiCharCode) << kSmiTagSize))); | 5720 ((~String::kMaxOneByteCharCode) << kSmiTagSize))); |
| 5721 __ Branch(&slow_case_, ne, t0, Operand(zero_reg)); | 5721 __ Branch(&slow_case_, ne, t0, Operand(zero_reg)); |
| 5722 | 5722 |
| 5723 __ LoadRoot(result_, Heap::kSingleCharacterStringCacheRootIndex); | 5723 __ LoadRoot(result_, Heap::kSingleCharacterStringCacheRootIndex); |
| 5724 // At this point code register contains smi tagged ASCII char code. | 5724 // At this point code register contains smi tagged ASCII char code. |
| 5725 STATIC_ASSERT(kSmiTag == 0); | 5725 STATIC_ASSERT(kSmiTag == 0); |
| 5726 __ sll(t0, code_, kPointerSizeLog2 - kSmiTagSize); | 5726 __ sll(t0, code_, kPointerSizeLog2 - kSmiTagSize); |
| 5727 __ Addu(result_, result_, t0); | 5727 __ Addu(result_, result_, t0); |
| 5728 __ lw(result_, FieldMemOperand(result_, FixedArray::kHeaderSize)); | 5728 __ lw(result_, FieldMemOperand(result_, FixedArray::kHeaderSize)); |
| 5729 __ LoadRoot(t0, Heap::kUndefinedValueRootIndex); | 5729 __ LoadRoot(t0, Heap::kUndefinedValueRootIndex); |
| 5730 __ Branch(&slow_case_, eq, result_, Operand(t0)); | 5730 __ Branch(&slow_case_, eq, result_, Operand(t0)); |
| (...skipping 2082 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7813 __ Pop(ra, t1, a1); | 7813 __ Pop(ra, t1, a1); |
| 7814 __ Ret(); | 7814 __ Ret(); |
| 7815 } | 7815 } |
| 7816 | 7816 |
| 7817 | 7817 |
| 7818 #undef __ | 7818 #undef __ |
| 7819 | 7819 |
| 7820 } } // namespace v8::internal | 7820 } } // namespace v8::internal |
| 7821 | 7821 |
| 7822 #endif // V8_TARGET_ARCH_MIPS | 7822 #endif // V8_TARGET_ARCH_MIPS |
| OLD | NEW |