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 | 7 |
8 #include "src/base/logging.h" | 8 #include "src/base/logging.h" |
9 #include "src/base/macros.h" | 9 #include "src/base/macros.h" |
10 #include "src/globals.h" | 10 #include "src/globals.h" |
(...skipping 1881 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1892 return true; | 1892 return true; |
1893 default: | 1893 default: |
1894 return false; | 1894 return false; |
1895 } | 1895 } |
1896 break; | 1896 break; |
1897 case COP1: | 1897 case COP1: |
1898 switch (instr & kRsFieldMask) { | 1898 switch (instr & kRsFieldMask) { |
1899 case BC1: | 1899 case BC1: |
1900 case BC1EQZ: | 1900 case BC1EQZ: |
1901 case BC1NEZ: | 1901 case BC1NEZ: |
| 1902 case BZ_V: |
| 1903 case BZ_B: |
| 1904 case BZ_H: |
| 1905 case BZ_W: |
| 1906 case BZ_D: |
| 1907 case BNZ_V: |
| 1908 case BNZ_B: |
| 1909 case BNZ_H: |
| 1910 case BNZ_W: |
| 1911 case BNZ_D: |
1902 return true; | 1912 return true; |
1903 break; | 1913 break; |
1904 default: | 1914 default: |
1905 return false; | 1915 return false; |
1906 } | 1916 } |
1907 break; | 1917 break; |
1908 default: | 1918 default: |
1909 return false; | 1919 return false; |
1910 } | 1920 } |
1911 } | 1921 } |
1912 } // namespace internal | 1922 } // namespace internal |
1913 } // namespace v8 | 1923 } // namespace v8 |
1914 | 1924 |
1915 #endif // #ifndef V8_MIPS_CONSTANTS_H_ | 1925 #endif // #ifndef V8_MIPS_CONSTANTS_H_ |
OLD | NEW |