| 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 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 less_equal = 14, | 593 less_equal = 14, |
| 594 greater = 15, | 594 greater = 15, |
| 595 ueq = 16, // Unordered or Equal. | 595 ueq = 16, // Unordered or Equal. |
| 596 nue = 17, // Not (Unordered or Equal). | 596 nue = 17, // Not (Unordered or Equal). |
| 597 | 597 |
| 598 cc_always = 18, | 598 cc_always = 18, |
| 599 | 599 |
| 600 // Aliases. | 600 // Aliases. |
| 601 carry = Uless, | 601 carry = Uless, |
| 602 not_carry = Ugreater_equal, | 602 not_carry = Ugreater_equal, |
| 603 zero = equal, | 603 Zero = equal, |
| 604 eq = equal, | 604 eq = equal, |
| 605 not_zero = not_equal, | 605 not_zero = not_equal, |
| 606 ne = not_equal, | 606 ne = not_equal, |
| 607 nz = not_equal, | 607 nz = not_equal, |
| 608 sign = negative, | 608 sign = negative, |
| 609 not_sign = positive, | 609 not_sign = positive, |
| 610 mi = negative, | 610 mi = negative, |
| 611 pl = positive, | 611 pl = positive, |
| 612 hi = Ugreater, | 612 hi = Ugreater, |
| 613 ls = Uless_equal, | 613 ls = Uless_equal, |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 943 | 943 |
| 944 // TODO(plind): below should be based on kPointerSize | 944 // TODO(plind): below should be based on kPointerSize |
| 945 // TODO(plind): find all usages and remove the needless instructions for n64. | 945 // TODO(plind): find all usages and remove the needless instructions for n64. |
| 946 const int kCArgsSlotsSize = kCArgSlotCount * Instruction::kInstrSize * 2; | 946 const int kCArgsSlotsSize = kCArgSlotCount * Instruction::kInstrSize * 2; |
| 947 | 947 |
| 948 const int kBranchReturnOffset = 2 * Instruction::kInstrSize; | 948 const int kBranchReturnOffset = 2 * Instruction::kInstrSize; |
| 949 | 949 |
| 950 } } // namespace v8::internal | 950 } } // namespace v8::internal |
| 951 | 951 |
| 952 #endif // #ifndef V8_MIPS_CONSTANTS_H_ | 952 #endif // #ifndef V8_MIPS_CONSTANTS_H_ |
| OLD | NEW |