OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ | 5 #ifndef V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ |
6 #define V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ | 6 #define V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ |
7 | 7 |
8 #include "src/assembler.h" | 8 #include "src/assembler.h" |
9 #include "src/globals.h" | 9 #include "src/globals.h" |
10 #include "src/mips64/assembler-mips64.h" | 10 #include "src/mips64/assembler-mips64.h" |
(...skipping 1437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1448 // control continues at the label not_power_of_two. If reg is a power of two | 1448 // control continues at the label not_power_of_two. If reg is a power of two |
1449 // the register scratch contains the value of (reg - 1) when control falls | 1449 // the register scratch contains the value of (reg - 1) when control falls |
1450 // through. | 1450 // through. |
1451 void JumpIfNotPowerOfTwoOrZero(Register reg, | 1451 void JumpIfNotPowerOfTwoOrZero(Register reg, |
1452 Register scratch, | 1452 Register scratch, |
1453 Label* not_power_of_two_or_zero); | 1453 Label* not_power_of_two_or_zero); |
1454 | 1454 |
1455 // ------------------------------------------------------------------------- | 1455 // ------------------------------------------------------------------------- |
1456 // Smi utilities. | 1456 // Smi utilities. |
1457 | 1457 |
| 1458 #if defined(V8_TARGET_LITTLE_ENDIAN) |
| 1459 #define SmiWordOffset(offset) (offset + kPointerSize / 2) |
| 1460 #else |
| 1461 #define SmiWordOffset(offset) offset |
| 1462 #endif |
| 1463 |
1458 // Test for overflow < 0: use BranchOnOverflow() or BranchOnNoOverflow(). | 1464 // Test for overflow < 0: use BranchOnOverflow() or BranchOnNoOverflow(). |
1459 void SmiTagCheckOverflow(Register reg, Register overflow); | 1465 void SmiTagCheckOverflow(Register reg, Register overflow); |
1460 void SmiTagCheckOverflow(Register dst, Register src, Register overflow); | 1466 void SmiTagCheckOverflow(Register dst, Register src, Register overflow); |
1461 | 1467 |
1462 void SmiTag(Register dst, Register src) { | 1468 void SmiTag(Register dst, Register src) { |
1463 STATIC_ASSERT(kSmiTag == 0); | 1469 STATIC_ASSERT(kSmiTag == 0); |
1464 if (SmiValuesAre32Bits()) { | 1470 if (SmiValuesAre32Bits()) { |
1465 STATIC_ASSERT(kSmiShift == 32); | 1471 STATIC_ASSERT(kSmiShift == 32); |
1466 dsll32(dst, src, 0); | 1472 dsll32(dst, src, 0); |
1467 } else { | 1473 } else { |
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1839 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) | 1845 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) |
1840 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1846 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
1841 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1847 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
1842 #else | 1848 #else |
1843 #define ACCESS_MASM(masm) masm-> | 1849 #define ACCESS_MASM(masm) masm-> |
1844 #endif | 1850 #endif |
1845 | 1851 |
1846 } } // namespace v8::internal | 1852 } } // namespace v8::internal |
1847 | 1853 |
1848 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ | 1854 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ |
OLD | NEW |