| 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 // UNIMPLEMENTED_ macro for MIPS. | 8 // UNIMPLEMENTED_ macro for MIPS. |
| 9 #ifdef DEBUG | 9 #ifdef DEBUG |
| 10 #define UNIMPLEMENTED_MIPS() \ | 10 #define UNIMPLEMENTED_MIPS() \ |
| (...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 less_equal = 14, | 464 less_equal = 14, |
| 465 greater = 15, | 465 greater = 15, |
| 466 ueq = 16, // Unordered or Equal. | 466 ueq = 16, // Unordered or Equal. |
| 467 nue = 17, // Not (Unordered or Equal). | 467 nue = 17, // Not (Unordered or Equal). |
| 468 | 468 |
| 469 cc_always = 18, | 469 cc_always = 18, |
| 470 | 470 |
| 471 // Aliases. | 471 // Aliases. |
| 472 carry = Uless, | 472 carry = Uless, |
| 473 not_carry = Ugreater_equal, | 473 not_carry = Ugreater_equal, |
| 474 zero = equal, | 474 Zero = equal, |
| 475 eq = equal, | 475 eq = equal, |
| 476 not_zero = not_equal, | 476 not_zero = not_equal, |
| 477 ne = not_equal, | 477 ne = not_equal, |
| 478 nz = not_equal, | 478 nz = not_equal, |
| 479 sign = negative, | 479 sign = negative, |
| 480 not_sign = positive, | 480 not_sign = positive, |
| 481 mi = negative, | 481 mi = negative, |
| 482 pl = positive, | 482 pl = positive, |
| 483 hi = Ugreater, | 483 hi = Ugreater, |
| 484 ls = Uless_equal, | 484 ls = Uless_equal, |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 // JS argument slots size. | 810 // JS argument slots size. |
| 811 const int kJSArgsSlotsSize = 0 * Instruction::kInstrSize; | 811 const int kJSArgsSlotsSize = 0 * Instruction::kInstrSize; |
| 812 // Assembly builtins argument slots size. | 812 // Assembly builtins argument slots size. |
| 813 const int kBArgsSlotsSize = 0 * Instruction::kInstrSize; | 813 const int kBArgsSlotsSize = 0 * Instruction::kInstrSize; |
| 814 | 814 |
| 815 const int kBranchReturnOffset = 2 * Instruction::kInstrSize; | 815 const int kBranchReturnOffset = 2 * Instruction::kInstrSize; |
| 816 | 816 |
| 817 } } // namespace v8::internal | 817 } } // namespace v8::internal |
| 818 | 818 |
| 819 #endif // #ifndef V8_MIPS_CONSTANTS_H_ | 819 #endif // #ifndef V8_MIPS_CONSTANTS_H_ |
| OLD | NEW |