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_CONSTANTS_H_ | 5 #ifndef V8_MIPS_CONSTANTS_H_ |
6 #define V8_MIPS_CONSTANTS_H_ | 6 #define V8_MIPS_CONSTANTS_H_ |
7 #include "src/globals.h" | 7 #include "src/globals.h" |
8 // UNIMPLEMENTED_ macro for MIPS. | 8 // UNIMPLEMENTED_ macro for MIPS. |
9 #ifdef DEBUG | 9 #ifdef DEBUG |
10 #define UNIMPLEMENTED_MIPS() \ | 10 #define UNIMPLEMENTED_MIPS() \ |
(...skipping 1807 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1818 return true; | 1818 return true; |
1819 default: | 1819 default: |
1820 return false; | 1820 return false; |
1821 } | 1821 } |
1822 break; | 1822 break; |
1823 case COP1: | 1823 case COP1: |
1824 switch (instr & kRsFieldMask) { | 1824 switch (instr & kRsFieldMask) { |
1825 case BC1: | 1825 case BC1: |
1826 case BC1EQZ: | 1826 case BC1EQZ: |
1827 case BC1NEZ: | 1827 case BC1NEZ: |
| 1828 case BZ_V: |
| 1829 case BZ_B: |
| 1830 case BZ_H: |
| 1831 case BZ_W: |
| 1832 case BZ_D: |
| 1833 case BNZ_V: |
| 1834 case BNZ_B: |
| 1835 case BNZ_H: |
| 1836 case BNZ_W: |
| 1837 case BNZ_D: |
1828 return true; | 1838 return true; |
1829 break; | 1839 break; |
1830 default: | 1840 default: |
1831 return false; | 1841 return false; |
1832 } | 1842 } |
1833 break; | 1843 break; |
1834 default: | 1844 default: |
1835 return false; | 1845 return false; |
1836 } | 1846 } |
1837 } | 1847 } |
1838 } // namespace internal | 1848 } // namespace internal |
1839 } // namespace v8 | 1849 } // namespace v8 |
1840 | 1850 |
1841 #endif // #ifndef V8_MIPS_CONSTANTS_H_ | 1851 #endif // #ifndef V8_MIPS_CONSTANTS_H_ |
OLD | NEW |